@charset "UTF-8";

:root {
  --link-color: #FF8017;
  --text-color: #ffffff;
  --main-color: #303030;
}

body {
  background-color: var(--main-color);
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 16px;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  font-weight: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-color)
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

li {
  list-style: none;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 5vw;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.8);
}

.header_logo {
  width: 126.47px;
}

.header li a:hover {
  color: var(--link-color)
}

/* グローバルナビ*/
.gnav__list {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}

.gnav__item {
  font-size: 16px;
}

.icon-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}

.image-container {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

/* インスタ・ライン */
.base-image {
  display: block;
  width: 100%;
  height: auto;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 15px;
  height: 12px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 1px;
  background-color: var(--text-color);
  border-radius: 2px;
}

.menu-logo,
.menu-close {
  display: none;
}

/* メインビジュアル */
.main-visual {
  position: relative;
  overflow: visible;
  text-align: right;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  letter-spacing: 0.2em;
  left: 0;
  top: 0;
  overflow: visible;
  z-index: 1;
  background-image: url(./img/main.png);
  background-size: cover;
}

.main-copy {
  width: 100%;
  max-width: 1200px;
  padding: 0 5vw 14vh 5vw;
  margin: 0 auto;
  letter-spacing: 0.2em;
}

.main-lead {
  font-size: 16px;
  line-height: 2;
  top: 470px;
}

.main-title {
  font-size: 45px;
  line-height: 1.6;
  margin: 50px 0;
  text-align: right;
  font-weight: 500;
}

.main-title .highlight {
  color: #FF8017;
}

.main-description {
  font-size: 16px;
  line-height: 2;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 110px;
  transform: translate(-50%, 140px);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  z-index: 10;
  font-family: 'Cormorant Garamond';
}

.scroll-down .line {
  width: 1px;
  height: 50px;
  background-color: var(--link-color);
  margin: 8px auto 0;
}

@media (max-width: 768px) {

  /* ハンバーガーメニューのスタイル */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 17px;
    cursor: pointer;
    z-index: 101;
    position: relative;
  }

  .hamburger span {
    display: block;
    height: 1px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
  }

  .header-inner {
    padding: 10px 30px;
  }

  .header_logo {
    width: auto;
    margin-left: 0;
    z-index: 100;
  }

  .header_logo img {
    width: 100px;
    height: auto;
  }

  .gnav__list.active .menu-logo,
  .gnav__list.active .menu-close {
    display: block;
  }

  .menu-header {
    position: relative;
  }

  .menu-header {
    display: none;
  }

  .gnav__list.active .menu-header {
    display: flex;
    flex-direction: column;
  }

  .menu-logo {
    position: absolute;
    top: 50px;
    left: 5px;
    width: 120px;
    z-index: 102;
    margin-bottom: 40px;
  }

  .menu-logo img {
    display: block;
    width: 68px;
    height: 29px;
    margin: 0;
  }

  .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 103;
  }

  .gnav__list {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 120px 20px 40px;
    z-index: 99;
    gap: 0;
    background-image: url("img/hamburger.png");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #303030;
    animation: slideIn 0.5s ease-out forwards;
  }

  @keyframes slideIn {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(0);
    }
  }

  @keyframes slideOut {
    0% {
      transform: translateX(0);
      opacity: 1;
    }

    100% {
      transform: translateX(100%);
      opacity: 0;
    }
  }

  .gnav__list.active {
    display: flex;
    animation: slideIn 0.5s ease-out forwards;
  }

  .gnav__list:not(.active) {
    display: flex;
    animation: slideOut 0.5s ease-in forwards;
  }

  .gnav__item {
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.4;
  }

  .gnav__link {
    padding: 4px 0;
    display: block;
  }

  .icon-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    margin-top: 10px;
    padding-left: 10px;
  }

  body.locked {
    overflow: hidden;
  }

  .main-visual {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 30px 8vh;
    text-align: center;
    height: auto;
    background-image: url(./img/mv_sp.png);
  }

  .image-container {
    position: relative;
    width: 44px;
    height: 44px;
  }

  .base-image {
    width: 100%;
    object-fit: cover;
    display: block;
  }

  .overlay-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
    height: 23px;
    pointer-events: none;
  }

  .main-copy {
    padding: 70% 0 10%;
  }

  .sp-only {
    display: inline;
  }

  .main-title {
    font-size: 32px;
    line-height: 1.5;
    margin: 20px 0;
    text-align: center;
  }

  .main-title .highlight {
    font-size: 32px;
    letter-spacing: 0.15em;
  }

  .main-description {
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
  }

  .scroll-down {
    font-size: 12px;
  }

  .scroll-down .line {
    height: 40px;
  }

  .background-image {
    background-image: url("img/mv_sp.png");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

.about {
  background-color: #303030;
  position: relative;
  z-index: 0;

}

.about__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 0;
  box-sizing: border-box;
  z-index: 100;

}

.about__text {
  width: 50%;
  font-size: 16px;
  letter-spacing: 0.2rem;
}


.about__title {
  font-size: 45px;
  margin-bottom: 70px;
  letter-spacing: 0.7rem;
  font-family: 'Cormorant Garamond';
  font-weight: 500;
}

.about__subtitle {
  font-size: 24px;
  color: #FF8017;
  margin-bottom: 70px;
  letter-spacing: 0.5rem;
  font-weight: 500;
  line-height: 2.75;
}

.about__body {
  font-size: 16px;
  line-height: 2;

}

.about__image {
  position: absolute;
  top: 0;
  right: -45px;
  width: 519px;
  height: 1080px;
  z-index: 1;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
}

.about {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 120px 0;
  max-width: 100%;
}

.about__inner {
  flex: 1;
}

.about__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .about {
    display: block;
    padding-top: 70px;
    padding-bottom: 0;
  }

  .about__image {
    position: static;
    width: auto;
    height: 270px;
  }

  .about__inner {
    padding-left: 30px;
  }

  .about__title {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .about__subtitle {
    margin-bottom: 40px;
  }

  .about__text {
    width: 100%;
    padding-bottom: 70px;
  }
}

.view-all-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
}

.view-all-wrap :hover {
  color: #FF8017;
}


.view-all-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: calc(100%);
  background-color: #fff;
}

.view-all-text {
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 1;
  background-color: #303030;
  padding-right: 4px;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

.view-all-arrow {
  position: relative;
  width: 50px;
  height: 1px;
  background-color: #fff;
}

.view-all-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.auto-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 531px;
}

.slider-track {
  display: flex;
  width: calc(14 * 25vw);
  animation: scrollSlider 60s linear infinite;
}

.slider-track img {
  width: 25vw;
  height: 531px;
  object-fit: cover;
  object-position: 4% center;
}

/* スライドアニメーション */
@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slide-caption {
  position: absolute;
  bottom: 30px;
  right: 5vw;
  color: white;
  z-index: 10;
}

.slide-caption-jp {
  font-size: 12px;
  margin-bottom: 4px;
  letter-spacing: 0.2rem;
}

.slide-caption-en {
  font-size: 16px;
  display: inline-block;
  padding-bottom: 2px;
  letter-spacing: 0.2rem;
  font-family: 'Cormorant Garamond';
  font-weight: 500;
}

.slide-caption-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
}

.slide-caption-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--text-color);
}

.slide-caption-en-arrow {
  position: relative;
  width: 100px;
  height: 1px;
  background-color: #fff;
}

.slide-caption-en-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .auto-slider {
    height: auto;
  }

  .slider-track {
    width: calc(14 * 50vw);
  }

  .slider-track img {
    width: 25vw;
    height: 180px;
    object-position: center;
  }

  .slide-caption {
    bottom: 16px;
    right: 16px;
  }

  .slide-caption-jp {
    font-size: 10px;
    margin-bottom: 2px;
    letter-spacing: 0.1rem;
  }

  .slide-caption-en {
    font-size: 14px;
    padding-bottom: 1px;
    letter-spacing: 0.1rem;
  }

  .slide-caption-en-arrow {
    width: 60px;
  }

  .slide-caption-en-arrow::after {
    width: 4px;
    height: 4px;
  }

  .slide-caption-wrap {
    gap: 8px;
  }
}

.section-line {
  height: 1px;
  background-color: var(--text-color);
  width: 100%;
  margin-bottom: 30px;
}

.feature__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  gap: 40px;
  flex-wrap: nowrap;
}

.feature__heading {
  max-width: 1200px;
  margin-left: 20px;
  margin: 0 auto;
  padding: 120px 5vw 100px;
}

.feature__title {
  font-size: 45px;
  letter-spacing: 0.2em;
  font-family: 'Cormorant Garamond';
  font-weight: 500;
}

.feature__subtitle {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.feature__image {
  width: 50%;
  flex-shrink: 0;
}

.feature__text {
  width: 45%;
}

.feature__topic {
  position: relative;
  font-size: 24px;
  letter-spacing: 0.5rem;
  padding-bottom: 20px;
  font-weight: 500;
}

.feature__description {
  font-size: 16px;
  letter-spacing: 0.2rem;
  line-height: 4;
}

.feature {
  margin-bottom: 100px;
}

.feature.reverse .feature__inner {
  flex-direction: row-reverse;
}

.image-frame img,
.image-frame2 img {
  display: block;
}

@media screen and (max-width: 768px) {
  .feature {
    margin-top: 0 !important;
    padding-top: 40px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .feature__heading {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .feature__title,
  .feature__subtitle {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .feature__inner {
    flex-direction: column !important;
    text-align: left;
    margin-top: 0%;
  }

  .feature__image,
  .feature__text {
    width: 100%;
  }

  .feature__image img {
    margin: 0 auto;
  }

  .feature__title {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
  }

  .feature__topic {
    font-size: 24px;
    letter-spacing: 0.5rem;
    padding-bottom: 20px;
    line-height: 1.75;
  }

  .feature__description {
    font-size: 16px;
    letter-spacing: 0.4rem;
    line-height: 3;
    margin-bottom: 0;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .mySwiper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

.app-line {
  padding: 0 5vw 70px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.app-line__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
  padding-bottom: 85px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.app-line__box {
  width: 40%;
}

.app-line__label {
  font-size: 14px;
  margin-top: 70px;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}

.app-line__title {
  font-size: 45px;
  margin-bottom: 24px;
  letter-spacing: 0.2em;
  font-family: 'Cormorant Garamond';
  font-weight: 500;
}

.app-line__desc {
  font-size: 16px;
  letter-spacing: 0.2em;
}

.divider {
  margin-top: 85px;
  width: 1px;
  height: 234px;
  background-color: #ffffff;
}

.line-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  gap: 10px;
}

.line-link :hover {
  color: #FF8017;
}

.line-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: calc(100%);
  background-color: #ffffff;
}

.line-link-text {
  font-size: 16px;
  color: #06C755;
  position: relative;
  background-color: #303030;
  padding-right: 4px;
  letter-spacing: 0.2rem;
}

.line-link-arrow {
  position: relative;
  width: 65px;
  height: 1px;
  background-color: #fff;
}

.line-link-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media (max-width: 768px) {
  .app-line {
    position: relative;
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    padding: 106px 0 70px;
  }

  .app-line__inner {
    display: block;
    padding: 70px 30px;
  }

  .app-line__label {
    margin-top: 0;
  }

  .app-line__box {
    width: 100%;
    text-align: center;
  }

  .divider {
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 70px 0;
  }
}

/* Footer */

.footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 0 5vw;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}


.footer__logo {
  height: 94px;
  width: 220px;
  align-self: auto;
  margin-left: 5px;
}

.footer__nav {
  display: flex;
  gap: 40px;
}

.footer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer__nav :hover {
  color: #FF8017;
}

.footer__icon {
  width: 20px;
}

.footer__copyright {
  font-size: 12px;
  color: #fff;
  margin-top: 100px;
  text-align: center;
  padding-bottom: 72px;
}

@media (max-width: 768px) {
  .footer__top {
    display: block;
  }

  .footer__logo {
    margin: 0 auto 40px;
  }

  .footer__nav {
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 0
  }

  .footer__nav a {
    width: 50%;
    text-align: center;
    margin-bottom: 40px;
  }

  .footer__nav a:nth-child(5) img,
  .footer__nav a:nth-child(6) img {
    width: 55px;
    height: auto;
    margin: 0 auto;
  }

  .footer__nav a:nth-child(5) a,
  .footer__nav a:nth-child(6) a {
    margin-bottom: 0;
  }

  .footer__copyright {
    margin-top: 70px;
    padding-bottom: 50px;
  }
}