  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --off-white: #FAF8F5;
    --beige-light: #F0EAE0;
    --beige-mid: #DDD0C0;
    --beige-dark: #B5A090;
    --brown-warm: #6B5147;
    --brown-deep: #3D2E28;
    --rose-gold: #C4977A;
    --rose-pale: #EED8CC;
    --text-main: #2A2018;
    --text-sub: #8A7568;
    --text-pale: #B5A090;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Noto Sans JP', sans-serif; background: var(--off-white); color: var(--text-main); font-weight: 300; overflow-x: hidden; }

  /* HEADER */
  header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(250,248,245,0.92); backdrop-filter: blur(12px); border-bottom: 0.5px solid var(--beige-mid); padding: 0 40px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
  .logo { font-family: 'Shippori Mincho', serif; font-size: 18px; font-weight: 600; letter-spacing: 0.08em; color: var(--brown-deep); text-decoration: none; }
  .logo span { color: var(--rose-gold); }
  nav { display: flex; gap: 28px; align-items: center; }
  nav a { font-size: 12px; letter-spacing: 0.1em; color: var(--text-sub); text-decoration: none; transition: color 0.2s; }
  nav a:hover { color: var(--brown-deep); }
  .header-icons { display: flex; align-items: center; gap: 4px; }
  .header-icon-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 6px 14px; text-decoration: none; border-radius: 4px; transition: background 0.2s; cursor: pointer; border: none; background: transparent; }
  .header-icon-btn:hover { background: rgba(196,151,122,0.1); }
  .header-icon-btn img { width: 24px; height: 24px; object-fit: contain; display: block; }
  .header-icon-label { font-size: 10px; letter-spacing: 0.06em; color: var(--text-sub); white-space: nowrap; font-family: 'Noto Sans JP', sans-serif; }

  /* Google翻訳ウィジェット: 独自UIは非表示にし、Langボタンから制御する */
  .skiptranslate { display: none !important; }
  iframe.skiptranslate { display: none !important; }
  body { top: 0 !important; }
  .goog-text-highlight { background: none !important; box-shadow: none !important; }

  /* FIRST VIEW */
  .fv { height: 100vh; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
  .fv-video { position: absolute; inset: 0; background: linear-gradient(145deg, #DDD0C0 0%, #C4B4A4 40%, #A8957E 100%); display: flex; align-items: center; justify-content: center; }
  .fv-video video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .fv-video-placeholder { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.25em; color: rgba(61,46,40,0.35); text-transform: uppercase; text-align: center; }
  .fv-video-placeholder p { margin-top: 8px; font-size: 10px; }
  .fv-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(39,28,22,0.68) 0%, rgba(39,28,22,0.1) 55%, transparent 100%); }
  .fv-content { position: relative; z-index: 2; padding: 0 64px 72px; width: 100%; }
  .fv-eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.35em; color: var(--rose-gold); margin-bottom: 16px; text-transform: uppercase; }
  .fv-title { font-family: 'Shippori Mincho', serif; font-size: clamp(42px,6vw,80px); font-weight: 400; line-height: 1.2; color: #FAF8F5; letter-spacing: 0.04em; margin-bottom: 20px; }
  .fv-title em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: clamp(52px,7.5vw,100px); color: var(--rose-gold); vertical-align: middle; }
  .fv-sub { font-size: 14px; font-weight: 300; letter-spacing: 0.12em; color: rgba(250,248,245,0.75); margin-bottom: 36px; line-height: 2; }
  .fv-cta { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary { background: var(--rose-gold); color: #FAF8F5; border: none; border-radius: 2px; padding: 14px 36px; font-size: 13px; letter-spacing: 0.12em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; text-decoration: none; display: inline-block; transition: background 0.2s; }
  .btn-primary:hover { background: #B8896B; }
  .btn-outline { background: transparent; color: #FAF8F5; border: 0.5px solid rgba(250,248,245,0.55); border-radius: 2px; padding: 14px 36px; font-size: 13px; letter-spacing: 0.12em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; font-weight: 300; text-decoration: none; display: inline-block; transition: all 0.2s; }
  .btn-outline:hover { border-color: #FAF8F5; background: rgba(250,248,245,0.08); }
  .fv-scroll { position: absolute; right: 40px; bottom: 80px; writing-mode: vertical-rl; font-size: 10px; letter-spacing: 0.2em; color: rgba(250,248,245,0.5); text-transform: uppercase; font-family: 'Cormorant Garamond', serif; display: flex; align-items: center; gap: 12px; }
  .fv-scroll::after { content: ''; display: block; width: 0.5px; height: 60px; background: rgba(250,248,245,0.35); animation: scrollLine 1.8s ease-in-out infinite; }
  @keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

  /* FLOAT BAR */
  .float-bar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 99; background: rgba(61,46,40,0.95); backdrop-filter: blur(8px); padding: 12px 40px; display: flex; align-items: center; justify-content: space-between; border-top: 0.5px solid rgba(196,151,122,0.3); }
  .float-bar-tel { font-family: 'Cormorant Garamond', serif; font-size: 22px; letter-spacing: 0.06em; color: #FAF8F5; }
  .float-bar-tel span { font-size: 11px; letter-spacing: 0.15em; display: block; color: var(--rose-gold); margin-bottom: 2px; }
  .float-btns { display: flex; gap: 12px; }
  .btn-tel { background: var(--rose-gold); color: #FAF8F5; border: none; border-radius: 2px; padding: 10px 24px; font-size: 12px; letter-spacing: 0.1em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; text-decoration: none; display: inline-block; }
  .btn-line2 { background: #06C755; color: #fff; border: none; border-radius: 2px; padding: 10px 24px; font-size: 12px; letter-spacing: 0.1em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; text-decoration: none; display: inline-block; }

  /* SECTION COMMON */
  section { padding: 100px 64px; }
  .section-label { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.3em; color: var(--rose-gold); text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 16px; }
  .section-label::before { content: ''; display: block; width: 32px; height: 0.5px; background: var(--rose-gold); }
  .section-title { font-family: 'Shippori Mincho', serif; font-size: clamp(28px,3.5vw,44px); font-weight: 400; line-height: 1.5; letter-spacing: 0.06em; color: var(--brown-deep); margin-bottom: 32px; }
  .section-body { font-size: 14px; line-height: 2.2; color: var(--text-sub); letter-spacing: 0.06em; max-width: 560px; }

  /* ABOUT */
  .about { background: var(--beige-light); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual { position: relative; height: 480px; overflow: hidden; border-radius: 1px; }
  .about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .about-catch { font-family: 'Shippori Mincho', serif; font-size: clamp(22px,2.8vw,36px); font-weight: 400; line-height: 1.8; letter-spacing: 0.08em; color: var(--brown-deep); margin-bottom: 28px; }
  .about-catch em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.3em; color: var(--rose-gold); }

  /* FEATURE */
  .feature { background: var(--off-white); }
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
  .feature-card { position: relative; overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; }
  .feature-card-img { position: absolute; inset: 0; }
  .feature-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .feature-card:hover .feature-card-img img { transform: scale(1.04); }
  .feature-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(39,28,22,0.82) 0%, rgba(39,28,22,0.2) 60%, transparent 100%); }
  .feature-card-body { position: relative; z-index: 2; padding: 28px; }
  .feature-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; font-style: italic; color: rgba(250,248,245,0.35); line-height: 1; margin-bottom: 8px; }
  .feature-name { font-family: 'Shippori Mincho', serif; font-size: 15px; font-weight: 500; letter-spacing: 0.08em; color: #FAF8F5; margin-bottom: 10px; line-height: 1.7; }
  .feature-text { font-size: 12px; line-height: 1.9; color: rgba(250,248,245,0.7); letter-spacing: 0.05em; }
  .feature-cta-card { background: var(--rose-pale); min-height: 380px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 40px 32px; }
  .feature-cta-btn { margin-top: 24px; background: var(--brown-deep); color: #FAF8F5; border: none; border-radius: 2px; padding: 14px 28px; font-size: 12px; letter-spacing: 0.12em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; text-decoration: none; display: inline-block; }
  .feature-therapist-btn { margin-top: 32px; display: inline-block; background: var(--rose-gold); color: #FAF8F5; border: none; border-radius: 2px; padding: 16px 40px; font-size: 13px; letter-spacing: 0.15em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; text-decoration: none; }

  /* SCENES */
  .scenes { background: var(--brown-deep); padding: 100px 0; }
  .scenes-inner { padding: 0 64px; }
  .scenes .section-label { color: var(--rose-gold); }
  .scenes .section-label::before { background: var(--rose-gold); }
  .scenes .section-title { color: #FAF8F5; }
  .scenes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 56px; }
  .scene-card { position: relative; overflow: hidden; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; }
  .scene-card-img { position: absolute; inset: 0; }
  .scene-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .scene-card:hover .scene-card-img img { transform: scale(1.04); }
  .scene-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(39,28,22,0.88) 0%, rgba(39,28,22,0.3) 55%, transparent 100%); }
  .scene-card-body { position: relative; z-index: 2; padding: 24px 20px; }
  .scene-title { font-family: 'Shippori Mincho', serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; color: #FAF8F5; margin-bottom: 10px; line-height: 1.7; }
  .scene-text { font-size: 11px; line-height: 1.9; color: rgba(250,248,245,0.6); letter-spacing: 0.04em; }

  /* GRAPH */
  .graph-section { background: var(--beige-light); }
  .graph-wrap { margin-top: 48px; border-radius: 2px; overflow: hidden; }
  .graph-wrap img { width: 100%; display: block; }

  /* REVIEW */
  .review { background: var(--off-white); }
  .review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px; }
  .review-card { background: var(--beige-light); padding: 36px 32px; }
  .review-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
  .review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--beige-mid); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--brown-warm); font-style: italic; }
  .review-meta { flex: 1; }
  .review-person { font-size: 11px; letter-spacing: 0.1em; color: var(--text-sub); margin-bottom: 4px; }
  .review-course { font-size: 11px; letter-spacing: 0.06em; color: var(--text-pale); }
  .review-stars { color: var(--rose-gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 10px; }
  .review-title { font-family: 'Shippori Mincho', serif; font-size: 16px; font-weight: 500; letter-spacing: 0.06em; color: var(--brown-deep); margin-bottom: 12px; }
  .review-body { font-size: 12px; line-height: 2; color: var(--text-sub); letter-spacing: 0.05em; }

  /* PICKUP / おすすめセラピスト */
  .pickup { background: var(--beige-light); }
  .pickup-card { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 900px; }
  .pickup-photo { position: relative; min-height: 500px; overflow: hidden; }
  .pickup-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .pickup-info { background: var(--brown-deep); padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
  .pickup-label { font-family: 'Cormorant Garamond', serif; font-size: 10px; letter-spacing: 0.3em; color: var(--rose-gold); text-transform: uppercase; margin-bottom: 12px; }
  .pickup-name-en { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; font-style: italic; color: rgba(250,248,245,0.2); line-height: 1; margin-bottom: 4px; }
  .pickup-name-jp { font-family: 'Shippori Mincho', serif; font-size: 28px; font-weight: 400; letter-spacing: 0.2em; color: #FAF8F5; margin-bottom: 12px; }
  .pickup-age { font-size: 12px; letter-spacing: 0.12em; color: rgba(250,248,245,0.5); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 0.5px solid rgba(250,248,245,0.12); }
  .pickup-desc { font-size: 13px; line-height: 2; color: rgba(250,248,245,0.65); letter-spacing: 0.06em; margin-bottom: 28px; }
  .pickup-ratings { display: flex; gap: 20px; flex-wrap: wrap; }
  .pickup-rating { text-align: center; }
  .pickup-rating-icon { font-size: 18px; color: var(--rose-gold); display: block; margin-bottom: 4px; }
  .pickup-rating-label { font-size: 10px; letter-spacing: 0.1em; color: rgba(250,248,245,0.4); display: block; margin-bottom: 4px; }
  .pickup-rating-stars { color: var(--rose-gold); font-size: 11px; letter-spacing: 2px; }

  /* FLOW */
  .flow { background: var(--off-white); }
  .flow-steps { display: flex; gap: 0; margin-top: 56px; position: relative; }
  .flow-steps::before { content: ''; position: absolute; top: 32px; left: 32px; right: 32px; height: 0.5px; background: var(--beige-mid); }
  .flow-step { flex: 1; padding: 0 20px; position: relative; }
  .flow-num { width: 64px; height: 64px; border-radius: 50%; background: var(--off-white); border: 0.5px solid var(--beige-mid); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--rose-gold); position: relative; z-index: 1; }
  .flow-step-title { font-family: 'Shippori Mincho', serif; font-size: 14px; font-weight: 500; letter-spacing: 0.08em; color: var(--brown-deep); text-align: center; margin-bottom: 12px; }
  .flow-step-text { font-size: 12px; line-height: 1.9; color: var(--text-sub); letter-spacing: 0.05em; text-align: center; }

  /* PRICING */
  .pricing { background: var(--beige-light); }
  .pricing-block { margin-top: 48px; }
  .pricing-category { margin-bottom: 40px; }
  .pricing-category-title { font-family: 'Shippori Mincho', serif; font-size: 15px; font-weight: 500; letter-spacing: 0.1em; color: var(--brown-deep); padding: 12px 0; border-bottom: 0.5px solid var(--rose-gold); margin-bottom: 0; }
  .pricing-table { width: 100%; border-collapse: collapse; max-width: 680px; }
  .pricing-table td { padding: 16px 20px; font-size: 14px; letter-spacing: 0.06em; color: var(--brown-deep); border-bottom: 0.5px solid var(--beige-mid); }
  .pricing-table tr:last-child td { border-bottom: none; }
  .pricing-table .price { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--rose-gold); text-align: right; }
  .pricing-note { margin-top: 20px; font-size: 12px; color: var(--text-sub); letter-spacing: 0.06em; line-height: 2; max-width: 680px; }
  .pricing-area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 680px; margin-top: 0; }
  .pricing-area-row { display: contents; }
  .pricing-area-row td { padding: 12px 20px; font-size: 13px; color: var(--text-sub); border-bottom: 0.5px solid var(--beige-mid); letter-spacing: 0.05em; }
  .pricing-area-row td:last-child { color: var(--rose-gold); font-family: 'Cormorant Garamond', serif; font-size: 16px; text-align: right; }
  .option-table td { padding: 14px 20px; font-size: 13px; color: var(--text-sub); border-bottom: 0.5px solid var(--beige-mid); letter-spacing: 0.05em; }
  .option-table td:last-child { color: var(--rose-gold); font-family: 'Cormorant Garamond', serif; font-size: 16px; text-align: right; }

  /* FAQ */
  .faq { background: var(--off-white); }
  .faq-list { margin-top: 56px; max-width: 720px; }
  .faq-item { border-bottom: 0.5px solid var(--beige-mid); }
  .faq-q { display: flex; align-items: center; gap: 20px; padding: 24px 0; cursor: pointer; }
  .faq-q-mark { width: 28px; height: 28px; border-radius: 50%; background: var(--rose-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: var(--rose-gold); }
  .faq-q-text { font-family: 'Shippori Mincho', serif; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; color: var(--brown-deep); flex: 1; }
  .faq-chevron { font-size: 18px; color: var(--beige-dark); transition: transform 0.3s; }
  .faq-a { display: none; padding: 0 0 24px 48px; font-size: 13px; line-height: 2; color: var(--text-sub); letter-spacing: 0.06em; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  /* NEWS */
  .news { background: var(--beige-light); }
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
  .news-item { background: var(--off-white); padding: 28px 24px; }
  .news-tag { font-size: 10px; letter-spacing: 0.15em; color: var(--rose-gold); text-transform: uppercase; margin-bottom: 10px; }
  .news-title { font-size: 13px; line-height: 1.8; color: var(--brown-deep); letter-spacing: 0.05em; margin-bottom: 12px; font-family: 'Shippori Mincho', serif; }
  .news-date { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--text-pale); letter-spacing: 0.1em; }

  /* FINAL CTA */
  .final-cta { background: var(--brown-deep); padding: 100px 64px; text-align: center; }
  .final-cta .section-label { justify-content: center; }
  .final-cta .section-label::before { display: none; }
  .final-cta-title { font-family: 'Shippori Mincho', serif; font-size: clamp(28px,3.5vw,48px); font-weight: 400; letter-spacing: 0.08em; color: #FAF8F5; margin-bottom: 16px; line-height: 1.6; }
  .final-cta-sub { font-size: 13px; color: rgba(250,248,245,0.55); letter-spacing: 0.1em; line-height: 2; margin-bottom: 48px; }
  .final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-cta-primary { background: var(--rose-gold); color: #FAF8F5; border: none; border-radius: 2px; padding: 16px 48px; font-size: 14px; letter-spacing: 0.15em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; text-decoration: none; display: inline-block; }
  .btn-cta-line { background: #06C755; color: #fff; border: none; border-radius: 2px; padding: 16px 48px; font-size: 14px; letter-spacing: 0.15em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; text-decoration: none; display: inline-block; }
  .btn-cta-schedule { background: transparent; color: rgba(250,248,245,0.7); border: 0.5px solid rgba(250,248,245,0.25); border-radius: 2px; padding: 16px 48px; font-size: 14px; letter-spacing: 0.15em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; font-weight: 300; text-decoration: none; display: inline-block; }

  /* FOOTER */
  footer { background: #231A16; padding: 60px 64px 80px; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; border-bottom: 0.5px solid rgba(255,255,255,0.08); margin-bottom: 40px; }
  .footer-logo { font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 600; letter-spacing: 0.1em; color: #FAF8F5; }
  .footer-logo span { color: var(--rose-gold); }
  .footer-logo-sub { font-size: 10px; letter-spacing: 0.2em; color: rgba(250,248,245,0.3); margin-top: 4px; text-transform: uppercase; font-family: 'Cormorant Garamond', serif; }
  .footer-nav { display: flex; gap: 48px; }
  .footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
  .footer-nav-title { font-size: 10px; letter-spacing: 0.2em; color: var(--rose-gold); text-transform: uppercase; margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; }
  .footer-nav a { font-size: 12px; color: rgba(250,248,245,0.4); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; }
  .footer-nav a:hover { color: rgba(250,248,245,0.75); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 10px; color: rgba(250,248,245,0.25); letter-spacing: 0.12em; font-family: 'Cormorant Garamond', serif; }
  .footer-sns { display: flex; gap: 16px; }
  .footer-sns a { width: 32px; height: 32px; border: 0.5px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(250,248,245,0.4); font-size: 13px; text-decoration: none; transition: all 0.2s; }
  .footer-sns a:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
  .footer-recruit { margin-top: 32px; padding: 20px 24px; border: 0.5px solid rgba(196,151,122,0.2); display: flex; align-items: center; justify-content: space-between; }
  .footer-recruit-text { font-size: 12px; color: rgba(250,248,245,0.45); letter-spacing: 0.1em; }
  .footer-recruit a { font-size: 11px; color: var(--rose-gold); text-decoration: none; letter-spacing: 0.12em; }

  /* TIKTOK TIMELINE */
  .tiktok-timeline { background: var(--off-white); text-align: center; }
  .tiktok-timeline .section-label { justify-content: center; }
  .tiktok-timeline .section-label::before { display: none; }
  .tiktok-embed-wrap { margin-top: 40px; display: flex; justify-content: center; }

  /* CONTACT MODAL */
  .modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(39,28,22,0.6); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.25s ease; }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal-box { position: relative; background: var(--off-white); width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto; padding: 48px 40px; border-radius: 2px; }
  .modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: transparent; font-size: 22px; line-height: 1; color: var(--text-sub); cursor: pointer; }
  .modal-close:hover { color: var(--brown-deep); }
  .modal-title { font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 500; letter-spacing: 0.06em; color: var(--brown-deep); margin-bottom: 28px; }
  .modal-field { margin-bottom: 20px; }
  .modal-field label { display: block; font-size: 12px; letter-spacing: 0.08em; color: var(--text-sub); margin-bottom: 8px; }
  .modal-required { color: #B0433D; margin-left: 2px; }
  .modal-field input, .modal-field textarea { width: 100%; border: 0.5px solid var(--beige-mid); border-radius: 2px; padding: 12px 14px; font-size: 14px; font-family: 'Noto Sans JP', sans-serif; color: var(--text-main); background: #fff; }
  .modal-field input:focus, .modal-field textarea:focus { outline: none; border-color: var(--rose-gold); }
  .modal-field textarea { resize: vertical; }
  .modal-submit { width: 100%; margin-top: 8px; }
  .modal-error { background: rgba(176,67,61,0.08); color: #B0433D; font-size: 12px; letter-spacing: 0.05em; padding: 12px 16px; border-radius: 2px; margin-bottom: 20px; }
  .modal-confirm-list { margin-bottom: 8px; }
  .modal-confirm-list dt { font-size: 11px; letter-spacing: 0.1em; color: var(--rose-gold); margin-top: 20px; margin-bottom: 6px; }
  .modal-confirm-list dt:first-child { margin-top: 0; }
  .modal-confirm-list dd { font-size: 14px; color: var(--text-main); letter-spacing: 0.04em; line-height: 1.8; }
  .modal-confirm-message { white-space: pre-wrap; }
  .modal-confirm-btns { display: flex; gap: 12px; margin-top: 32px; }
  .modal-confirm-btns button { flex: 1; }
  .btn-outline-dark { background: transparent; color: var(--brown-deep); border: 0.5px solid var(--beige-dark); border-radius: 2px; padding: 14px 24px; font-size: 13px; letter-spacing: 0.1em; cursor: pointer; font-family: 'Noto Sans JP', sans-serif; }
  .btn-outline-dark:hover { border-color: var(--brown-deep); }
  .modal-done-text { font-size: 13px; line-height: 2; color: var(--text-sub); letter-spacing: 0.05em; margin-bottom: 32px; }

  @media (max-width: 600px) {
    .modal-box { padding: 40px 24px; }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .header-icon-btn { padding: 6px 8px; }
    .header-icon-label { display: none; }
    section { padding: 72px 24px; }
    .fv-content { padding: 0 24px 100px; }
    .fv-scroll { display: none; }
    /* ABOUT mobile: 写真を文字の背景に */
    .about { grid-template-columns: 1fr; gap: 0; position: relative; padding: 72px 24px; }
    .about-visual { position: absolute; inset: 0; height: 100%; z-index: 0; border-radius: 0; }
    .about-visual::after { content: ''; position: absolute; inset: 0; background: rgba(250,248,245,0.82); }
    .about-visual img { object-position: center; }
    .about > div:last-child { position: relative; z-index: 1; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-card { min-height: 280px; }
    .feature-cta-card { min-height: 200px; grid-column: span 2; }
    .scenes-grid { grid-template-columns: 1fr 1fr; }
    .scene-card { min-height: 280px; }
    .scenes-inner { padding: 0 24px; }
    .review-grid { grid-template-columns: 1fr; }
    .pickup-card { grid-template-columns: 1fr; max-width: 100%; }
    .pickup-photo { min-height: 360px; }
    .flow-steps { flex-direction: column; gap: 32px; }
    .flow-steps::before { display: none; }
    .pricing-area-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .final-cta { padding: 72px 24px; }
    footer { padding: 48px 24px 80px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-nav { flex-direction: column; gap: 32px; }
    .float-bar { padding: 12px 20px; }
    .float-bar-tel { font-size: 18px; }
  }
  @media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
    .feature-cta-card { grid-column: span 1; }
    .scenes-grid { grid-template-columns: 1fr; }
  }
