@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; }

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity 1.0s ease;
  /* アニメーション時間は 0.8秒 */
  transition: opacity 1.0s ease; }

body.fadeout::after {
  opacity: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input[type="button"], input[type="text"], input[type="submit"], input[type="email"], textarea {
  -webkit-appearance: none;
  border-radius: 0; }

/*@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);*/
html {
  width: 100%;
  overflow-y: scroll; }

body {
  width: 100%;
  min-width: 980px;
  margin: 0;
  overflow-y: scroll; }
  @media only screen and (max-width: 768px) {
    body {
      min-width: 100%;
      margin: 0; } }

::selection {
  background: #ccd2dc;
  /* Safari用 */ }

::-moz-selection {
  background: #ccd2dc;
  /* Firefox用 */ }

img {
  width: 100%; }

.clearfix:after {
  content: " ";
  display: block;
  clear: both; }

body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
  overflow: hidden; }

/*@media all and (-ms-high-contrast:none) {
	body{
		font-family:  "メイリオ", Meiryo, Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		overflow: hidden;
	}
}
@supports (-ms-ime-align:auto) {
body {
		font-family:  "メイリオ", Meiryo, Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		overflow: hidden;
	}
}*/
/* ===================================

↑リセット、共通css

=================================== */
#container {
  overflow: hidden; }

/* ===================================

↓サイドのグローバルナビ用 css

=================================== */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 301; }
  @media only screen and (max-width: 768px) {
    .overlay {
      -webkit-transition: all .3s ease;
      transition: all .3s ease; } }

/*.side-openがjsで付与されたとき*/
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(32, 51, 77, 0.4); }

/* サイドメニュー */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  padding-top: 27vh;
  padding-left: 40px;
  text-align: left;
  font-size: 13px;
  background: #fff;
  z-index: 400;
  transition: 0.5s;
  /*ul*/
  /*↓検索窓*/ }
  @media only screen and (max-width: 768px) {
    .side-menu {
      width: 100%;
      right: -100%;
      text-align: center;
      padding-top: 10vh;
      padding-left: 0;
      z-index: 299; } }
  .side-menu ul {
    /*li a*/ }
    .side-menu ul li a {
      color: #20334d;
      font-size: 14px;
      text-decoration: none;
      letter-spacing: 0.3em;
      line-height: 4em;
      position: relative; }
      @media only screen and (max-width: 768px) {
        .side-menu ul li a {
          line-height: 10vh; } }
      .side-menu ul li a:before, .side-menu ul li a:after {
        position: absolute;
        top: 1.5em;
        content: "";
        display: inline-block;
        width: 0%;
        height: 1px;
        background: #a0aab7;
        transition: 0.2s; }
      .side-menu ul li a:before {
        left: 50%; }
      .side-menu ul li a:after {
        right: 50%; }
    .side-menu ul li a:hover:before,
    .side-menu ul li a:hover:after {
      width: 50%; }
    .side-menu ul li:last-of-type a {
      margin-right: 0; }
  .side-menu dl.search {
    display: none;
    margin-top: 50px;
    position: relative;
    border-bottom: 1px solid #aaa;
    width: 220px;
    height: 30px; }
    @media only screen and (max-width: 768px) {
      .side-menu dl.search {
        display: block;
        width: 80%;
        margin: 10vh auto 0; } }
  .side-menu dl.search dt {
    margin-right: 40px;
    padding: 8px 0 8px 8px; }
  .side-menu dl.search dt input {
    width: 100%;
    height: 15px;
    background-color: none;
    line-height: 15px;
    border: none; }
  .side-menu dl.search dd {
    position: absolute;
    bottom: 5px;
    right: 0; }
  .side-menu dl.search dd button {
    display: block;
    background-color: #fff;
    padding: 0;
    height: 16px;
    width: 16px;
    border: none;
    position: relative;
    cursor: pointer; }
    .side-menu dl.search dd button:before {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border: 1px solid #20334d;
      border-radius: 8px;
      float: left;
      margin-top: 0px;
      margin-left: 1px; }
    .side-menu dl.search dd button:after {
      content: "";
      display: block;
      width: 8px;
      height: 1px;
      background-color: #20334d;
      float: right;
      margin-top: 1px;
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg); }

/* 開閉用ボタン */
.side-menu-btn {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 35px;
  padding: 15px 0 0 12px;
  background: #ffffff;
  cursor: pointer;
  z-index: 500; }
  @media only screen and (max-width: 768px) {
    .side-menu-btn {
      display: block;
      top: 0;
      right: 0;
      width: 39px;
      height: 39px;
      background: #fff;
      padding: 20px 0 0 17px;
      z-index: 400; } }
  .side-menu-btn .trigger,
  .side-menu-btn .trigger span {
    display: inline-block;
    transition: all .2s; }
  .side-menu-btn .trigger {
    position: relative;
    width: 28px;
    height: 19px; }
  .side-menu-btn .trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #20334d; }
  .side-menu-btn .trigger span:nth-of-type(1) {
    top: 1px; }
  .side-menu-btn .trigger span:nth-of-type(2) {
    top: 9px; }
  .side-menu-btn .trigger span:nth-of-type(3) {
    bottom: 1px;
    width: 80%; }
  .side-menu-btn .trigger.active span:nth-of-type(1),
  .side-menu-btn .trigger.active span:nth-of-type(3) {
    width: 10px; }
  .side-menu-btn .trigger.active span:nth-of-type(1) {
    -webkit-transform: translate(20px, 4.5px) rotate(45deg);
    transform: translate(20px, 4.5px) rotate(45deg); }
  .side-menu-btn .trigger.active span:nth-of-type(3) {
    -webkit-transform: translate(20px, -4.5px) rotate(-45deg);
    transform: translate(20px, -4.5px) rotate(-45deg); }

/* メインコンテンツ */
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 300; }
  @media only screen and (max-width: 768px) {
    .wrapper {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      z-index: 300; } }

/* サイドメニューオープン */
.side-open .wrapper,
.side-open .overlay {
  -webkit-transform: translate3d(-400px, 0, 0);
  transform: translate3d(-300px, 0, 0); }
  @media only screen and (max-width: 768px) {
    .side-open .wrapper,
    .side-open .overlay {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0); } }

.side-open .side-menu {
  right: 0; }

/* ===================================

↓ヘッダーcss 

=================================== */
header {
  width: 100%;
  min-width: 1000px;
  overflow: hidden;
  height: 80px;
  /*h1*/
  /*nav*/ }
  @media only screen and (max-width: 768px) {
    header {
      min-width: 100%;
      background-color: #fff;
      position: fixed;
      height: auto;
      z-index: 3; } }
  header h1 {
    width: 250px;
    float: left;
    margin: 30px 0 20px 30px; }
    @media only screen and (max-width: 768px) {
      header h1 {
        width: 160px;
        margin: 20px 0 20px 20px; } }
    header h1 > a > img {
      width: 160px;
      padding-top: 3px; }
      @media only screen and (max-width: 768px) {
        header h1 > a > img {
          width: 100px; } }
    header h1 span {
      display: block;
      width: 70px;
      float: right; }
      @media only screen and (max-width: 768px) {
        header h1 span {
          width: 48px; } }
  header nav {
    float: right;
    width: 560px;
    margin: 40px 30px 0 0;
    /*.search*/
    /* input.search_box */
    /*ul*/ }
    @media only screen and (max-width: 768px) {
      header nav {
        display: none; } }
    header nav .search {
      width: 20px;
      height: 20px;
      float: right;
      position: relative;
      top: -30px;
      transition: .3s;
      cursor: pointer; }
      header nav .search:before {
        content: "";
        display: block;
        position: absolute;
        width: 8px;
        height: 8px;
        border: 1px solid #20334d;
        border-radius: 8px; }
      header nav .search:after {
        content: "";
        display: block;
        position: absolute;
        width: 8px;
        height: 1px;
        background-color: #20334d;
        bottom: 9px;
        right: 5px;
        transform: rotate(45deg); }
    header nav input.search_box {
      background: transparent;
      border: none;
      border-bottom: 1px solid #a0aab7;
      -webkit-appearance: none;
      height: 30px; }
    header nav input::-webkit-input-placeholder {
      color: #a0aab7; }
    header nav input.search_box {
      position: absolute;
      font-size: 14px;
      color: #20334d;
      line-height: 2;
      top: -50px;
      /*-100px*/
      width: 300px;
      right: 65px;
      transition: all .3s; }
    header nav .search_box_active {
      top: 26px !important;
      transition: all .3s; }
    header nav ul {
      width: 570px;
      float: right;
      position: relative;
      top: 0;
      transition: 0.3s;
      /*li a*/ }
      header nav ul li a {
        color: #20334d;
        font-size: 14px;
        display: inline-block;
        text-decoration: none;
        float: left;
        margin-right: 35px;
        letter-spacing: 0.3em;
        position: relative; }
        header nav ul li a:before, header nav ul li a:after {
          position: absolute;
          top: 1.5em;
          content: "";
          display: inline-block;
          width: 0;
          height: 1px;
          background: #a0aab7;
          transition: 0.2s; }
        header nav ul li a:before {
          left: 50%; }
        header nav ul li a:after {
          right: 50%; }
      header nav ul li a:hover:before,
      header nav ul li a:hover:after {
        width: 50%; }
      header nav ul li:last-of-type a {
        margin-right: 0; }
    header nav ul.active {
      /*activeクラスをjsによって与えられた時のulの動き*/
      top: 50px !important;
      position: relative;
      transition: all .3s; }
  @supports (-ms-ime-align: auto) {
    header {
      /* Edge のみ適用される */
      /*.search*/ }
      header .search {
        margin-top: 13px; } }
  @media all and (-ms-high-contrast: none) {
    header {
      /*.search*/ }
      header .search {
        margin-top: 11px; } }

/*header*/
/*検索窓　IEの游明朝ズレの対応CSS*/
/* ===================================

↓フッターcss 

=================================== */
footer {
  border-top: 1px solid #ccc;
  width: 100%;
  min-width: 1000px;
  background-color: #fff;
  padding-top: 100px;
  clear: both;
  /*.f_inner*/
  /*.under*/ }
  @media only screen and (max-width: 768px) {
    footer {
      min-width: 100%;
      padding-top: 40px; } }
  footer .f_inner {
    width: 1000px;
    margin: 0 auto;
    /*.contact*/
    /*h4 + p*/ }
    @media only screen and (max-width: 768px) {
      footer .f_inner {
        width: 90%; } }
    footer .f_inner .read_copy {
      font-size: 20px;
      font-feature-settings: "palt";
      font-weight: 100;
      color: #333;
      line-height: 2em;
      text-align: center;
      letter-spacing: 0.1em;
      margin-bottom: 40px; }
      @media only screen and (max-width: 768px) {
        footer .f_inner .read_copy {
          font-size: 16px;
          line-height: 1.7em;
          text-align: left;
          margin-bottom: 20px; }
          footer .f_inner .read_copy br {
            display: none; } }
    footer .f_inner .contact {
      width: 650px;
      margin: 0 auto 40px;
      overflow: hidden;
      padding-bottom: 30px;
      border-bottom: 1px solid #ccc;
      /*address*/
      /*.form_link*/ }
      @media only screen and (max-width: 768px) {
        footer .f_inner .contact {
          width: 100%; } }
      footer .f_inner .contact address {
        display: block;
        text-align: center;
        width: 340px;
        float: left;
        font-size: 14px; }
        @media only screen and (max-width: 768px) {
          footer .f_inner .contact address {
            width: 100%;
            float: none;
            margin-bottom: 20px;
            font-size: 12px; } }
        footer .f_inner .contact address p:first-child {
          font-size: 30px;
          color: #20334d;
          margin-bottom: 10px; }
          @media only screen and (max-width: 768px) {
            footer .f_inner .contact address p:first-child {
              font-size: 8vw; } }
          footer .f_inner .contact address p:first-child span {
            font-size: 24px; }
            @media only screen and (max-width: 768px) {
              footer .f_inner .contact address p:first-child span {
                font-size: 6vw; } }
      footer .f_inner .contact .form_link {
        float: right;
        margin-right: 30px;
        /*p a*/ }
        @media only screen and (max-width: 768px) {
          footer .f_inner .contact .form_link {
            float: none;
            margin-right: 0;
            width: 100%; } }
        footer .f_inner .contact .form_link p a {
          background: #761616;
          color: #fff;
          display: block;
          font-size: 16px;
          font-weight: bold;
          height: 55px;
          line-height: 55px;
          overflow: hidden;
          position: relative;
          text-align: center;
          letter-spacing: 0.1em;
          text-decoration: none;
          width: 280px; }
          @media only screen and (max-width: 768px) {
            footer .f_inner .contact .form_link p a {
              width: 90%;
              margin: 0 auto;
              font-size: 4vw; } }
          footer .f_inner .contact .form_link p a:after {
            content: '';
            position: absolute;
            top: 18px;
            right: 0;
            display: block;
            width: 30px;
            height: 10px;
            border-bottom: 1px solid #a46464;
            transition: 0.3s; }
          footer .f_inner .contact .form_link p a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            background: #981618; }
          footer .f_inner .contact .form_link p a:hover:after {
            width: 20px; }
          footer .f_inner .contact .form_link p a:hover:before {
            transform: scaleX(1);
            transform-origin: left; }
          footer .f_inner .contact .form_link p a .inner-text {
            position: relative;
            top: 0;
            left: 0;
            display: block;
            width: 100%; }
    footer .f_inner h4 {
      text-align: center;
      font-size: 20px;
      margin-bottom: 16px;
      color: #333; }
    footer .f_inner h4 + p {
      text-align: center;
      padding-right: 10px;
      font-size: 14px;
      margin-bottom: 50px;
      color: #333; }
      footer .f_inner h4 + p br {
        display: none; }
      @media only screen and (max-width: 768px) {
        footer .f_inner h4 + p {
          font-size: 12px;
          text-align: center;
          line-height: 1.5em; }
          footer .f_inner h4 + p br {
            display: block; } }
    footer .f_inner .trademark_copy {
      font-size: 12px;
      text-align: center;
      margin-bottom: 15px;
      font-feature-settings: "palt";
      letter-spacing: 0.02em;
      line-height: 1.5em; }
  footer .under {
    height: 40px;
    background-color: #eeeeee;
    padding-top: 20px;
    /*ul*/
    /*p small*/ }
    @media only screen and (max-width: 768px) {
      footer .under {
        height: auto;
        height: 50px;
        padding-left: 20px; } }
    footer .under ul {
      margin-left: 20px;
      /* li*/ }
      @media only screen and (max-width: 768px) {
        footer .under ul {
          margin-left: 0; } }
      footer .under ul li {
        float: left;
        margin-right: 40px;
        /*a*/ }
        @media only screen and (max-width: 768px) {
          footer .under ul li {
            margin-right: 30px; } }
        footer .under ul li a {
          color: #333;
          font-size: 12px;
          text-decoration: none;
          display: block;
          position: relative;
          transition: 0.3s; }
          footer .under ul li a:before {
            content: "";
            display: block;
            width: 5px;
            height: 4px;
            border: 1px solid #999;
            position: absolute;
            right: -12px;
            top: 4px; }
          footer .under ul li a:after {
            content: "";
            display: block;
            width: 5px;
            height: 4px;
            border-right: 1px solid #999;
            border-bottom: 1px solid #999;
            position: absolute;
            right: -14px;
            top: 7px; }
          footer .under ul li a:hover {
            opacity: 0.7; }
    footer .under p small {
      float: right;
      font-size: 12px;
      margin-right: 20px;
      padding-top: 5px; }
      @media only screen and (max-width: 768px) {
        footer .under p small {
          float: none;
          display: block;
          width: 100%;
          margin-top: 17px; } }
  footer #page-top a {
    height: 40px;
    border-right: 40px solid #20334d;
    border-top: 30px solid transparent;
    position: absolute;
    bottom: 60px;
    right: 0;
    transition: 0.3s; }
    @media only screen and (max-width: 768px) {
      footer #page-top a {
        height: 50px;
        border-right: 30px solid #20334d;
        border-top: 20px solid transparent;
        bottom: 0; } }
    footer #page-top a:hover {
      height: 50px; }
      @media only screen and (max-width: 768px) {
        footer #page-top a:hover {
          height: 55px; } }
    footer #page-top a:before {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      border-top: 1px solid #758191;
      border-right: 1px solid #758191;
      bottom: 22px;
      right: -25px;
      transform: rotate(-45deg);
      transition: 0.3s; }
      @media only screen and (max-width: 768px) {
        footer #page-top a:before {
          right: -20px;
          bottom: 28px; } }
    footer #page-top a:after {
      content: "";
      position: absolute;
      display: block;
      width: 1px;
      height: 15px;
      background-color: #758191;
      bottom: 17px;
      right: -21px;
      transition: 0.3s; }
      @media only screen and (max-width: 768px) {
        footer #page-top a:after {
          right: -16px;
          bottom: 22px; } }
    footer #page-top a:hover:before {
      bottom: 32px; }
    footer #page-top a:hover:after {
      bottom: 27px; }

/*footer　IEの游明朝ズレの対応CSS*/
@media all and (-ms-high-contrast: none) {
  footer {
    /*.f_inner*/
    /*.under*/ }
    footer .f_inner {
      /*.contact*/ }
      footer .f_inner .contact {
        /*address*/
        /*.form_link*/ }
        footer .f_inner .contact address p:first-child {
          padding-top: 4px; }
        footer .f_inner .contact .form_link p a {
          line-height: 60px; }
    footer .under ul li a {
      padding-top: 5px; }

  /*footer*/ }
