@charset "UTF-8";

/* ----------------------- */
/* base
/* ----------------------- */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  /* letter-spacing: 0.1em; */
  color: #000;
  font-style: normal;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
}


img,
svg {
  width: 100%;
  vertical-align: bottom;
}

.objectFit_cover {
  width: 100%;
  vertical-align: bottom;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: cover; object-position: center;';
}

.objectFit_contain {
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

a {
  text-decoration: none;
  display: inline-block;
  /* -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer; */
}

a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.8;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:focus {
  outline: none;
}

.section-wrapper {
  padding: 120px 0;
}

.sp {
  display: none;
}

/* ----------------------- */
/* layout
/* ----------------------- */

.section_inner {
  max-width: 1200px;
  margin: 0 auto;
}


.mx_auto {
  margin: 0 auto;
}


/* ----------------------- */
/* parts
/* ----------------------- */


/* section__title */
.section__title_wrapper {
  position: relative;
}

.section__title {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section__title_decoration {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.section__title--en {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}


/* btn */
.btn {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: 389px;
  width: 100%;
  height: 98px;
  background-color: #000;
  position: relative;
  transition: all .3s ease;
}

.btn--sm {
  font-size: 2rem;
  max-width: 240px;
  height: 72px;
}

.btn--lg {
  max-width: 588px;
  height: 77px;
  position: relative;
}

.btn__text_sm {
  font-size: 1.6rem;
}

.btn_flex {
  display: flex;
  align-items: center;
}

.btn svg {
  color: #fff;
  fill: #fff;
  transition: all .3s ease;
}

.btn:hover {
  color: #000;
  background-color: #fff;
  opacity: 1;
  transition: all .4s ease;
}

.btn:hover svg {
  color: #000;
  fill: #000;
  transition: all .3s ease;
}

.change-border02::after,
.change-border02::before,
.change-border02__inner::after,
.change-border02__inner::before {
  background-color: #000;
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  transition: all .6s ease;
  -webkit-transition: all .6s ease;
}

/* 右上へ配置 */
.change-border02::after {
  width: 0px;
  height: 1px;
  top: 0;
  right: 0;
}

/* 左下へ配置 */
.change-border02::before {
  width: 0px;
  height: 1px;
  left: 0;
  bottom: 0;
}

/* 左上へ配置 */
.change-border02__inner::after {
  width: 1px;
  height: 0px;
  left: 0;
  top: 0;
}

/* 右下へ配置 */
.change-border02__inner::before {
  width: 1px;
  height: 0px;
  bottom: 0;
  right: 0;
}

/* hover */
.change-border02:hover::after,
.change-border02:hover::before {
  width: 100%;
}

.change-border02:hover .change-border02__inner::after,
.change-border02:hover .change-border02__inner::before {
  height: 100%;
}

/* ----------------------- */
/* loading
/* ----------------------- */

.loading {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
}


.loading__logo {
  max-width: 390px;
  width: 100%;
  transition: .3s;
  opacity: 0;
  -webkit-animation: fadeIn linear;
  animation: fadeIn linear 2.5s .2s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


/* ----------------------- */
/* header
/* ----------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 10;
}

.header__inner {
  padding: 20px 42px 25px;
}

.header__logo {
  transition: .2s;
}

.header__logo.open {
  transition: .3s;
}

.header__logo a {
  width: 200px;
  position: relative;
  z-index: 15;
}

.header__logo a svg {
  width: 100%;
}

.header__logo.open a svg {
  color: #fff;
  fill: #fff;
}

.header__navLinks {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 120px;
  margin-top: 25px;
}

.header__navLink {
  margin-right: 25px;
}

.header__navLink a {
  width: 100%;
  max-width: 31px;
}


.header__navList {
  max-width: 1200px;
  margin: 300px auto 0;
  padding: 0 20px;
  visibility: hidden;
}

.header__nav.open .header__navList {
  visibility: visible;
}

.header__navItem,
.header__navChildLink,
.header__navItemLink {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
}

.header__navItem {
  cursor: pointer;
  margin-bottom: 22px;
  max-width: 320px;
  margin-left: auto;
  width: 100%;
}

.header__navItem .parent {
  position: relative;
  z-index: 1;
  padding-right: 40px;
}

.header__navItem .parent::after,
.header__navItem .parent::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}

.header__navItem .parent::after {
  right: 0px;
  width: 22px;
  height: 1px;
}

.header__navItem .parent::before {
  right: 11px;
  width: 1px;
  height: 22px;
  transition: .3s;
}

.header__navItem .js-navToggle.open.parent::before {
  transform: rotate(90deg);
  top: calc(50% - 11px);
  transition: .4s;
}

.header__navChildList {
  padding-left: 45px;
  /* display: none; */
}


.burger-btn {
  display: block;
  position: fixed;
  top: 25px;
  right: 60px;
  border: none;
  cursor: pointer;
  z-index: 10;
  color: #000;
}

.bar {
  margin: 0 auto;
  display: block;
  height: 2px;
  width: 45px;
  background-color: #000;
  transition: transform 0.5s ease;
}

.bar_top,
.bar_mid {
  margin-bottom: 12px;
}

/* ハンバーガーメニューが開いたとき */

.burger-btn.cross .bar {
  background-color: #fff;
}

.burger-btn.cross .bar_top {
  transition-delay: 40ms;
  transform: translateY(14px) rotate(35deg);
}

.burger-btn.cross .bar_mid {

  transform: translateX(-18px) scaleX(0);
}

.burger-btn.cross .bar_bottom {
  transition-delay: 20ms;
  transform: translateY(-14px) rotate(-35deg);
}

.header__nav {
  position: absolute;
  opacity: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  z-index: -10;
  transition: .2s;
}

.header__nav.open {
  top: 0;
  height: 100vh;
  background-color: #000;
  z-index: 0;
  opacity: 1;
  transition: .4s;
}


/* ----------------------- */
/* contact
/* ----------------------- */

.contact {
  margin-bottom: 195px;
}

.contact .section__title_decoration {
  top: 4px;
  max-width: 212px;
}

.contact__contents {
  margin-top: 146px;
}

.contact__text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.81;
  text-align: center;
  margin-bottom: 120px;
}


/* ----------------------- */
/* footer
/* ----------------------- */

.footer {
  background-color: #000;
}

.footer__inner {
  padding: 89px 20px 99px;
  box-sizing: border-box;
  position: relative;
}

.footer__link {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
}

.footer__link_text {
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

.footer__link_text:first-child {
  margin-right: 14px;
}

.footer__link_text:last-child {
  margin-left: 14px;
}

.footer__logo {
  margin: 0 auto 72px;
  width: 100%;
  max-width: 300px;
  display: block;
}

.footer__copyright {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  display: block;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.footer__sns {
  display: flex;
  justify-content: space-between;
  max-width: 150px;
  margin: 44px auto 0;
}

.footer__sns_item a {
  width: 52px;
}



/* goToTop */

.goToTop {
  position: sticky;
  position: -webkit-sticky;
  bottom: 130px;
  left: 100%;
  margin-bottom: 50px;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3;
  padding-left: 15px;
  transform: rotate(90deg);
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  z-index: 10;
  display: block;
  width: 110px;
}


.goToTop::before,
.goToTop::after {
  content: "";
  position: absolute;
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
}

.goToTop::before {
  height: 2px;
  border-radius: 10px;
  background-color: #000;
  z-index: 1;
}

.goToTop::after {
  height: 35px;
  background-color: transparent;
  z-index: 0;
}



/* 1200px 
--------------------------------------------- */
@media (max-width: 1200px) {

  .section_inner {
    padding: 0 22px;
  }

  .section__title {
    font-size: 3.5rem;
  }

  .footer__inner {
    padding: 89px 20px 99px;
  }



}





/* 767px 
--------------------------------------------- */
@media (max-width: 767px) {

  /* ----------------------- */
  /* base 767px
  /* ----------------------- */

  .body {
    font-size: 1.25rem;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }


  /* ----------------------- */
  /* parts 767px
  /* ----------------------- */

  .section__title_wrapper {
    width: 100%;
  }

  .section__title {
    font-size: 2.5rem;
    line-height: 1.42;
  }

  .section__title--en {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }

  .btn {
    font-size: 1.5rem;
    max-width: 194.5px;
    height: 49px;
  }

  .btn--sm {
    font-size: 1rem;
    max-width: 140px;
    height: 36px;
  }

  .btn--lg {
    max-width: 294px;
    height: 38.5px;
  }

  .btn__text_sm {
    font-size: .8rem;
  }


  /* ----------------------- */
  /* loading 767px
  /* ----------------------- */


  .loading__logo {
    max-width: 290px;
    padding-bottom: 100px;

  }

  /* ----------------------- */
  /* header 767px
  /* ----------------------- */

  .header__inner {
    padding: 15px 21px 13px;
  }

  .header__logo a {
    width: 100px;
  }

  .header__navLinks {
    justify-content: flex-start;
    margin-right: 120px;
    margin-left: 21px;
    margin-top: 55px;
  }

  .header__navLink {
    margin-right: 25px;
  }

  .header__navLink a {
    max-width: 22px;
  }

  .header__navList {
    margin: 60px auto 0;
  }

  .header__navItem,
  .header__navChildLink,
  .header__navItemLink {
    font-size: 1.8rem;
  }




  .burger-btn {
    top: 19px;
    right: 21px;
  }

  .bar {
    width: 28px;
  }

  .bar_top,
  .bar_mid {
    margin-bottom: 8px;
  }


  .burger-btn.cross .bar_top {
    transform: translateY(12px) rotate(35deg);
  }


  .burger-btn.cross .bar_bottom {
    transform: translateY(-8px) rotate(-35deg);
  }

  /* ----------------------- */
  /* contact 767px
  /* ----------------------- */

  .contact {
    margin-bottom: 107px;
  }

  .contact .section__title_decoration {
    top: 12px;
    max-width: 106px;
  }

  .contact__contents {
    margin-top: 60px;
  }

  .contact__text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
  }


  /* ----------------------- */
  /* footer 767px
  /* ----------------------- */

  .footer__inner {
    padding: 44px 20px 45px;
  }

  .footer__link {
    margin-bottom: 36px;
  }

  .footer__link_text,
  .footer__copyright {
    font-size: .8rem;
  }

  .footer__link_text:first-child {
    margin-right: 7px;
  }

  .footer__link_text:last-child {
    margin-left: 7px;
  }

  .footer__logo {
    margin: 0 auto 36px;
    max-width: 150px;
  }

  .footer__sns {
    max-width: 90px;
    margin: 30px auto 0;
  }
  
  .footer__sns_item a {
    width: 30px;
  }

  

  .goToTop {
    bottom: 75px;
    font-size: 1.3rem;
    line-height: 3;
    padding-left: 10px;
    margin-bottom: 40px;
    transform: translateX(38px) rotate(90deg);
  }


  .goToTop::before,
  .goToTop::after {
    left: -60px;
    width: 60px;
    height: 1px;
  }

  .goToTop::after {
    height: 25px;
  }












}