/* =========================================
   保険デザインパートナーズ 共通スタイル
   ========================================= */
:root {
  --green-bright: #b8dc2c;
  --green-main: #acca2c;
  --green-deep: #71831d;
  --green-soft: #d9eb6e;
  --green-pale: #eef6c8;
  --green-mist: #f7fbe6;
  --green-cream: #fcfdf4;

  --hc-orange: #f39800;
  --hc-orange-deep: #e88300;
  --hc-orange-soft: #ffb83d;

  --ink: #2b3315;
  --ink-soft: #5a6440;
  --paper: #fdfcf7;

  --c-life:    #ff7a59;
  --c-medical: #4fb3c8;
  --c-cancer:  #f4a93c;
  --c-car:     #7d8fd6;
  --c-fire:    #d36b89;
  --c-pet:     #9b6dc8;
  --c-net:     #5cc4a8;
  --c-plane:   #5aa8e0;   /* 海外旅行 - 空のブルー */
  --c-bike2:   #3a9b8b;   /* バイク - ティールグリーン */
  --c-van:     #6b7280;   /* 軽貨物 - ダークグレー */
  --c-golf:    #84a953;   /* ゴルファー - 芝のグリーン */
  --c-classic: #a04848;   /* クラシックカー - ボルドー */
  --c-office:  #2c5282;   /* 団体 - ネイビー */

  --shadow-sm: 0 2px 8px rgba(43,51,21,0.06);
  --shadow-md: 0 8px 24px rgba(43,51,21,0.10);
  --shadow-lg: 0 16px 48px rgba(43,51,21,0.14);
  --radius: 18px;
  --radius-lg: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,252,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,220,44,0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1180px; margin: 0 auto; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 54px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--green-deep); letter-spacing: 0.02em;
}
.brand-tag { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.18em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink); position: relative; transition: color .2s; }
.nav a:hover { color: var(--green-deep); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--green-bright);
  transform: scaleX(0); transition: transform .25s ease; transform-origin: left;
}
.nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--hc-orange); color: white !important;
  padding: 10px 22px; border-radius: 999px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(243,152,0,0.3);
}
.nav-cta:hover { background: var(--hc-orange-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(243,152,0,0.45); }
.nav-cta::after { display: none; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; border-radius: 2px; }

.mobile-nav {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--paper); z-index: 200;
  padding: 80px 32px 32px; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 16px 0;
  font-size: 16px; font-weight: 600;
  border-bottom: 1px solid rgba(184,220,44,0.25);
}
.mobile-nav a.orange {
  color: white; background: var(--hc-orange);
  text-align: center; border-radius: 999px; border: none;
  padding: 14px 22px; margin-top: 20px; font-weight: 800;
}
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  font-size: 28px; cursor: pointer; color: var(--ink);
}

/* COMMON BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: all .25s; border: 2px solid transparent; cursor: pointer;
}
.btn-reserve {
  background: var(--hc-orange); color: white;
  box-shadow: 0 8px 20px rgba(243,152,0,0.35);
}
.btn-reserve:hover {
  background: var(--hc-orange-deep); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(243,152,0,0.5);
}
.btn-outline {
  background: white; color: var(--ink); border-color: rgba(43,51,21,0.12);
}
.btn-outline:hover { border-color: var(--green-bright); color: var(--green-deep); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--green-bright);
}
.btn-ghost:hover { background: var(--green-bright); color: var(--ink); }
.btn-cta-orange {
  background: var(--hc-orange); color: white;
  border: 2px solid var(--hc-orange);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-cta-orange:hover {
  background: var(--hc-orange-deep); border-color: var(--hc-orange-deep);
  transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* SECTION COMMON */
section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 16px; color: var(--green-deep);
  margin-bottom: 12px; letter-spacing: 0.05em;
}
.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  color: var(--ink); margin-bottom: 16px; line-height: 1.3;
}
.section-desc {
  font-size: 15px; color: var(--ink-soft);
  max-width: 580px; margin: 0 auto; line-height: 1.9;
}

/* ========= PAGE HEADER（下層ページ共通） ========= */
.page-header {
  position: relative;
  padding: 70px 0 80px;
  background:
    radial-gradient(ellipse 800px 400px at 70% 0%, rgba(184,220,44,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 0% 100%, rgba(217,235,110,0.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--green-cream) 0%, var(--green-mist) 100%);
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,220,44,0.4), transparent 70%);
  border-radius: 50%;
  filter: blur(15px);
}
.breadcrumb {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--green-deep); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { margin: 0 8px; opacity: 0.5; }
.page-header h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-header .ph-en {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--green-deep);
  letter-spacing: 0.1em;
  position: relative; z-index: 1;
}
.page-header .ph-desc {
  margin-top: 18px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ========= STORE BANNERS（共通） ========= */
.store-banners {
  position: relative;
  z-index: 5;
  padding: 60px 0;
}
.store-banners.overlap { margin-top: -70px; padding-top: 0; padding-bottom: 60px; }
.banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.store-banner {
  position: relative; border-radius: var(--radius-lg);
  padding: 32px 36px; overflow: hidden; color: white;
  box-shadow: var(--shadow-lg); transition: transform .3s;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.store-banner:hover { transform: translateY(-6px); }
.sb-fushimi { background: linear-gradient(135deg, #71831d 0%, #acca2c 60%, #b8dc2c 100%); }
.sb-ohmi { background: linear-gradient(135deg, #2d6c80 0%, #4fb3c8 60%, #7fd1e0 100%); }
.store-banner::after {
  content: ''; position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
}
.store-banner::before {
  content: ''; position: absolute;
  right: 40px; top: -30px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.14); border-radius: 50%;
}
.sb-label {
  font-size: 12px; letter-spacing: 0.2em; font-weight: 700;
  margin-bottom: 8px; opacity: 0.85; position: relative; z-index: 1;
}
.sb-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 26px; font-weight: 900;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.sb-desc {
  font-size: 14px; opacity: 0.92; margin-bottom: 20px;
  line-height: 1.6; position: relative; z-index: 1;
}
.sb-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hc-orange); color: white !important;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: 14px; align-self: flex-start;
  position: relative; z-index: 1; transition: all .2s;
  box-shadow: 0 6px 16px rgba(243,152,0,0.4);
}
.sb-cta:hover { background: var(--hc-orange-deep); transform: translateX(4px); }

/* ========= PRODUCTS（バナー型・共通） ========= */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-banner {
  position: relative; border-radius: var(--radius-lg);
  padding: 30px 28px 28px; overflow: hidden;
  background: white; transition: all .3s;
  box-shadow: var(--shadow-sm); isolation: isolate;
  display: flex; flex-direction: column; min-height: 230px;
}
.product-banner:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-banner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: var(--card-color); z-index: 1;
}
.product-banner::after {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: var(--card-color); opacity: 0.10;
  border-radius: 50%;
  transition: transform .4s ease, opacity .4s; z-index: 0;
}
.product-banner:hover::after { transform: scale(1.5); opacity: 0.18; }
.pb-life    { --card-color: var(--c-life); }
.pb-medical { --card-color: var(--c-medical); }
.pb-cancer  { --card-color: var(--c-cancer); }
.pb-car     { --card-color: var(--c-car); }
.pb-fire    { --card-color: var(--c-fire); }
.pb-pet     { --card-color: var(--c-pet); }
.pb-net     { --card-color: var(--c-net); }
.pb-bike    { --card-color: var(--c-medical); }
.pb-plane   { --card-color: var(--c-plane); }
.pb-bike2   { --card-color: var(--c-bike2); }
.pb-van     { --card-color: var(--c-van); }
.pb-golf    { --card-color: var(--c-golf); }
.pb-classic { --card-color: var(--c-classic); }
.pb-office  { --card-color: var(--c-office); }
.product-banner > * { position: relative; z-index: 1; }
.product-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--card-color); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; z-index: 2;
}
.product-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px; background: var(--card-color);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); position: relative;
}
.product-icon-wrap::before {
  content: ''; position: absolute; inset: -6px;
  border: 2px dashed var(--card-color);
  opacity: 0.3; border-radius: 24px;
}
.product-icon-wrap svg { width: 40px; height: 40px; color: white; }
.product-banner h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 900;
  margin-bottom: 8px; color: var(--ink);
}
.product-banner .catch {
  font-size: 13px; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: auto; padding-bottom: 18px;
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--card-color); margin-top: auto; align-self: flex-start;
  padding: 8px 14px; border-radius: 999px;
  background: color-mix(in srgb, var(--card-color) 12%, white);
  transition: all .2s;
}
.product-link::after { content: '→'; transition: transform .2s; }
.product-banner:hover .product-link { background: var(--card-color); color: white; }
.product-banner:hover .product-link::after { transform: translateX(4px); }

/* ========= TOPICS ========= */
.topics-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}

/* ========= PRODUCTS TAB（二部構成） ========= */
.products-tab {
  margin-bottom: 70px;
}
.products-tab:last-child { margin-bottom: 0; }

.products-tab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding: 0 8px;
  flex-wrap: wrap;
}

.products-tab-label {
  display: flex;
  align-items: center;
  gap: 20px;
}

.products-tab-label .tab-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: var(--tab-color);
  opacity: 0.5;
}

.products-tab-label h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}

.products-tab-label p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: 0.05em;
}

.tab-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  border: 1px solid rgba(184,220,44,0.4);
  transition: all .2s;
}
.tab-more:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--ink);
  transform: translateX(3px);
}
.tab-more .arrow { transition: transform .2s; }
.tab-more:hover .arrow { transform: translateX(3px); }

.products-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.products-tab-net {
  position: relative;
  padding-top: 50px;
  border-top: 1px dashed rgba(184,220,44,0.4);
}


@media (max-width: 860px) {
  .products-tab-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .products-tab-label .tab-num { font-size: 36px; }
  .products-tab-label h3 { font-size: 20px; }
  .products-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .products-grid-4 { grid-template-columns: 1fr; }
  .products-grid-3 { grid-template-columns: 1fr; }
}
.topic-item {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 28px; background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(184,220,44,0.2);
  transition: all .25s;
}
.topic-item:hover {
  border-color: var(--green-bright);
  transform: translateX(6px); box-shadow: var(--shadow-sm);
}
.topic-date {
  font-family: 'Fraunces', serif;
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
}
.topic-tag {
  display: inline-block; padding: 3px 10px;
  font-size: 11px; font-weight: 700;
  background: var(--green-pale); color: var(--green-deep);
  border-radius: 999px; margin-right: 10px;
}
.topic-title { font-size: 15px; font-weight: 500; color: var(--ink); }
.topic-arrow { color: var(--green-deep); font-size: 18px; }

/* ========= VOICES ========= */
.voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.voice-card {
  background: white; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative;
}
.voice-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.voice-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 900;
}
.va-f1 { background: linear-gradient(135deg, #ff7a59, #d36b89); }
.va-m1 { background: linear-gradient(135deg, #4fb3c8, #2d6c80); }
.va-f2 { background: linear-gradient(135deg, #f4a93c, #ff7a59); }
.voice-meta { flex: 1; }
.voice-meta .name { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.stars { color: #f4a93c; font-size: 14px; letter-spacing: 2px; }
.voice-text { font-size: 14px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 14px; }
.voice-source {
  font-size: 11px; color: var(--ink-soft); opacity: 0.7;
  border-top: 1px dashed rgba(43,51,21,0.1); padding-top: 12px;
}

/* ========= ABOUT/CTA ========= */
.about-cta {
  background: linear-gradient(135deg, #71831d 0%, #acca2c 60%, #b8dc2c 100%);
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.about-cta::before, .about-cta::after {
  content: ''; position: absolute;
  border-radius: 50%; background: rgba(255,255,255,0.10);
}
.about-cta::before { width: 400px; height: 400px; top: -100px; left: -100px; }
.about-cta::after { width: 300px; height: 300px; bottom: -80px; right: -50px; }
.about-cta .container { position: relative; z-index: 1; }
.about-cta .section-eyebrow { color: rgba(255,255,255,0.95); }
.about-cta .section-title { color: white; }
.about-cta .section-desc { color: rgba(255,255,255,0.92); max-width: 640px; }
.cta-buttons {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-top: 40px;
}

/* ========= FOOTER ========= */
footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 70px 0 30px; }

/* コンプライアンス必須記載エリア */
.compliance-notice {
  background: #1f2410;
  padding: 40px 0;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.compliance-item h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  color: var(--green-bright);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compliance-item h4::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--green-bright);
  border-radius: 50%;
}
.compliance-item p {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* フッター会社情報 */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}
.footer-company-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.footer-company-info p {
  margin-bottom: 10px;
}
.footer-company-info p:last-child { margin-bottom: 0; }
.footer-company-info strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.footer-company-info a {
  color: var(--green-bright);
  font-weight: 700;
}
.footer-company-info a:hover {
  text-decoration: underline;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.footer-brand img { width: 56px; }
.footer-brand .name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 17px; font-weight: 700; color: white; margin-bottom: 4px;
}
.footer-desc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px; color: white;
  margin-bottom: 18px; letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 16px;
}

/* ========= LEGAL/PRIVACY系 共通 ========= */
.legal-content {
  padding: 80px 0;
  background: var(--paper);
}
.legal-body {
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,220,44,0.15);
}
.legal-body h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--green-deep);
  margin: 36px 0 16px;
  padding-left: 16px;
  border-left: 5px solid var(--green-bright);
  line-height: 1.4;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 10px;
}
.legal-body p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-body ul, .legal-body ol {
  margin: 16px 0 20px;
  padding-left: 24px;
}
.legal-body li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 8px;
}
.legal-body ul li {
  list-style: none;
  position: relative;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: -16px; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}
.legal-body strong { color: var(--green-deep); }
.legal-update {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed rgba(43,51,21,0.15);
  text-align: right;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ========= COMPANY TABLE ========= */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.company-table th, .company-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(184,220,44,0.25);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.8;
}
.company-table th {
  width: 200px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-mist);
  font-family: 'Zen Maru Gothic', sans-serif;
}
.company-table td { color: var(--ink); }

/* ========= STORE PAGE ========= */
.store-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1000px 600px at 70% 0%, rgba(184,220,44,0.3) 0%, transparent 60%),
    linear-gradient(180deg, var(--green-cream) 0%, var(--green-mist) 100%);
}
.store-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.store-hero h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
}
.store-meta-label {
  display: inline-block;
  background: white;
  color: var(--green-deep);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.store-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184,220,44,0.2);
}
.info-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(43,51,21,0.1);
  align-items: start;
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  font-size: 12px;
  color: var(--green-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.info-row dd {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
}

.map-section { padding: 60px 0; background: var(--paper); }
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--green-mist);
}
.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.access-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.access-item {
  background: white;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(184,220,44,0.2);
}
.access-item h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.access-item p { font-size: 13px; line-height: 1.8; color: var(--ink-soft); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.feature-item {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(184,220,44,0.2);
  transition: all .25s;
}
.feature-item:hover {
  border-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.feature-ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-pale);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.feature-item h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* ========= COMPARISON TABLE ========= */
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(184,220,44,0.2);
  font-size: 14px;
}
.compare-table thead th {
  background: linear-gradient(135deg, var(--green-deep), var(--green-main));
  color: white;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 18px;
}
.compare-table tbody th {
  background: var(--green-mist);
  color: var(--green-deep);
  text-align: left;
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  section { padding: 60px 0; }
  .banners-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-banner { padding: 24px 20px; min-height: 210px; }
  .product-icon-wrap { width: 60px; height: 60px; }
  .product-icon-wrap svg { width: 32px; height: 32px; }
  .product-banner h3 { font-size: 18px; }
  .topic-item { grid-template-columns: 1fr; gap: 10px; padding: 18px 22px; }
  .topic-arrow { display: none; }
  .voices-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .compliance-grid { grid-template-columns: 1fr; gap: 24px; }
  .store-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .legal-body { padding: 40px 24px; }
  .company-table th, .company-table td { padding: 14px 12px; font-size: 13px; }
  .company-table th { width: 110px; }
  .access-list { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .info-row { grid-template-columns: 80px 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
}
