*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark: #083559;
  --blue-mid: #217fa1;
  --blue-light: #61aec9;
  --orange-dark: #a5532d;
  --orange-mid: #b96344;
  --black: #111111;
  --main: #1a1414;
  --white: #ffffff;
  --gray: #e4e4e4;
  --gold: #837751;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: linear-gradient(
    0deg,
    rgb(184,207,225) 0%,
    rgb(184,207,225) 29.364%,
    rgb(255,228,219) 39.724%,
    rgb(249,227,205) 53.399%,
    rgb(242,242,204) 64.142%,
    rgb(189,221,232) 73.353%,
    rgb(255,255,255) 82.525%,
    rgb(255,255,255) 100%
  );
  min-height: 100vh;
  overflow-x: hidden;
}

a:hover { opacity: 0.8; }

.sp-only {display: none;}
.pc-only {display: block;}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 1000px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  clip-path: ellipse(85% 80% at 50% 20%);
  overflow: hidden;
}

.hero__bg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 8s ease-out forwards;
  transform-origin: center center;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.15); }
}

.hero__logo {
  position: absolute;
  z-index: 2;
  text-align: center;
  padding-top: 64px;
}

.hero__logo-img {
  width: clamp(300px, 35.2vw, 676px);
  height: auto;
}

.hero__brand {
  width: clamp(220px, 30%, 576px);
  height: auto;
  margin-top: 0;
}

/* ─── HERO TEXT ─── */
.hero__text {
  text-align: center;
  padding: 120px 11px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__text-sub {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
  white-space: nowrap;
}

.hero__text-main {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
}

/* ─── SECTION HEADER ─── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.section-header__icon {
  width: 49px;
  height: 49px;
}

.section-header__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.section-header__en {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.7;
}

.section-header__ja {
  font-family: 'Nanum Myeongjo';
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1.6px;
  line-height: 1.7;
}

.section-header__line {
  width: 60px;
  height: 1px;
  background: var(--black);
  opacity: 0.5;
}

/* ─── PLAN SECTIONS ─── */
.plans-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.plans-section {
  margin-bottom: 120px;
}

/* ─── PLAN CARD ─── */
.plan-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  display: flex;
  gap: 58px;
  align-items: center;
}

.plan-card--reverse {
  flex-direction: row-reverse;
}

.plan-card__content {
  flex: 0 0 542px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.plan-card__image {
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.plan-card__image--tall {
  height: 779px;
}

.plan-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-card__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card__title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.8;
}

.plan-card__title--blue { color: var(--blue-mid); }
.plan-card__title--darkblue { color: var(--blue-dark); }
.plan-card__title--orange { color: var(--orange-dark); }
.plan-card__title--mono { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--blue-dark); line-height: 1.7; }

.plan-card__tag-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 416px;
}

.plan-card__tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  white-space: nowrap;
}

.plan-card__tag--blue-light { background: var(--blue-light); }
.plan-card__tag--blue-dark  { background: var(--blue-dark); }
.plan-card__tag--orange     { background: var(--orange-mid); }

.plan-card__tag--ja {
}

.plan-card__desc {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--black);
}

/* ─── DETAIL BOX ─── */
.plan-card__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 2px solid currentColor;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.7;
  white-space: nowrap;
}

.detail-label--blue { color: var(--blue-mid); border-color: var(--blue-mid); }
.detail-label--blue-dark { color: var(--blue-dark); border-color: var(--blue-dark); }
.detail-label--orange { color: var(--orange-dark); border-color: var(--orange-mid); }

.detail-rows {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.detail-rows__keys {
  font-size: clamp(13px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
  flex-shrink: 0;
}

.detail-rows__vals {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
}

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: flex;
  width: 100%;
  max-width: 542px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 20px 40px 20px 0;
  border-radius: 100px;
  background: var(--black);
  border: 2px solid var(--black);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cta-btn.comingsoon {
  pointer-events: none;
  background: #C1C1C1;
  border: none;
  cursor: not-allowed;
}

.cta-btn--blue-mid {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
}

.cta-btn--blue-light {
  width: 90%;
  max-width: 442px;
  background: var(--blue-light);
  border-color: var(--blue-light);
}

.cta-btn__label {
  width: 100%;
  display: flex;
  margin: auto;
  justify-content: center;
  font-family: 'Nanum Myeongjo';
  font-size: clamp(16px, 2.3vw, 24px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.92px;
  line-height: 1.8;
}

.cta-btn.comingsoon .cta-btn__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.cta-btn.comingsoon .cta-btn__arrow {
  color: #C1C1C1;
}

.cta-btn__arrow {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}

.cta-btn__arrow--blue-mid { color: var(--blue-mid); }
.cta-btn__arrow--blue-light { color: var(--blue-light); }
.cta-btn__arrow--black {color: var(--black);}

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ─── DINING FULL-WIDTH IMAGE CARDS ─── */
.dining-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

.dining-card__img-wrap {
  width: 1080px;
  max-width: 100%;
  height: 810px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.dining-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dining-card__info {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 43px 47px 37px;
  width: 1080px;
  max-width: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dining-card__info--wide {
  width: 1053px;
}

.dining-card__info-left {
  flex: 0 0 542px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dining-card__info-right {
  flex: 0 0 415px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── COMING SOON PLACEHOLDER ─── */
.coming-soon-wrap {
  position: relative;
  width: 1080px;
  max-width: 100%;
  height: 810px;
  border-radius: 8px;
  overflow: hidden;
}

.coming-soon-wrap img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.9);
  padding: 32px 48px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.coming-soon-badge__en {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 700;
  color: var(--black);
  display: block;
}

.coming-soon-badge__ja {
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: 700;
  color: #555;
  margin-top: 8px;
  display: block;
}

/* ─── FOOTNOTES ─── */
.footnotes {
  background: var(--white);
  padding: 42px 8px;
}

.footnotes-ctn {
  width: 100%;
  max-width: 520px;
  margin: auto;
}

.footnotes p {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--black);
}

.footnotes a {
  color: inherit;
  text-decoration: underline;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--gold);
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__logo-mark {
  width: clamp(200px, 18.2%, 341px);
  height: auto;
}

.footer__logo-name {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.footer__logo-divider {
  width: 1px;
  height: 22px;
  background: var(--white);
  opacity: 0.7;
}

.footer__link {
  font-size: clamp(13px, 1.04vw, 20px);
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  line-height: 1.8;
  text-align: center;
}

.footer__link:hover { text-decoration: underline; }

.footer__copyright {
  background: var(--gray);
  padding: 16px 20px;
  text-align: center;
  width: 100%;
}

.footer__copyright p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 0.83vw, 16px);
  font-weight: 500;
  color: #747474;
  line-height: 1.7;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top__arrow {
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 24px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .back-to-top__arrow { font-size: 18px; }
}

/* ─── GSAP INITIAL STATES ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in {
  opacity: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1280px) {
  .plans-wrapper { padding: 60px 24px; }

  .plan-card {
    gap: 32px;
    padding: 32px;
  }

  .plan-card__content { flex: 1; min-width: 0; }
  .plan-card__image { flex: 0 0 45%; height: 400px; }
  .plan-card__image--tall {height: 100%;}

  .dining-card__img-wrap { height: 56vw; min-height: 300px; }
  .dining-card__info { width: 100%; }
  .dining-card__info--wide { width: 100%; }
  .coming-soon-wrap { height: 56vw; min-height: 300px; }
}

@media (max-width: 900px) {
  
  .hero { clip-path: ellipse(90% 80% at 50% 20%); height: auto; min-height: 400px;}
  .hero__text-sub { white-space: normal; }

  .plan-card {
    flex-direction: column !important;
    gap: 24px;
    padding: 24px;
  }

  .plan-card--reverse { flex-direction: column !important; }

  .plan-card__content { flex: none; width: 100%; }
  .plan-card__image {
    flex: none;
    width: 100%;
    height: 56vw;
    min-height: 220px;
    order: -1;
  }
  .plan-card__image--tall { height: 56vw; }

  .plan-card__tag-wrap { max-width: 100%; }

  .cta-btn {
    gap: 32px;
    padding: 18px 16px 20px 40px;
    justify-content: space-between;
  }

.hero__text {
    padding: 0;
}

  .dining-card__info {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }

  .dining-card__info-left,
  .dining-card__info-right { flex: none; width: 100%; }

  .detail-rows__vals { font-size: 13px; }

  .section-header__line { width: 40px; }
}

@media (max-width: 600px) {
  .sp-only { display: block;}
  .pc-only { display: none;}
  .hero { clip-path: ellipse(140% 80% at 50% 20%); height: auto; min-height: 400px;}
  .hero__bg { position: relative; width: 300%; right: 100px; }
  .hero__logo { padding-top: 40px; }
  .hero__logo-img {width: 90%;}

  .plans-wrapper { padding: 40px 16px; }

  .plan-card { padding: 20px; border-radius: 12px; }
  .plan-card__image { border-radius: 12px; }

  .section-header__en { font-size: 18px; }
  .section-header__ja { font-size: 14px; }

  .plan-card__title { font-size: 20px; }

  .cta-btn {
    padding: 6px 12px;
    height: auto;
    gap: 16px;
  }

.hero__text {
    padding: 60px 0;
}

.detail-label {
    padding: 8px 16px;
}

.plan-card__tag {
    padding: 10px;
}

.cta-btn--blue-light {
}

  .cta-btn__label { font-size: 14px; letter-spacing: 1px; }
  .cta-btn__arrow { width: 44px; height: 44px; font-size: 18px; }

  .detail-rows {gap: 8px;}
  .detail-rows__keys {gap: 16px;}

  .footer { padding: 40px 16px; }
  .footer__link { font-size: 13px; }
  .footer__logo-name { flex-wrap: wrap; justify-content: center; }
}
