/*
Theme Name: Repair Kyo
Theme URI: https://repair-kyo.com
Author: KATAN
Description: 家電リペア工房 京 — 全国郵送修理の専門サイト向けカスタムテーマ。サイロ構造SEO最適化対応。
Version: 1.1.3
License: GNU General Public License v2 or later
Text Domain: repair-kyo
*/

/* ========================================
   CSS Variables
======================================== */
:root {
  /* Brand: スレートブルー（ロゴ準拠） */
  --slate:        #3F5C6A;
  --slate-dark:   #2A4150;
  --slate-deep:   #1B2C36;
  --slate-light:  #6B8593;
  --slate-bg:     #E8EEF1;
  --slate-tint:   #F2F5F7;

  /* Header: ティール（ロゴ背景準拠） */
  --teal:         #5A9C9C;
  --teal-dark:    #4A8888;

  /* Accents */
  --cream:        #FAF6EC;
  --cream-dark:   #EFE9D9;
  --gold:         #B89968;
  --line:         #06C755;
  --line-dark:    #05a648;
  --tel-red:      #D9531E;

  /* Neutral */
  --white:        #FFFFFF;
  --bg:           #FAFAFA;
  --bg-soft:      #F4F6F7;
  --text:         #1F2937;
  --text-light:   #6B7280;
  --text-mute:    #9CA3AF;
  --border:       #E5E7EB;
  --border-soft:  #EEF1F3;

  --font-sans:    'Noto Sans JP', sans-serif;
  --font-serif:   'Shippori Mincho', 'Noto Serif JP', serif;

  --shadow-sm:    0 2px 8px rgba(31,41,55,.06);
  --shadow-md:    0 6px 24px rgba(31,41,55,.10);
  --shadow-lg:    0 16px 48px rgba(31,41,55,.14);
  --radius:       8px;
  --radius-lg:    14px;
  --radius-pill:  999px;

  --container:    1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img, picture, video { max-width: 100%; height: auto; display: block; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--slate); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

h1, h2, h3, h4 { line-height: 1.4; font-weight: 700; letter-spacing: .02em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ========================================
   HEADER
======================================== */
.site-header {
  background-color: var(--teal);
  /* 斜めクロスハッチ（白の細い線が交差） */
  background-image:
    repeating-linear-gradient( 45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 16px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner {
  /* ヘッダーだけ広めに（本文は var(--container) のまま） */
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: nowrap;
}
.site-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none;
  white-space: nowrap;
}
.site-logo:hover { opacity: 1; }
.site-logo img {
  height: 48px; width: auto;
  /* どんな色のロゴ画像でも白にする（PNG/SVG/カスタムロゴ問わず） */
  filter: brightness(0) invert(1);
}
.site-logo-mark {
  display: inline-flex; align-items: center;
  width: 42px; height: 42px;
  color: var(--white);
  flex-shrink: 0;
}
.site-logo-mark svg {
  width: 100%; height: 100%; display: block;
}
.site-logo-text {
  display: inline-flex; align-items: baseline; gap: 12px;
  /* 元ロゴに合わせて明朝（Shippori Mincho）に */
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
}
.site-logo-sub {
  /* -kyo- は元ロゴと同じく細めのサンセリフ */
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .18em;
  opacity: .9;
  white-space: nowrap;
}
.global-nav ul { white-space: nowrap; }
.global-nav a { white-space: nowrap; }
.global-nav { margin-left: auto; }
.global-nav ul { display: flex; gap: 28px; list-style: none; align-items: center; }
.global-nav a {
  font-size: 14px; font-weight: 500; color: var(--white);
  padding: 8px 0; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s, opacity .2s;
}
.global-nav a:hover, .global-nav a.current {
  color: var(--white); border-bottom-color: var(--white); opacity: 1;
}

/* ============ ドロップダウン（対応家電） ============ */
.global-nav .has-submenu { position: relative; }
.global-nav .has-submenu > a { display: inline-flex; align-items: center; gap: 4px; }
.global-nav .has-submenu .caret {
  font-size: 11px; line-height: 1; transition: transform .2s;
  display: inline-block;
}
.global-nav .has-submenu:hover > a .caret,
.global-nav .has-submenu:focus-within > a .caret { transform: rotate(180deg); }
.global-nav .has-submenu.current > a { border-bottom-color: var(--white); }

.global-nav .submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  display: block;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.global-nav .submenu::before {
  /* 三角形のキャレット（メニュー上端） */
  content: ""; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--white);
  box-shadow: -2px -2px 4px rgba(0,0,0,.04);
}
.global-nav .has-submenu:hover .submenu,
.global-nav .has-submenu:focus-within .submenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.global-nav .submenu li { display: block; margin: 0; }
.global-nav .submenu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: none !important;
  letter-spacing: .03em;
}
.global-nav .submenu a:hover,
.global-nav .submenu a.current {
  background: var(--slate-tint);
  color: var(--slate-dark);
  opacity: 1;
  border-bottom: none !important;
}
.header-line {
  background: var(--line); color: var(--white) !important;
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-line:hover { opacity: .9; background: var(--line-dark); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.hamburger span {
  display: block; height: 2px; background: var(--white);
  margin: 6px 0; transition: transform .3s, opacity .3s;
}

/* ========================================
   MOBILE NAV
======================================== */
.mobile-nav {
  display: none; position: fixed; inset: 60px 0 0 0;
  background: var(--white); z-index: 99; overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border-soft); }
.mobile-nav a {
  display: block; padding: 16px 24px;
  font-size: 15px; color: var(--text);
  text-decoration: none;
}
.mobile-nav a:hover { background: var(--slate-tint); opacity: 1; }

/* 対応家電アコーディオン */
.mobile-nav-group details > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 24px;
  font-size: 15px;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  user-select: none;
}
.mobile-nav-group details > summary::-webkit-details-marker { display: none; }
.mobile-nav-group details > summary .chev {
  font-size: 12px; transition: transform .25s ease;
  color: var(--slate-light);
}
.mobile-nav-group details[open] > summary .chev { transform: rotate(180deg); }
.mobile-nav-group details[open] > summary {
  background: var(--slate-tint);
  color: var(--slate-dark);
  font-weight: 600;
}
.mobile-nav-sub {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
}
.mobile-nav-sub li {
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav-sub li:last-child { border-bottom: none; }
.mobile-nav-sub a {
  padding: 14px 24px 14px 44px;
  font-size: 14px;
  color: var(--text-light);
  position: relative;
}
.mobile-nav-sub a::before {
  content: "—";
  position: absolute; left: 24px;
  color: var(--slate-light);
}
.mobile-nav-sub a:hover { color: var(--slate); background: var(--white); }
.mobile-nav-group.is-active > details > summary { color: var(--slate); font-weight: 600; }
.mobile-cta { padding: 24px; }
.mobile-cta .btn-line {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  background: var(--line); color: var(--white); padding: 14px;
  border-radius: var(--radius); font-weight: 700;
}

/* ========================================
   FV / HERO（背景画像 + テキスト乗せ・中央寄せ）
======================================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 640px;
  background-color: var(--slate-deep);
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 85% at 50% 42%, rgba(0,0,0,.58) 0%, rgba(0,0,0,.30) 60%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.10) 45%, rgba(0,0,0,.30) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 24px;
  color: var(--white);
  text-align: center;
}

.hero-kicker {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px;
  font-size: 13px; letter-spacing: .25em; color: var(--cream);
  font-weight: 700; margin-bottom: 24px;
  text-shadow: 0 2px 6px rgba(0,0,0,.5);
}
.hero-kicker::before,
.hero-kicker::after {
  content: ""; width: 36px; height: 1px; background: var(--cream);
}
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 48px; line-height: 1.5; letter-spacing: .06em;
  color: #FFFFFF; margin-bottom: 28px;
  text-shadow:
    0 2px 6px rgba(0,0,0,.85),
    0 4px 20px rgba(0,0,0,.6),
    0 0 1px rgba(0,0,0,.5);
}
.hero h1 .em {
  color: #FFE9A8; position: relative;
  font-weight: 900;
}
.hero-lede {
  font-size: 17px; line-height: 2; color: #FFFFFF;
  margin: 0 auto 30px; max-width: 640px;
  text-shadow: 0 2px 8px rgba(0,0,0,.7), 0 0 16px rgba(0,0,0,.4);
  font-weight: 500;
}
.hero-creed {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.hero-creed span {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.hero-cta .btn-line {
  background: var(--line); color: #FFFFFF;
  padding: 18px 36px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 32px rgba(6,199,85,.45);
  transition: transform .2s;
}
.hero-cta .btn-line:hover { transform: translateY(-2px); opacity: 1; }
.hero-cta .btn-line small {
  display: block; font-size: 11px; font-weight: 500; opacity: .9; margin-top: 2px;
}
.hero-cta .btn-ghost {
  border: 1.5px solid rgba(255,255,255,.85); color: #FFFFFF;
  padding: 17px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero-cta .btn-ghost:hover { background: #FFFFFF; color: var(--slate-deep); opacity: 1; }
.hero-micro {
  font-size: 13px; color: #FFFFFF; margin-top: 22px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  font-weight: 500;
}
.hero-micro b { color: #FFE9A8; font-weight: 800; }

/* ========================================
   SECTIONS
======================================== */
.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }
.section--slate { background: var(--slate-deep); color: var(--white); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-kicker {
  display: inline-block; font-size: 12px; letter-spacing: .3em;
  color: var(--slate); font-weight: 700; margin-bottom: 12px;
}
.section--slate .section-kicker { color: var(--cream); }
.section-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 30px; color: var(--slate-deep); letter-spacing: .04em;
}
.section--slate .section-title { color: var(--white); }
.section-sub {
  margin-top: 12px; color: var(--text-light); font-size: 15px;
}
.section--slate .section-sub { color: rgba(255,255,255,.75); }

/* ========================================
   REASONS（選ばれる3つの理由）
======================================== */
.reasons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.reason {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  text-align: center;
}
.reason-num {
  display: inline-block; background: var(--slate); color: var(--white);
  font-size: 11px; letter-spacing: .2em; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.reason-icon { font-size: 40px; margin-bottom: 12px; }
.reason h3 {
  font-size: 18px; color: var(--slate-deep); margin-bottom: 10px;
}
.reason p { font-size: 14px; color: var(--text-light); line-height: 1.85; }

/* ========================================
   PRODUCTS（対応商材）
======================================== */
.products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.product {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 18px; text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--slate-bg);
}
.product a { color: var(--text); display: block; }
.product .icon {
  width: 100%; aspect-ratio: 1 / 1;
  margin-bottom: 14px; border-radius: var(--radius);
  overflow: hidden; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
}
.product .icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.product:hover .icon img { transform: scale(1.05); }
.product .icon--plus {
  font-family: var(--font-sans); font-size: 56px;
  color: var(--slate-light); font-weight: 300;
}
.product h3 { font-size: 15px; margin-bottom: 6px; color: var(--slate-deep); }
.product p { font-size: 12px; color: var(--text-light); margin: 0; }

/* ========================================
   FLOW（ご利用の流れ）
======================================== */
.flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  position: relative;
}
.flow::before {
  content: ""; position: absolute; top: 28px; left: 14%; right: 14%;
  height: 2px; background: var(--slate-bg); z-index: 0;
}
.flow-step { position: relative; z-index: 1; text-align: center; }
.flow-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--slate); color: var(--white);
  font-family: var(--font-sans); font-size: 22px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px; border: 4px solid var(--bg-soft);
}
.flow-step h3 { font-size: 15px; color: var(--slate-deep); margin-bottom: 6px; }
.flow-step p { font-size: 13px; color: var(--text-light); }

/* ========================================
   PRICE TABLE
======================================== */
.price-table { max-width: 760px; margin: 0 auto; }
.price-table table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td {
  padding: 16px 18px; text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.price-table thead th {
  background: var(--slate); color: var(--white);
  font-weight: 600; font-size: 13px; letter-spacing: .05em;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .ours { color: var(--tel-red); font-weight: 700; }
.price-table .vs { color: var(--text-light); text-decoration: line-through; }
.price-note {
  display: block;
  max-width: 760px; margin: 20px auto 0;
  background: #FFF8E1;
  border: 1px solid #F2D98E;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px; font-weight: 600; color: var(--slate-deep);
  text-align: center;
  letter-spacing: .02em;
}
.price-note-mark {
  color: var(--gold); font-weight: 800; margin-right: 4px;
}

/* ========================================
   VOICES（お客様の声）
======================================== */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.voice-stars { color: #f5a623; margin-bottom: 10px; font-size: 14px; }
.voice blockquote { margin: 0 0 14px; font-size: 14px; line-height: 1.85; }
.voice-meta {
  font-size: 12px; color: var(--text-light); text-align: right;
  border-top: 1px solid var(--border-soft); padding-top: 10px;
}

/* ========================================
   FAQ
======================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border-soft); margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 18px 24px; font-weight: 600; cursor: pointer;
  list-style: none; position: relative; padding-right: 50px;
  font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); color: var(--slate); font-size: 18px;
  transition: transform .3s;
}
.faq details[open] summary::after { content: "−"; }
.faq-a {
  padding: 0 24px 20px; font-size: 14px; color: var(--text-light);
  line-height: 1.95;
}

/* ========================================
   ABOUT
======================================== */
.about-text {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-size: 16px; line-height: 2; color: var(--text);
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--slate); font-weight: 600; margin-top: 24px;
  border-bottom: 2px solid var(--slate); padding-bottom: 2px;
}

/* ========================================
   CTA BLOCK
======================================== */
.cta-block {
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  color: var(--white); padding: 72px 20px;
  text-align: center;
}
.cta-block-inner { max-width: 720px; margin: 0 auto; }
.cta-block h2 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 26px;
  color: var(--white); margin-bottom: 12px;
  letter-spacing: .04em;
}
.cta-block-sub { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 15px; }
.cta-block .btn-line {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  background: var(--line); color: var(--white);
  padding: 18px 40px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px;
  box-shadow: 0 12px 32px rgba(6,199,85,.4);
  transition: transform .2s;
}
.cta-block .btn-line:hover { transform: translateY(-2px); opacity: 1; }
.cta-note { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 16px; }

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}
.breadcrumb ol {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  list-style: none; display: flex; flex-wrap: wrap;
  font-size: 12px; color: var(--text-light);
}
.breadcrumb li:not(:last-child)::after {
  content: "›"; margin: 0 10px; color: var(--text-mute);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--slate); opacity: 1; }
.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ========================================
   SILO LP（親LP /dryer/ など）
======================================== */
.silo-hero {
  background: linear-gradient(135deg, var(--slate-tint) 0%, var(--slate-bg) 100%);
  padding: 60px 0 50px;
}
.silo-hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.silo-hero h1 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 32px; line-height: 1.55;
  color: var(--slate-deep); margin-bottom: 18px;
  letter-spacing: .04em;
}
.silo-hero .lede { font-size: 15px; line-height: 1.95; margin-bottom: 24px; }
.silo-hero-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.silo-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.silo-hero-tags span {
  background: var(--white); color: var(--slate);
  border: 1px solid var(--slate-bg); padding: 4px 12px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
}

/* 関連子記事カード */
.children {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.child-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border-soft);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.child-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--slate-bg);
}
.child-card .tag {
  font-size: 11px; letter-spacing: .15em; color: var(--slate);
  font-weight: 700; margin-bottom: 8px;
}
.child-card h3 {
  font-size: 16px; color: var(--slate-deep); margin-bottom: 8px;
}
.child-card p { font-size: 13px; color: var(--text-light); }

/* ========================================
   PAGE / POST 本文
======================================== */
.page-hero {
  background: var(--bg-soft); padding: 48px 0 40px;
}
.page-hero h1 {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  font-family: var(--font-sans); font-weight: 800;
  font-size: 28px; color: var(--slate-deep);
  letter-spacing: .04em;
}
.entry-content {
  max-width: 760px; margin: 0 auto; padding: 56px 20px;
  font-size: 16px; line-height: 2; color: var(--text);
}
.entry-content h2 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 22px; line-height: 1.5;
  color: var(--slate-deep); margin: 56px 0 24px;
  background: linear-gradient(90deg, var(--slate-bg) 0%, var(--slate-tint) 70%, transparent 100%);
  padding: 16px 20px;
  border-left: 6px solid var(--slate);
  border-radius: 0 6px 6px 0;
  letter-spacing: .04em;
}
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 {
  font-size: 18px; font-weight: 700;
  color: var(--slate-dark);
  margin: 32px 0 14px;
  padding-left: 14px; border-left: 4px solid var(--slate);
}
.entry-content h4 { font-size: 17px; margin: 24px 0 10px; color: var(--slate-deep); }
.entry-content p { margin-bottom: 1.4em; }
.entry-content ul, .entry-content ol { margin: 0 0 1.5em 1.6em; }
.entry-content li { margin-bottom: .4em; }

/* ===== entry-content 内: 商材LP用カスタム要素 ===== */

/* 動画（wp:embed）を中央寄せ + 16:9 で iframe 充填 */
.entry-content .wp-block-embed { max-width: 720px; margin: 28px auto; }
.entry-content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md); background: #000;
}
.entry-content .wp-block-embed__wrapper iframe,
.entry-content .wp-block-embed__wrapper > iframe,
.entry-content .wp-block-embed__wrapper > * {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* 症状リスト パネルグリッド */
.entry-content ul.symptoms {
  list-style: none !important;
  margin: 1.2em 0 !important;
  padding: 0 !important;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.entry-content ul.symptoms li {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 16px 18px 16px 48px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  position: relative; margin: 0 !important;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}
.entry-content ul.symptoms li::before {
  content: ""; position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--slate);
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(-45deg, transparent 60%, #fff 60%);
  background-size: 50% 50%, 50% 50%;
  background-position: 30% 60%, 70% 30%;
  background-repeat: no-repeat;
}
.entry-content ul.symptoms li::after {
  content: "✓"; position: absolute; left: 21px; top: 50%;
  transform: translateY(-50%); color: #fff; font-size: 14px;
  font-weight: 900; line-height: 1;
}

/* USPボックス（データ保存の取り組み等） */
.entry-content .usp-box {
  background: linear-gradient(135deg, #FFF8E1 0%, #FAF6EC 100%);
  border: 1px solid #F2D98E;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 28px;
  margin: 32px 0;
}
.entry-content .usp-box h3 {
  margin: 0 0 12px; padding: 0; border: none;
  font-weight: 800; font-size: 19px;
  color: var(--slate-deep);
}
.entry-content .usp-box p {
  font-size: 15px; line-height: 1.95; margin-bottom: .6em;
}
.entry-content .usp-box .usp-note,
.entry-content .usp-box p.usp-note {
  color: var(--text-light); font-size: 12px;
  margin: 8px 0 0; font-weight: 400;
}

/* メーカーパネル */
.entry-content .makers {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 20px 0 1.4em;
}
.entry-content .makers span {
  background: var(--white);
  color: var(--slate-deep);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--slate);
  box-shadow: var(--shadow-sm);
  letter-spacing: .02em;
}

/* 料金表 */
.entry-content .price-table-wrap { margin: 24px 0; overflow-x: auto; }
.entry-content .price-table-wrap table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); font-size: 14px;
}
.entry-content .price-table-wrap th,
.entry-content .price-table-wrap td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border-soft);
  border-left: none; border-right: none; border-top: none;
}
.entry-content .price-table-wrap thead th {
  background: var(--slate); color: #fff;
  font-weight: 600; font-size: 13px; letter-spacing: .05em;
}
.entry-content .price-table-wrap tbody tr:last-child td { border-bottom: none; }
.entry-content .price-table-wrap .ours {
  color: var(--tel-red); font-weight: 700; white-space: nowrap;
}
.entry-content p.price-note {
  display: block; margin: 16px 0 1.4em;
  background: #FFF8E1;
  border: 1px solid #F2D98E;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--slate-deep);
  text-align: center;
}

/* FAQ（wp:details ブロック） */
.entry-content .wp-block-details {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  margin: 0 0 12px 0;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.entry-content .wp-block-details > summary {
  padding: 18px 24px;
  font-weight: 700; cursor: pointer;
  list-style: none;
  position: relative; padding-right: 50px;
  font-size: 15px; color: var(--slate-deep);
}
.entry-content .wp-block-details > summary::-webkit-details-marker { display: none; }
.entry-content .wp-block-details > summary::after {
  content: "＋"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--slate); font-size: 22px; font-weight: 400;
  transition: transform .3s;
}
.entry-content .wp-block-details[open] > summary::after { content: "−"; }
.entry-content .wp-block-details p {
  padding: 0 24px 20px; margin: 0;
  font-size: 14px; color: var(--text-light);
  line-height: 1.95;
}

/* シロヒーロー ゴーストボタン（明色背景対応） */
.silo-hero .hero-cta .btn-ghost {
  border-color: var(--slate);
  color: var(--slate);
  background: transparent;
  text-shadow: none;
}
.silo-hero .hero-cta .btn-ghost:hover {
  background: var(--slate); color: var(--white);
}

@media (max-width: 768px) {
  .entry-content h2 { padding: 12px 14px; font-size: 17px; }
  .entry-content ul.symptoms { grid-template-columns: 1fr; }
  .entry-content .makers span { padding: 10px 14px; font-size: 12px; }
}

.entry-content a {
  color: var(--slate); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.entry-content blockquote {
  background: var(--bg-soft); border-left: 4px solid var(--slate);
  padding: 18px 22px; margin: 24px 0; font-size: 15px;
  color: var(--text-light); border-radius: 0 var(--radius) var(--radius) 0;
}
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.entry-content table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 14px;
}
.entry-content th, .entry-content td {
  padding: 12px 14px; border: 1px solid var(--border);
}
.entry-content th { background: var(--bg-soft); font-weight: 600; }

/* 子記事末尾の「親LPへ誘導」ボックス */
.parent-cta-box {
  background: var(--slate-tint); border-radius: var(--radius-lg);
  padding: 28px; margin: 40px 0; border: 1px solid var(--slate-bg);
  text-align: center;
}
.parent-cta-box .label {
  font-size: 12px; letter-spacing: .2em; color: var(--slate);
  font-weight: 700; margin-bottom: 8px;
}
.parent-cta-box h3 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 18px;
  color: var(--slate-deep); margin-bottom: 10px;
  letter-spacing: .03em;
}
.parent-cta-box p { font-size: 14px; color: var(--text); margin-bottom: 18px; }
.parent-cta-box a {
  display: inline-block; background: var(--slate); color: var(--white);
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
}
.parent-cta-box a:hover { background: var(--slate-dark); opacity: 1; }

/* ========================================
   ARCHIVE / 投稿一覧
======================================== */
.archive-list {
  max-width: var(--container); margin: 0 auto; padding: 56px 20px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.archive-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border-soft);
  transition: transform .2s, box-shadow .2s;
}
.archive-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.archive-card .thumb { aspect-ratio: 16 / 9; background: var(--bg-soft); }
.archive-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.archive-card .body { padding: 20px; }
.archive-card h2 {
  font-size: 16px; color: var(--slate-deep); margin-bottom: 8px; line-height: 1.5;
}
.archive-card .meta { font-size: 12px; color: var(--text-light); }

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--slate-deep); color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.2fr 2.5fr; gap: 48px;
}
.footer-brand .brand-name {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 20px; color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.footer-brand .brand-sub { font-size: 12px; opacity: .7; margin-bottom: 18px; }
.footer-brand .footer-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line); color: var(--white) !important;
  padding: 10px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.footer-hours { font-size: 12px; opacity: .75; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav-title {
  color: var(--white); font-weight: 600; font-size: 13px;
  letter-spacing: .1em; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-nav-list { list-style: none; padding: 0; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a { color: rgba(255,255,255,.7); font-size: 13px; }
.footer-nav-list a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  margin-top: 48px; padding: 24px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; font-size: 12px; color: rgba(255,255,255,.5);
}

/* ========================================
   /faq/ /voice/ ページ専用
======================================== */
.faq-lede, .voice-lede {
  font-size: 16px; line-height: 1.9;
  background: var(--slate-tint);
  padding: 20px 24px;
  border-left: 4px solid var(--slate);
  border-radius: 4px;
  margin-bottom: 32px;
  color: var(--text);
}

/* voice カードグリッド */
.voice-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin: 24px 0 16px;
}
.voice-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.voice-card::before {
  content: "“"; position: absolute; top: 8px; right: 16px;
  font-size: 56px; font-family: var(--font-serif);
  color: var(--slate-tint); line-height: 1;
}
.voice-card .voice-tag {
  display: inline-block;
  background: var(--slate);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.voice-card .voice-meta {
  font-size: 13px; color: var(--text-light);
  text-align: right;
  border-top: 1px solid var(--border-soft);
  padding-top: 10px;
  margin-top: 14px;
}
.voice-card p:not(.voice-tag):not(.voice-meta) {
  font-size: 14px; line-height: 1.9;
  margin-bottom: 0;
}
.voice-note {
  font-size: 12px; color: var(--text-mute);
  background: var(--bg-soft);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin: 16px 0 32px;
}

@media (max-width: 768px) {
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card { padding: 20px; }
}

/* ========================================
   汎用 wp-block-button スタイル（contactページなど）
======================================== */
/* LINEボタン: is-style-line — 他CTAと統一のため "バーントオレンジ" 仕上げ */
.wp-block-button.is-style-line .wp-block-button__link {
  --key-shadow: #6B2E0F;
  background: linear-gradient(180deg, #E59259 0%, #CC6B33 60%, #A04F1F 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--key-shadow) !important;
  border-top: 1px solid #F2B783 !important;
  text-shadow: 0 1px 0 rgba(80,30,10,.45);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.40),
    inset 0 -3px 0 rgba(80,30,10,.25),
    inset 1px 0 0 rgba(255,255,255,.18),
    inset -1px 0 0 rgba(80,30,10,.20),
    0 5px 0 var(--key-shadow),
    0 10px 20px rgba(0,0,0,.30);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .12s, box-shadow .12s;
  letter-spacing: .04em;
  min-width: 280px;
}
.wp-block-button.is-style-line .wp-block-button__link::before {
  content: ""; width: 22px; height: 22px; margin-right: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2C6.48 2 2 5.94 2 10.79c0 4.34 3.55 7.99 8.36 8.69.32.07.76.21.87.49.1.25.06.65.03.91l-.14.85c-.04.25-.2 1 .87.55 1.07-.45 5.79-3.41 7.9-5.84C21.27 14.81 22 12.93 22 10.79 22 5.94 17.52 2 12 2z'/></svg>") center/contain no-repeat;
}
.wp-block-button.is-style-line .wp-block-button__link:hover {
  transform: translateY(-1px);
}
.wp-block-button.is-style-line .wp-block-button__link:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.40),
    inset 0 -2px 0 rgba(80,30,10,.25),
    inset 1px 0 0 rgba(255,255,255,.18),
    inset -1px 0 0 rgba(80,30,10,.20),
    0 1px 0 var(--key-shadow),
    0 3px 6px rgba(0,0,0,.3);
}

/* アウトラインボタン: is-style-outline（FAQ動線など） */
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--slate-dark) !important;
  border: 2px solid var(--slate) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--slate) !important;
  color: var(--white) !important;
}

/* contact ページ専用：プライマリブロックの強調 */
.contact-primary {
  background: linear-gradient(180deg, #FBF3EA 0%, #F3E3D1 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin: 32px 0;
  text-align: center;
}
.contact-primary h2 { margin-bottom: 8px; }
.contact-primary p { color: var(--text-light); margin-bottom: 20px; }

.contact-lede {
  font-size: 17px; line-height: 1.9;
  background: var(--slate-tint);
  padding: 20px 24px;
  border-left: 4px solid var(--slate);
  border-radius: 4px;
  margin-bottom: 32px;
}

.contact-checklist li {
  padding-left: 4px;
  margin-bottom: 10px;
}
.contact-checklist strong { color: var(--slate-dark); }

.contact-form-placeholder {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0;
}
.contact-form-placeholder em { color: var(--text-light); font-style: normal; font-size: 14px; }
.contact-form-placeholder a { color: var(--slate); font-weight: 600; word-break: break-all; }

/* ========================================
   固定ボトムCTA（モバイル）
======================================== */
.fixed-bottom-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); z-index: 90;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  padding: 8px 12px; border-top: 1px solid var(--border-soft);
  /* スクロール途中までは非表示・隠す（モバイル時にJSで .is-visible 付与） */
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), opacity .25s ease;
}
.fixed-bottom-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.fixed-bottom-cta a {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  background: var(--line); color: var(--white) !important;
  padding: 14px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
}

/* ========================================
   404
======================================== */
.notfound { text-align: center; padding: 120px 20px; }
.notfound h1 {
  font-family: var(--font-sans); font-weight: 900;
  font-size: 80px; color: var(--slate);
  margin-bottom: 16px; letter-spacing: -.02em;
}
.notfound p { color: var(--text-light); margin-bottom: 24px; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 960px) {
  .hero { min-height: 560px; }
  .hero-content { padding: 72px 20px; }
  .hero h1 { font-size: 36px; line-height: 1.55; }
  .hero-lede { font-size: 15px; }
  .silo-hero-inner { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; gap: 16px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .flow::before { display: none; }
  .voices { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
/* ========================================
   TOPページ限定: CTAをピアノキー（カセットデッキ）スタイル
======================================== */
/* --- ピアノキーCTA（TOPページ専用） ---
   影の色のオプション（--key-shadow をどれか1つに切替）:
     #1B2C36 : スレートディープ（現状・落ち着いた重厚）
     #2A4150 : スレートダーク（ややニュートラル）
     #1F2937 : ニュートラルダークグレー
     #4A3220 : ダークウッド（茶系・ヴィンテージ）
     #5C2C2C : ボルドー（赤系・暖色）
*/
.hero-cta .btn-line,
.cta-block .btn-line {
  --key-shadow: #1B2C36;
  position: relative;
  background: linear-gradient(180deg, #FAF6EC 0%, #EFE9D9 60%, #D9D1BD 100%);
  color: #1B2C36 !important;
  border-radius: 6px;
  border: 1px solid var(--key-shadow);
  border-top: 1px solid #FFFCF3;
  padding: 14px 32px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .1em;
  text-shadow: 0 1px 0 rgba(255,255,255,.85);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    inset 0 -3px 0 rgba(31,41,55,.15),
    inset 1px 0 0 rgba(255,255,255,.4),
    inset -1px 0 0 rgba(31,41,55,.15),
    0 5px 0 var(--key-shadow),
    0 10px 20px rgba(0,0,0,.4);
  transition: transform .08s ease, box-shadow .08s ease;
  display: inline-flex; align-items: center; gap: 14px;
  line-height: 1.4;
}
.home .hero-cta .btn-line::before,
.home .cta-block .btn-line::before {
  content: "";
  flex-shrink: 0;
  width: 0; height: 0;
  border-left: 16px solid #06C755;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.5));
}
.home .hero-cta .btn-line:hover,
.home .cta-block .btn-line:hover {
  transform: translateY(-1px);
  opacity: 1;
}
.home .hero-cta .btn-line:active,
.home .cta-block .btn-line:active {
  transform: translateY(4px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    inset 0 -2px 0 rgba(31,41,55,.15),
    inset 1px 0 0 rgba(255,255,255,.4),
    inset -1px 0 0 rgba(31,41,55,.15),
    0 1px 0 var(--key-shadow),
    0 3px 6px rgba(0,0,0,.3);
}
.home .hero-cta .btn-line small,
.home .cta-block .btn-line small {
  color: #3F5C6A !important;
  opacity: 1;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}

/* ゴーストボタンをピアノキーと高さ揃える */
.hero-cta .btn-ghost {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  border-width: 2px;
  line-height: 1.4;
  display: inline-flex; align-items: center; justify-content: center;
}

/* CTAブロック背景もスレートに馴染ませて、ピアノキーを際立たせる */
.home .cta-block {
  background: linear-gradient(135deg, #1B2C36 0%, #2A4150 100%);
}

/* 中間幅（タブレット〜小ノートPC）でナビ詰めて改行回避 */
@media (max-width: 1180px) and (min-width: 769px) {
  .header-inner { gap: 16px; padding: 12px 16px; }
  .site-logo-mark { width: 36px; height: 36px; }
  .site-logo-text { font-size: 19px; gap: 10px; }
  .site-logo-sub { font-size: 12px; letter-spacing: .14em; }
  .global-nav ul { gap: 20px; }
  .global-nav a { font-size: 13px; }
  .header-line { padding: 8px 18px; font-size: 13px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 10px 16px; gap: 12px; }
  .site-logo img { height: 40px; }
  .site-logo-mark { width: 34px; height: 34px; }
  .site-logo-text { font-size: 17px; gap: 8px; }
  .site-logo-sub { font-size: 11px; letter-spacing: .14em; }
  .global-nav, .header-line { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }
  .hero { min-height: 520px; }
  .hero-content { padding: 56px 18px; }
  .hero-kicker { font-size: 11px; gap: 10px; }
  .hero-kicker::before, .hero-kicker::after { width: 24px; }
  .hero h1 { font-size: 28px; line-height: 1.55; letter-spacing: .03em; }
  .hero-lede { font-size: 14px; line-height: 1.95; }
  .hero-overlay {
    background:
      radial-gradient(ellipse at center, rgba(27,44,54,.60) 0%, rgba(27,44,54,.82) 100%),
      linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 100%);
  }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-line, .hero-cta .btn-ghost { justify-content: center; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product .icon { font-size: 30px; }
  .fixed-bottom-cta { display: block; }
  body { padding-bottom: 70px; }
  .footer-nav { grid-template-columns: 1fr; }
  .silo-hero h1 { font-size: 24px; }
  .entry-content { padding: 40px 20px; }
  .entry-content h2 { font-size: 22px; }
  .entry-content h3 { font-size: 18px; }
}
