body {
  background-color: #FEFBF6;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 32px 20px;
  align-items: center;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .header {
    padding: 32px 80px;
  }
}
.header .flex-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .flex-container .menu-icon {
  position: relative;
  z-index: 999;
  width: 30px;
}
.header__logo {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 16px;
  color: #202020;
}
@media (min-width: 1024px) {
  .header__logo {
    font-size: 24px;
  }
}
.header__icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}
@media (min-width: 1024px) {
  .header__icon {
    display: none;
  }
}
.header__menu {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 14px;
  color: #202020;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .header__menu {
    display: none;
  }
}
.header__menu img {
  width: 30px;
}
.header__nav {
  width: 100%;
  height: 100vh;
  background-color: #FEFBF6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 100px 20px 0;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}
@media (min-width: 1024px) {
  .header__nav {
    width: auto;
    height: auto;
    background-color: transparent;
    position: static;
    display: block;
    transform: translateY(0);
    padding: 0;
  }
}
.header__menu--sp {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .header__menu--sp {
    display: none;
  }
}
.header__menu--sp .menu-item {
  opacity: 0;
  transition: opacity ease-in-out;
}
.header__menu--sp .menu-item--open {
  opacity: 1;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
.header__menu--sp .menu-item--close {
  opacity: 0;
  transition-duration: 0.5s;
}
.header__menu--sp .menu-link {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 24px;
  color: #202020;
  text-transform: uppercase;
}
.header .show {
  transform: translateY(0%);
}
.header__menu--pc {
  display: none;
}
@media (min-width: 1024px) {
  .header__menu--pc {
    display: flex;
    gap: 32px;
  }
  .header__menu--pc .link__inner {
    position: relative;
    overflow: hidden;
  }
  .header__menu--pc .menu-link {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    text-transform: uppercase;
    transition: transform 0.3s;
    display: block;
  }
  .header__menu--pc .hover-link {
    position: absolute;
    left: 0;
    top: 100%;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    text-transform: uppercase;
    transition: top 0.3s;
  }
  .header__menu--pc .link__inner:hover .menu-link {
    transform: translateY(-100%);
  }
  .header__menu--pc .link__inner:hover .hover-link {
    top: 0;
  }
}
.header .fade-in {
  animation: fadein 0.8s ease-in-out;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.header .fade-out {
  animation: fadeout 0.8s ease-in-out;
}
@keyframes fadeout {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}

.hero {
  padding: 0 20px;
  margin-bottom: 128px;
}
@media (min-width: 768px) {
  .hero {
    padding: 0 80px;
  }
}
@media (min-width: 1024px) {
  .hero {
    max-width: 1280px;
    margin: 160px auto 240px auto;
  }
}
@media (min-width: 1024px) {
  .hero__content {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.hero__title {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 24px;
  color: #202020;
  line-height: 150%;
  width: 85%;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 48px;
    width: 52%;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 32px;
  }
}
.hero__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #202020;
  border-radius: 40px;
  width: 180px;
  height: 50px;
  scale: 1;
  transition: scale 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .hero__btn {
    width: 220px;
    height: 60px;
  }
}
.hero__btn:hover {
  scale: 1.1;
}
.hero__link {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 14px;
  color: #202020;
  color: #FEFBF6;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.4px;
}
@media (min-width: 1024px) {
  .hero__link {
    font-size: 16px;
  }
}
.hero__link img {
  width: auto;
}

.section {
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .section {
    padding: 0 80px;
  }
}

.service {
  margin-bottom: 128px;
}
@media (min-width: 1024px) {
  .service {
    margin-bottom: 196px;
  }
}
.service__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.service .flex-wrapper-pc:first-child {
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .service .flex-wrapper-pc:first-child {
    margin-bottom: 160px;
  }
}
@media (min-width: 1024px) {
  .service .flex-wrapper-pc {
    max-width: 1280px;
    display: grid;
    grid-template-columns: 360px 1fr;
  }
}
.service__title {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #202020;
  margin-bottom: 96px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .service__title {
    margin-bottom: 160px;
    font-size: 60px;
  }
}
.service .flex-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .service .flex-container {
    justify-content: space-between;
  }
}
.service .flex-container__title {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 24px;
  color: #202020;
  text-wrap: nowrap;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .service .flex-container__title {
    font-size: 32px;
    min-width: 12ch;
  }
}
.service .flex-container__text--jp {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-align: justify;
  color: #202020;
  line-height: 200%;
}
@media (min-width: 1024px) {
  .service .flex-container__text--jp {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1.6px;
    text-align: justify;
  }
}
.service .flex-container__text--en {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  color: #202020;
  line-height: 200%;
}
@media (min-width: 1024px) {
  .service .flex-container__text--en {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 16px;
    color: #202020;
  }
}

.about {
  width: 100%;
  margin-bottom: 128px;
}
@media (min-width: 1024px) {
  .about {
    margin-bottom: 196px;
  }
}
.about__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.about__title {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #202020;
  color: #202020;
  margin-bottom: 96px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .about__title {
    font-size: 60px;
    margin-bottom: 128px;
  }
}
.about__text {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  color: #202020;
  grid-column-start: 1;
  grid-column-end: 4;
  line-height: 180%;
  margin-bottom: 32px;
}
.about__text:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about__text {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}
.about__link {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 16px;
  color: #202020;
  color: #202020;
  gap: 16px;
  grid-column-start: 1;
  grid-column-end: 4;
  align-self: end;
  margin-top: 64px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .about__link {
    grid-column-start: 10;
    grid-column-end: 13;
    text-align: end;
    margin-top: 0;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .about__link {
    transform: translateX(0);
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
  }
  .about__link:hover {
    transform: translateX(20px);
  }
}
.about__bio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 768px) {
  .about__bio {
    grid-template-columns: repeat(12, 1fr);
  }
}

.qna {
  margin-bottom: 128px;
}
@media (min-width: 1024px) {
  .qna {
    margin-bottom: 196px;
  }
}
.qna__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.qna .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.qna__title {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  color: #202020;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .qna__title {
    font-size: 60px;
  }
}
.qna .language-switch {
  display: flex;
  cursor: pointer;
  align-self: end;
}
.qna .language-switch .lang-option {
  cursor: pointer;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 18px;
  color: #202020;
  text-transform: capitalize;
}
@media (min-width: 1024px) {
  .qna .language-switch {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  .qna .language-switch:hover {
    opacity: 0.3;
  }
}
.qna .accordion {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .qna .accordion {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0;
  }
}
.qna .divider {
  border-top: 1px solid #202020;
}
.qna .question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px 0;
  gap: 16px;
}
@media (min-width: 1024px) {
  .qna .question-wrapper {
    padding: 24px 40px;
  }
}
.qna .toggle-button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qna .toggle-button img {
  width: 30px;
}
.qna .toggle-button .hide {
  display: none;
}
.qna .toggle-button__item {
  width: 30px;
  height: 1px;
  background-color: #202020;
  display: none;
  transition: all 0.5s ease-in-out;
}
.qna .toggle-button .show {
  display: block;
}
.qna .question {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-align: justify;
  line-height: 180%;
  width: 100%;
}
@media (min-width: 1024px) {
  .qna .question {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1.6px;
    text-align: justify;
  }
}
.qna .question--en {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  letter-spacing: 0.4px;
  text-align: start;
}
.qna .scale {
  font-size: 12px;
  transition: all 0.5s ease-in-out;
}
.qna .answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-align: justify;
  line-height: 180%;
  margin-bottom: 0px;
  text-align: justify;
  transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out, margin-bottom 0.5s ease-in-out;
}
@media (min-width: 1024px) {
  .qna .answer {
    font-size: 16px;
    padding: 0 40px;
  }
}
.qna .answer--en {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  letter-spacing: 0.4px;
  text-align: start;
}
.qna .showText {
  height: auto;
  opacity: 1;
  margin-bottom: 24px;
}

.footer {
  background-color: #202020;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .footer {
    height: 100vh;
    padding-bottom: 0;
  }
}
.footer .footer-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 20px;
  justify-content: end;
}
@media (min-width: 768px) {
  .footer .footer-menu {
    padding: 64px 80px;
  }
}
@media (min-width: 1024px) {
  .footer .footer-menu {
    max-width: 1280px;
    margin: 0 auto;
    gap: 32px;
  }
}
.footer .footer-menu__link {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 18px;
  color: #202020;
  color: #ffffff;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (min-width: 1024px) {
  .footer .footer-menu__link {
    font-size: 24px;
  }
}
.footer__text {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19vw;
  color: #ececec;
  text-align: center;
  letter-spacing: 3vw;
  line-height: normal;
  transform: translateY(100%);
}
.footer .show {
  animation: show 1s ease-in-out forwards;
}
@keyframes show {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.footer .divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 48px;
}/*# sourceMappingURL=style.css.map */