@charset "utf-8";
/* CSS Document */


    :root{
      /* Yuzu / Leaf palette */
      --yuzu-50:#fff8e6;
      --yuzu-100:#ffecc2;
      --yuzu-200:#ffd98a;
      --yuzu-300:#ffbd4f;
      --yuzu-400:#ffa62a;
      --yuzu-500:#f28c18;

      --leaf-300:#9ed35a;
      --leaf-400:#7bbf3a;
      --leaf-500:#4f9a2d;

      --ink:#0f172a;
      --muted:#64748b;
      --line:#e6e8ee;

      --shadow: 0 18px 48px rgba(2, 6, 23, .10);
      --shadow-soft: 0 10px 24px rgba(2, 6, 23, .08);
      --shadow-mini: 0 8px 18px rgba(2, 6, 23, .06);

      --radius: 18px;
      --radius-lg: 26px;

      --container: 1120px;
      --header-max: 1480px; /* ヘッダーだけ広く */
      --sec: 72px;

      --mobilebar-h: 72px;
      --font: system-ui, -apple-system, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

      /* スマホでヒーローを“写真→テキスト”にするための高さ */
      --hero-photo-h: 240px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink);
      line-height:1.75;
      background:
        radial-gradient(900px 900px at 12% -10%, rgba(255,189,79,.22), transparent 60%),
        radial-gradient(900px 900px at 92% 12%, rgba(123,191,58,.16), transparent 55%),
        linear-gradient(180deg, #fff, #fff);
    }

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

    :focus-visible{
      outline: 3px solid rgba(255,166,42,.35);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }
    .skip{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
    .skip:focus{
      left:14px; top:14px; width:auto; height:auto;
      padding:10px 12px; border-radius:12px;
      background:#fff; border:1px solid var(--line);
      box-shadow: var(--shadow-soft); z-index:9999;
    }

    /* ===== Utility ===== */
    .is-disabled{
      opacity:.55;
      filter: grayscale(.15);
      pointer-events:none;
      cursor:not-allowed;
      text-decoration:none !important;
    }
    .mt-10{ margin-top:10px; }
    .mt-12{ margin-top:12px; }
    .mt-14{ margin-top:14px; }
    .mt-16{ margin-top:16px; }
    .center{ text-align:center; }

    /* ===== HEADER ===== */
    .site-header{
      position:sticky; top:0; z-index:1000;
      background:rgba(255,255,255,.86);
      backdrop-filter: blur(12px) saturate(1.2);
      border-bottom:1px solid rgba(230,232,238,.85);
    }
    .header-inner{
      width:min(var(--header-max), calc(100% - 40px));
      margin:0 auto;
      display:grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap:14px;
      align-items:center;
      padding: 12px 0;
    }

    /* 左：ロゴ＋タグを縦並び */
    .brand{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:6px;
      min-width: 240px;
    }
    .logo{
      width:152px; height:36px;
      display:flex; align-items:center; justify-content:flex-start;
      overflow:hidden;
    }
    .logo img{ width:100%; height:100%; object-fit:contain; display:block; }

    .brand-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(230,232,238,.92);
      box-shadow: 0 10px 18px rgba(2,6,23,.06);
      font-weight:1000;
      letter-spacing:.02em;
      font-size:12px;
      color:#334155;
      white-space:nowrap;
    }
    .brand-badge::before{
      content:"";
      width:8px; height:8px;
      border-radius:999px;
      background: var(--yuzu-400);
      box-shadow: 0 0 0 4px rgba(255,189,79,.18);
    }

    /* PC：グローバルメニューを1行固定 */
    .nav{
      display:flex;
      justify-content:center;
      align-items:center;
      gap: 10px;
      padding: 0 6px;
      flex-wrap: nowrap;
      white-space: nowrap;
      min-width: 0;
    }
    .nav a{
      font-size: clamp(12px, 0.86vw, 13px);
      padding: 7px clamp(8px, 0.7vw, 12px);
      border-radius:999px;
      border:1px solid transparent;
      line-height:1;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }
    .nav a:hover{
      text-decoration:none;
      background:rgba(255,189,79,.16);
      border-color: rgba(242,140,24,.18);
      transform: translateY(-1px);
    }

    /* 右側：TEL/ボタンを塊に */
    .hdr-cta{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      min-width: 420px;
    }
    .cta-group{
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px 10px;
      border-radius: 999px;
      border:1px solid rgba(230,232,238,.92);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow-mini);
    }
    .cta-phone{
      display:flex;
      flex-direction:column;
      gap:2px;
      padding-right:10px;
      border-right:1px solid rgba(230,232,238,.92);
      text-align:right;
      line-height:1.25;
    }
    .cta-phone .num{
      font-weight:1000;
      letter-spacing:.02em;
      font-size:14px;
      white-space:nowrap;
    }
    .cta-phone .time{
      font-size:11px;
      color:var(--muted);
      white-space:nowrap;
    }
    .cta-actions{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:nowrap;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(230,232,238,.9);
      background:#fff;
      box-shadow: var(--shadow-mini);
      font-weight:1000; font-size:13px;
      white-space:nowrap;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
    }
    .btn:hover{ text-decoration:none; transform: translateY(-1px); }
    .btn:active{ transform: translateY(0); }
    .btn--primary{
      background: linear-gradient(135deg, var(--yuzu-400), var(--yuzu-500));
      color:#fff;
      border-color: rgba(242,140,24,.25);
    }
    .btn--leaf{
      background: linear-gradient(135deg, var(--leaf-400), var(--leaf-500));
      border-color: rgba(79,154,45,.22);
      color:#fff;
    }
    .btn--ghost{ background: rgba(255,255,255,.92); }
    .btn--lg{ padding:12px 18px; font-size:14px; }

    /* ===== HERO ===== */
    .hero{
      position:relative;
      padding: 28px 0 44px;
    }
    .hero::before{
      content:"";
      position:absolute; inset:-120px 0 auto 0;
      height: 520px;
      background:
        radial-gradient(980px 480px at 18% 10%, rgba(255,189,79,.24), transparent 60%),
        radial-gradient(900px 520px at 86% 20%, rgba(123,191,58,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,248,230,.55), rgba(255,248,230,0));
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.88);
      border:1px solid rgba(230,232,238,.92);
      box-shadow: var(--shadow);
      padding: 28px 24px;
      position:relative;
      overflow:hidden;
      min-height: 456px;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-45% -18% auto -45%;
      width: 640px; height: 640px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,189,79,.36), transparent 60%),
        radial-gradient(circle at 65% 55%, rgba(123,191,58,.22), transparent 60%);
      transform: rotate(-16deg);
      opacity:.95;
    }
    .hero-card::after{
      content:"";
      position:absolute; inset:auto -140px -170px auto;
      width: 420px; height: 420px;
      background:
        radial-gradient(circle at 30% 30%, rgba(242,140,24,.18), transparent 62%),
        radial-gradient(circle at 60% 60%, rgba(79,154,45,.12), transparent 62%);
      transform: rotate(18deg);
      opacity:.9;
    }
    .hero-card > *{ position:relative; }

    .flyer-badge{
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px; color:#4b5563;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(242,140,24,.18);
      background: rgba(255,248,230,.92);
      margin-bottom:12px;
      font-weight:1000;
      letter-spacing:.06em;
    }
    .flyer-badge::before{
      content:"";
      width:10px; height:10px; border-radius:999px;
      background: var(--yuzu-400);
      box-shadow: 0 0 0 4px rgba(255,189,79,.18);
    }

    .hero-title{
      margin:0 0 10px;
      font-size: 42px;
      line-height: 1.12;
      letter-spacing:.02em;
      font-weight:1000;
    }
    .c-heart{ color:#ef4444; font-weight:1000; }
    .c-body{  color:var(--yuzu-500); font-weight:1000; }
    .c-health{color:var(--leaf-500); font-weight:1000; }

    .hero-lead{ margin:0 0 16px; color:#1f2937; font-size:15px; }

    .hero-pictos{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin: 10px 0 14px;
    }
    .picto{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius: 18px;
      border:1px solid rgba(230,232,238,.92);
      background: rgba(255,255,255,.94);
      box-shadow: 0 10px 18px rgba(2,6,23,.05);
      min-width: 210px;
    }
    .picto-ico{
      width:40px; height:40px;
      border-radius: 16px;
      display:grid; place-items:center;
      background: rgba(255,189,79,.18);
      border:1px solid rgba(242,140,24,.14);
      flex:0 0 auto;
      color:#92400e;
    }
    .picto-ico svg{ width:22px; height:22px; display:block; }
    .picto-text{ display:flex; flex-direction:column; gap:2px; min-width:0; }
    .picto-text strong{ font-size:13px; font-weight:1000; letter-spacing:.02em; }
    .picto-text span{ font-size:11px; color: var(--muted); line-height:1.35; }

    .hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin: 6px 0 14px; }

    .pills{
      list-style:none; padding:0; margin:0;
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .pills li{
      font-size:12px;
      color:#334155;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(230,232,238,.9);
      background: rgba(255,255,255,.92);
    }

    .collage{
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.86);
      border:1px solid rgba(230,232,238,.92);
      box-shadow: var(--shadow);
      overflow:hidden;
      padding: 18px;
      position:relative;
      min-height: 456px;
    }
    .collage::before{
      content:"";
      position:absolute; inset:-90px -95px auto auto;
      width: 420px; height: 420px;
      background: radial-gradient(circle at 30% 30%, rgba(255,189,79,.22), transparent 65%);
      opacity:.9;
      transform: rotate(12deg);
    }

    .shot{
      border-radius: 22px;
      border:1px solid rgba(255,255,255,.55);
      box-shadow: 0 14px 30px rgba(2,6,23,.14);
      overflow:hidden;
      background:#f3f4f6;
      position:relative;
    }
    .shot img{
      width:100%; height:100%;
      object-fit:cover;
      display:block;
      transform: scale(1.01);
    }
    .collage-grid--3{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1.25fr 1fr;
      gap:12px;
      height:100%;
    }
    .collage-grid--3 .is-wide{
      grid-column: 1 / 3;
      grid-row: 1 / 2;
      border-radius: 26px;
    }
    .collage-grid--3 .is-left{ grid-column: 1 / 2; grid-row: 2 / 3; }
    .collage-grid--3 .is-right{ grid-column: 2 / 3; grid-row: 2 / 3; }

    /* スマホ用：ファーストビュー写真 */
    .hero-photo{
      display:none;
      border-radius: 22px;
      overflow:hidden;
      border:1px solid rgba(230,232,238,.92);
      box-shadow: 0 14px 30px rgba(2,6,23,.10);
      background:#f3f4f6;
      margin: 0 0 14px;
      height: var(--hero-photo-h);
      position:relative;
    }
    .hero-photo img{
      width:100%; height:100%;
      object-fit:cover;
      object-position: center;
      display:block;
      transform: scale(1.01);
    }

    /* ===== Sections ===== */
    .section{ padding: var(--sec) 0; }
    .section--alt{
      background:
        radial-gradient(900px 500px at 10% 0%, rgba(255,189,79,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,250,240,.92), rgba(255,250,240,.92));
      border-top:1px solid rgba(230,232,238,.7);
      border-bottom:1px solid rgba(230,232,238,.7);
    }
    .section-head{ text-align:center; margin-bottom: 26px; }
    .kicker{ margin:0 0 8px; font-weight:1000; letter-spacing:.22em; color: rgba(242,140,24,.92); font-size: 13px; }
    .h2{ margin:0; font-size: 34px; letter-spacing:.05em; font-weight:1000; }
    .sub{ margin:10px auto 0; max-width: 760px; color: var(--muted); font-size: 14px; }

    .grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .grid-2{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items:start; }

    .card{
      background: rgba(255,255,255,.94);
      border:1px solid rgba(230,232,238,.92);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }
    .card-pad{ padding: 18px 18px; }
    .card h3{ margin:0 0 10px; font-size: 18px; font-weight:1000; letter-spacing:.03em; }
    .card p{ margin:0; color:#1f2937; }
    .muted{ color: var(--muted); font-size:13px; }

    .feature{ display:flex; gap:12px; align-items:flex-start; }
    .ico{
      width:44px; height:44px; border-radius:16px;
      background: rgba(255,189,79,.20);
      border:1px solid rgba(242,140,24,.16);
      display:grid; place-items:center;
      flex:0 0 auto;
      box-shadow: 0 10px 18px rgba(242,140,24,.09);
      font-weight:1000;
      color:#b45309;
    }

    /* ===== Price / Menu ===== */
    .menu-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .menu-card .thumb{
      height: 180px;
      background:#f3f4f6;
      border-bottom:1px solid rgba(230,232,238,.92);
    }
    .menu-card .thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
    .menu-card .body{ padding: 14px 14px 16px; }
    .menu-title{ margin:0 0 6px; font-weight:1000; letter-spacing:.03em; font-size:16px; }
    .tagline{
      display:inline-block;
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(242,140,24,.16);
      background: rgba(255,248,230,.92);
      color:#7c2d12;
      font-weight:1000;
      margin-bottom:10px;
    }
    .pricebox{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 10px;
    }
    .priceitem{
      border-radius: 16px;
      border:1px solid rgba(230,232,238,.92);
      background: rgba(148,163,184,.14);
      padding:10px 10px;
      text-align:center;
    }
    .priceitem strong{ display:block; font-size:13px; font-weight:1000; }
    .yen{ font-size:18px; font-weight:1000; letter-spacing:.02em; }
    .tax{ font-size:11px; color: var(--muted); }

    .note{
      background: rgba(255,255,255,.94);
      border:1px solid rgba(230,232,238,.92);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: var(--shadow-soft);
    }

    /* ===== Related service ===== */
    .related{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:stretch;
    }
    .related .card{
      position:relative;
      overflow:hidden;
    }
    .related .card::before{
      content:"";
      position:absolute; inset:-40px -40px auto auto;
      width:240px; height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(123,191,58,.16), transparent 65%);
      transform: rotate(10deg);
      opacity:.95;
      pointer-events:none;
    }
    .related .card > *{ position:relative; }

    /* ===== Flow / FAQ ===== */
    .steps{ margin:0; padding:0; list-style:none; display:grid; gap:10px; }
    .steps li{
      background: rgba(255,255,255,.96);
      border:1px solid rgba(230,232,238,.92);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: var(--shadow-soft);
      display:flex; gap:10px; align-items:flex-start;
    }
    .step-no{
      width:30px; height:30px; border-radius: 12px;
      display:grid; place-items:center;
      font-weight:1000; color:#fff;
      background: linear-gradient(135deg, var(--leaf-400), var(--leaf-500));
      flex:0 0 auto;
      box-shadow: 0 10px 18px rgba(79,154,45,.16);
    }
    details{
      background: rgba(255,255,255,.96);
      border:1px solid rgba(230,232,238,.92);
      border-radius: 18px;
      padding: 10px 14px;
      box-shadow: var(--shadow-soft);
    }
    summary{ cursor:pointer; font-weight:1000; list-style:none; }
    summary::-webkit-details-marker{ display:none; }
    details p{ margin:10px 0 0; color:#1f2937; font-size:13px; }

    /* ===== Contact ===== */
    .contact-panel{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .contact-box{
      border-radius: var(--radius-lg);
      border:1px solid rgba(230,232,238,.92);
      background: rgba(255,255,255,.94);
      box-shadow: var(--shadow);
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    .contact-box .top{ padding: 18px 18px 12px; }
    .contact-box .top h3{ margin:0 0 8px; font-size:18px; font-weight:1000; }
    .contact-box .top p{ margin:0; color: var(--muted); font-size:13px; }
    .contact-box .mid{ padding: 0 18px 18px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
    .contact-box .bar{
      margin-top:auto;
      background: linear-gradient(135deg, rgba(255,189,79,.95), rgba(242,140,24,.95));
      color:#fff;
      padding: 12px 18px;
      display:flex; justify-content:space-between; gap:10px; align-items:center;
      font-weight:1000;
    }
    .contact-box .bar small{ font-weight:800; opacity:.95; }
    .contact-box--phone .bar{ background: linear-gradient(135deg, rgba(123,191,58,.95), rgba(79,154,45,.95)); }

    /* ===== Footer ===== */
    .footer{
      border-top:1px solid rgba(230,232,238,.8);
      background: rgba(255,255,255,.82);
      padding: 26px 0;
    }
    .footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; }
    .footer small{ color: var(--muted); }
    .footer-links{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      color: var(--muted);
      font-size:12px;
    }
    .footer-links a{
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(230,232,238,.9);
      background: rgba(255,255,255,.86);
    }
    .footer-links a:hover{ text-decoration:none; }

    /* ===== Mobile fixed call bar ===== */
    .mobile-bar{
      position:fixed; left:0; right:0; bottom:0;
      z-index:1200;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px) saturate(1.2);
      border-top: 1px solid rgba(230,232,238,.9);
      box-shadow: 0 -14px 30px rgba(2,6,23,.10);
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      display:none;
    }
    .mobile-bar-inner{
      width:min(var(--container), calc(100% - 8px));
      margin:0 auto;
      display:flex; gap:10px; align-items:center; justify-content:space-between;
    }
    .mobile-bar .mini{ display:flex; flex-direction:column; gap:2px; min-width:0; }
    .mobile-bar .mini strong{ font-size:12px; letter-spacing:.06em; color: rgba(242,140,24,.92); font-weight:1000; }
    .mobile-bar .mini span{ font-size:11px; color: var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .mobile-call{ flex:1 1 auto; display:flex; justify-content:flex-end; }
    .mobile-call a{ width:100%; max-width: 420px; }

    /* ===== Responsive ===== */
    @media (max-width: 1100px){
      .hdr-cta{ min-width: 360px; }
      .cta-phone .time{ display:none; }
    }

    @media (max-width: 980px){
      .hero{ padding: 18px 0 28px; }
      .hero-grid{ grid-template-columns: 1fr; }
      .grid-2{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: 1fr; }
      .menu-grid{ grid-template-columns: 1fr; }
      .contact-panel{ grid-template-columns: 1fr; }
      .related{ grid-template-columns: 1fr; }

      .nav{ display:none; }

      /* ヘッダー右側は簡略化 */
      .hdr-cta{ min-width:auto; }
      .cta-group{
        padding:0;
        border:0;
        box-shadow:none;
        background:transparent;
      }
      .cta-phone{ display:none; }

      /* スマホ：ファーストビューで“写真が先” */
      .collage{ display:none; }
      .hero-photo{ display:block; }

      .hero-title{
        font-size: 30px;
        line-height: 1.18;
        letter-spacing: .03em;
        font-weight: 900;
      }

      .mobile-bar{ display:block; }
      body{ padding-bottom: calc(var(--mobilebar-h) + env(safe-area-inset-bottom)); }

      .header-inner{
        width: min(1120px, calc(100% - 32px));
        grid-template-columns: auto auto;
        justify-content:space-between;
      }
      .brand{ min-width:auto; }
      .hero-card{ min-height: auto; padding: 20px 18px; }
      .picto{ min-width: 0; width: 100%; }
    }

    @media (max-width: 520px){
      :root{ --hero-photo-h: 220px; }
      .hero-title{ font-size: 28px; }
      .logo{ width: 144px; height: 34px; }
      .brand-badge{ font-size:11px; padding:6px 9px; }
    }


/* =========================================================
  ABOUT page (about.html) only
  - about.html の inline CSS を共通CSSへ統合（影響範囲を about-flat に限定）
========================================================= */

body.about-flat .section{ padding: 86px 0; }
body.about-flat .section--alt{
  background: linear-gradient(180deg, rgba(255,248,230,.55), rgba(255,248,230,.55));
  border:0;
}
body.about-flat .section-head{ text-align:center; margin-bottom: 34px; }
body.about-flat .kicker{ font-weight:900; letter-spacing:.26em; }
body.about-flat .h2{ font-size: 36px; letter-spacing:.08em; }

body.about-flat .card,
body.about-flat .note{
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  border-radius:0 !important;
}
body.about-flat .card-pad{ padding:0 !important; }

body.about-flat .prose{
  max-width: 860px;
  margin: 0 auto;
  color:#111827;
}
body.about-flat .prose p{ margin: 0 0 14px; }

/* ===== ABOUT Hero（about.html は hero--banner 構成のため個別定義） ===== */
body.about-flat .hero--banner{ padding:0; }
body.about-flat .hero-banner{
  position:relative;
  min-height:520px;
  background: url("assets/img/hero/about_hero_main.jpg") center/cover no-repeat;
}
body.about-flat .hero-banner::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 44%, rgba(255,255,255,0) 78%),
    linear-gradient(180deg, rgba(255,248,230,.35), rgba(255,248,230,0));
}
body.about-flat .hero-inner{
  position:relative;
  min-height:520px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap:18px;
  padding:44px 0;
}

/* 共通 .hero-card を aboutだけ少し上書き（見た目を元のaboutに寄せる） */
body.about-flat .hero-card{
  background: rgba(255,255,255,.82);
  border:1px solid rgba(230,232,238,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px) saturate(1.1);
  overflow:hidden;
}
body.about-flat .hero-card .note{
  border:1px solid rgba(230,232,238,.92) !important;
  background: rgba(255,255,255,.92) !important;
  border-radius:14px !important;
  padding:10px 12px !important;
}

/* ===== ABOUT Split（配達のたびに… の2カラム） ===== */
body.about-flat .split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
  max-width:1120px;
  margin:0 auto;
}
body.about-flat .split .copy h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:1000;
  letter-spacing:.03em;
}
body.about-flat .split .copy p{ margin:0; color:#111827; }
body.about-flat .split .photo{
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 16px 36px rgba(2,6,23,.12);
  border:1px solid rgba(255,255,255,.7);
  background:#f3f4f6;
}
body.about-flat .split .photo img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}

/* ===== ABOUT Value rows（thumb が他用途と衝突しやすいのでスコープ必須） ===== */
body.about-flat .media-rows{
  max-width:980px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}
body.about-flat .media-row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:18px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid rgba(230,232,238,.8);
}
body.about-flat .media-row:last-child{ border-bottom:0; }

body.about-flat .thumb{
  width:220px;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  background:#f3f4f6;
  box-shadow: 0 16px 34px rgba(2,6,23,.12);
  border:1px solid rgba(255,255,255,.7);
}
body.about-flat .thumb--corner{
  border-radius: 14px 14px 14px 64px;
}
body.about-flat .thumb img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.01);
}

body.about-flat .media-text h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:1000;
  letter-spacing:.03em;
}
body.about-flat .media-text p{
  margin:0;
  color: var(--muted);
  font-size:14px;
}

/* ===== ABOUT Hero side shot（about側の副画像） ===== */
body.about-flat .hero-side{
  display:flex;
  justify-content:flex-end;
}
body.about-flat .shot{
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  border-radius:24px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(2,6,23,.14);
  border:1px solid rgba(255,255,255,.6);
  background:#f3f4f6;
}
body.about-flat .shot img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}

/* ===== ABOUT maps ===== */
body.about-flat iframe{ border-radius:12px; }

/* ===== ABOUT Responsive ===== */
@media (max-width: 980px){
  body.about-flat .hero-banner{ min-height:auto; }
  body.about-flat .hero-inner{
    grid-template-columns: 1fr;
    min-height:auto;
    padding: 18px 0 26px;
  }
  body.about-flat .hero-banner::before{
    background:
      linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.76) 58%, rgba(255,255,255,.15) 100%),
      linear-gradient(180deg, rgba(255,248,230,.35), rgba(255,248,230,0));
  }
  body.about-flat .hero-side{ display:none; }

  body.about-flat .split{ grid-template-columns: 1fr; }
  body.about-flat .media-row{ grid-template-columns: 1fr; }
  body.about-flat .thumb{
    width:100%;
    max-width:420px;
    margin:0 auto 8px;
    aspect-ratio: 16 / 10;
  }

  body.about-flat .section{ padding:64px 0; }
}

@media (max-width: 520px){
  body.about-flat .table th{ width:140px; }
}

背景やディティールに、もう少し、温かみが感じられるような装飾があったほうが良いかも。 また、セクションの見出しやサービスの特徴を表す場所には、写真やアイコンなどがあるとなお良いかも。

/* ===== Section Head: warm badge + soft underline ===== */
.section-head .kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px;
  border-radius:999px;
  background: rgba(255,248,230,.92);
  border: 1px solid rgba(242,140,24,.16);
}

.section-head .kicker::before{
  content:"";
  width:14px; height:14px;
  background: url("assets/img/ico/leaf.svg") center/contain no-repeat;
  /* leaf.svg が無ければ丸でもOK */
  border-radius:999px;
}

/* 画像が無い場合の代替（丸） */
.section-head .kicker.no-ico::before{
  background:none;
  background: var(--leaf-400);
  box-shadow: 0 0 0 4px rgba(123,191,58,.16);
}

.section-head .h2{
  position:relative;
  display:inline-block;
  padding-bottom:10px;
}

.section-head .h2::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:0;
  width:min(240px, 78%);
  height:10px;
  background: radial-gradient(circle at 20% 50%, rgba(255,189,79,.55), transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(123,191,58,.35), transparent 60%);
  filter: blur(0.2px);
  opacity:.9;
  border-radius:999px;
}

.feature-thumb{
  height: 140px;
  overflow:hidden;
  border-bottom:1px solid rgba(230,232,238,.92);
  background:#f3f4f6;
}
.feature-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}

:root{
  --shadow: 0 22px 56px rgba(2, 6, 23, .10);
  --shadow-soft: 0 14px 34px rgba(2, 6, 23, .08);
  --shadow-mini: 0 10px 22px rgba(2, 6, 23, .06);
}

.card{
  box-shadow: var(--shadow-soft);
}
