@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sawarabi Gothic", sans-serif;
  color: #2b2118;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page {
  position: relative;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-group.is-in > * {
  opacity: 1;
  transform: none;
}

.reveal-group.is-in > *:nth-child(1) {
  transition-delay: 0s;
}

.reveal-group.is-in > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-group.is-in > *:nth-child(3) {
  transition-delay: 0.24s;
}

.reveal-group.is-in > *:nth-child(4) {
  transition-delay: 0.36s;
}

.reveal-group.is-in > *:nth-child(5) {
  transition-delay: 0.48s;
}

.reveal-group.is-in > *:nth-child(6) {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal, .reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media (max-width: 991px) {
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block;
  }
}
.section-heading {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: 1.28px;
  color: #2b2118;
}
@media (max-width: 991px) {
  .section-heading {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
.section-heading {
  margin: 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 32px;
  align-items: start;
}
.feature-grid--two {
  row-gap: 0;
}
@media (max-width: 991px) {
  .feature-grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .feature-grid--two {
    row-gap: 32px;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
}
.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover .feature-card__img img {
  transform: scale(1.04);
}
.feature-card__title {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #fea900;
}
@media (max-width: 991px) {
  .feature-card__title {
    font-size: 18px;
  }
}
.feature-card__title {
  margin: 0;
  font-size: 20px;
}
.feature-card__desc {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
  color: #2b2118;
}
@media (max-width: 991px) {
  .feature-card__desc {
    font-size: 15px;
  }
}
.feature-card__desc {
  margin: 0;
  font-size: 16px;
}

.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #fea900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(43, 33, 24, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(43, 33, 24, 0.34);
}
.to-top__arrow {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 auto;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(2px) rotate(-45deg);
}
@media (max-width: 991px) {
  .to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/1080;
  max-height: 100vh;
  overflow: hidden;
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero {
    aspect-ratio: 375/584;
  }
}
.hero__decor-1, .hero__decor-2, .hero__decor-3, .hero__decor-4 {
  position: absolute;
  z-index: 2;
}
.hero__decor-1 {
  top: 0;
  left: 0;
}
.hero__decor-2 {
  bottom: 0;
  right: 0;
}
.hero__decor-3 {
  top: 0;
  right: 0;
}
.hero__decor-4 {
  bottom: 0;
  left: 0;
}
.hero__media, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media img {
  object-fit: cover;
  z-index: 1;
}
.hero__tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgba(43, 33, 24, 0.55) 78%, rgba(43, 33, 24, 0.78) 100%);
}
.hero__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto;
}
.hero__deco--tl {
  top: 0;
  left: 0;
  width: 31.875%;
}
.hero__deco--tr {
  top: -1.87%;
  right: 0;
  width: 16.67%;
}
.hero__deco--br {
  bottom: -4.37%;
  right: 0;
  width: 56.25%;
}
@media (max-width: 991px) {
  .hero__deco--tl {
    width: 42%;
  }
  .hero__deco--tr {
    width: 26%;
  }
  .hero__deco--br {
    width: 70%;
  }
}
.hero__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8.5%;
  z-index: 3;
  text-align: center;
}
@media (max-width: 991px) {
  .hero__inner {
    bottom: 16%;
  }
}
.hero__eyebrow {
  margin: 0 0 0.4em;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: clamp(13px, 1.28vw, 24.6px);
  letter-spacing: 0.15em;
  color: #fea900;
}
.hero__eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.hero__eyebrow span::before, .hero__eyebrow span::after {
  content: "";
  width: 59px;
  height: 2px;
  background: #fea900;
}
@media (max-width: 991px) {
  .hero__eyebrow {
    font-size: 12px;
  }
  .hero__eyebrow span {
    gap: 12px;
  }
  .hero__eyebrow span::before, .hero__eyebrow span::after {
    width: 32px;
  }
}
.hero__title {
  margin: 0;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: clamp(35px, 3.6vw, 69px);
  letter-spacing: 4.925px;
  line-height: normal;
}
@media (max-width: 991px) {
  .hero__title {
    letter-spacing: 2.494px;
  }
}
.hero__sub {
  margin: 0.5em 0 0;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: clamp(13px, 1.15vw, 22px);
  letter-spacing: 2.463px;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991px) {
  .hero__sub {
    letter-spacing: 1.247px;
  }
}
.hero__decor-1, .hero__decor-2, .hero__decor-3, .hero__decor-4, .hero__eyebrow, .hero__title, .hero__sub {
  will-change: transform, opacity;
}

html.js .hero:not(.is-ready) .hero__decor-1,
html.js .hero:not(.is-ready) .hero__decor-2,
html.js .hero:not(.is-ready) .hero__decor-3,
html.js .hero:not(.is-ready) .hero__decor-4,
html.js .hero:not(.is-ready) .hero__eyebrow,
html.js .hero:not(.is-ready) .hero__title,
html.js .hero:not(.is-ready) .hero__sub {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html.js .hero .hero__decor-1,
  html.js .hero .hero__decor-2,
  html.js .hero .hero__decor-3,
  html.js .hero .hero__decor-4,
  html.js .hero .hero__eyebrow,
  html.js .hero .hero__title,
  html.js .hero .hero__sub {
    opacity: 1 !important;
  }
}
.intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
  color: #ffffff;
}
@media (max-width: 991px) {
  .intro {
    padding: 72px 24px;
  }
}
.intro__media, .intro__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.intro__media img {
  object-fit: cover;
  object-position: center bottom;
}
.intro__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.intro__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.intro__text {
  margin: 0;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.info {
  position: relative;
  background: #fea900;
  padding: 80px 20px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .info {
    padding: 80px 20px 56px;
  }
}
.info__watermark {
  position: absolute;
  top: 80px;
  left: 1vw;
  height: calc(100% - 96px);
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 9vw, 200px);
  letter-spacing: 14px;
  line-height: 1.7;
  color: transparent;
  user-select: none;
  pointer-events: none;
  -webkit-text-stroke-width: 7.15px;
  -webkit-text-stroke-color: #FFB520;
}
@media (max-width: 991px) {
  .info__watermark {
    position: absolute;
    writing-mode: horizontal-tb;
    height: auto;
    width: 100%;
    text-align: center;
    font-size: 42px;
    line-height: 1.7;
    letter-spacing: 2.965px;
    -webkit-text-stroke-width: 2.12px;
    -webkit-text-stroke-color: #FFB520;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.info__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 991px) {
  .info__inner {
    gap: 48px;
  }
}
.info__block--features {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
}
@media (max-width: 991px) {
  .info__block--features {
    padding: 24px;
    border-radius: 8px;
  }
}
.info__notes {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
  color: #2b2118;
}
@media (max-width: 991px) {
  .info__notes {
    font-size: 15px;
  }
}
.info__notes {
  margin: 32px 0 0;
}
@media (max-width: 991px) {
  .info__notes {
    margin-top: 20px;
  }
}

.spec-table {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 40px;
}
@media (max-width: 991px) {
  .spec-table {
    padding: 24px;
    border-radius: 8px;
  }
}

.spec {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}
.spec + .spec {
  margin-top: 24px;
}
.spec--tall {
  align-items: flex-start;
}
.spec__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 120px;
  width: 120px;
  padding: 4px 8px;
  background: #fea900;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
  text-align: center;
}
.spec__value {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
  color: #2b2118;
}
@media (max-width: 991px) {
  .spec__value {
    font-size: 15px;
  }
}
.spec__value {
  flex: 1;
  min-width: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .spec__value {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .spec {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .spec + .spec {
    margin-top: 20px;
  }
  .spec--tall {
    align-items: flex-start;
  }
  .spec__label {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    font-size: 14px;
  }
}

.other {
  background: #f6f6f6;
  padding: 80px 20px;
}
@media (max-width: 991px) {
  .other {
    padding: 56px 20px;
  }
}
.other__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.equipment {
  position: relative;
  background: #fafafa;
  padding: 80px 20px 120px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .equipment {
    padding: 56px 20px 80px;
  }
}
.equipment::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  transform: rotateY(180deg);
  aspect-ratio: 1920/1066;
  background: url("../img/deco-wave.png") no-repeat right bottom/cover;
  z-index: 1;
  pointer-events: none;
}
.equipment__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.equipment__visual {
  position: relative;
}
.equipment__img {
  width: 100%;
  aspect-ratio: 1080/608;
  border-radius: 16px;
  object-fit: cover;
}
.equipment__list {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(580px, 55%);
  padding: 24px;
  background: rgba(43, 33, 24, 0.7);
  border-radius: 16px 0 16px 0;
  color: #ffffff;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
}
@media (max-width: 991px) {
  .equipment__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .equipment__img {
    aspect-ratio: 16/9;
    border-radius: 8px;
  }
  .equipment__list {
    position: static;
    width: 100%;
    border-radius: 0;
    font-size: 16px;
  }
}

.list__notes {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
  color: #2b2118;
}
@media (max-width: 991px) {
  .list__notes {
    font-size: 15px;
  }
}
.list__notes {
  width: fit-content;
  max-width: 100%;
  margin: 40px auto 0;
}
@media (max-width: 991px) {
  .list__notes {
    width: 100%;
  }
}
.list__notes li {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
}
@media (max-width: 991px) {
  .list__notes li {
    font-size: 12px;
    letter-spacing: -0.06px;
    padding-left: 12px;
  }
}
.list__notes li::before {
  position: absolute;
  content: "※";
  left: 0;
}

.footer__main {
  background: #2b2118;
  padding: 64px 20px 24px;
}
@media (max-width: 991px) {
  .footer__main {
    padding: 48px 24px 24px;
  }
}
.footer__box {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (max-width: 991px) {
  .footer__box {
    gap: 32px;
  }
}
.footer__logo {
  display: block;
}
.footer__logo img {
  width: 160px;
  height: auto;
  margin-inline: auto;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__link {
  position: relative;
  padding: 0 29px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #ffffff;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.6);
}
.footer__link:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.6);
}
.footer__copy {
  margin: 16px 0;
  padding-inline: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  color: #2b2118;
}
@media (max-width: 991px) {
  .footer__copy {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer__links {
    flex-direction: column;
    gap: 20px;
  }
  .footer__link {
    font-size: 16px;
    padding: 0;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
  .footer__link::before, .footer__link:last-child::after {
    display: none;
  }
}