@charset "UTF-8";
/* ------------------------------------------------
 * Mixin for center - 要素中央配置する
 * @include f.center(xy); // 中央
 * @include f.center(x);  // 横中央
 * @include f.center(y);  // 縦中央
 ------------------------------------------------ */
/* ------------------------------------------------

 * transition - フェードイン効果を追加する
 * @include f.transition;
 * @include f.transition-slow;　　 とても遅い

 ------------------------------------------------ */
/* ------------------------------------------------

 * opacity - 透過効果を追加する
 * @include f.opacity;
 * @include f.opacity-thin;

 ------------------------------------------------ */
/* ------------------------------------------------

 * font-family - フォントの指定をする
 * @include f.font(basef); // ベースフォント
 * @include f.font(en);	// 英字
 * @include f.font(en-ita);	// 英字

 ------------------------------------------------ */
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

input[type=submit] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

/*------------------------------------
 clearfix
------------------------------------*/
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, img, strong, i, dl, dt, dd, ol, ul, li, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, select, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  line-height: 0;
}

footer, header, menu, nav, section, aside, figure {
  display: block;
}

.ul, .ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* -----------------------------------
 * header
 ----------------------------------- */
#header {
  position: fixed;
  top: 0;
  right: 80px;
  left: 0;
  width: calc(100% - 47px);
  z-index: 9998;
}
@media only screen and (max-width: 1024px) {
  #header {
    right: 0;
    width: 100%;
  }
}
#header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 24px 0 22px;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner {
    padding: 24px 16px 0;
  }
}
@media screen and (min-width: 1400px) {
  #header .header__inner {
    padding: 22px 0 0 0;
  }
}
#header .header__inner .header__logo-wrap {
  margin-right: 120px;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .header__logo-wrap {
    margin: 0;
  }
}
#header .header__inner .header__logo-wrap .logo {
  margin-top: 10px;
  width: 160px;
  height: 9.27px;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .header__logo-wrap .logo {
    margin-top: 4px;
  }
}
#header .header__inner .header__logo-wrap .logo a {
  display: block;
}
#header .header__inner .header__logo-wrap .logo a img[src$=".svg"] {
  width: 100%;
  height: auto;
}
#header .header__inner .header__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .header__info-wrap {
    display: none;
  }
}
#header .header__inner .header__info-wrap .info-item .info-list li a {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#header .header__inner .header__info-wrap .info-item .info-list li a span {
  display: inline-block;
  position: relative;
}
#header .header__inner .header__info-wrap .info-item .info-list li a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#header .header__inner .header__info-wrap .info-item .info-list li a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #header .header__inner .header__info-wrap .info-item .info-list li a:hover span:before {
    width: 0;
  }
}
#header .header__inner .header__info-wrap .info-item .info-list li:not(:nth-child(1)) {
  margin-top: 5px;
}
#header .header__inner .header__info-wrap .info-item .info-list li.tel {
  text-decoration: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #header .header__inner .header__info-wrap .info-item .info-list li.tel {
    text-decoration: underline;
    pointer-events: auto;
  }
}
#header .header__inner .header__info-wrap .info-item .info-list li.tel a {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#header .header__inner .header__info-wrap .info-item .info-adress .info-adress__address p {
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#header .header__inner .header__info-wrap .info-item .info-adress .btn-google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
}
#header .header__inner .header__info-wrap .info-item .info-adress .btn-google .btn-google__icon {
  margin-top: -2px;
  width: 8px;
  height: 12px;
}
#header .header__inner .header__info-wrap .info-item .info-adress .btn-google p {
  margin-left: 8px;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#header .header__inner .header__info-wrap .info-item .info-adress .btn-google:hover {
  opacity: 0.5;
}
#header .header__inner .header__info-wrap .info-item:nth-child(2) {
  margin-left: 134px;
}

.header-language-list__block {
  position: fixed;
  top: 44px;
  right: -10px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: right, top, 0;
          transform-origin: right, top, 0;
  z-index: 9999;
}
@media only screen and (max-width: 1024px) {
  .header-language-list__block {
    top: 20px;
    right: 16px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.header-language-list__block .language-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-item: center;
}
.header-language-list__block .language-list li a {
  display: inline-block;
  color: #DCDCDC;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .header-language-list__block .language-list li a {
    font-size: 16px;
    line-height: 1.5;
  }
}
.header-language-list__block .language-list li a:hover {
  color: #232323;
}
@media only screen and (max-width: 1024px) {
  .header-language-list__block .language-list li a:hover {
    color: #DCDCDC;
  }
}
.header-language-list__block .language-list li:nth-child(2) {
  margin-left: 38px;
}
.header-language-list__block .language-list li:nth-child(2) a {
  position: relative;
}
.header-language-list__block .language-list li:nth-child(2) a:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -22px;
  color: #232323;
  content: "/";
}
.header-language-list__block .language-list li.is-current a {
  color: #232323;
}

/* -----------------------------------
 * footer
 ----------------------------------- */
@media only screen and (max-width: 1024px) {
  #footer {
    background-color: #fff;
  }
}
#footer.footer-y-row {
  width: calc(100% - 47px);
  padding: 80px 0 0;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-y-row {
    width: auto;
    padding: 72px 0 0 0;
  }
}
#footer.footer-y-row .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-y-row .footer__inner {
    display: block;
    padding: 0 16px 80px;
  }
}
@media screen and (min-width: 1400px) {
  #footer.footer-y-row .footer__inner {
    padding: 24px 0 24px 0;
  }
}
#footer.footer-y-row .footer__inner .footer-exp {
  max-width: 545px;
  width: 100%;
  margin-right: 220px;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-y-row .footer__inner .footer-exp {
    max-width: 100%;
    width: auto;
    margin: 0;
  }
}
#footer.footer-y-row .footer__inner .footer-exp .title__block {
  margin-bottom: 14px;
}
#footer.footer-y-row .footer__inner .footer-exp .btn-style__arrow {
  margin-top: 40px;
}
#footer.footer-y-row .footer__inner .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 497px;
  width: 100%;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-y-row .footer__inner .footer-info {
    max-width: 100%;
    width: auto;
    margin: 40px 0 0;
  }
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .title__block {
  margin-bottom: 14px;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .contact-list__address p {
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google .btn-google__icon {
  margin-top: -2px;
  width: 8px;
  height: 12px;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google p {
  margin-left: 8px;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google:hover {
  opacity: 0.5;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail {
  margin-top: 16px;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a span {
  display: inline-block;
  position: relative;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a:hover span:before {
    width: 0;
  }
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .tel {
  margin-top: 20px;
  text-decoration: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #footer.footer-y-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .tel {
    text-decoration: underline;
    pointer-events: auto;
  }
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop {
  text-align: right;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a span {
  display: inline-block;
  position: relative;
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a:hover span:before {
    width: 0;
  }
}
#footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .copyright {
  margin-top: auto;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 12px;
  line-height: 2;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-y-row .footer__inner .footer-info .footer-info__copyright .copyright {
    line-height: 1;
  }
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako {
    max-width: 100%;
    width: auto;
    margin: 56px 0 0 0;
  }
}
#footer.footer-t-row-ohako .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin: 0 0 0 9vh;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner {
    height: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1400px) {
  #footer.footer-t-row-ohako .footer__inner {
    margin: 0 0 0 56px;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-exp {
  margin: 0 0 6vh;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner .footer-exp {
    width: auto;
    margin: 0;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-exp .title__block {
  margin-bottom: 14px;
}
#footer.footer-t-row-ohako .footer__inner .footer-exp .text__block p {
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner .footer-exp .text__block p {
    white-space: normal;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-exp .btn-style__arrow {
  margin-top: 16px;
}
#footer.footer-t-row-ohako .footer__inner .footer-info {
  width: 100%;
  margin-top: auto;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner .footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    margin: 40px 0 0;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .title__block {
  margin-bottom: 14px;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .contact-list__address p {
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google .btn-google__icon {
  margin-top: -2px;
  width: 8px;
  height: 12px;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google p {
  margin-left: 8px;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google:hover {
  opacity: 0.5;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail {
  margin-top: 16px;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a span {
  display: inline-block;
  position: relative;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a:hover span:before {
    width: 0;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .tel {
  margin-top: 20px;
  text-decoration: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .tel {
    text-decoration: underline;
    pointer-events: auto;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5vh 0 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 0 auto;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .btn-pagetop {
  text-align: right;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .btn-pagetop a {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .btn-pagetop a span {
  display: inline-block;
  position: relative;
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .btn-pagetop a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .btn-pagetop a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .btn-pagetop a:hover span:before {
    width: 0;
  }
}
#footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .copyright {
  margin-left: auto;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 12px;
  line-height: 2;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row-ohako .footer__inner .footer-info .footer-info__copyright .copyright {
    margin: auto 0 0 auto;
    line-height: 1;
  }
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row {
    max-width: 100%;
    width: auto;
    margin: 56px 0 0 0;
  }
}
#footer.footer-t-row .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin: 0 0 0 9vh;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row .footer__inner {
    height: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1400px) {
  #footer.footer-t-row .footer__inner {
    margin: 0 0 0 56px;
  }
}
#footer.footer-t-row .footer__inner .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row .footer__inner .footer-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    height: auto;
    margin: 40px 0 0;
  }
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .title__block {
  margin-bottom: 14px;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .contact-list__address p {
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google .btn-google__icon {
  margin-top: -2px;
  width: 8px;
  height: 12px;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google p {
  margin-left: 8px;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .btn-google:hover {
  opacity: 0.5;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail {
  margin-top: 16px;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a span {
  display: inline-block;
  position: relative;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .mail a:hover span:before {
    width: 0;
  }
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .tel {
  margin-top: 20px;
  text-decoration: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #footer.footer-t-row .footer__inner .footer-info .footer-info__contact .contact-list__block .contact-list__item .tel {
    text-decoration: underline;
    pointer-events: auto;
  }
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row .footer__inner .footer-info .footer-info__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 0 auto;
  }
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop {
  text-align: right;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a span {
  display: inline-block;
  position: relative;
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .btn-pagetop a:hover span:before {
    width: 0;
  }
}
#footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .copyright {
  margin-left: auto;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 12px;
  line-height: 2;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  #footer.footer-t-row .footer__inner .footer-info .footer-info__copyright .copyright {
    margin: auto 0 0 auto;
    line-height: 1;
  }
}

body {
  width: 100%;
  height: 100%;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  -webkit-text-size-adjust: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 背景カラー */
  pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0; /* 初期値では非表示 */
  -webkit-transition: 2s ease;
  transition: 2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 99998; /* 一番手前に */
}
body.is-fadein:after {
  opacity: 1;
}

#main,
#container {
  width: 100%;
}

#main {
  position: relative;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #232323;
  text-decoration: none;
  word-break: break-all;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* -----------------------------------
 * 共通パーツ
 ----------------------------------- */
/* 改行切り替え */
br.sp--block {
  display: none;
}
@media only screen and (max-width: 767px) {
  br.sp--block {
    display: block;
  }
}
br.ipad--block {
  display: none;
}
@media only screen and (max-width: 1024px) {
  br.ipad--block {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  br.ipad--block {
    display: none;
  }
}
br.pc--block {
  display: block;
}
@media only screen and (max-width: 767px) {
  br.pc--block {
    display: none;
  }
}

/* -----------------------------------
 * sep
 ----------------------------------- */
.sep__block--w12 {
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #232323;
}

/* -----------------------------------
 * title
 ----------------------------------- */
.title__block .title {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
}

/* -----------------------------------
 * text
 ----------------------------------- */
.text__block p {
  font-size: 14px;
  line-height: 1.7;
}

/* -----------------------------------
 * button
 ----------------------------------- */
.btn-style__arrow {
  display: inline-block;
}
.btn-style__arrow a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.btn-style__arrow a:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
.btn-style__arrow a p {
  margin-right: 16px;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
.btn-style__arrow a img {
  width: 16px;
  height: 8px;
}
.btn-style__arrow a:hover:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .btn-style__arrow a:hover:before {
    width: 0;
  }
}

/* -----------------------------------
 * cms layout
 ----------------------------------- */
.layout__txtimg-set__tworows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  margin-right: 16px;
}
@media only screen and (max-width: 1024px) {
  .layout__txtimg-set__tworows {
    display: block;
    height: auto;
    margin: 16px 0 0;
  }
}
.layout__txtimg-set__tworows .txtimg-set__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: calc(50% - 8px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .layout__txtimg-set__tworows .txtimg-set__item {
    display: block;
    height: auto;
  }
}
.layout__txtimg-set__tworows .txtimg-set__item:nth-child(2) {
  margin-top: 16px;
}
.layout__txtimg-set__tworows .txtimg-set__item .item-img {
  position: relative;
  height: 100%;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .layout__txtimg-set__tworows .txtimg-set__item .item-img {
    width: 100%;
    height: auto;
    margin: 0 0 16px;
    overflow: hidden;
  }
}
.layout__txtimg-set__tworows .txtimg-set__item .item-img:before {
  display: none;
  content: "";
}
@media only screen and (max-width: 1024px) {
  .layout__txtimg-set__tworows .txtimg-set__item .item-img:before {
    display: block;
    padding: 30.904% 0;
  }
}
.layout__txtimg-set__tworows .txtimg-set__item .item-img img {
  display: inline-block;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .layout__txtimg-set__tworows .txtimg-set__item .item-img img {
    display: inline;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /*IE対策*/
    z-index: -1;
  }
}
.layout__txtimg-set__tworows .txtimg-set__item .text__block {
  margin-left: 16px;
}
@media only screen and (max-width: 1024px) {
  .layout__txtimg-set__tworows .txtimg-set__item .text__block {
    width: auto;
    margin: 0;
  }
}
.layout__txtimg-set__tworows .txtimg-set__item .text__block p {
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .layout__txtimg-set__tworows .txtimg-set__item .text__block p {
    white-space: normal;
  }
}
.layout__txtimg-set__tworows .txtimg-set__item.is-hidden {
  opacity: 0.2;
}

.layout__imgonly {
  position: relative;
  width: auto;
  height: 100%;
  margin-right: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .layout__imgonly {
    width: 100%;
    height: auto;
    margin: 16px 0 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  .layout__imgonly:before {
    display: block;
    padding: 30.904% 0;
    content: "";
  }
}
.layout__imgonly img {
  display: inline-block;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .layout__imgonly img {
    display: inline;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /*IE対策*/
    z-index: -1;
  }
}
.layout__imgonly.is-hidden {
  opacity: 0.2;
}

.layout__img-t {
  position: relative;
  width: auto;
  height: 100%;
  margin-right: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .layout__img-t {
    width: 100%;
    height: auto;
    margin: 16px 0 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  .layout__img-t:before {
    display: block;
    padding: 30.904% 0;
    content: "";
  }
}
.layout__img-t img {
  display: inline-block;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .layout__img-t img {
    display: inline;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /*IE対策*/
    z-index: -1;
  }
}
.layout__img-t.is-hidden {
  opacity: 0.2;
}

.layout__img-set__tworows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  margin-right: 16px;
}
@media only screen and (max-width: 1024px) {
  .layout__img-set__tworows {
    display: block;
    height: auto;
    margin: 16px 0 0;
  }
}
.layout__img-set__tworows .item-img {
  position: relative;
  width: auto;
  height: calc(50% - 8px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .layout__img-set__tworows .item-img {
    height: auto;
    overflow: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  .layout__img-set__tworows .item-img:before {
    display: block;
    padding: 30.904% 0;
    content: "";
  }
}
.layout__img-set__tworows .item-img img {
  display: block;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .layout__img-set__tworows .item-img img {
    display: inline;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /*IE対策*/
    z-index: -1;
  }
}
.layout__img-set__tworows .item-img:not(:nth-child(1)) {
  margin-top: 16px;
}
.layout__img-set__tworows .item-img.is-hidden {
  opacity: 0.2;
}

.layout__imgset__threerows {
  width: 100%;
  height: 100%;
  margin-right: 16px;
}
@media only screen and (max-width: 1024px) {
  .layout__imgset__threerows {
    display: block;
    height: auto;
    margin: 16px 0 0;
  }
}
.layout__imgset__threerows .item-img {
  position: relative;
  width: auto;
  height: calc(33.33% - 10.6px);
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .layout__imgset__threerows .item-img {
    height: auto;
    overflow: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  .layout__imgset__threerows .item-img:before {
    display: block;
    padding: 30.904% 0;
    content: "";
  }
}
.layout__imgset__threerows .item-img img {
  display: inline-block;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .layout__imgset__threerows .item-img img {
    display: inline;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /*IE対策*/
    z-index: -1;
  }
}
.layout__imgset__threerows .item-img:not(:nth-child(1)) {
  margin-top: 16px;
}
.layout__imgset__threerows .item-img.is-hidden {
  opacity: 0.2;
}

.layout__img-s__posbottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  margin-right: 16px;
}
@media only screen and (max-width: 1024px) {
  .layout__img-s__posbottom {
    display: block;
    height: auto;
    margin: 16px 0 0;
  }
}
.layout__img-s__posbottom .item-img {
  position: relative;
  width: auto;
  height: calc(50% - 8px);
  margin-top: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .layout__img-s__posbottom .item-img {
    overflow: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  .layout__img-s__posbottom .item-img:before {
    padding: 30.904% 0;
    overflow: hidden;
    content: "";
  }
}
.layout__img-s__posbottom .item-img img {
  display: inline-block;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .layout__img-s__posbottom .item-img img {
    display: inline;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;"; /*IE対策*/
    z-index: -1;
  }
}
.layout__img-s__posbottom .item-img:not(:nth-child(1)) {
  margin-top: 16px;
}
.layout__img-s__posbottom .item-img.is-hidden {
  opacity: 0.2;
}

/* -----------------------------------
 * fixed-about
 ----------------------------------- */
.fixed-about {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 47px;
  height: 100%;
  background-color: #fff;
  z-index: 9998;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .fixed-about {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
  }
}
.fixed-about .fixed-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100% - 48px);
  margin: 24px 0;
  border-left: 1px solid #232323;
}
@media only screen and (max-width: 1024px) {
  .fixed-about .fixed-about__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: calc(100% - 32px);
    height: auto;
    margin: auto 16px;
    padding: 16px 0;
    border-top: 1px solid #232323;
    border-left: none;
  }
}
.fixed-about .fixed-about__inner .fixed-about__btn {
  display: inline-block;
  margin-left: 2px;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: right, top, 0;
          transform-origin: right, top, 0;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .fixed-about .fixed-about__inner .fixed-about__btn {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.fixed-about .fixed-about__inner .fixed-about__btn a {
  display: inline-block;
  will-change: transform;
}
.fixed-about .fixed-about__inner .fixed-about__btn a span {
  display: inline-block;
  position: relative;
}
.fixed-about .fixed-about__inner .fixed-about__btn a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  .fixed-about .fixed-about__inner .fixed-about__btn a:hover {
    opacity: 1;
  }
}
.fixed-about.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* -----------------------------------
 * fixed-pagetop
 ----------------------------------- */
.fixed-pagetop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 47px;
  height: 100%;
  background-color: #fff;
  z-index: 9998;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .fixed-pagetop {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
  }
}
.fixed-pagetop .fixed-pagetop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100% - 48px);
  margin: 24px 0;
  border-left: 1px solid #232323;
}
@media only screen and (max-width: 1024px) {
  .fixed-pagetop .fixed-pagetop__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: calc(100% - 32px);
    height: auto;
    margin: auto 16px;
    padding: 16px 0;
    border-top: 1px solid #232323;
    border-left: none;
  }
}
.fixed-pagetop .fixed-pagetop__inner .fixed-pagetop__btn {
  display: inline-block;
  margin-left: 2px;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: right, top, 0;
          transform-origin: right, top, 0;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .fixed-pagetop .fixed-pagetop__inner .fixed-pagetop__btn {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.fixed-pagetop .fixed-pagetop__inner .fixed-pagetop__btn a {
  display: inline-block;
  will-change: transform;
}
.fixed-pagetop .fixed-pagetop__inner .fixed-pagetop__btn a span {
  display: inline-block;
  position: relative;
}
.fixed-pagetop .fixed-pagetop__inner .fixed-pagetop__btn a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  .fixed-pagetop .fixed-pagetop__inner .fixed-pagetop__btn a:hover {
    opacity: 1;
  }
}
.fixed-pagetop.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* -----------------------------------
 * loading1（gif）
 ----------------------------------- */
#loading1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#loading1 .loading1__inner .gif-block {
  position: relative;
  width: 160px;
  border-radius: 20px;
  overflow: hidden;
}
#loading1 .loading1__inner .gif-block:before {
  display: block;
  padding: 50% 0;
  content: "";
}
#loading1 .loading1__inner .gif-block img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
}
#loading1 .loading1__inner .logo-block {
  width: 149px;
  height: 35.35px;
  margin: 13px auto 0;
}
#loading1.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* -----------------------------------
 * loading2（language）
 ----------------------------------- */
#loading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99998;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#loading2 .loading2__inner {
  margin-top: 69px;
}
#loading2 .loading2__inner .logo-block {
  position: relative;
  width: 160px;
}
#loading2 .loading2__inner .logo-block img[src$=".svg"] {
  width: 100%;
  height: auto;
}
#loading2 .loading2__inner .language-list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
#loading2 .loading2__inner .language-list__block .language-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-item: center;
}
#loading2 .loading2__inner .language-list__block .language-list li a {
  color: #DCDCDC;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  #loading2 .loading2__inner .language-list__block .language-list li a {
    font-size: 16px;
    line-height: 1.5;
  }
}
#loading2 .loading2__inner .language-list__block .language-list li a span {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}
#loading2 .loading2__inner .language-list__block .language-list li a span:before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
#loading2 .loading2__inner .language-list__block .language-list li a:hover {
  color: #232323;
}
@media only screen and (max-width: 1024px) {
  #loading2 .loading2__inner .language-list__block .language-list li a:hover {
    color: #DCDCDC;
  }
}
#loading2 .loading2__inner .language-list__block .language-list li a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  #loading2 .loading2__inner .language-list__block .language-list li a:hover span:before {
    width: 0;
  }
}
#loading2 .loading2__inner .language-list__block .language-list li:nth-child(2) {
  margin-left: 40px;
}
#loading2 .loading2__inner .language-list__block .language-list li.is-current a {
  color: #232323;
}
#loading2 .loading2__inner .language-list__block .language-list li.is-current a span:before {
  width: 100%;
}
#loading2.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* -----------------------------------
 * 注意文
 ----------------------------------- */
.warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
}
.warning .warning--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .warning .warning--item {
    width: 60%;
  }
}
.warning .warning--item img {
  display: block;
  margin: 0 40px 0 0;
  width: 150px;
}
.warning .warning--item .text-block .copy {
  margin-bottom: 10px;
  color: #fff;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
}
.warning .warning--item .text-block .text {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
.warning.is-show {
  display: block;
}

/* -----------------------------------
 * top-menu
 ----------------------------------- */
.top-menu {
  position: relative;
  max-width: 960px;
  width: 100%;
  margin: 208px auto 0;
}
@media only screen and (max-width: 1024px) {
  .top-menu {
    max-width: 100%;
    width: auto;
    margin: 97px auto 0;
  }
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner {
    padding: 0 16px;
  }
}
.top-menu .top-menu__inner .title__block {
  margin-left: 40px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .title__block {
    margin: 0;
  }
}
.top-menu .top-menu__inner .title__block .sep__block--w12 {
  margin: 50px 0 46px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .title__block .sep__block--w12 {
    margin: 35px 0 40px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li {
  position: relative;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .number {
  display: inline-block;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap {
    display: block;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .menu-name {
  position: relative;
  margin: 0 24px;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .menu-name {
    margin: 0 0 0 12px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .menu-name img.img-off, .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .menu-name img.img-on {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .menu-name img.img-off {
  z-index: 2;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .menu-name img.img-on {
  opacity: 0;
  z-index: 1;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .btn-viewmore {
  display: inline-block;
  font-family: GaramondPremrPro-ItDisp, serif;
  font-size: 14px;
  line-height: 1.7;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .btn-viewmore {
    margin: 16px 0 0 12px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .btn-viewmore span {
  position: relative;
  padding-bottom: 5px;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a .menu-name__wrap .btn-viewmore span:before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a:hover .menu-name__wrap .menu-name img.img-off {
  opacity: 0;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a:hover .menu-name__wrap .menu-name img.img-off {
    opacity: 1;
    z-index: 2;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a:hover .menu-name__wrap .menu-name img.img-on {
  opacity: 1;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a:hover .menu-name__wrap .menu-name img.img-on {
    opacity: 0;
    z-index: 1;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a:hover .menu-name__wrap .btn-viewmore span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li a:hover .menu-name__wrap .btn-viewmore span:before {
    width: 0;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li.is-active a .menu-name__wrap .menu-name img.img-off {
  opacity: 0;
  z-index: 1;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li.is-active a .menu-name__wrap .menu-name img.img-on {
  opacity: 1;
  z-index: 2;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li.is-active a .menu-name__wrap .btn-viewmore span:before {
  width: 100%;
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(1) a .menu-name__wrap .menu-name {
  width: 818px;
  height: 139px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(1) a .menu-name__wrap .menu-name {
    width: 296px;
    height: 50px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(2) {
  margin-top: 96px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(2) {
    margin-top: 62px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(2):before {
  display: inline-block;
  position: absolute;
  top: -56px;
  left: 0;
  color: #232323;
  font-size: 14px;
  content: "/";
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(2):before {
    top: -44px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(2) a .menu-name__wrap .menu-name {
  width: 334px;
  height: 139px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(2) a .menu-name__wrap .menu-name {
    width: 121px;
    height: 50px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(3) {
  margin-top: 96px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(3) {
    margin-top: 62px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(3):before {
  display: inline-block;
  position: absolute;
  top: -56px;
  left: 0;
  color: #232323;
  font-size: 14px;
  content: "/";
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(3):before {
    top: -44px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(3) a .menu-name__wrap .menu-name {
  width: 681px;
  height: 188px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(3) a .menu-name__wrap .menu-name {
    width: 245px;
    height: 67px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(4) {
  margin-top: 96px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(4) {
    margin-top: 62px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(4):before {
  display: inline-block;
  position: absolute;
  top: -56px;
  left: 0;
  color: #232323;
  font-size: 14px;
  content: "/";
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(4):before {
    top: -44px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(4) a .menu-name__wrap .menu-name {
  width: 478px;
  height: 128px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(4) a .menu-name__wrap .menu-name {
    width: 187px;
    height: 50px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(5) {
  margin-top: 96px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(5) {
    margin-top: 62px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(5):before {
  display: inline-block;
  position: absolute;
  top: -56px;
  left: 0;
  color: #232323;
  font-size: 14px;
  content: "/";
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(5):before {
    top: -44px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(5) a .menu-name__wrap .menu-name {
  width: 503px;
  height: 139px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(5) a .menu-name__wrap .menu-name {
    width: 182px;
    height: 50px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(6) {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid #232323;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(6) {
    margin-top: 50px;
    padding-top: 40px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(6) a .menu-name__wrap .menu-name {
  width: 792px;
  height: 78px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(6) a .menu-name__wrap .menu-name {
    width: 304px;
    height: 30px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(7) {
  margin-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(7) {
    margin-top: 24px;
  }
}
.top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(7) a .menu-name__wrap .menu-name {
  width: 699px;
  height: 78px;
}
@media only screen and (max-width: 1024px) {
  .top-menu .top-menu__inner .top-menu__menulist-wrap .menulist li:nth-child(7) a .menu-name__wrap .menu-name {
    width: 268px;
    height: 30px;
  }
}

.menulist__img {
  position: fixed;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 46px;
  bottom: 56px;
  width: calc(100% - 166px);
  height: calc(100% - 92px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .menulist__img {
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: calc(100% - 32px);
    height: auto;
    margin: 0;
    padding: 28.269% 0;
  }
}
@media screen and (min-width: 1400px) {
  .menulist__img {
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    max-width: 1200px;
    width: 100%;
    height: 674px;
  }
}
.menulist__img .img-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 2s ease;
  transition: 2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  z-index: -2;
}
.menulist__img .img-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
  z-index: -1;
}
.menulist__img .img-item.is-show {
  opacity: 1;
}

:root {
  --vw: 1366;
}

/* -----------------------------------
 * pages-about
 ----------------------------------- */
#pages-about #header {
  display: none;
}
@media only screen and (max-width: 1024px) {
  #pages-about #header {
    display: block;
  }
}

.pages-about {
  width: calc(100% - 47px);
  height: 100vh;
}
@media only screen and (max-width: 1024px) {
  .pages-about {
    width: 100%;
    height: auto;
    margin: 97px auto 24px;
    padding-bottom: 5vh;
  }
}
.pages-about .pages-about__inner {
  padding: 24px;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner {
    height: auto;
    padding: 0 16px;
  }
}
.pages-about .pages-about__inner .about-list__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap {
    display: block;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item {
  width: 50%;
  height: calc(50vh - 24px);
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item {
    width: 100%;
    height: auto;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body {
    height: auto;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body:before {
  visibility: hidden;
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  content: "";
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 96px;
  height: 125px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-icon img[src$=".svg"] {
  width: 100%;
  height: auto;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-name {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-name p {
  font-size: 20px;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-heading-name {
  visibility: hidden;
  position: absolute;
  top: 16px;
  left: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-heading-name {
    top: 8px;
    left: 8px;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-heading-name p {
  color: #fff;
  font-size: 20px;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-img {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -2;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
  z-index: -2;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap {
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16px 16px 20px;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap {
    padding: 14px 0 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-heading a {
  color: #fff;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 20px;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-heading a {
    color: #232323;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-heading a span {
  display: inline-block;
  position: relative;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-heading a span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-heading a:hover span:before {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-heading a:hover span:before {
    width: 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-text {
  margin-top: auto;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-text {
    margin-top: 10px;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-text p {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-text p {
    color: #232323;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #fff;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-btn .btn-style__arrow a:before {
  background-color: #fff;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-text__wrap .item-btn .btn-style__arrow a p {
  color: #fff;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li {
  width: 24px;
  white-space: nowrap;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a {
  display: block;
  text-align: center;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a .cls-1 {
  fill: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a svg {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a p {
  margin-top: 2px;
  color: #fff;
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a:hover .cls-1 {
  fill: #05FF02;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a:hover .cls-1 {
    fill: #fff;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a:hover p {
  color: #05FF02;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li a:hover p {
    color: #fff;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li.icon-web {
  margin-right: 56px;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li.icon-web a .cls-1 {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  fill-rule: evenodd;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item .about-list__body .item-sns__wrap .item-sns-list li.icon-insta a .cls-1 {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .about-list__body:before {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .about-list__body:before {
    visibility: hidden;
    opacity: 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-name {
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-name {
    visibility: visible;
    opacity: 1;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-heading-name {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-heading-name {
    visibility: hidden;
    opacity: 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-icon {
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-icon {
    visibility: visible;
    opacity: 1;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-img {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-img {
    visibility: hidden;
    opacity: 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-text__wrap {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-text__wrap {
    visibility: hidden;
    opacity: 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-sns__wrap {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:hover .item-sns__wrap {
    visibility: hidden;
    opacity: 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) {
  padding: 0 8px 8px 0;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) {
    padding: 0 0 16px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body {
    padding: 30.904% 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body:before {
  background: rgba(0, 0, 0, 0.5);
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents {
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents .item-text__wrap .item-btn {
    border-top: 1px solid #232323;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents .item-text__wrap .item-btn .btn-style__arrow a:before {
    background-color: #232323;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents .item-text__wrap .item-btn .btn-style__arrow a p {
    color: #232323;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents .item-text__wrap .item-btn .btn-style__arrow a img.display-pc {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents .item-text__wrap .item-btn .btn-style__arrow a img.display-pc {
    display: none;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents .item-text__wrap .item-btn .btn-style__arrow a img.display-sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(1) .about-list__body .about-list__contents .item-text__wrap .item-btn .btn-style__arrow a img.display-sp {
    display: block;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(2) {
  padding: 0 0 8px 9px;
  border-left: 1px solid #232323;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(2) {
    padding: 16px 0;
    border-top: 1px solid #232323;
    border-left: none;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(2) .about-list__body {
    padding: 23.612% 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(2) .about-list__body:before {
  background: rgba(0, 0, 0, 0.3);
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(3) {
  padding: 9px 8px 0 0;
  border-top: 1px solid #232323;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(3) {
    padding: 16px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(3) .about-list__body {
    padding: 23.612% 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(3) .about-list__body:before {
  background: rgba(0, 0, 0, 0.3);
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(4) {
  padding: 9px 0 0 9px;
  border-top: 1px solid #232323;
  border-left: 1px solid #232323;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(4) {
    padding: 16px 0 0;
    border-left: none;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(4) .about-list__body {
    padding: 23.612% 0;
  }
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item:nth-child(4) .about-list__body:before {
  background: rgba(0, 0, 0, 0.3);
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active .about-list__body:before {
  visibility: visible;
  opacity: 1;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active .item-name {
  visibility: hidden;
  opacity: 0;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active .item-heading-name {
  visibility: visible;
  opacity: 1;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active .item-icon {
  visibility: hidden;
  opacity: 0;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active .item-img {
  visibility: visible;
  opacity: 1;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active .item-text__wrap {
  visibility: visible;
  opacity: 1;
}
.pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active .item-sns__wrap {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active:nth-child(1) .about-list__body {
    padding: 0;
  }
  .pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active:nth-child(1) .about-list__body:before {
    visibility: hidden;
    opacity: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active:nth-child(1) .about-list__body .about-list__contents .item-img {
    position: relative;
  }
  .pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active:nth-child(1) .about-list__body .about-list__contents .item-img img {
    position: relative;
  }
}
@media only screen and (max-width: 1024px) {
  .pages-about .pages-about__inner .about-list__wrap .about-list__item.is-active:nth-child(1) .about-list__body .about-list__contents .item-text__wrap {
    position: relative;
  }
}

/* -----------------------------------
 * pages-about-cms
 ----------------------------------- */
#about-cms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100vh;
  margin-right: 80px;
  overflow-x: scroll;
}
@media only screen and (max-width: 1400px) {
  #about-cms {
    margin-left: 24px !important;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  #about-cms {
    display: block;
    width: auto;
    height: auto;
    margin: 97px 16px 24px !important;
    padding-bottom: 5vh;
    overflow-y: hidden;
  }
}
#about-cms .about-cms__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  #about-cms .about-cms__inner {
    display: block;
    width: auto;
    height: auto;
    margin-top: -16px;
    padding: 0;
    overflow-y: scroll;
  }
}

/* -----------------------------------
 * pages-works-cms
 ----------------------------------- */
#works-cms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100vh;
  margin-right: 80px;
  scrollbar-width: none;
  overflow-x: scroll;
}
@media only screen and (max-width: 1644px) {
  #works-cms {
    margin-left: 160px !important;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  #works-cms {
    display: block;
    width: auto;
    height: auto;
    margin: 97px 16px 24px !important;
    padding-bottom: 5vh;
    overflow-y: hidden;
  }
}
#works-cms .works-cms__title {
  position: fixed;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 24px;
  z-index: 9998;
}
@media only screen and (max-width: 1024px) {
  #works-cms .works-cms__title {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    margin-bottom: 32px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#works-cms .works-cms__title .title {
  font-family: GaramondPremrPro-Disp, serif;
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
}
#works-cms .works-cms__category-list {
  position: fixed;
  bottom: 24px;
  left: 24px;
}
@media only screen and (max-width: 1024px) {
  #works-cms .works-cms__category-list {
    display: none;
  }
}
#works-cms .works-cms__category-list .heading {
  font-size: 14px;
  line-height: 1.7;
}
#works-cms .works-cms__category-list .sep__block--w12 {
  margin: 20px 0 18px;
}
#works-cms .works-cms__category-list .category-list li button {
  display: inline-block;
  background-color: transparent;
  color: #DCDCDC;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
}
#works-cms .works-cms__category-list .category-list li button:hover {
  color: #232323;
}
#works-cms .works-cms__category-list .category-list li:not(:nth-child(1)) {
  margin-top: 10px;
}
#works-cms .works-cms__category-list .category-list li.is-current button {
  color: #232323;
}
#works-cms .works-cms__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  #works-cms .works-cms__inner {
    display: block;
    width: auto;
    height: auto;
    margin-top: -16px;
    padding: 0;
    overflow-y: scroll;
  }
}