/* =======================================================
   style.css — Pour moi LP
   構成:
     1. リセット・ベース
     2. CSS変数
     3. スクロールフェードアニメーション
     4. ヘッダー
     5. ハンバーガーメニュー
     6. 道順モーダル
     7. メインコンテンツ共通
     8. ヒーロー画像
     9. メインメッセージ / TOPオブジェクト
    10. セクションタイトル
    11. FOR YOU
    12. 強み（strength）
    13. ABOUT
    14. VOICE（カルーセル）
    15. MENU（タブ）
    16. ACCESS
    17. FAQ
    18. CONTACT
    19. フッター
    20. レスポンシブ
======================================================= */

/* 1. リセット・ベース */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body {
  background: var(--bg);
  font-family: 'Noto Serif JP', serif;
  color: var(--text);
  margin: 0 auto;
  overflow-x: hidden;
}

/* 2. CSS変数（デザイントークン） */
:root {
  --bg:              #f6f4f0;
  --accent:          #947852;
  --accent-light:    #c0ab8d;
  --accent-pink:     #f2e4e1;
  --accent-pink-btn: #ebcac3;
  --brown:           #433625;
  --text:            #313130;
  --subtext:         #4f4f4f;
}

/* 3. スクロールフェードアニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* 4. ヘッダー */
header {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 0 16px;
  z-index: 100;
}
.header-logo { height: 38px; width: 112px; cursor: pointer; margin: 0; line-height: 1; }
.header-logo img { height: 100%; width: 100%; object-fit: contain; object-position: left center; }
.menu-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.menu-btn-icon { width: 26px; height: 34px; }
.menu-btn-icon img { width: 100%; height: 100%; object-fit: contain; }
.menu-btn span { font-family: 'Inter', sans-serif; font-size: 10px; color: var(--accent); letter-spacing: 1px; }

/* 5. ハンバーガーメニュー */
.hamburger-overlay { position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none; transition: visibility 0s 0.5s; }
.hamburger-overlay.open { visibility: visible; pointer-events: all; transition: visibility 0s 0s; }
.hamburger-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s ease-in; }
.hamburger-overlay.open .hamburger-backdrop { opacity: 1; transition: opacity 0.4s ease-out; }
.hamburger-panel {
  position: absolute; top: 0; right: 0;
  width: 100%; max-width: 402px; height: 100%;
  background: var(--accent);
  backdrop-filter: blur(5px);
  display: flex; flex-direction: column; align-items: center;
  padding: 80px 50px 40px; gap: 24px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1), opacity 0.25s ease-in;
  overflow-y: auto;
  scrollbar-width: none;
}
.hamburger-panel::-webkit-scrollbar { display: none; }
.hamburger-overlay.open .hamburger-panel { transform: translateX(0); opacity: 1; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out; }
.hamburger-close-row { position: absolute; top: 18px; right: 40px; }
.close-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer; background: none; border: none; }
.close-btn-icon { width: 33px; height: 44px; }
.close-btn-icon img { width: 100%; height: 100%; object-fit: contain; color: var(--accent-pink) }
.hamburger-panel a {
  font-family: 'Inter', sans-serif;
  font-size: 20px; color: var(--accent-pink);
  text-decoration: none; text-align: center; line-height: 22px;
  transition: opacity 0.2s;
}
.hamburger-panel a:hover { opacity: 0.7; }
.hamburger-booking {
  background: #d7a297;
  position: relative; overflow: hidden;
  width: 220px; height: 70px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
  outline: 0.73px solid rgba(246,244,240,0.6);
  outline-offset: -4px;
}
.hamburger-booking span { font-family: 'Noto Serif JP', serif; font-weight: 600; font-size: 14px; color: var(--bg); white-space: nowrap; letter-spacing: 1px; }
.hamburger-booking .arrow { font-size: 11px; color: var(--bg); }

/* 6. 道順モーダル */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(0,0,0,0.3);
}
.modal-overlay.open { display: flex; }
.direction-modal {
  background: rgba(246,244,240,0.95);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  padding: 30px 24px;
  width: 100%; max-width: 354px; position: relative;
}
.direction-modal p { font-size: 10px; color: rgba(0,0,0,0.8); line-height: 40px; white-space: nowrap; }
.direction-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--accent); line-height: 1;
}

/* 7. メインコンテンツ共通 */
main { width: 100%; padding-top: 60px; }

/* 8. ヒーロー画像 */
.hero-image { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* 9. メインメッセージ / TOPオブジェクト（ループ） */
.main-message { display: flex; flex-direction: column; align-items: center; padding: 0 24px 20px; overflow: hidden; }
.main-message-title { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 50px 0 30px; text-align: center; color: var(--text); }
.main-message-title .brand { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 48px; line-height: 1.8; }
.main-message-title .brand-jp { font-weight: 300; font-size: 15px; letter-spacing: 10px; line-height: 1.8; }
.main-message-sub {
  display: flex; flex-direction: column; gap: 40px;
  align-items: center; padding-bottom: 40px;
  text-align: center; color: var(--text);
  font-weight: 300; font-size: 13px; letter-spacing: 6px;
}
.main-message-sub p { line-height: 400%; }

.top-object-wrap { width: 100%; height: 168px; overflow: hidden; position: relative; }
.top-object-track {
  display: flex; gap: 16px; align-items: center;
  height: 168px;
  animation: loopScroll 22s linear infinite;
  width: max-content;
}
@keyframes loopScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-object-img { width: 150px; height: 150px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.top-object-img img { width: 100%; height: 100%; object-fit: cover; }

/* 10. セクションタイトル（共通） */
.section-title { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 40px 0; width: 100%; text-align: center; color: var(--accent); }
.section-title .en { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 40px; letter-spacing: 6px; line-height: 1.8; margin: 0; }
.section-title .jp { font-size: 13px; letter-spacing: 6px; line-height: 1.8; font-weight: 400; }

/* 11. FOR YOU */
.for-you { display: flex; flex-direction: column; align-items: center; gap: 26px; padding-bottom: 40px; }
.targets { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.target-card { background: white; box-shadow: 0 4px 2px rgba(0,0,0,0.1); border-radius: 10px; padding: 15px; display: flex; gap: 15px; align-items: flex-start; }
.target-point { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-pink-btn) 100%); margin-top: 6px; }
.target-card p { font-weight: 300; font-size: 13px; letter-spacing: 5px; line-height: 1.8; color: var(--text); }

.what-block { width: 100%; display: flex; align-items: flex-start; margin: 0 auto; justify-content: center; gap: 20px; }
.what-img { width: 150px; height: 200px; border-radius: 5px; overflow: hidden; flex-shrink: 0; }
.what-img img { width: 100%; height: 100%; object-fit: cover; }
.what-text { display: flex; flex-direction: column; gap: 15px; font-size: 13px; }
.what-text .label { color: var(--accent); letter-spacing: 5px; font-size: 13px; line-height: 20px; }
.what-text .body { font-weight: 300; color: var(--text); letter-spacing: 2px; line-height: 0; }
.what-text .body p { line-height: 1.8; }

.divider-gold { width: 100px; height: 1px; background: var(--accent); opacity: 0.6; margin: 0 auto; }

/* 12. 強み（strength） */
.strength-title-row { display: flex; gap: 20px; align-items: center; }
.strength-title-row .line { width: 10px; height: 1px; background: var(--accent); }
.strength-title-row .text { font-size: 20px; color: var(--accent); letter-spacing: 5px; line-height: 20px; white-space: nowrap; }
.strength-list { display: flex; flex-direction: column; width: 354px; }
.strength-item { display: flex; gap: 26px; align-items: center; padding: 26px 0; border-top: 0.3px solid var(--accent); }
.strength-item:last-child { border-bottom: 0.3px solid var(--accent); }
.strength-num { font-family: 'Crimson Text', serif; font-weight: 600; font-size: 40px; color: var(--accent-light); letter-spacing: 5px; width: 45px; flex-shrink: 0; line-height: 39px; }
.strength-body { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.strength-main { font-weight: 500; font-size: 13px; color: var(--text); letter-spacing: 3px; line-height: 20px; }
.strength-divider { width: 30px; height: 1px; background: var(--accent); opacity: 0.6; }
.strength-sub { font-weight: 300; font-size: 12px; color: var(--subtext); letter-spacing: 3px; line-height: 1.8; }
.strength-image { width: 354px; height: 250px; border-radius: 10px; overflow: hidden; margin-top: 20px; }
.strength-image img { width: 100%; height: 100%; object-fit: cover; }

/* 13. ABOUT */
.about-section { display: block; padding-bottom: 40px; text-align: center; }
.about-block { display: inline-flex; flex-direction: column; justify-content: center; gap: 16px; text-align: left; }
.about-hero { display: flex; justify-content: center; gap: 20px; align-items: center; padding: 30px 0; }
.about-img { width: 154px; height: 201px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.about-body { display: flex; flex-direction: column; justify-content: center; gap: 10px; width: fit-content; }
.about-owner-label { font-family: 'Playfair Display', serif; font-size: 7px; color: var(--accent-light); letter-spacing: 5px; }
.about-owner-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--accent); letter-spacing: 6px; font-weight: 500; }
.about-divider { width: 43px; height: 1px; background: var(--accent); opacity: 0.6; }
.about-message { font-weight: 300; font-size: 11px; color: var(--subtext); letter-spacing: 6px; line-height: 0; }
.about-message p { line-height: 1.8; white-space: nowrap; }
.about-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; width: auto; }
.about-tag { border: 0.5px solid var(--accent-light); border-radius: 20px; padding: 6px 16px; font-size: 13px; color: var(--subtext); letter-spacing: 3px; line-height: 1.8; white-space: nowrap; }

/* 14. VOICE（カルーセル） */
.voice-section { display: flex; flex-direction: column; align-items: center; padding-bottom: 40px; }
.voice-carousel-wrap { width: 354px; overflow: hidden; position: relative; padding: 6px 4px 10px; touch-action: pan-y; }
.voice-track { display: flex; gap: 20px; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.voice-card {
  background: rgba(255,255,255,0.8); border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  flex-shrink: 0; width: 100%; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px; min-height: 200px;
}
.voice-card .stars { color: var(--accent); font-size: 12px; letter-spacing: 2px; }
.voice-card .body { font-weight: 300; font-size: 11px; color: var(--text); letter-spacing: 2px; line-height: 1.9; flex: 1; }
.voice-card .meta { font-size: 9px; color: var(--accent-light); letter-spacing: 3px; text-align: right; }
.voice-loading { font-size: 11px; color: var(--accent-light); letter-spacing: 3px; text-align: center; padding: 40px 0; }
.voice-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.voice-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.voice-dot.active { background: var(--accent); transform: scale(1.3); }

/* 15. MENU（タブ切り替え） */
.menu-section { display: flex; flex-direction: column; align-items: center; padding-bottom: 40px; }
.menu-tabs { display: flex; width: 100%; max-width: 402px; }
.menu-tab {
  flex: 1; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-weight: 600; font-size: 11px; letter-spacing: 2px;
  cursor: pointer; border-radius: 5px 5px 0 0;
  transition: background 0.2s, color 0.2s; border: none;
}
.menu-tab.active { background: var(--accent-pink-btn); color: var(--bg); }
.menu-tab.inactive { background: transparent; color: var(--accent); border: 1px solid var(--accent-light); border-bottom: none; }
.menu-panel-wrap { background: var(--accent-pink); width: 100%; max-width: 402px; padding: 20px 24px; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-card { background: white; border-radius: 10px; box-shadow: 0 4px 2px rgba(0,0,0,0.11); padding: 20px 27px; display: flex; flex-direction: column; gap: 10px; }
.menu-card-name { font-weight: 500; font-size: 14px; color: var(--accent); letter-spacing: 2px; line-height: 40px; }
.menu-rows { display: flex; flex-direction: column; }
.menu-row { display: flex; align-items: center; justify-content: space-between; padding: 2px 0; border-bottom: 0.5px solid rgba(192,171,141,0.3); }
.menu-row:last-child { border-bottom: none; }
.menu-row-left { display: flex; flex-direction: column; gap: 2px; }
.menu-row-time { font-weight: 500; font-size: 16px; color: var(--text); letter-spacing: 2px; line-height: 40px; }
.menu-row-note { font-size: 10px; color: var(--accent); letter-spacing: 1.5px; font-weight: 300; line-height: 1.6; padding-bottom: 6px; }
.menu-row-price { text-align: right; }
.menu-row-price .num { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 20px; color: var(--accent); letter-spacing: 1px; line-height: 40px; }
.menu-row-price .yen { font-family: 'Noto Serif JP', serif; font-weight: 400; font-size: 12px; color: var(--accent); letter-spacing: 1px; }

/* 16. ACCESS */
.access-section { display: flex; flex-direction: column; align-items: center; padding-bottom: 40px; width: 100%; }
.access-salon-img { width: 354px; height: 206px; border-radius: 10px; overflow: hidden; margin: 0 auto; }
.access-salon-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.access-info { display: flex; gap: 22px; padding: 20px 0; margin: 0 auto; }
.access-left { display: flex; flex-direction: column; gap: 25px; }
.access-row { display: flex; gap: 5px; align-items: center; }
.access-icon { width: 24px; height: 24px; flex-shrink: 0; }
.access-icon img { width: 100%; height: 100%; object-fit: contain; }
.access-text { font-size: 9px; color: var(--text); line-height: 10px; }
.access-text p { line-height: 15px; white-space: nowrap; }
.direction-btn { background: rgba(255,255,255,0.8); box-shadow: 0 4px 4px rgba(0,0,0,0.1); border-radius: 5px; border: none; padding: 10px; cursor: pointer; display: flex; align-items: center; gap: 10px; }
.direction-btn span { font-size: 10px; color: var(--text); white-space: nowrap; }
.arrow-icon { width: 5.5px; height: 10px; display: flex; }
.arrow-icon img { width: 100%; height: 100%; object-fit: contain; }
.access-right { display: flex; flex-direction: column; gap: 13px; }
.access-hours-row { display: flex; gap: 10px; align-items: center; }
.access-hours-icon { width: 20px; height: 20px; flex-shrink: 0; }
.access-hours-icon img { width: 100%; height: 100%; object-fit: contain; }
.access-hours-label { font-size: 9px; color: var(--text); line-height: 15px; }
.access-hours-value { font-size: 9px; color: var(--text); line-height: 15px; }
.google-map-wrap { width: 150px; height: 83px; border-radius: 5px; overflow: hidden; box-shadow: 0 2.7px 1.4px rgba(0,0,0,0.1); }
.google-map-wrap iframe { width: 100%; height: 100%; border: none; }

/* 17. FAQ */
.faq-section { display: flex; flex-direction: column; align-items: center; padding-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 20px; width: 354px; }
.faq-item { border-radius: 5px; overflow: hidden; }
.faq-question { background: #ece4d9; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 20px; min-height: 40px; cursor: pointer; user-select: none;}
.faq-question p { font-weight: 500; font-size: 12px; color: var(--text); line-height: 1.6; }
.faq-arrow { object-fit: contain; flex-shrink: 0; transition: transform 0.3s ease; margin: auto 0;}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { background: rgba(236,228,217,0.4); max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 20px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 14px 20px; }
.faq-answer p { font-size: 11px; color: var(--subtext); letter-spacing: 2px; line-height: 1.9; font-weight: 300; }

/* FLOW */

/* 18. CONTACT */
.contact-section { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.contact-block { display: flex; flex-direction: column; gap: 20px; align-items: center; width: 100%; }
.contact-label-row { display: flex; gap: 10px; align-items: center; }
.contact-label-row .line { width: 15px; height: 1px; background: var(--accent); opacity: 0.7; }
.contact-label-row p { font-weight: 500; font-size: 14px; color: var(--accent); text-align: center; line-height: 20px; }
.booking-btn-wrap { display: flex; flex-direction: column; gap: 10px; align-items: center; width: 250px; }
.booking-btn { width: 250px; height: 80px; background: #d7a297; position: relative; overflow: hidden; display: block; text-decoration: none; }
.booking-btn-inner { position: absolute; inset: 3px; border: 0.73px solid rgba(246,244,240,0.6); display: flex; align-items: center; justify-content: center; gap: 6px; }
.booking-btn-inner span { font-family: 'Noto Serif JP', serif; font-weight: 600; font-size: 14px; color: var(--bg); white-space: nowrap; letter-spacing: 1px; }
.booking-btn-inner .btn-arrow { font-size: 11px; color: var(--bg); }
.booking-note { font-size: 10px; color: var(--subtext); text-align: center; }
.contact-divider-dot { width: 29px; height: 1px; background: var(--accent); opacity: 0.5; }
.contact-sns-row { display: flex; gap: 10px; align-items: center; }
.line-btn, .instagram-btn { width: 120px; height: 45px; border: 0.5px solid var(--accent); display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.line-btn span, .instagram-btn span { font-size: 9.4px; color: var(--accent); letter-spacing: 1px; }
.sns-icon { width: 11px; height: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sns-icon img { width: 100%; height: 100%; object-fit: contain; }
.contact-arrow { font-size: 8px; color: var(--accent); }
.contact-hours { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 10px; color: var(--subtext); letter-spacing: 5px; font-weight: 300; }
.contact-hours .label p, .contact-hours .val p { line-height: 15px; }

/* 19. フッター */
footer { background: var(--brown); height: 120px; overflow: hidden; position: relative; margin-top: 80px; }
.footer-left { position: absolute; left: 0; top: 0; display: flex; flex-direction: column; justify-content: space-between; height: 120px; padding: 20px 0 20px 24px; }
.footer-logo { width: 108px; height: 51px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left; filter: brightness(0) invert(1); }
.footer-copy { font-family: 'Playfair Display', serif; font-size: 10px; color: rgba(255,255,255,0.7); line-height: 20px; }
.footer-right { position: absolute; right: 0; top: 0; display: flex; flex-direction: column; justify-content: space-between; align-items: center; height: 120px; width: 145px; padding: 20px 28px 20px 14px; }
.footer-booking { border: 0.66px solid var(--accent-pink); display: flex; align-items: center; gap: 7px; padding: 9px 14px; text-decoration: none; }
.footer-booking span { font-family: 'Noto Serif JP', serif; font-weight: 600; font-size: 11px; color: var(--accent-pink); white-space: nowrap; line-height: 1.4; }
.footer-booking .arrow { font-size: 11px; color: var(--accent-pink); }
.footer-sns { display: flex; gap: 12px; align-items: center; }
.footer-sns a { display: block; width: 20px; height: 20px; }
.footer-sns a img { width: 100%; height: 100%; object-fit: contain; }

/* 20. container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─────────────────────────────────────────────────────
   21. FLOW（ご来店の流れ カルーセル）
───────────────────────────────────────────────────── */
.flow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
  overflow: hidden;
}

/* カルーセル外枠（はみ出し非表示） */
.flow-carousel-outer {
  width: 354px;
  max-width: 354px;
  overflow: hidden;
  position: relative;
  padding-bottom: 8px;
}

/* トラック（カードを横並びにする） */
.flow-track {
  display: flex;
  gap: 16px;
  padding: 8px 0 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── ステップカード共通 ── */
.flow-card {
  flex-shrink: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}

/* ── ヘッダー行（番号円 + タイトル） ── */
.flow-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-num-bg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--accent);
  line-height: 1;
}

.flow-card-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.flow-step-label {
  font-size: 8px;
  color: var(--accent-light);
  letter-spacing: 4px;
  font-weight: 400;
  line-height: 1;
}

.flow-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1.4;
}

/* ── 区切り線 ── */
.flow-card-divider {
  width: 28px;
  height: 0.5px;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── 本文 ── */
.flow-card-text {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--subtext);
  letter-spacing: 1.5px;
  line-height: 2;
  flex: 1;
}

.flow-card-text strong {
  font-weight: 500;
  color: var(--text);
}

/* ── 写真プレースホルダー ── */
.flow-card-img {
  width: 100%;
  height: 86px;
  border-radius: 6px;
  background: #e8e3db;
  overflow: hidden;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* srcが空のときは非表示 */
.flow-card-img img[src=""] {
  display: none;
}

/* ── NOTE カード（初めての方へ） ── */
.flow-note-card {
  background: rgba(246, 244, 240, 0.9);
  border: 0.5px solid rgba(148, 120, 82, 0.4);
  justify-content: flex-start;
}

.flow-note-mark {
  font-size: 18px;
  color: var(--accent);
  line-height: 1;
}

.flow-note-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 3px;
}

/* ── プログレスバー ── */
.flow-progress-wrap {
  width: 200px;
  height: 2px;
  background: rgba(148, 120, 82, 0.2);
  border-radius: 2px;
  margin: 14px auto 0;
  overflow: hidden;
}

.flow-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
  width: 0%;
}

/* ── ナビ行（‹ ドット ›） ── */
.flow-nav-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}

.flow-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid var(--accent);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--accent);
  transition: background 0.2s;
  line-height: 1;
}

.flow-nav-btn:hover { background: rgba(148, 120, 82, 0.1); }
.flow-nav-btn:disabled { opacity: 0.3; cursor: default; }

.flow-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.flow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.flow-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}