/* ============================================
   SEAM 特別採用LP - Luxury Stylesheet
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #ffffff;
  --cream: #f5f2ed;
  --light: #fafafa;
  --gold: #c9a96e;
  --gold-light: #e4c99a;
  --gold-dark: #a8854a;
  --text-primary: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: rgba(255,255,255,0.55);
  --text-muted-dark: rgba(0,0,0,0.45);
  --border-gold: rgba(201,169,110,0.35);
  --border-light: rgba(255,255,255,0.12);
  --border-dark: rgba(0,0,0,0.12);

  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;

  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1000px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-serif);
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: clamp(40px, 6vw, 70px);
  letter-spacing: 0.05em;
}

.section-title--dark {
  color: var(--text-dark);
}

.sp-only {
  display: none;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { animation-delay: 0.15s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.30s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.45s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.60s; transition-delay: 0.4s; }
.delay-5 { animation-delay: 0.75s; transition-delay: 0.12s; }
.delay-6 { animation-delay: 0.90s; transition-delay: 0.15s; }
.delay-7 { animation-delay: 1.05s; transition-delay: 0.18s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-weight: 400;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 3px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before { opacity: 1; }

.btn--lg {
  padding: 18px 36px;
  font-size: 14px;
  letter-spacing: 0.12em;
  min-width: 200px;
}

.btn--xl {
  padding: 22px 40px;
  font-size: 15px;
  letter-spacing: 0.1em;
  min-width: 240px;
  width: 100%;
  max-width: 340px;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.btn-label {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

.btn-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.65;
}

/* Button Variants */
.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover {
  background: var(--cream);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn--secondary:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 500;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--cream);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
  padding: 10px 20px;
  font-size: 12px;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.35);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.btn--outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* ---- SECTION BASES ---- */
.section--dark {
  background: var(--dark);
  padding: var(--section-pad) 0;
}

.section--light {
  background: var(--light);
  padding: var(--section-pad) 0;
}

.section--cream {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.section--black {
  background: var(--black);
  padding: var(--section-pad) 0;
}

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  font-family: var(--font-serif);
  font-weight: 400;
  text-transform: uppercase;
}

.badge--alert {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.badge--ended {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.55);
}

/* ============================================
   SECTION 1: FIRST VIEW
   ============================================ */
.fv {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 80px 0 80px;
}

/* Luxury dark background with subtle texture */
.fv__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #111111 40%, #0a0a0a 100%);
}

.fv__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Decorative gold lines */
.fv__texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.04) 50%, transparent 100%);
  background-size: 600px 100%;
}

/* モデル写真: 右半分に縦長で配置 */
.fv__model {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.fv__model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.88) contrast(1.04);
}

/* 左から右へのグラデーション（写真との境界をなじませる） */
.fv__model-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    rgba(10,10,10,0.6) 25%,
    rgba(10,10,10,0.1) 60%,
    transparent 100%
  );
}

.fv__content {
  position: relative;
  z-index: 2;
  width: 56%;
  max-width: 620px;
  padding: 0 clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}

.fv__badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}

.fv__eyebrow {
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 22px;
  font-family: var(--font-sans);
}

.fv__title {
  margin-bottom: 22px;
}

.title-en {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(52px, 13vw, 100px);
  font-weight: 300;
  letter-spacing: 0.25em;
  line-height: 1;
  color: var(--white);
}

.title-ja {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(18px, 3.5vw, 28px);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 10px;
  padding-left: 0.5em; /* optical balance for letter-spacing */
}

.fv__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  line-height: 1.7;
}

.subtitle-small {
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.3em;
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.5);
}

/* Ended notice */
.fv__ended-notice {
  margin-bottom: 28px;
}

.ended-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.8vw, 15px);
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 11px 22px;
  background: rgba(255,255,255,0.03);
  font-weight: 300;
}

.ended-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #666;
  display: inline-block;
  flex-shrink: 0;
}

/* Main copy */
.fv__copy {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 34px;
  line-height: 1.6;
}

/* Conditions strip */
.fv__conditions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 42px;
  border: 1px solid var(--border-gold);
  padding: 16px 24px;
  background: rgba(201,169,110,0.04);
  width: 100%;
}

.condition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 20px;
  gap: 4px;
}

.condition-divider {
  width: 1px;
  background: var(--border-gold);
  margin: 4px 0;
  align-self: stretch;
}

.condition-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 300;
}

.condition-value {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.8vw, 20px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* CTA buttons */
.fv__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  margin-bottom: 40px;
}

/* Scroll hint */
.fv__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  border-top: 1px solid var(--border-gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta__inner {
  display: flex;
  gap: 12px;
  padding: 14px clamp(16px, 5vw, 40px);
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SECTION 2: LIMITED
   ============================================ */
.section-limited {
  position: relative;
}

.section-limited::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.limited-body {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

.limited-body p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.8);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}

.limited-body p:last-child {
  margin-bottom: 0;
}

.limited-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  font-size: 13px;
  letter-spacing: 0.15em;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-weight: 300;
}

/* ============================================
   CATCH COPY: HEAVEN FOR HAIRCARE
   ============================================ */
.section-heaven {
  background: var(--black);
  padding: clamp(80px, 14vw, 160px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* 背景の大きなゴールドグラデーション光 */
.section-heaven::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: 70vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* 上下のゴールドライン */
.section-heaven::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
}

.heaven__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 60px);
}

.heaven__sub {
  font-family: var(--font-serif);
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 36px;
  font-weight: 300;
  font-style: italic;
}

.heaven__copy {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5.5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.heaven__copy em {
  font-style: normal;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

/* em の下にゴールドの下線 */
.heaven__copy em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.heaven__detail {
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.5);
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ---- Limited Reason Cards ---- */
.limited-reason {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 48px;
}

.reason-card {
  display: flex;
  gap: clamp(24px, 4vw, 44px);
  align-items: flex-start;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 44px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid var(--gold);
  transition: var(--transition);
}

.reason-card:hover {
  background: rgba(255,255,255,0.055);
  border-left-color: var(--gold-light);
}

.reason-card__icon {
  width: clamp(36px, 5vw, 48px);
  height: clamp(36px, 5vw, 48px);
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 4px;
}

.reason-card__icon svg {
  width: 100%;
  height: 100%;
}

.reason-card__body {
  flex: 1;
}

.reason-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.reason-card__text {
  font-size: clamp(14px, 1.8vw, 15px);
  color: rgba(255,255,255,0.55);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.limited-notice {
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.limited-notice p {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 300;
  line-height: 2.1;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ============================================
   SECTION 3: EMPATHY
   ============================================ */
.section-empathy .section-title--dark {
  text-align: center;
}

.section-empathy .section-label {
  text-align: center;
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 800px;
  margin: 0 auto;
}

.empathy-item {
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
  border: 1px solid var(--border-dark);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: var(--transition);
}

.empathy-item:hover {
  background: var(--cream);
}

.empathy-item__icon {
  width: 36px;
  height: 36px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.empathy-item__icon svg {
  width: 100%;
  height: 100%;
}

.empathy-item p {
  font-size: clamp(14px, 1.8vw, 15px);
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ============================================
   ROOM PHOTOS SECTION
   ============================================ */
.section-rooms {
  padding-top: var(--section-pad);
  padding-bottom: 0;
}

.section-rooms .container {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.rooms-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.room-item {
  position: relative;
  overflow: hidden;
}

.room-item__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  display: block;
}

.room-item:hover .room-item__photo img {
  transform: scale(1.04);
}

.room-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 3vw, 28px) clamp(20px, 3vw, 32px);
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.room-item__store {
  font-family: var(--font-serif);
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 300;
  text-transform: uppercase;
}

.room-item__desc {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.room-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 5px 12px;
  background: rgba(201,169,110,0.08);
  font-family: var(--font-sans);
  font-weight: 300;
  margin-top: 4px;
  backdrop-filter: blur(4px);
}

/* ============================================
   GINZA SOLD OUT SECTION
   ============================================ */
.section-ginza {
  position: relative;
  background: var(--black);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.ginza__photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0.22;
  filter: grayscale(60%);
}

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

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

.ginza__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.ginza__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 60px);
  text-align: center;
}

.ginza__soldout-badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(11px, 1.5vw, 13px);
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 24px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  text-transform: uppercase;
  position: relative;
}

/* 斜線オーバーレイ */
.ginza__soldout-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  transform: rotate(-3deg);
}

.ginza__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 10px;
}

.ginza__sub {
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  margin-bottom: 28px;
}

.ginza__text {
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.55);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.ginza__closed-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 1.5vw, 13px);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 28px;
  font-weight: 300;
}

.ginza__closed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================
   HONSHA BLOCK (footer上)
   ============================================ */
.honsha-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 60px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.honsha-block__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.honsha-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.8s ease;
}

.honsha-block:hover .honsha-block__photo img {
  transform: scale(1.03);
}

.honsha-block__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.honsha-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 60px) clamp(28px, 4vw, 52px);
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.07);
}

.honsha-block__label {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 300;
  font-family: var(--font-serif);
  margin-bottom: 18px;
  display: block;
}

.honsha-block__copy {
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.6);
  line-height: 2.1;
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ============================================
   SECTION 4: VALUE
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.value-card {
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 44px);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.value-card:hover::after { width: 100%; }
.value-card:hover { background: var(--dark-3); }

.value-card__number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.value-card__title span {
  color: var(--gold);
}

.value-card__text {
  font-size: clamp(14px, 1.8vw, 15px);
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.value-card__line {
  width: 30px;
  height: 1px;
  background: var(--border-gold);
  margin-top: 22px;
}

/* ============================================
   SECTION 5: CONDITIONS
   ============================================ */
.conditions-table {
  max-width: 700px;
  margin: 0 auto 30px;
  border-top: 1px solid var(--border-dark);
}

.conditions-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dark);
  gap: 24px;
  align-items: center;
}

.conditions-row__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted-dark);
  font-weight: 300;
  font-family: var(--font-sans);
}

.conditions-row__value {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.value-highlight {
  color: var(--gold-dark);
  font-size: clamp(58px, 16vw, 88px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}

/* 中サイズバリアント：指名歩合・有給など */
.value-highlight--md {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.value-highlight--md strong {
  font-size: clamp(42px, 10vw, 64px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.conditions-row__note {
  display: block;
  font-size: clamp(12px, 1.5vw, 13px);
  color: var(--text-muted-dark);
  letter-spacing: 0.15em;
  font-weight: 300;
  font-family: var(--font-sans);
  margin-top: 4px;
}

/* シェアサロンプラン行 */
.conditions-row--share {
  background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, rgba(201,169,110,0.02) 100%);
  border-left: 2px solid var(--gold);
  padding-left: clamp(16px, 3vw, 28px);
}

.share-plan-headline {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 18px;
}

.share-plan-price {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.share-plan-price__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.share-plan-price__num {
  font-family: var(--font-serif);
  font-size: clamp(38px, 9vw, 62px);
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: 0.02em;
}

.share-plan-price__num small {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.share-plan-price__label {
  font-size: clamp(11px, 1.4vw, 13px);
  color: var(--text-muted-dark);
  letter-spacing: 0.2em;
  font-weight: 300;
  font-family: var(--font-sans);
}

.share-plan-price__plus {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  color: rgba(0,0,0,0.25);
  font-weight: 300;
  align-self: center;
  margin-top: -10px;
}

.share-plan-note {
  font-size: clamp(12px, 1.5vw, 13px) !important;
  color: rgba(0,0,0,0.45) !important;
  letter-spacing: 0.12em;
  border-top: 1px solid rgba(201,169,110,0.2);
  padding-top: 10px;
  margin-top: 4px;
}

.conditions-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted-dark);
  letter-spacing: 0.1em;
  font-weight: 300;
}

/* ============================================
   SECTION 6: CAREER
   ============================================ */
.career-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.career-card {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 38px);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: var(--transition);
}

.career-card:hover {
  background: var(--dark-3);
  border-color: var(--border-gold);
}

.career-card__tag {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 14px;
}

.career-card__text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ============================================
   SECTION 7: LOCATIONS
   ============================================ */
.section-locations .section-label,
.section-locations .section-title--dark {
  text-align: center;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

/* 写真付きカード */
.location-card {
  border: 1px solid var(--border-dark);
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.location-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* 写真エリア */
.location-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.location-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
  display: block;
}

.location-card:hover .location-card__photo img {
  transform: scale(1.04);
}

/* 写真下部のグラデーションオーバーレイ */
.location-card__photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,255,255,0.55), transparent);
  pointer-events: none;
}

/* テキスト・ボタンエリア */
.location-card__body {
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
}

.location-card__city {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.2em;
  line-height: 1;
}

.location-card__name {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  font-weight: 300;
  margin-bottom: 4px;
}

.location-card__copy {
  font-size: clamp(13px, 1.6vw, 14px);
  color: rgba(0,0,0,0.5);
  line-height: 1.9;
  font-weight: 300;
  flex: 1;
}

/* location card ボタン群 */
.location-card__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.location-card__ig-note {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.38);
  font-weight: 300;
  font-family: var(--font-sans);
  line-height: 1.7;
  text-align: center;
}

.location-card__ig-note small {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.28);
}

.location-ended {
  text-align: center;
}

.ended-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.45);
  border: 1px solid rgba(0,0,0,0.12);
  padding: 10px 24px;
  background: rgba(0,0,0,0.03);
  font-weight: 300;
}

.ended-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================
   SECTION 8: DAILY FLOW
   ============================================ */
.flow-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border-gold), transparent);
}

.flow-item {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-item__time {
  width: 50px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 300;
  padding-top: 4px;
  flex-shrink: 0;
  text-align: center;
}

.flow-item__content {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-left: 14px;
  position: relative;
}

.flow-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--dark);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.flow-item__text h4 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.flow-item__text p {
  font-size: clamp(14px, 1.8vw, 15px);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================
   SECTION 9: FAQ
   ============================================ */
.section-faq .section-label,
.section-faq .section-title--dark {
  text-align: center;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-dark);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-item__icon span {
  position: absolute;
  background: var(--gold-dark);
  transition: var(--transition);
}

.faq-item__icon span:nth-child(1) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-item__icon span:nth-child(2) {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon span:nth-child(2) {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: clamp(14px, 1.8vw, 15px);
  color: rgba(0,0,0,0.55);
  line-height: 1.9;
  font-weight: 300;
  padding: 0 28px 0 0;
}

/* ============================================
   SECTION 10: FINAL CTA
   ============================================ */
.section-finalcta {
  position: relative;
  overflow: hidden;
}

.section-finalcta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.5), transparent);
}

/* Large decorative "S" */
.section-finalcta::after {
  content: 'SEAM';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(180px, 30vw, 320px);
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.3em;
}

.finalcta__label {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 400;
}

.finalcta__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.finalcta__sub {
  text-align: center;
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  line-height: 2;
  font-weight: 300;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.finalcta__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.finalcta__ended {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.ended-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 24px;
  font-weight: 300;
}

.ended-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  flex-shrink: 0;
}

/* LINE note & IG links in final CTA */
.finalcta__line-note {
  text-align: center;
  font-size: clamp(12px, 1.5vw, 13px);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em;
  font-weight: 300;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.finalcta__ig-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.ig-link {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.8vw, 15px);
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 300;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 3px;
  transition: var(--transition);
}

.ig-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================ */
/* ============================================
   RESPONSIVE — TABLET & MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

  .sp-only { display: block; }

  :root {
    --section-pad: 64px;
  }

  /* 共通: コンテナー左右パディング */
  .container {
    padding: 0 20px;
  }

  /* 共通: セクションラベル */
  .section-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    margin-bottom: 14px;
  }

  /* 共通: セクションタイトル */
  .section-title {
    font-size: 26px;
    line-height: 1.55;
    margin-bottom: 36px;
    letter-spacing: 0.04em;
  }

  /* ===== FV ===== */
  .fv {
    padding: 64px 0 80px;
    min-height: 100svh;
    justify-content: center;
  }

  /* スマホ: モデル写真を全画面背景に */
  .fv__model {
    width: 100%;
    opacity: 0.28;
    filter: grayscale(20%);
  }

  .fv__model-gradient {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.2) 40%,
      rgba(10,10,10,0.75) 100%
    );
  }

  .fv__content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .fv__badge {
    justify-content: center;
  }

  .fv__cta {
    align-items: center;
  }

  .fv__badge {
    gap: 8px;
    margin-bottom: 20px;
  }

  .badge {
    font-size: 9px;
    letter-spacing: 0.18em;
    padding: 5px 10px;
  }

  .fv__eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    margin-bottom: 16px;
  }

  .title-en {
    font-size: 72px;
    letter-spacing: 0.18em;
  }

  .title-ja {
    font-size: 17px;
    letter-spacing: 0.4em;
    margin-top: 8px;
  }

  .fv__subtitle {
    font-size: 17px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .subtitle-small {
    font-size: 13px;
    letter-spacing: 0.22em;
    margin-top: 6px;
  }

  .fv__ended-notice {
    margin-bottom: 20px;
  }

  .ended-bar {
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 9px 16px;
    gap: 8px;
    text-align: left;
  }

  .fv__copy {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    line-height: 1.65;
  }

  /* 条件バー: 縦積みリスト */
  .fv__conditions {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border: none;
    background: none;
    margin-bottom: 32px;
  }

  .condition-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border-gold);
    background: rgba(201,169,110,0.04);
    border-left: 2px solid var(--border-gold);
    margin-bottom: 2px;
  }

  .condition-item:last-child {
    border-bottom: 1px solid var(--border-gold);
  }

  .condition-divider { display: none; }

  .condition-label {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .condition-value {
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  /* FV CTA */
  .fv__cta {
    max-width: 100%;
    gap: 10px;
    margin-bottom: 32px;
  }

  .fv__cta .btn--lg {
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  /* ===== FLOATING CTA ===== */
  .floating-cta__inner {
    flex-direction: row;
    gap: 8px;
    padding: 12px 16px;
  }

  .floating-cta__inner .btn {
    flex: 1;
    font-size: 12px;
    padding: 11px 10px;
    letter-spacing: 0.06em;
  }

  /* ===== LIMITED ===== */
  .limited-body p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
  }

  .reason-card {
    flex-direction: row;
    gap: 16px;
    padding: 20px 16px;
    align-items: flex-start;
  }

  .reason-card__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 3px;
  }

  .reason-card__title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .reason-card__text {
    font-size: 13px;
    line-height: 1.85;
  }

  .limited-notice {
    padding: 20px 16px;
    margin-bottom: 28px;
  }

  .limited-notice p {
    font-size: 14px;
    line-height: 2;
  }

  .tag {
    font-size: 11px;
    padding: 7px 14px;
    letter-spacing: 0.12em;
  }

  /* ===== HEAVEN ===== */
  .section-heaven {
    padding: 72px 0;
  }

  .heaven__sub {
    font-size: 11px;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
  }

  .heaven__copy {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
  }

  .heaven__detail {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  /* ===== EMPATHY ===== */
  .empathy-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .empathy-item {
    flex-direction: row;
    gap: 16px;
    padding: 18px 16px;
    text-align: left;
    align-items: center;
  }

  .empathy-item__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .empathy-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ===== ROOM GALLERY ===== */
  .section-rooms .container {
    margin-bottom: 28px;
  }

  .rooms-gallery {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .room-item__photo {
    aspect-ratio: 4 / 3;
  }

  .room-item__desc {
    font-size: 15px;
  }

  /* ===== VALUE ===== */
  .value-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .value-card {
    padding: 28px 20px;
  }

  .value-card__number {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .value-card__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .value-card__text {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
  }

  /* ===== CONDITIONS ===== */
  .conditions-table {
    margin-bottom: 24px;
  }

  .conditions-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }

  .conditions-row__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
  }

  .conditions-row__value {
    font-size: 17px;
  }

  .value-highlight {
    font-size: 52px;
  }

  .value-highlight--md {
    font-size: 24px;
  }

  .value-highlight--md strong {
    font-size: 40px;
  }

  .share-plan-headline {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .share-plan-price {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .share-plan-price__num {
    font-size: 36px;
  }

  .share-plan-price__label {
    font-size: 11px;
  }

  .share-plan-price__plus {
    font-size: 22px;
    margin-top: -6px;
  }

  /* ===== CAREER ===== */
  .career-cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .career-card {
    padding: 24px 20px;
  }

  .career-card__tag {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .career-card__text {
    font-size: 15px;
    line-height: 1.85;
  }

  /* ===== GINZA SOLD OUT ===== */
  .section-ginza {
    padding: 64px 0;
  }

  .ginza__photos {
    grid-template-columns: 1fr 1fr;
    opacity: 0.18;
  }

  .ginza__soldout-badge {
    font-size: 10px;
    letter-spacing: 0.4em;
    padding: 7px 18px;
    margin-bottom: 20px;
  }

  .ginza__title {
    font-size: 36px;
    letter-spacing: 0.15em;
  }

  .ginza__text {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .ginza__closed-bar {
    font-size: 11px;
    letter-spacing: 0.15em;
    padding: 9px 18px;
  }

  /* ===== LOCATIONS ===== */
  .location-cards {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .location-card__photo {
    aspect-ratio: 16 / 9;
  }

  .location-card__photo img {
    object-position: center 20%;
  }

  .location-card__body {
    padding: 22px 18px;
    gap: 8px;
  }

  .location-card__city {
    font-size: 30px;
    letter-spacing: 0.18em;
  }

  .location-card__name {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .location-card__copy {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(0,0,0,0.6);
  }

  .location-card__btns {
    gap: 8px;
    margin-top: 6px;
  }

  .location-card__ig-note {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* ===== FLOW ===== */
  .flow-timeline {
    padding-left: 0;
  }

  .flow-timeline::before {
    left: 34px;
  }

  .flow-item {
    margin-bottom: 32px;
  }

  .flow-item__time {
    width: 34px;
    font-size: 11px;
    color: var(--gold);
  }

  .flow-item__content {
    padding-left: 10px;
    gap: 14px;
  }

  .flow-item__text h4 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .flow-item__text p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
  }

  /* ===== FAQ ===== */
  .faq-item__question {
    font-size: 14px;
    padding: 20px 0;
    line-height: 1.65;
  }

  .faq-item__answer p {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(0,0,0,0.6);
    padding-right: 16px;
  }

  /* ===== FINAL CTA ===== */
  .finalcta__label {
    font-size: 10px;
    letter-spacing: 0.35em;
    margin-bottom: 18px;
  }

  .finalcta__title {
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }

  .finalcta__sub {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 36px;
  }

  .finalcta__cta {
    gap: 10px;
    margin-bottom: 32px;
  }

  .btn--xl {
    max-width: 100%;
    width: 100%;
    padding: 18px 20px;
  }

  .btn-label {
    font-size: 15px;
  }

  .btn-sub {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .finalcta__line-note {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }

  .finalcta__ig-links {
    gap: 14px;
    margin-bottom: 40px;
  }

  .ig-link {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .ended-badge {
    font-size: 10px;
    letter-spacing: 0.15em;
    padding: 9px 16px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* ===== HONSHA ===== */
  .honsha-block {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .honsha-block__photo {
    aspect-ratio: 16 / 9;
  }

  .honsha-block__text {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 20px;
  }

  .honsha-block__label {
    font-size: 11px;
    letter-spacing: 0.28em;
    margin-bottom: 12px;
  }

  .honsha-block__copy {
    font-size: 14px;
    line-height: 2;
    color: rgba(255,255,255,0.65);
  }

  /* ===== FOOTER ===== */
  .site-footer {
    padding-top: 32px;
  }

  .footer-logo {
    font-size: 24px;
    letter-spacing: 0.4em;
    margin-bottom: 10px;
  }

  .footer-copy {
    font-size: 10px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 390px)
   ============================================ */
@media (max-width: 390px) {

  .title-en {
    font-size: 60px;
    letter-spacing: 0.14em;
  }

  .fv__copy {
    font-size: 18px;
  }

  .heaven__copy {
    font-size: 22px;
  }

  .value-highlight {
    font-size: 46px;
  }

  .share-plan-price__num {
    font-size: 32px;
  }

  .ginza__title {
    font-size: 30px;
  }
}
