/* Home page (index.html) — page-specific styles */

/* index.html のみ基準の文字ウェイトを気持ち太めに（400→500）。
   見出し・名前など個別に weight 指定がある要素はそのまま維持される。 */
body { font-weight: 500; }

.home-banner-link { display: block; background: var(--color-black); }
.home-banner-link img { display: block; margin: 0 auto; }

/* ===== Hero ===== */
.home-hero { position: relative; display: flex; align-items: center; overflow: hidden; min-height: 90vh; }
.home-hero__bg { position: absolute; inset: 0; z-index: 0; }
.home-hero__bg img {
  position: absolute; top: 0; left: 0; right: 0; width: 100%; min-height: 130%;
  object-fit: cover; object-position: center top; transform: translateY(-15%);
  filter: brightness(0.65) contrast(1.05);
}
.home-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.05) 0%, rgba(12,12,12,0.2) 50%, rgba(12,12,12,0.55) 100%);
}
.home-hero__grid {
  position: relative; z-index: 10; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  max-width: var(--container-width); padding: 80px 24px;
}
@media (min-width: 1024px) { .home-hero__grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.home-hero__copy { text-align: center; }
@media (min-width: 1024px) { .home-hero__copy { text-align: left; } }
.home-hero__title { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 500; line-height: 1.7; letter-spacing: 0.08em; margin-bottom: 24px; }
.home-hero__title .accent { color: var(--color-gold); font-weight: 600; }
.home-hero__lead { font-size: 0.9rem; color: var(--color-text-cream); line-height: 2.4; font-weight: 300; max-width: 480px; margin: 0 auto 40px; }
@media (min-width: 1024px) { .home-hero__lead { margin: 0 0 40px; } }
.home-hero__lead .accent { color: var(--color-gold-light); font-weight: 400; }

.home-hero__actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 400px; margin: 0 auto;
}
@media (min-width: 1024px) { .home-hero__actions { margin: 0; } }
.home-hero__actions .btn { padding: 14px 0; font-size: 0.78rem; }

.home-hero__side { display: flex; flex-direction: column; gap: 16px; }
.home-hero__promo { position: relative; display: block; overflow: hidden; border-radius: 16px; border: 1px solid var(--color-border-gold); text-decoration: none; transition: transform 0.3s ease; }
.home-hero__promo:hover { transform: translateY(-2px); }
.home-hero__promo img { width: 100%; height: 180px; object-fit: cover; filter: brightness(0.75) contrast(1.05); }
.home-hero__promo-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(0deg, rgba(12,12,12,0.85) 0%, rgba(12,12,12,0.2) 60%, transparent 100%);
}
.home-hero__promo-content { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 20px; }
.home-hero__promo-title { font-size: 0.72rem; color: var(--color-gold-light); font-weight: 500; letter-spacing: 0.08em; margin-bottom: 4px; }
.home-hero__promo-desc { font-size: 0.62rem; color: var(--color-text-muted); line-height: 1.6; font-weight: 300; }

.home-hero__counter { text-align: center; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border-radius: 16px; padding: 28px 32px; border: 1px solid var(--color-border); }
.home-hero__counter-num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--color-gold); line-height: 1; margin-bottom: 4px; }
.home-hero__counter-label { font-size: 0.7rem; color: var(--color-text-muted); letter-spacing: 0.1em; }

.home-hero__feature { display: flex; align-items: flex-start; gap: 16px; background: rgba(255,255,255,0.04); backdrop-filter: blur(10px); border-radius: 14px; padding: 22px 28px; border: 1px solid var(--color-border); transition: transform 0.3s ease; }
.home-hero__feature:hover { transform: translateY(-2px); }
.home-hero__feature-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(201,169,110,0.12); }
.home-hero__feature-title { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; letter-spacing: 0.05em; }
.home-hero__feature-desc { font-size: 0.72rem; color: var(--color-text-muted); line-height: 1.7; font-weight: 300; }

/* ===== Movie ===== */
.home-movie { padding: 80px 0; background: var(--color-charcoal); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.home-movie__intro { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; max-width: 600px; margin: 0 auto 40px; }
.home-movie__frame { max-width: 800px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid var(--color-border-gold); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.home-movie__frame-inner { position: relative; padding-bottom: 56.25%; height: 0; }
.home-movie__frame-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.home-movie__actions { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* ===== Ranking ===== */
.home-ranking { padding: 80px 0; background: var(--color-charcoal); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.home-ranking__list { display: flex; flex-direction: column; gap: 64px; }
.home-ranking__cat-heading { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 32px; }
.home-ranking__cat-heading h3 { font-size: 1.15rem; font-weight: 500; letter-spacing: 0.12em; }
.home-ranking__cat-line { width: 40px; height: 1px; background: var(--color-border-gold); }
.home-ranking__podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 600px; margin: 0 auto; }
@media (min-width: 640px) { .home-ranking__podium { gap: 14px; } }
.home-ranking__card { position: relative; }
.home-ranking__card--offset { margin-top: 20px; }
.home-ranking__badge-row { display: flex; justify-content: center; margin-bottom: 8px; }
.home-ranking__badge-inner { display: flex; align-items: center; gap: 4px; }
.home-ranking__rank-num { font-family: var(--font-display); font-weight: 700; font-style: italic; }
.home-ranking__rank-num--first { font-size: 1.8rem; color: var(--color-gold); }
.home-ranking__rank-num--silver { font-size: 1.3rem; color: #c0c0c0; }
.home-ranking__rank-num--bronze { font-size: 1.3rem; color: #cd7f32; }
.home-ranking__medal { display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.home-ranking__medal--first { width: 26px; height: 26px; background: linear-gradient(135deg, var(--color-gold), #e8d5a3); }
.home-ranking__medal--silver { width: 22px; height: 22px; background: linear-gradient(135deg, #a8a8a8, #d0d0d0); }
.home-ranking__medal--bronze { width: 22px; height: 22px; background: linear-gradient(135deg, #b87333, #d4956a); }
.home-ranking__photo { overflow: hidden; aspect-ratio: 2 / 3; border-radius: 8px 8px 0 0; }
.home-ranking__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.85) contrast(1.05); }
.home-ranking__photo--gold { border: 3px solid var(--color-gold); box-shadow: 0 0 20px rgba(201,169,110,0.4), inset 0 0 20px rgba(201,169,110,0.1); }
.home-ranking__photo--silver { border: 3px solid #b0b0b0; box-shadow: 0 0 15px rgba(180,180,180,0.3); }
.home-ranking__photo--bronze { border: 3px solid #cd7f32; box-shadow: 0 0 15px rgba(205,127,50,0.3); }
.home-ranking__meta { text-align: center; background: var(--color-dark-grey); border: 3px solid var(--color-border-gold); border-top: none; padding: 12px 6px 14px; border-radius: 0 0 8px 8px; margin-top: -4px; position: relative; z-index: 2; }
.home-ranking__card:has(.home-ranking__photo--gold) .home-ranking__meta { border-color: var(--color-gold); }
.home-ranking__card:has(.home-ranking__photo--silver) .home-ranking__meta { border-color: #b0b0b0; }
.home-ranking__card:has(.home-ranking__photo--bronze) .home-ranking__meta { border-color: #cd7f32; }
.home-ranking__meta h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 3px; }
.home-ranking__meta--first h4 { font-size: 0.85rem; }
.home-ranking__meta-sub { font-size: 0.6rem; color: var(--color-text-muted); margin-bottom: 5px; }
.home-ranking__meta-tag { font-size: 0.58rem; color: #e8527a; font-weight: 500; letter-spacing: 0.03em; }
.home-ranking__more { margin-top: 24px; text-align: center; }
.btn--pink { background: #e8527a; color: #fff; }

/* ===== Beige narrative sections (Concept / Foundation / Origin / Promise) ===== */
.home-narrow { max-width: 640px; margin: 0 auto; }
.home-beige-text { color: var(--color-light-text); font-size: 0.88rem; line-height: 2.2; font-weight: 300; }
.home-beige-text .accent { color: var(--color-gold); font-weight: 400; }
.home-beige-divider { width: 32px; height: 1px; background: var(--color-gold-dark); margin: 0 auto 24px; }

.home-concept { padding: 60px 24px 32px; background: linear-gradient(180deg, var(--color-light-bg) 0%, #ede6da 40%, #e8e0d2 100%); }
.home-concept .section-header__label { color: #5a4a28; }
.home-concept h2 { font-size: 1.3rem; font-weight: 500; letter-spacing: 0.1em; line-height: 1.8; margin-bottom: 14px; color: var(--color-light-text); }

.home-pillars { background: linear-gradient(180deg, #e8e0d2 0%, #f0ebe3 50%, var(--color-light-bg) 100%); padding: 20px 24px 48px; }
.home-pillars__item { padding: 28px 0; text-align: center; }
.home-pillars__eyebrow { font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: #7a6530; margin-bottom: 14px; }
.home-pillars__title { font-size: 1rem; font-weight: 500; letter-spacing: 0.08em; line-height: 1.8; color: var(--color-light-text); }
.home-pillars__divider { width: 70%; height: 1px; background: rgba(160,130,80,0.15); margin: 0 auto; }
.home-pillars__closing { max-width: 640px; margin: 0 auto; padding: 12px 24px 0; text-align: center; }
.home-back-beige { display: inline-flex; align-items: center; gap: 8px; padding: 10px 28px; background: rgba(160,130,80,0.08); border: 1px solid rgba(160,130,80,0.2); border-radius: 30px; font-size: 0.72rem; color: #7a6530; letter-spacing: 0.08em; }

.home-origin { background: linear-gradient(180deg, var(--color-light-bg) 0%, #f0ebe3 100%); padding: 28px 24px 48px; }
.home-origin__card { max-width: 640px; margin: 0 auto; background: rgba(255,255,255,0.55); border-radius: 20px; padding: 40px 28px 48px; border: 1px solid rgba(160,130,80,0.12); box-shadow: 0 2px 20px rgba(0,0,0,0.03); text-align: center; }
.home-origin__eyebrow { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: #7a6530; margin-bottom: 20px; }
.home-origin__wordmark { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; }
.home-origin__wordmark-line { width: 28px; height: 1px; background: rgba(160,130,80,0.3); }
.home-origin__wordmark-text { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.15em; font-weight: 500; color: var(--color-light-text); }
.home-origin__wordmark-text .x { font-size: 1rem; font-weight: 300; color: #7a6530; }
.home-origin__meanings { margin-bottom: 28px; text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
.home-origin__meaning-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.home-origin__meaning-row:last-child { margin-bottom: 0; }
.home-origin__dot { width: 6px; height: 6px; border-radius: 50%; background: #7a6530; flex-shrink: 0; }
.home-origin__meaning-text { font-family: var(--font-display); font-size: 0.88rem; color: #3a3020; letter-spacing: 0.05em; font-weight: 400; }
.home-origin__meaning-text .word { font-style: italic; font-weight: 500; color: #5a4a28; }
.home-origin__meaning-text .dash { margin: 0 10px; color: #7a6530; }
.home-origin__divider { width: 40px; height: 1px; background: var(--color-gold-dark); margin: 24px auto; }
.home-origin__divider--tight { margin: 0 auto 20px; }
.home-origin__tagline { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.08em; color: var(--color-light-text); font-weight: 400; font-style: italic; margin-bottom: 8px; }
.home-origin__tagline .accent { color: var(--color-gold); }
.home-origin__subtitle { font-size: 1.05rem; font-weight: 500; letter-spacing: 0.08em; color: var(--color-light-text); margin-bottom: 20px; }

/* ===== Promise ===== */
.home-promise { background: linear-gradient(180deg, #f0ebe3 0%, var(--color-light-bg) 50%, #faf8f4 100%); padding: 32px 24px 40px; }
.home-promise .section-header__label { color: #5a4a28; }
.home-promise h2 { font-size: 1.15rem; font-weight: 500; letter-spacing: 0.1em; line-height: 1.8; margin-bottom: 10px; color: var(--color-light-text); }
.home-promise__list { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 600px; margin: 0 auto; }
@media (min-width: 768px) { .home-promise__list { grid-template-columns: repeat(2, 1fr); max-width: 760px; } }
.home-promise__card { background: rgba(255,255,255,0.65); border-radius: 14px; padding: 24px; border: 1px solid rgba(160,130,80,0.1); box-shadow: 0 2px 16px rgba(0,0,0,0.03); text-align: center; transition: transform 0.3s ease; }
.home-promise__card:hover { transform: translateY(-4px); }
.home-promise__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; width: 40px; height: 40px; border-radius: 50%; background: rgba(160,130,80,0.08); }
.home-promise__title { font-size: 0.88rem; font-weight: 500; margin-bottom: 8px; letter-spacing: 0.08em; color: var(--color-light-text); }
.home-promise__desc { font-size: 0.78rem; color: #3a3020; line-height: 1.9; font-weight: 300; }
.home-promise__cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 32px; padding-bottom: 16px; }

/* ===== PR Points ===== */
.home-pr { padding: 80px 0; background-image: url('/parts/index/img/marble-dark.jpg'); }
.home-pr .marble-section__overlay { background: rgba(12, 12, 12, 0.85); }
.home-pr__grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 900px; margin: 48px auto 0; }
@media (min-width: 768px) { .home-pr__grid { grid-template-columns: repeat(2, 1fr); } }
.home-pr__card { position: relative; overflow: hidden; background: var(--color-charcoal); border-radius: 20px; border: 1px solid var(--color-border-gold); text-align: left; transition: transform 0.3s ease; }
.home-pr__card:hover { transform: translateY(-4px); }
.home-pr__card--wide { grid-column: 1 / -1; }
.home-pr__media { position: relative; overflow: hidden; height: 220px; }
.home-pr__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.home-pr__card:hover .home-pr__media img { transform: scale(1.05); }
.home-pr__media-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, transparent 30%, rgba(26,26,26,0.95) 100%); }
.home-pr__media-caption { position: absolute; bottom: 16px; left: 24px; right: 24px; }
.home-pr__media-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; letter-spacing: 0.1em; color: var(--color-gold-light); }
.home-pr__media-title--compact { font-size: 1.3rem; }
.home-pr__body { padding: 24px 28px 28px; }
.home-pr__body h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 12px; letter-spacing: 0.05em; line-height: 1.6; }
.home-pr__body p { font-size: 0.78rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; margin-bottom: 16px; }

/* ===== Menu ===== */
.home-menu { position: relative; padding: 80px 0; }
.home-menu__label { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 20px; font-weight: 500; }
.home-menu__grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 48px auto 0; }
@media (min-width: 640px) { .home-menu__grid { grid-template-columns: repeat(3, 1fr); } }
.home-menu__card--popular { border-color: var(--color-gold-dark); }
.home-menu__card--popular::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold)); }
.badge--corner { position: absolute; top: 16px; right: 16px; }
.home-menu__card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 8px; letter-spacing: 0.08em; color: var(--color-gold-light); }
.home-menu__card-sub { font-size: 0.65rem; color: var(--color-text-muted); letter-spacing: 0.08em; margin-bottom: 8px; }
.home-menu__card-desc { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.8; font-weight: 300; }
.home-menu__card-link { margin-top: 16px; font-size: 0.65rem; color: var(--color-gold); letter-spacing: 0.1em; }
.home-menu__actions { margin-top: 48px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== Flow ===== */
.home-flow { padding: 100px 0; background-image: url('/parts/index/img/marble-dark.jpg'); }
.home-flow .marble-section__overlay { background: rgba(12, 12, 12, 0.88); }
.home-flow__intro { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; max-width: 600px; margin: 0 auto 48px; }
.home-flow__timeline { position: relative; max-width: 700px; margin: 0 auto; }
.home-flow__spine { position: absolute; left: 24px; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent, var(--color-gold), transparent); transform: translateX(-50%); }
@media (min-width: 640px) { .home-flow__spine { left: 50%; } }
.home-flow__step { position: relative; display: flex; align-items: flex-start; gap: 24px; margin-bottom: 48px; text-align: left; }
@media (min-width: 640px) { .home-flow__step--reverse { flex-direction: row-reverse; } }
.home-flow__icon { flex-shrink: 0; position: relative; z-index: 10; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)); box-shadow: 0 4px 20px rgba(201,169,110,0.3); }
.home-flow__step--reverse .home-flow__icon { margin-left: auto; }
.home-flow__card { flex: 1; background: var(--color-charcoal); border-radius: 16px; padding: 28px; border: 1px solid var(--color-border); max-width: 500px; }
.home-flow__card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.home-flow__card-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--color-gold); line-height: 1; }
.home-flow__card-title { font-size: 0.95rem; font-weight: 500; letter-spacing: 0.08em; }
.home-flow__card-eng { font-family: var(--font-display); font-size: 0.6rem; color: var(--color-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.home-flow__card-desc { font-size: 0.78rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; }
/* 当日の流れ：続きを開閉（grid行アニメでスムーズに） */
.home-flow__more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s ease; }
.home-flow__more.is-open { grid-template-rows: 1fr; }
.home-flow__more-inner { overflow: hidden; min-height: 0; opacity: 0; transition: opacity 0.4s ease; }
.home-flow__more.is-open .home-flow__more-inner { opacity: 1; }
.home-flow__more-wrap { text-align: center; margin-top: 4px; }
.home-flow__toggle { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: rgba(201,169,110,0.08); border: 1px solid var(--color-border-gold); border-radius: var(--radius-pill); color: var(--color-gold); font-size: 0.78rem; letter-spacing: 0.08em; cursor: pointer; font-family: var(--font-serif); transition: background 0.3s ease, border-color 0.3s ease; }
.home-flow__toggle:hover { background: rgba(201,169,110,0.15); border-color: var(--color-gold); }
.home-flow__toggle-icon { transition: transform 0.3s ease; }
.home-flow__toggle.is-open .home-flow__toggle-icon { transform: rotate(180deg); }

/* ===== Voice ===== */
.home-voice { padding: 80px 0; }
.home-voice__group { margin-top: 48px; margin-bottom: 64px; }
.home-voice__group--flush { margin-bottom: 0; }
.home-voice__group-head { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 32px; }
.home-voice__group-head h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; letter-spacing: 0.1em; color: var(--color-gold-light); }
.home-voice__group-intro { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 24px; line-height: 1.8; }
.home-voice__carousel { position: relative; }
.home-voice__carousel--qa { max-width: 700px; margin: 0 auto; }
.home-voice__carousel--quote { max-width: 760px; margin: 0 auto; }
.home-voice__slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.home-voice__slider > * { flex: 0 0 100%; scroll-snap-align: center; }
.home-voice__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border-gold); border-radius: var(--radius-pill); background: rgba(22, 22, 22, 0.95); color: var(--color-gold-light); font-size: 1rem; font-weight: 600; line-height: 1; cursor: pointer; transition: opacity 0.2s, border-color 0.2s, background-color 0.2s; }
.home-voice__nav:hover { border-color: var(--color-gold); }
.home-voice__nav:disabled { opacity: 0.25; cursor: default; }
.home-voice__nav--prev { left: 8px; }
.home-voice__nav--next { right: 8px; }
@media (min-width: 900px) {
  .home-voice__nav--prev { left: 10px; }
  .home-voice__nav--next { right: 10px; }
}
.home-voice__slide-hint { font-size: 0.68rem; color: var(--color-text-muted); letter-spacing: 0.1em; margin-top: 16px; }
.home-voice__qa-card { background: var(--color-charcoal); border-radius: 14px; padding: 24px 28px; border: 1px solid var(--color-border); text-align: left; }
.home-voice__qa-question { font-size: 0.72rem; color: var(--color-gold); line-height: 1.6; font-weight: 500; margin-bottom: 12px; letter-spacing: 0.05em; }
.home-voice__qa-answer { font-size: 0.8rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; margin-bottom: 14px; font-style: italic; }
.home-voice__quote-mark { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-gold); line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.home-voice__author { font-size: 0.68rem; color: var(--color-text-muted); letter-spacing: 0.1em; }
.home-voice__quote-card { background: var(--color-charcoal); border-radius: 16px; padding: 32px; border: 1px solid var(--color-border); text-align: left; }
.home-voice__quote-card .home-voice__quote-mark { font-size: 2rem; vertical-align: -0.4em; }
.home-voice__quote-card p { font-size: 0.82rem; line-height: 2; color: var(--color-text-cream); font-weight: 300; margin-bottom: 20px; font-style: italic; }
.home-voice__more { margin-top: 24px; }

/* ===== CTA ===== */
.home-cta { background-image: url('/parts/index/img/marble-dark.jpg'); }
.home-cta .final-cta__overlay { background: rgba(12, 12, 12, 0.82); }
.home-cta .section-header__label { color: var(--color-gold-light); }
.home-cta__lead { font-size: 0.85rem; margin-bottom: 40px; max-width: 500px; }
.home-cta__actions { align-items: stretch; margin-bottom: 32px; max-width: 300px; }
.home-cta__actions .btn { width: 100%; padding: 16px 36px; font-size: 0.85rem; }

/* ===== 年齢認証（エンター画面） ===== */
html.age-gate-locked, html.age-gate-locked body { overflow: hidden; }
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, #1c1c1c 0%, var(--color-black) 70%);
  transition: opacity 0.4s ease;
}
.age-gate.is-leaving { opacity: 0; pointer-events: none; }
.age-gate__inner {
  max-width: 460px; width: 100%; padding: 48px 28px 40px;
  border: 1px solid var(--color-border-gold); border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02); box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.age-gate__brand { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.3em; color: var(--color-gold); font-weight: 600; margin-bottom: 18px; }
.age-gate__eyebrow { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 16px; }
.age-gate__divider { width: 40px; height: 1px; background: var(--color-gold-dark); margin: 0 auto 20px; }
.age-gate__title { font-size: 1.15rem; font-weight: 500; letter-spacing: 0.12em; color: var(--color-text-white); margin-bottom: 18px; }
.age-gate__text { font-size: 0.8rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; margin-bottom: 28px; }
.age-gate__ask { color: var(--color-gold-light); margin-top: 10px; font-size: 0.85rem; }
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto; }
.age-gate__btn { width: 100%; padding: 15px 24px; font-size: 0.8rem; }
.age-gate__note { font-size: 0.62rem; color: var(--color-text-muted); line-height: 1.7; margin-top: 24px; }

/* ===== Added home sections (即メン / 検索 / 本日の出勤 / 日記) ===== */
/* Shared section shells — light/dark/grey balance across the page */
.home-sec { padding: 72px 0; }
.home-sec--dark { background: var(--color-black); }
.home-sec--grey { background: var(--color-charcoal); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
/* コンセプトと同じベージュ背景（暗い流れの中の明るいブレイク） */
.home-sec--beige { background: linear-gradient(180deg, var(--color-light-bg) 0%, #ede6da 50%, #e8e0d2 100%); }
.home-sec--beige .section-header__title { color: var(--color-light-text); }
.home-sec--beige .section-header__label { color: #5a4a28; }
.home-sec--beige .home-today__date { color: #7a6530; }
.home-sec--beige .btn--outline { color: var(--color-gold-dark); border-color: var(--color-gold-dark); }
/* ベージュ背景上での本日の出勤サブ見出しの可読性 */
.home-sec--beige .home-today__subhead-label { color: #5a4a28; }
.home-sec--beige .home-today__subhead-title h3 { color: var(--color-light-text); }
/* ベージュ背景上での検索UI（共通コンポーネント）の可読性。共通CSSは変えずページ側で上書き */
.home-sec--beige .therapist-search__filter-title { color: var(--color-gold-dark); }
.home-sec--beige .therapist-search__filter-toggle { color: var(--color-light-text-muted); }
.home-sec--beige .therapist-search__group-title { color: var(--color-light-text); border-bottom-color: rgba(42, 35, 24, 0.15); }
.home-sec--beige .therapist-search__options label { color: var(--color-light-text); }
.home-sec--beige .therapist-search__sort-btn { color: var(--color-light-text); background: rgba(42, 35, 24, 0.05); border-color: rgba(42, 35, 24, 0.2); }
.home-sec--beige .therapist-search__sort-btn.is-selected { color: var(--color-black); background: var(--color-gold); border-color: transparent; }
.home-sec--beige .therapist-search__ranking { border-top-color: rgba(42, 35, 24, 0.15); }
.home-sec--beige .therapist-search__ranking-link { color: var(--color-gold-dark); }
.home-sec__intro { text-align: center; font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.9; margin-bottom: 32px; }
.home-sec__more { margin-top: 36px; text-align: center; }
@media (min-width: 1024px) {
  /* PCでは検索〜本日の出勤エリアを中央寄せの同一幅に揃える */
  .home-sec--beige .therapist-search__filter,
  .home-sec--beige .therapist-search__sort-wrap,
  .home-sec--beige .therapist-search__ranking,
  .home-sec--beige .home-today__subhead,
  .home-sec--beige .home-today__date {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-sec--beige .home-today .therapist-grid {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Shared carousel nav (also reusable via [data-carousel] behaviour) */
.home-cnav { position: absolute; top: 42%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); border-radius: var(--radius-pill); background: var(--color-charcoal); cursor: pointer; transition: opacity 0.2s, border-color 0.2s; }
.home-cnav:hover { border-color: var(--color-gold); }
.home-cnav:disabled { opacity: 0.25; cursor: default; }
.home-cnav--prev { left: -6px; }
.home-cnav--next { right: -6px; }
@media (min-width: 1024px) { .home-cnav--prev { left: -52px; } .home-cnav--next { right: -52px; } }

/* 即メン carousel */
.home-sokumen__carousel { position: relative; }
.home-sokumen__track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.home-sokumen__card { flex: 0 0 46%; scroll-snap-align: start; display: block; background: var(--color-card); border: 1px solid var(--color-border-gold); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: transform 0.3s ease; }
.home-sokumen__card:hover { transform: translateY(-2px); }
@media (min-width: 640px) { .home-sokumen__card { flex-basis: 30%; } }
@media (min-width: 1024px) { .home-sokumen__card { flex-basis: 22%; } }
.home-sokumen__photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.home-sokumen__photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.05); }
.home-sokumen__badge { position: absolute; top: 8px; left: 8px; background: var(--color-gold); color: var(--color-black); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.05em; padding: 3px 9px; border-radius: var(--radius-pill); }
.home-sokumen__badge--new { background: #e8527a; color: #fff; letter-spacing: 0.1em; }
.home-sokumen__info { padding: 12px 14px 16px; text-align: left; }
.home-sokumen__name { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--color-text-white); margin-bottom: 3px; }
.home-sokumen__sub { font-size: 0.62rem; color: var(--color-text-muted); margin-bottom: 8px; }
.home-sokumen__time { font-size: 0.7rem; color: var(--color-gold-light); margin-bottom: 4px; }
.home-sokumen__note { font-size: 0.6rem; color: var(--color-text-muted); }

/* 本日の出勤 list（検索セクション内に統合。サブ見出しで区切る） */
.home-today { margin-top: 56px; }
.home-today__subhead { text-align: center; margin-bottom: 20px; }
.home-today__subhead-label { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-gold); font-weight: 500; margin-bottom: 12px; }
.home-today__subhead-title { display: flex; align-items: center; justify-content: center; gap: 12px; }
.home-today__subhead-title h3 { font-size: 1.5rem; font-weight: 500; letter-spacing: 0.12em; }
.home-today__subhead-line { width: 40px; height: 1px; background: var(--color-border-gold); }
.home-today__date { text-align: center; font-size: 0.95rem; color: var(--color-gold-light); letter-spacing: 0.08em; margin-bottom: 24px; }
/* 縦型カードのグリッド／写真枠は共通コンポーネント .therapist-grid を使用（components.css） */
.home-today__card { display: block; background: var(--color-card); border: 1px solid var(--color-border-gold); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: transform 0.3s ease; }
.home-today__card:hover { transform: translateY(-2px); }
.home-today__body { padding: 12px 12px 16px; text-align: center; }
.home-today__name { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; color: var(--color-gold-light); margin-bottom: 4px; }
.home-today__meta { font-size: 0.66rem; color: var(--color-text-muted); margin-bottom: 6px; }
.home-today__catch { font-size: 0.64rem; color: var(--color-text-cream); letter-spacing: 0.03em; margin-bottom: 10px; }
.home-today__time { display: inline-block; padding: 5px 12px; border: 1px solid var(--color-border-gold); border-radius: var(--radius-sm); font-size: 0.74rem; color: var(--color-gold-light); letter-spacing: 0.05em; }
.home-today__closed { font-size: 0.68rem; color: var(--color-text-muted); line-height: 1.6; }
.home-today__card--closed { opacity: 0.6; }

/* 日記（写メ / 筋肉） */
.home-diary__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 720px; margin: 0 auto; }
@media (min-width: 768px) { .home-diary__grid { gap: 24px; } }
.home-diary__card { display: block; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: transform 0.3s ease; }
.home-diary__card:hover { transform: translateY(-2px); }
.home-diary--muscle .home-diary__card { border-color: var(--color-border-gold); }
.home-diary__photo { aspect-ratio: 1 / 1; overflow: hidden; }
.home-diary__photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.05); }
.home-diary__body { padding: 12px 14px 16px; text-align: left; }
.home-diary__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.home-diary__name { font-size: 0.7rem; font-weight: 600; color: var(--color-gold-light); letter-spacing: 0.05em; }
.home-diary__date { font-size: 0.58rem; color: var(--color-text-muted); }
.home-diary__title { font-size: 0.78rem; font-weight: 500; line-height: 1.6; color: var(--color-text-cream); }

/* ===== 下部バナースペース（ダミー / 縦積みプレースホルダー） ===== */
.home-banners { padding: 56px 0; background: linear-gradient(180deg, var(--color-light-bg) 0%, #ede6da 50%, #e8e0d2 100%); }
.home-banners__list { display: flex; flex-direction: column; gap: 16px; }
.home-banner-slot { display: flex; align-items: center; justify-content: center; aspect-ratio: 4 / 1; background: var(--color-card); border: 1px dashed var(--color-border-gold); border-radius: var(--radius-md); text-decoration: none; transition: border-color 0.2s ease, background-color 0.2s ease; }
.home-banner-slot:hover { border-color: var(--color-gold); background: rgba(201, 169, 110, 0.05); }
.home-banner-slot__label { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.15em; color: var(--color-text-muted); }
.home-banner-slot--image { aspect-ratio: auto; background: transparent; border: none; padding: 0; }
.home-banner-slot--image img { width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

