:root {
    /* Refined family-friendly palette - slightly more mature */
    --teal:        #0E8E9C;
    --teal-deep:   #086773;
    --teal-light:  #C5E4E8;
    --teal-pale:   #E8F4F5;
    --coral:       #E55A4D;
    --coral-deep:  #C13C30;
    --coral-light: #FAD9D3;
    --sunny:       #E5B23A;
    --sunny-light: #F5E4B0;
    --mint:        #4DBE94;
    --mint-light:  #D2EEDF;
    --peach:       #F5E0D0;
    --cream:       #FBF6EC;
    --paper:       #FFFFFF;
    --navy:        #1B2740;
    --navy-soft:   #4A5570;
    --rule:        rgba(27, 39, 64, 0.1);
    --shadow-1:    0 6px 20px rgba(27, 39, 64, 0.08);
    --shadow-2:    0 16px 40px rgba(27, 39, 64, 0.12);
    --shadow-3:    0 30px 70px rgba(27, 39, 64, 0.18);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.85;
    font-size: 17px;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ============ 日本語の美しい改行コントロール ============ */
  h1, h2, h3, h4, h5, h6, p, .display, .mincho {
    word-break: normal;
    overflow-wrap: break-word;
    /* 魔法1：句読点（。や、）が先頭・末尾で孤立するのを強力に防ぐ */
    line-break: strict;
  }
  
  /* 魔法2：見出しの文字数を左右でバランス良く自動調整する */
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }

  /* 魔法3：段落の最後の行に「1文字だけ」落ちるのを防ぐ */
  p {
    text-wrap: pretty;
  }

  /* PCでは塊にし、スマホでは自然な折り返しに切り替える */
  .nobr {
    display: inline-block;
  }
  @media (max-width: 720px) {
    .nobr {
      display: inline;
    }
  }

  .display { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; line-height: 1.45; letter-spacing: 0.02em; }
  .mincho { font-family: 'Shippori Mincho B1', serif; font-weight: 700; letter-spacing: 0.04em; }
  .serif-en { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-style: italic; letter-spacing: 0.05em; }
  .label-en { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-style: italic; font-size: 16px; letter-spacing: 0.15em; }

  img, svg { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ============ HEADER & NAV ============ */
  .site-header {
    background: white;
    box-shadow: 0 2px 15px rgba(27, 39, 64, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
  }
  .nav-logo {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-logo .en { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--teal); font-weight: 600; font-size: 16px; }
  .nav-list { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
  .nav-link { font-weight: 700; font-size: 15px; color: var(--navy); transition: color 0.2s; }
  .nav-link:hover { color: var(--coral); }

  @media (max-width: 720px) {
    .nav-container { padding: 14px 20px; flex-direction: column; gap: 12px; }
    .nav-list { gap: 20px; }
    .nav-link { font-size: 14px; }
    .nav-logo .en { display: none; }
  }

  /* ============ TOPBAR ============ */
  .topbar { background: var(--navy); color: var(--cream); padding: 10px 20px; text-align: center; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; }
  .topbar .dot { color: var(--sunny); margin: 0 10px; }

  /* ============ FLOATING CTA ============ */
  .floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 100; display: flex; flex-direction: column; gap: 12px; }
  .float-btn { display: flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; box-shadow: var(--shadow-2); transition: all .25s; color: white; }
  .float-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--shadow-3); }
  .float-btn.line { background: #06C755; }
  .float-btn.tel  { background: var(--coral); }
  .float-btn svg { width: 20px; height: 20px; }
  @media (max-width: 720px) { .floating-cta { bottom: 12px; right: 10px; left: 10px; flex-direction: row; } .float-btn { flex: 1; justify-content: center; padding: 13px 16px; font-size: 14px; } }

  /* ============ SECTION BASE ============ */
  section { padding: 100px 24px; position: relative; }
  .container { max-width: 1240px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 70px; }
  .section-eyebrow { display: inline-block; color: var(--coral); margin-bottom: 16px; }
  .section-title { font-size: clamp(28px, 3.8vw, 48px); margin: 0 0 24px; color: var(--navy); }
  .section-title .marker { background: linear-gradient(transparent 62%, var(--sunny-light) 62%); padding: 0 6px; }
  .section-lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 2.05; color: var(--navy-soft); max-width: 720px; margin: 0 auto; }

  /* ============ HERO ============ */
  .hero { position: relative; padding: 60px 24px 80px; background: radial-gradient(ellipse 700px 500px at 90% 10%, var(--teal-pale) 0%, transparent 60%), radial-gradient(ellipse 500px 400px at 5% 80%, var(--peach) 0%, transparent 60%), var(--cream); overflow: hidden; }
  .hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; position: relative; }
  .bubble { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
  .bubble.b1 { width: 60px; height: 60px; background: var(--sunny); top: 8%; left: 4%; opacity: 0.4; animation: float 7s ease-in-out infinite; }
  .bubble.b2 { width: 38px; height: 38px; background: var(--coral); top: 70%; left: 6%; opacity: 0.35; animation: float 9s ease-in-out infinite reverse; }
  .bubble.b3 { width: 24px; height: 24px; background: var(--mint); top: 22%; right: 48%; opacity: 0.4; animation: float 8s ease-in-out infinite; }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
  .hero-content { position: relative; z-index: 2; }
  .hero-tag { display: inline-flex; align-items: center; gap: 10px; background: white; padding: 10px 20px; border-radius: 999px; margin-bottom: 32px; box-shadow: var(--shadow-1); font-weight: 600; font-size: 14px; color: var(--teal-deep); letter-spacing: 0.05em; }
  .hero-tag .dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.4; } }
  .hero-title { font-size: clamp(34px, 5vw, 64px); margin: 0 0 32px; color: var(--navy); }
  .hero-title .coral { color: var(--coral-deep); }
  .hero-title .teal { color: var(--teal-deep); }
  .hero-title .small { display: block; font-size: 0.45em; color: var(--navy-soft); margin-top: 12px; letter-spacing: 0.15em; font-weight: 500; }
  .hero-lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 2.05; color: var(--navy-soft); margin: 0 0 36px; font-weight: 400; }
  .hero-lead strong { color: var(--navy); font-weight: 600; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .btn-cta { display: inline-flex; align-items: center; gap: 12px; padding: 20px 32px; border-radius: 999px; font-size: 17px; font-weight: 700; transition: all .25s; color: white; letter-spacing: 0.05em; }
  .btn-cta.coral { background: var(--coral); box-shadow: 0 10px 24px rgba(229, 90, 77, 0.32); }
  .btn-cta.line  { background: #06C755; box-shadow: 0 10px 24px rgba(6, 199, 85, 0.3); }
  .btn-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
  .btn-cta svg { width: 20px; height: 20px; }
  .hero-trust { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding-top: 32px; border-top: 1px solid var(--rule); }
  .trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--navy); }
  .trust-icon { width: 32px; height: 32px; background: var(--mint-light); color: var(--mint); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
  .trust-icon.coral { background: var(--coral-light); color: var(--coral); }
  .trust-icon.teal  { background: var(--teal-light); color: var(--teal-deep); }
  .trust-icon svg { width: 18px; height: 18px; }
  .hero-photo { position: relative; z-index: 1; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-3); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease-out; }
  .hero-photo:hover img { transform: scale(1.05); }
  .hero-badge { position: absolute; z-index: 4; background: var(--sunny); color: var(--navy); border-radius: 50%; width: 130px; height: 130px; display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-2); transform: rotate(-8deg); border: 5px solid white; }
  .hero-badge.tl { top: -20px; left: -20px; animation: wobble 5s ease-in-out infinite; }
  .hero-badge.br { bottom: 30px; right: -30px; background: var(--coral); color: white; transform: rotate(6deg); animation: wobble 6s ease-in-out infinite reverse; }
  .hero-badge .num { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: 22px; line-height: 1; }
  .hero-badge .yen { font-size: 16px; }
  .hero-badge .lbl { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 12px; margin-top: 4px; line-height: 1.3; }
  @keyframes wobble { 0%, 100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-6px); } }
  @media (max-width: 980px) { .hero { padding: 40px 20px 60px; } .hero-inner { grid-template-columns: 1fr; gap: 40px; } .hero-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4/4; } .hero-badge { width: 110px; height: 110px; } .hero-badge .num { font-size: 20px; } }

  /* ============ MOTTO ============ */
  .motto { background: var(--navy); padding: 80px 24px; color: white; position: relative; overflow: hidden; }
  .motto::before { content: ''; position: absolute; top: -100px; right: -50px; width: 350px; height: 350px; background: radial-gradient(circle, var(--teal) 0%, transparent 60%); opacity: 0.3; pointer-events: none; }
  .motto::after { content: ''; position: absolute; bottom: -100px; left: -50px; width: 300px; height: 300px; background: radial-gradient(circle, var(--coral) 0%, transparent 60%); opacity: 0.2; pointer-events: none; }
  .motto-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 2; }
  .motto-header { text-align: center; margin-bottom: 60px; }
  .motto-tag { display: inline-block; color: var(--sunny); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; letter-spacing: 0.2em; margin-bottom: 16px; }
  .motto-title { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: clamp(26px, 3.4vw, 40px); margin: 0; color: white; line-height: 1.5; }
  .motto-title .em { color: var(--sunny); background: linear-gradient(transparent 62%, rgba(229, 178, 58, 0.25) 62%); padding: 0 4px; }
  .motto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .motto-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 50px 32px; text-align: center; transition: all .35s; position: relative; overflow: hidden; }
  .motto-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); }
  .motto-card:nth-child(1) { --accent: var(--coral); } .motto-card:nth-child(2) { --accent: var(--sunny); } .motto-card:nth-child(3) { --accent: var(--teal-light); }
  .motto-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
  .motto-kanji { font-family: 'Shippori Mincho B1', serif; font-weight: 800; font-size: clamp(64px, 9vw, 110px); line-height: 1; color: var(--accent); margin-bottom: 8px; }
  .motto-en { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: rgba(255,255,255,0.6); letter-spacing: 0.2em; margin-bottom: 24px; }
  .motto-text { font-size: 16px; line-height: 2; color: rgba(255,255,255,0.85); font-weight: 400; }
  @media (max-width: 860px) { .motto-grid { grid-template-columns: 1fr; gap: 16px; } .motto-card { padding: 36px 24px; } }

  /* ============ PAIN ============ */
  .pain { background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%); }
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
  .pain-card { background: white; border-radius: 20px; padding: 40px 30px; text-align: center; box-shadow: var(--shadow-1); transition: transform .3s; position: relative; border: 2px solid white; }
  .pain-card:hover { transform: translateY(-6px); border-color: var(--coral-light); }
  .pain-emoji { width: 88px; height: 88px; background: var(--coral-light); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; color: var(--coral); }
  .pain-card:nth-child(2) .pain-emoji { background: var(--sunny-light); color: #B88A1A; }
  .pain-card:nth-child(3) .pain-emoji { background: var(--teal-light); color: var(--teal-deep); }
  .pain-emoji svg { width: 46px; height: 46px; }
  .pain-text { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 19px; line-height: 1.75; color: var(--navy); margin: 0; }
  .pain-text .em { color: var(--coral-deep); }
  .pain-arrow { text-align: center; }
  .pain-arrow-text { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: clamp(22px, 2.8vw, 32px); color: var(--teal-deep); margin: 0; }
  .pain-arrow-text .em { color: var(--coral-deep); background: var(--sunny-light); padding: 4px 12px; border-radius: 6px; }
  @media (max-width: 860px) { .pain-grid { grid-template-columns: 1fr; gap: 16px; } }

  /* ============ SERVICES ============ */
  .services { background: white; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .svc { border-radius: 24px; overflow: hidden; transition: all .3s; position: relative; background: white; box-shadow: var(--shadow-1); border: 2px solid transparent; }
  .svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
  .svc.teal:hover  { border-color: var(--teal); } .svc.coral:hover { border-color: var(--coral); } .svc.sunny:hover { border-color: var(--sunny); } .svc.mint:hover  { border-color: var(--mint); }
  .svc-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); position: relative; }
  .svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
  .svc:hover .svc-photo img { transform: scale(1.06); }
  .svc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(27, 39, 64, 0.15)); }
  .svc-num { position: absolute; top: 14px; left: 14px; z-index: 2; background: white; padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--navy); }
  .svc.teal  .svc-num { color: var(--teal-deep); } .svc.coral .svc-num { color: var(--coral-deep); } .svc.sunny .svc-num { color: #B88A1A; } .svc.mint  .svc-num { color: #2A8C6A; }
  .svc-tag-camp { position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--coral); color: white; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
  .svc-body { padding: 28px 24px 30px; }
  .svc-title { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: 21px; margin: 0 0 12px; color: var(--navy); line-height: 1.5; }
  .svc-desc { font-size: 15px; line-height: 1.85; color: var(--navy-soft); margin: 0; }
  @media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

  /* ============ CAMPAIGN ============ */
  .campaign { background: linear-gradient(180deg, var(--teal-pale) 0%, var(--cream) 100%); position: relative; overflow: hidden; }
  .campaign::before, .campaign::after { content: ''; position: absolute; border-radius: 50%; opacity: 0.35; pointer-events: none; }
  .campaign::before { width: 280px; height: 280px; background: var(--teal-light); top: -80px; right: -80px; }
  .campaign::after { width: 200px; height: 200px; background: var(--mint-light); bottom: 80px; left: -60px; }
  .campaign-banner-wrap { text-align: center; margin-bottom: 24px; position: relative; z-index: 2; }
  .campaign-banner { background: var(--coral); color: white; padding: 12px 28px; border-radius: 999px; display: inline-block; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.15em; box-shadow: 0 8px 20px rgba(229, 90, 77, 0.3); }
  .campaign-banner .pulse { display: inline-block; animation: pulse 1.6s ease-in-out infinite; margin: 0 8px; }
  .campaign-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 70px; position: relative; z-index: 2; }
  .campaign-title { font-size: clamp(30px, 4.2vw, 54px); margin: 0 0 28px; color: var(--navy); }
  .campaign-title .em { background: linear-gradient(transparent 60%, var(--sunny-light) 60%); color: var(--coral-deep); padding: 0 6px; }
  .campaign-q { background: white; border-radius: 20px; padding: 28px 32px; margin-bottom: 28px; box-shadow: var(--shadow-1); border-left: 5px solid var(--coral); }
  .campaign-q-text { font-family: 'Shippori Mincho B1', serif; font-weight: 600; font-size: 19px; line-height: 1.85; color: var(--navy); margin: 0; }
  .campaign-q-text .red { color: var(--coral-deep); }
  .campaign-q-sub { font-family: 'Noto Sans JP', sans-serif; font-size: 14px; color: var(--navy-soft); margin-top: 12px; line-height: 1.85; font-weight: 400; }
  .campaign-photo { position: relative; aspect-ratio: 1/1; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-3); }
  .campaign-photo img { width: 100%; height: 100%; object-fit: cover; }
  .campaign-photo-tag { position: absolute; top: 20px; left: 20px; background: white; color: var(--navy); font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; padding: 12px 20px; border-radius: 12px; font-size: 16px; box-shadow: var(--shadow-1); }
  .campaign-photo-tag .em { color: var(--coral-deep); }
  .campaign-photo-stamp { position: absolute; bottom: 24px; right: 24px; background: var(--sunny); color: var(--navy); border-radius: 50%; width: 110px; height: 110px; display: grid; place-items: center; text-align: center; transform: rotate(-8deg); box-shadow: var(--shadow-2); border: 4px solid white; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; line-height: 1.3; }
  .campaign-photo-stamp .small { font-size: 12px; display: block; }
  .campaign-photo-stamp .big { font-size: 18px; display: block; }
  @media (max-width: 980px) { .campaign-hero { grid-template-columns: 1fr; gap: 40px; } }

  /* DIRTS */
  .dirts { background: white; border-radius: 28px; padding: 56px 40px; box-shadow: var(--shadow-1); margin-bottom: 56px; position: relative; z-index: 2; }
  .dirts-title { text-align: center; margin-bottom: 36px; }
  .dirts-title h3 { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: clamp(22px, 2.8vw, 30px); color: var(--navy); margin: 0 0 8px; }
  .dirts-title h3 .em { color: var(--coral-deep); }
  .dirts-title p { color: var(--navy-soft); font-size: 15px; margin: 0; }
  .dirts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .dirt { text-align: center; padding: 26px 12px; background: var(--cream); border-radius: 16px; border: 2px solid transparent; transition: all .3s; }
  .dirt:hover { transform: translateY(-4px); background: white; }
  .dirt:nth-child(1):hover { border-color: var(--coral); } .dirt:nth-child(2):hover { border-color: var(--mint); } .dirt:nth-child(3):hover { border-color: var(--sunny); } .dirt:nth-child(4):hover { border-color: var(--teal); } .dirt:nth-child(5):hover { border-color: var(--navy); }
  .dirt-svg { width: 60px; height: 60px; margin: 0 auto 12px; }
  .dirt-name { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); }
  @media (max-width: 860px) { .dirts-grid { grid-template-columns: repeat(3, 1fr); } .dirts { padding: 40px 24px; } }
  @media (max-width: 480px) { .dirts-grid { grid-template-columns: repeat(2, 1fr); } }

  /* BENEFITS */
  .benefits { background: var(--navy); color: white; border-radius: 28px; padding: 56px 40px; position: relative; overflow: hidden; z-index: 2; }
  .benefits::before { content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; background: var(--coral); border-radius: 50%; opacity: 0.2; }
  .benefits::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 180px; height: 180px; background: var(--teal); border-radius: 50%; opacity: 0.3; }
  .benefits-title { text-align: center; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 36px; position: relative; z-index: 2; }
  .benefits-title .em { color: var(--sunny); }
  .benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 2; }
  .ben { display: flex; align-items: flex-start; gap: 16px; background: rgba(255,255,255,0.08); padding: 20px 24px; border-radius: 14px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); }
  .ben-check { flex-shrink: 0; width: 36px; height: 36px; background: var(--mint); border-radius: 50%; display: grid; place-items: center; color: var(--navy); font-weight: 900; }
  .ben-text { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.7; }
  .ben-text .em { color: var(--sunny); }
  @media (max-width: 720px) { .benefits-list { grid-template-columns: 1fr; } .benefits { padding: 40px 24px; } }

  /* ============ BEFORE AFTER ============ */
  .gallery { background: white; }
  .gallery-warn { background: var(--sunny); border-radius: 999px; padding: 14px 32px; margin: 0 auto 50px; max-width: 760px; text-align: center; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: clamp(15px, 1.8vw, 19px); color: var(--navy); box-shadow: var(--shadow-1); display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .gallery-warn .alert { background: var(--coral); color: white; padding: 4px 14px; border-radius: 999px; font-size: 0.9em; }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .ba-card { background: var(--cream); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-1); transition: transform .3s; }
  .ba-card:hover { transform: translateY(-6px); }
  .ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; position: relative; }
  .ba-img { aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; position: relative; }
  .ba-img-label { position: absolute; top: 8px; left: 8px; padding: 4px 12px; border-radius: 999px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: 13px; z-index: 2; letter-spacing: 0.1em; }
  .ba-img-label.before { background: var(--coral); color: white; }
  .ba-img-label.after  { background: var(--mint); color: white; }
  .ba-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 42px; height: 42px; background: var(--sunny); border-radius: 50%; display: grid; place-items: center; z-index: 3; color: var(--navy); font-weight: 900; font-size: 22px; box-shadow: 0 4px 8px rgba(0,0,0,0.15); border: 3px solid white; }
  .ba-caption { text-align: center; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); }
  @media (max-width: 980px) { .gallery-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

  /* ============ OTHER SERVICES ============ */
  .other { background: linear-gradient(180deg, var(--cream) 0%, white 100%); }
  .other-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .other-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-1); transition: all .3s; display: grid; grid-template-columns: 220px 1fr; align-items: stretch; border: 2px solid transparent; }
  .other-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--teal-light); }
  .other-photo { position: relative; overflow: hidden; background: var(--cream); }
  .other-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
  .other-card:hover .other-photo img { transform: scale(1.06); }
  .other-body { padding: 28px 28px 30px; position: relative; }
  .other-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--teal); margin-bottom: 6px; letter-spacing: 0.1em; }
  .other-title { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: 22px; margin: 0 0 12px; color: var(--navy); }
  .other-desc { font-size: 15px; line-height: 1.85; color: var(--navy-soft); margin: 0; }
  @media (max-width: 720px) { .other-grid { grid-template-columns: 1fr; } .other-card { grid-template-columns: 1fr; } .other-photo { aspect-ratio: 16/9; } }

  /* ============ FLOW ============ */
  .flow { background: linear-gradient(180deg, var(--mint-light) 0%, var(--cream) 100%); }
  .flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
  .flow-step { background: white; border-radius: 22px; padding: 36px 22px; text-align: center; position: relative; box-shadow: var(--shadow-1); }
  .flow-num { width: 56px; height: 56px; background: var(--teal); color: white; border-radius: 50%; display: grid; place-items: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: 26px; margin: 0 auto 18px; box-shadow: 0 5px 0 var(--teal-deep); }
  .flow-step:nth-child(2) .flow-num { background: var(--coral); box-shadow: 0 5px 0 var(--coral-deep); }
  .flow-step:nth-child(3) .flow-num { background: var(--sunny); color: var(--navy); box-shadow: 0 5px 0 #B88A1A; }
  .flow-step:nth-child(4) .flow-num { background: var(--mint); box-shadow: 0 5px 0 #2A8C6A; }
  .flow-title { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: 18px; margin: 0 0 8px; color: var(--navy); }
  .flow-desc { font-size: 14px; line-height: 1.75; color: var(--navy-soft); margin: 0; }
  @media (max-width: 860px) { .flow-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ============ PRICING ============ */
  .pricing { background: linear-gradient(180deg, var(--cream) 0%, var(--sunny-light) 100%); }
  .pricing-card { background: white; border-radius: 28px; padding: 56px 50px; max-width: 880px; margin: 0 auto; box-shadow: var(--shadow-3); position: relative; border: 3px solid var(--sunny); }
  .pricing-tag { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); background: var(--coral); color: white; padding: 12px 28px; border-radius: 999px; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: 15px; letter-spacing: 0.12em; box-shadow: 0 8px 20px rgba(229, 90, 77, 0.32); white-space: nowrap; }
  .pricing-tag .star { color: var(--sunny); margin: 0 6px; }
  .pricing-name { text-align: center; margin-bottom: 24px; }
  .pricing-name .small { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--teal-deep); font-size: 14px; margin-bottom: 8px; letter-spacing: 0.18em; }
  .pricing-name .big { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: clamp(22px, 2.6vw, 30px); color: var(--navy); }
  .pricing-price-row { display: flex; align-items: baseline; justify-content: center; gap: 8px; padding: 28px 0; border-top: 2px dashed var(--teal-light); border-bottom: 2px dashed var(--teal-light); margin-bottom: 32px; }
  .pricing-price-row .yen { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 32px; color: var(--coral); }
  .pricing-price-row .num { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(54px, 8vw, 100px); line-height: 0.9; color: var(--navy); letter-spacing: -0.02em; }
  .pricing-price-row .suf { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 26px; color: var(--navy-soft); margin-left: 4px; }
  .pricing-offer { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%); color: white; border-radius: 18px; padding: 24px 28px; margin-bottom: 22px; display: flex; align-items: center; gap: 20px; box-shadow: 0 12px 28px rgba(229, 90, 77, 0.28); }
  .pricing-offer-icon { flex-shrink: 0; width: 78px; height: 78px; background: var(--sunny); color: var(--navy); border-radius: 50%; display: grid; place-items: center; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; text-align: center; line-height: 1.2; transform: rotate(-6deg); box-shadow: 0 4px 0 rgba(0,0,0,0.15); }
  .pricing-offer-icon .small { font-size: 11px; }
  .pricing-offer-icon .big { font-size: 17px; }
  .pricing-offer-text { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.7; }
  .pricing-offer-text .save { display: inline-block; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 26px; color: var(--sunny); margin: 0 4px; }
  .pricing-option { display: flex; align-items: center; justify-content: space-between; background: var(--cream); border-radius: 14px; padding: 18px 24px; gap: 16px; flex-wrap: wrap; }
  .pricing-option-label { display: flex; align-items: center; gap: 12px; flex: 1; }
  .pricing-option-icon { width: 34px; height: 34px; background: var(--teal); color: white; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
  .pricing-option-name { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); }
  .pricing-option-price { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 22px; color: var(--coral-deep); }
  @media (max-width: 720px) { .pricing-card { padding: 50px 24px 32px; } .pricing-offer { flex-direction: column; text-align: center; } }

  /* ============ CONTACT ============ */
  .contact { background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%); color: white; text-align: center; overflow: hidden; position: relative; }
  .contact::before, .contact::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
  .contact::before { width: 380px; height: 380px; background: var(--coral); opacity: 0.12; top: -150px; right: -100px; filter: blur(40px); }
  .contact::after { width: 280px; height: 280px; background: var(--sunny); opacity: 0.12; bottom: -100px; left: -50px; filter: blur(40px); }
  .contact-inner { position: relative; z-index: 2; }
  .contact-eyebrow { color: var(--sunny); }
  .contact-title { color: white; }
  .contact-title em { color: var(--sunny); font-style: normal; }
  .contact-lead { color: rgba(255,255,255,0.85); margin-bottom: 50px; }
  .contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto 40px; }
  .contact-card { background: white; color: var(--navy); border-radius: 24px; padding: 40px 30px; text-align: center; box-shadow: var(--shadow-3); transition: all .3s; display: flex; flex-direction: column; align-items: center; }
  .contact-card:hover { transform: translateY(-6px); }
  .cc-icon { width: 76px; height: 76px; border-radius: 22px; display: grid; place-items: center; margin-bottom: 20px; color: white; }
  .contact-card.tel .cc-icon { background: var(--coral); } .contact-card.line .cc-icon { background: #06C755; }
  .cc-label { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: 15px; letter-spacing: 0.2em; margin-bottom: 12px; }
  .contact-card.tel  .cc-label { color: var(--coral); } .contact-card.line .cc-label { color: #06C755; }
  .cc-value { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(28px, 3.5vw, 38px); color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
  .cc-value-jp { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: clamp(20px, 2.5vw, 26px); color: var(--navy); margin-bottom: 8px; letter-spacing: 0.04em; }
  .cc-meta { font-size: 14px; color: var(--navy-soft); margin-bottom: 22px; }
  .cc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 999px; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; font-size: 16px; color: white; transition: all .25s; width: 100%; justify-content: center; }
  .contact-card.tel .cc-btn  { background: var(--coral); } .contact-card.line .cc-btn { background: #06C755; }
  .cc-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
  @media (max-width: 720px) { .contact-cards { grid-template-columns: 1fr; } }

  /* ============ FOOTER ============ */
  footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 32px 24px; text-align: center; }
  .footer-brand { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; color: white; font-size: 19px; margin-bottom: 6px; }
  .footer-brand .en { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sunny); font-weight: 500; margin-left: 8px; font-size: 15px; }
  .footer-meta { font-size: 13px; }

  /* ============ ANIMATIONS ============ */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }


/* ============ Before/After 写真専用設定 ============ */
.ba-img {
    aspect-ratio: 4/3; /* 真四角(1/1)から、写真に近い横長(4/3)に変更 */
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: var(--cream); /* 余白ができた時用の背景色 */
  }

  /* 写真全体を枠内に収めるための追加コード */
  .ba-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 切り抜き(cover)をやめて、全体を収める(contain) */
  }

/* キャプションの調整 */
.ba-caption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}