@charset "UTF-8";
/* カラー */
.header {
  position: fixed;
  width: 100%;
  height: 54px;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  .header {
    height: 70px;
  }
}
.header::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 clamp(1.25rem, 1.0213414634rem + 0.9756097561vw, 1.875rem);
}
@media screen and (min-width: 1200px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    height: 100%;
  }
}
.header__logo {
  width: 200px;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 300px;
  }
}

.home .header::before {
  top: -100%;
}
.home .header.show::before {
  top: 0;
}

.nav {
  position: absolute;
  background: #000;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0;
  right: -100%;
  padding: 70px 20px 0;
  -webkit-transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
.nav.active {
  right: 0;
}
@media screen and (min-width: 1200px) {
  .nav {
    position: static;
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    max-width: initial;
    height: auto;
    gap: clamp(0.625rem, 0.1676829268rem + 1.9512195122vw, 1.875rem);
    padding: 0;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0 clamp(0.625rem, -0.5182926829rem + 4.8780487805vw, 3.75rem);
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
}
.nav__item {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 1200px) {
  .nav__item {
    border-bottom: none;
  }
}
@media screen and (min-width: 1200px) {
  .nav__item--top {
    display: none;
  }
}
.nav__link {
  display: block;
  position: relative;
  font-family: "Anton";
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
}
@media screen and (min-width: 1200px) {
  .nav__link {
    color: #000;
    padding: 0;
  }
}
.nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #000;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .nav__link:hover::after {
    width: 100%;
  }
}
.nav__btn-wrap {
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 1200px) {
  .nav__btn-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.nav__btn {
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 250px;
  background: #FFDE0A;
  border-radius: 40px;
  white-space: nowrap;
  padding: 10px;
  margin: 0 auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nav__btn--white {
  background: #fff;
  border: 1px solid #999;
}
@media screen and (min-width: 1200px) {
  .nav__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 160px;
    padding: 5px 30px;
  }
}
.nav__btn span {
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  -webkit-transition: text-shadow 0.3s;
  transition: text-shadow 0.3s;
  font-family: "Anton";
  font-size: 20px;
  line-height: 1;
  overflow: hidden;
}
@media (hover: hover) {
  .nav__btn:hover span {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}
.nav__icon {
  width: 60px;
  margin: 30px auto 0;
}
@media screen and (min-width: 1200px) {
  .nav__icon {
    width: 38px;
    margin: 0;
  }
}

.hamburger {
  position: absolute;
  background: #000;
  width: clamp(1.875rem, 1.6463414634rem + 0.9756097561vw, 2.5rem);
  height: clamp(1.875rem, 1.6463414634rem + 0.9756097561vw, 2.5rem);
  border-radius: 50%;
  top: 50%;
  right: 20px;
  padding: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hamburger.active {
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}
.hamburger__btn {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger__bar {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hamburger.active .hamburger__bar {
  background-color: #000;
}
.hamburger .top {
  top: 20%;
}
.hamburger .middle {
  top: 50%;
}
.hamburger .bottom {
  top: 80%;
}
.hamburger.active .top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.hamburger.active .middle {
  opacity: 0;
}
.hamburger.active .bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}

.only-pc { /*PCのみ*/
  display: none;
}
@media screen and (min-width: 1024px) {
  .only-pc {
    display: block;
  }
}

.only-tab { /*タブレット以上*/
  display: none;
}
@media screen and (min-width: 769px) {
  .only-tab {
    display: block;
  }
}

.under-tab { /*タブレット以下*/
  display: block;
}
@media screen and (min-width: 1024px) {
  .under-tab {
    display: none;
  }
}

.only-sp { /*スマホのみ*/
  display: block;
}
@media screen and (min-width: 769px) {
  .only-sp {
    display: none;
  }
}

body {
  position: relative;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  background: url(../img/bg.jpg) no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: -10;
}

img {
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p, li, dt, dd, tr, td, a {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.075em;
}

p, li, dt, dd {
  font-size: clamp(0.875rem, 0.7835365854rem + 0.3902439024vw, 1.125rem);
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p a {
  text-decoration: underline;
}

section {
  scroll-margin: 70px;
}

.section {
  padding: clamp(4.375rem, 2.3170731707rem + 8.7804878049vw, 10rem) 0;
}

.bg-base {
  position: relative;
}
.bg-base::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#EDEDED));
  background: linear-gradient(180deg, #fff 0%, #EDEDED 100%);
  mix-blend-mode: multiply;
  z-index: -1;
}

.bg-dark {
  position: relative;
}
.bg-dark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#878681), color-stop(70%, #414141));
  background: linear-gradient(180deg, #878681 0%, #414141 70%);
  mix-blend-mode: multiply;
  z-index: -1;
}

.bg-light {
  position: relative;
}
.bg-light::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #858584;
  mix-blend-mode: multiply;
  z-index: -1;
}

.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1.0213414634rem + 0.9756097561vw, 1.875rem);
}

.container-min {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1.0213414634rem + 0.9756097561vw, 1.875rem);
}

.title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5853658537rem + 3.9024390244vw, 5rem);
}
.title--white {
  color: #fff;
}
.title__en {
  font-family: "Anton";
  font-size: clamp(4rem, 2.0335365854rem + 8.3902439024vw, 9.375rem);
  line-height: 1;
  margin-bottom: 10px;
}
.title__en span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: rotate3d(1, 1, 0, 135deg);
          transform: rotate3d(1, 1, 0, 135deg);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, transform 0.3s ease;
  transition: opacity 0.5s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.title__ja {
  font-size: clamp(1rem, 0.9085365854rem + 0.3902439024vw, 1.25rem);
  font-weight: bold;
}

.title__en .animate {
  opacity: 1; /* アニメーション開始時に透明度を1に */
  -webkit-transform: rotate3d(0, 0, 0, 0);
          transform: rotate3d(0, 0, 0, 0); /* 元の位置に戻す */
}

.btn {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 300px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 40px;
  padding: 20px;
  margin: clamp(1.25rem, 0.7926829268rem + 1.9512195122vw, 2.5rem) auto 0;
}
.btn span {
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  -webkit-transition: text-shadow 0.3s;
  transition: text-shadow 0.3s;
  font-family: "Anton";
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
}
@media (hover: hover) {
  .btn:hover span {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}
.btn--left {
  margin: clamp(1.25rem, 0.7926829268rem + 1.9512195122vw, 2.5rem) auto 0;
}
@media screen and (min-width: 769px) {
  .btn--left {
    margin: clamp(1.25rem, 0.7926829268rem + 1.9512195122vw, 2.5rem) 0 0;
  }
}
.btn--large {
  max-width: 500px;
  margin-top: 0;
}
.btn--large span {
  font-size: clamp(1.5rem, 1.1341463415rem + 1.5609756098vw, 2.5rem);
}
@media (hover: hover) {
  .btn:hover {
    background: #FFDE0A;
  }
}
.btn::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../img/icon-btn.svg) no-repeat center center/contain;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .btn:hover::before {
    rotate: y 180deg;
  }
}
.btn::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  right: 23px;
  translate: 0 -50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.c-title {
  margin-top: 54px;
  padding: clamp(1.25rem, 0.7926829268rem + 1.9512195122vw, 2.5rem) clamp(1.25rem, 1.0213414634rem + 0.9756097561vw, 1.875rem);
}
@media screen and (min-width: 769px) {
  .c-title {
    margin-top: 70px;
  }
}
.c-title__heading {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 769px) {
  .c-title__heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.c-title__en {
  font-family: "Anton";
  font-size: clamp(4rem, 2.0335365854rem + 8.3902439024vw, 9.375rem);
}
.c-title__ja {
  font-size: clamp(1.125rem, 1.0792682927rem + 0.1951219512vw, 1.25rem);
  font-weight: bold;
}

.sns {
  background: #fff;
  padding: 2px 0;
}
.sns__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media screen and (min-width: 769px) {
  .sns__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sns__item {
  overflow: hidden;
}
.sns__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #000;
  height: 100%;
  padding: clamp(1.5625rem, 0.9908536585rem + 2.4390243902vw, 3.125rem) 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .sns__link:hover {
    scale: 1.05;
  }
  .sns__link:hover .sns__btn {
    background: #FFDE0A;
  }
  .sns__link:hover .sns__btn span {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}
.sns__icon {
  height: clamp(2.375rem, 2.237804878rem + 0.5853658537vw, 2.75rem);
}
.sns__user {
  color: #fff;
  font-family: "Anton";
  font-size: clamp(0.875rem, 0.737804878rem + 0.5853658537vw, 1.25rem);
}
.sns__btn {
  display: grid;
  place-content: center;
  background: #fff;
  min-width: clamp(7.5rem, 6.1280487805rem + 5.8536585366vw, 11.25rem);
  border-radius: 50px;
  padding: clamp(0.75rem, 0.6585365854rem + 0.3902439024vw, 1rem);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sns__btn span {
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  -webkit-transition: text-shadow 0.3s;
  transition: text-shadow 0.3s;
  font-size: clamp(0.75rem, 0.7042682927rem + 0.1951219512vw, 0.875rem);
  font-weight: bold;
  line-height: 1;
  overflow: hidden;
}

.contact {
  background: url(../img/bg-contact.jpg) no-repeat center center/cover;
}

.footer {
  padding: clamp(2.5rem, 1.5853658537rem + 3.9024390244vw, 5rem) 0 0;
}
.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.footer__logo {
  display: block;
  width: clamp(7.5rem, 6.5853658537rem + 3.9024390244vw, 10rem);
}
.footer__list {
  display: none;
}
@media screen and (min-width: 769px) {
  .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(1.875rem, 1.1890243902rem + 2.9268292683vw, 3.75rem);
  }
}
.footer__link {
  position: relative;
  color: #fff;
  font-family: "Anton";
  font-size: clamp(1rem, 0.9085365854rem + 0.3902439024vw, 1.25rem);
}
.footer__link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #fff;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .footer__link:hover::before {
    width: 100%;
  }
}
.footer__btn {
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 200px;
  background: #fff;
  border: 1px solid #999;
  border-radius: 40px;
  white-space: nowrap;
  padding: 10px;
  margin: 0 auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer__btn span {
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  -webkit-transition: text-shadow 0.3s;
  transition: text-shadow 0.3s;
  font-family: "Anton";
  font-size: 20px;
  line-height: 1;
  overflow: hidden;
}
@media (hover: hover) {
  .footer__btn:hover span {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}
.footer__external-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  gap: clamp(1.25rem, 0.7926829268rem + 1.9512195122vw, 2.5rem);
}
.footer__copyright {
  color: #fff;
  padding: 0 0 20px;
}

/* ===============================================
# 404
=============================================== */
.not-found__title {
  font-family: "Anton";
  font-size: clamp(3.75rem, 3.2926829268rem + 1.9512195122vw, 5rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 30px;
}
.not-found__title span {
  display: block;
  font-size: clamp(1.875rem, 1.1890243902rem + 2.9268292683vw, 3.75rem);
}
.not-found__lead {
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}
.not-found__text {
  text-align: center;
  margin-bottom: 40px;
}/*# sourceMappingURL=common.css.map */