/* =========================================================
  about.css（温かみUP：まるごと差し替え完全版）
  - Topと同じ“光だまり”トーン
  - Hero：実画像＋やわらかい覆い（重く見えない）
  - Section：余白と階調で“整って見える”
  - Value：行をカード化して平面感を解消
========================================================= */

:root{
  --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, .12);
  --shadow-soft: 0 10px 24px rgba(2, 6, 23, .09);
  --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;
}

*{ 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(980px 980px at 12% -10%, rgba(255,189,79,.24), transparent 60%),
    radial-gradient(980px 980px at 92% 12%, rgba(123,191,58,.16), transparent 56%),
    radial-gradient(700px 700px at 50% 110%, rgba(242,140,24,.10), 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;
}

/* =========================================================
  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);
}

.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);
}

.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;
}

/* =========================================================
  Buttons
========================================================= */
.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; }

/* =========================================================
  Sections / Components（余白・階調を整える）
========================================================= */
.section{ padding: var(--sec) 0; position:relative; }
.section::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 92% 20%, rgba(123,191,58,.07), transparent 60%),
    radial-gradient(900px 520px at 8% 0%, rgba(255,189,79,.10), transparent 62%);
  opacity:.9;
}
.section > .container{ position:relative; }

.section--alt{
  background:
    radial-gradient(1200px 620px at 88% 0%, rgba(123,191,58,.10), transparent 60%),
    radial-gradient(900px 520px at 10% 0%, rgba(255,189,79,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,250,240,.94), rgba(255,250,240,.94));
  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: 28px; }
.kicker{
  margin:0 0 8px;
  font-weight:1000;
  letter-spacing:.24em;
  color: rgba(242,140,24,.92);
  font-size: 13px;
}
.h2{ margin:0; font-size: 34px; letter-spacing:.06em; font-weight:1000; }
.sub{ margin:10px auto 0; max-width: 760px; color: var(--muted); font-size: 14px; }

.grid-2{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items:start; }

.card{
  background: rgba(255,255,255,.96);
  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; }

.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);
}
.note--mini{
  border-radius: 14px;
  padding: 10px 12px;
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: 18px;
  border:1px solid rgba(230,232,238,.92);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-soft);
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(230,232,238,.92);
  vertical-align:top;
  font-size:13px;
  text-align:left;
}
.table tr:last-child th,.table tr:last-child td{ border-bottom:0; }
.table th{
  width: 180px;
  color:#334155;
  background: rgba(255,248,230,.86);
  font-weight:1000;
}

/* =========================================================
  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 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; }

/* =========================================================
  About Hero（温かみ強化：実画像＋柔らかい覆い）
  ※HTML側で .hero-banner 内に <img class="hero-bg" ...> を置く想定
========================================================= */
.hero--banner{ padding: 0; }
.hero-banner{
  position: relative;
  min-height: 520px;
  overflow:hidden;
  border-bottom:1px solid rgba(230,232,238,.65);
}
.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
  /* ✅ 重さ軽減：少し明るく・彩度ほんのり */
  filter: saturate(1.06) brightness(1.08) contrast(1.03);
}
.hero-banner::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 44%, rgba(255,255,255,0) 78%),
    linear-gradient(180deg, rgba(255,248,230,.55), rgba(255,248,230,0)),
    radial-gradient(760px 560px at 18% 30%, rgba(255,189,79,.26), transparent 60%),
    radial-gradient(740px 560px at 50% 112%, rgba(79,154,45,.14), transparent 62%);
}
.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{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.80);
  border:1px solid rgba(230,232,238,.92);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position:relative;
  overflow:hidden;
  backdrop-filter: blur(12px) saturate(1.06);
}
.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,.34), transparent 60%),
    radial-gradient(circle at 65% 55%, rgba(123,191,58,.18), 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,.16), 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: 40px;
  line-height: 1.12;
  letter-spacing:.02em;
  font-weight:1000;
}
.hero-lead{ margin:0 0 16px; color:#1f2937; font-size:15px; }

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 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);
}

.hero-side{
  display:flex;
  justify-content:flex-end;
}
.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;
}
.shot img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}

/* =========================================================
  Value rows（平面感→カード感）
========================================================= */
.media-rows{
  max-width: 980px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.media-row{
  display:grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items:center;

  /* ✅ 行を“やわらかカード”に */
  padding: 18px 18px;
  border-bottom: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.66);
  border:1px solid rgba(230,232,238,.78);
  box-shadow: 0 10px 28px rgba(2,6,23,.05);
}
.thumb{
  width: 240px;
  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);
}
.thumb--corner{
  border-radius: 14px 14px 14px 64px;
}
.thumb img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.01);
}
.media-text h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:1000;
  letter-spacing:.03em;
}
.media-text p{
  margin:0;
  color: var(--muted);
  font-size:14px;
}

/* =========================================================
  Split（ABOUTエリア）
========================================================= */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:center;
  max-width: 1120px;
  margin: 0 auto;
}
.split .copy h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:1000;
  letter-spacing:.03em;
}
.split .copy p{ margin:0; color:#111827; }
.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;
}
.split .photo img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================================
  Utilities（少しだけ）
========================================================= */
.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

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

@media (max-width: 980px){
  .nav{ display:none; }

  .hdr-cta{ min-width:auto; }
  .cta-group{
    padding:0;
    border:0;
    box-shadow:none;
    background:transparent;
  }
  .cta-phone{ display:none; }

  .hero-banner{ min-height: auto; }
  .hero-inner{
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px 0 26px;
  }
  .hero-banner::before{
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 58%, rgba(255,255,255,.24) 100%),
      linear-gradient(180deg, rgba(255,248,230,.55), rgba(255,248,230,0)),
      radial-gradient(720px 560px at 50% 120%, rgba(79,154,45,.12), transparent 62%);
  }
  .hero-side{ display:none; }

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

  .split{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }

  .media-row{ grid-template-columns: 1fr; }
  .thumb{
    width: 100%;
    max-width: 520px;
    margin: 0 auto 10px;
    aspect-ratio: 16 / 10;
  }

  .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; }

  .section{ padding: 64px 0; }
}

@media (max-width: 520px){
  .logo{ width: 144px; height: 34px; }
  .brand-badge{ font-size:11px; padding:6px 9px; }
  .table th{ width: 140px; }

  .hero-card{ padding: 22px 18px; }
  .btn--lg{ padding:12px 16px; font-size:14px; }
}
