/* ========================================
   神奈川まごころ整理センター 共通スタイル
   ======================================== */

/* ===== リセット & 基本 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== カラー変数 ===== */
:root {
  --navy: #1a3a5c;
  --navy-light: #2a5080;
  --green: #2e8b57;
  --green-light: #3aab6d;
  --orange: #e07b00;
  --orange-light: #f5a623;
  --beige: #f7f3ee;
  --beige2: #ede8e0;
  --white: #ffffff;
  --gray: #666;
  --gray-light: #f0f0f0;
}

/* ===== ユーティリティ ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 50px;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(224,123,0,0.4);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ===== 固定ヘッダー ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.header-logo { color: #fff; font-size: 1.1rem; font-weight: 900; letter-spacing: 0.05em; display: flex; align-items: center; gap: 10px; }
.header-logo span { color: var(--orange-light); }
.header-logo a { color: inherit; }
.header-tel { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.header-tel small { color: #ccc; font-size: 0.7rem; }
.header-tel a { color: #fff; font-size: 1.3rem; font-weight: 900; letter-spacing: 0.05em; }
.header-tel a::before { content: "📞 "; font-size: 1rem; }

/* ===== パンくず ===== */
.breadcrumb {
  background: var(--beige);
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 138px;
}
@media (max-width: 900px) {
  .breadcrumb { margin-top: 60px; }
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }

/* ===== ページヒーロー ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a5c3a 100%);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.page-hero-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}
.page-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--orange-light); }
.page-hero p { font-size: 1rem; color: #d0dde8; margin-bottom: 30px; }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 500px; margin: 0 auto; }
.hero-tel-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  padding: 16px 24px;
  font-weight: 900;
  width: 100%;
}
.hero-tel-btn .tel-num { font-size: 1.6rem; letter-spacing: 0.05em; color: var(--navy); }
.hero-tel-btn .tel-label { font-size: 0.78rem; color: var(--gray); }
.hero-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #06c755;
  color: #fff;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: background 0.2s;
}
.hero-line-btn:hover { background: #05b04c; }

/* ===== サービスページ シンプル電話CTA ===== */
.hero-tel-simple { margin-top: 24px; text-align: center; }
.hero-tel-simple small { display: block; font-size: 0.82rem; color: #d0dde8; margin-bottom: 8px; }
.hero-tel-simple-link { font-size: 2rem; font-weight: 900; color: #fff; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; letter-spacing: 0.02em; }
.hero-tel-simple-link:hover { color: var(--orange-light); }

/* ===== 不安解消バー ===== */
#anxiety-bar { background: var(--beige); padding: 20px 0; border-top: 3px solid var(--orange); }
.anxiety-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px 40px; list-style: none; padding: 0 16px; }
.anxiety-list li { font-size: 0.92rem; color: var(--navy); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.anxiety-list li::before { content: "✓"; color: var(--green); font-size: 1.1rem; font-weight: 900; }

/* ===== サービスカード ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--navy);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.service-card a { display: block; }
.service-icon { font-size: 2.8rem; margin-bottom: 14px; }
.service-name { font-size: 1.05rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.service-link { display: inline-block; margin-top: 12px; font-size: 0.8rem; color: var(--orange); font-weight: 700; }

/* ===== 選ばれる理由 ===== */
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .reasons-grid .reason-card:last-child { grid-column: 1 / -1; }
}
.reason-card { display: flex; gap: 20px; align-items: flex-start; background: #fef3e7; border-radius: 14px; padding: 26px; min-width: 0; }
.reason-num { font-size: 2rem; font-weight: 700; color: var(--orange); line-height: 1; flex-shrink: 0; min-width: 44px; }
.reason-body { flex: 1; min-width: 0; }
.reason-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; word-break: normal; overflow-wrap: break-word; }
.reason-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; word-break: normal; overflow-wrap: break-word; }

/* ===== 流れ ===== */
.flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.flow-step { text-align: center; padding: 20px 10px; position: relative; }
.flow-step:not(:last-child)::after { content: '▶'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--orange-light); font-size: 1.2rem; z-index: 1; }
.flow-num { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 900; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.flow-icon { font-size: 1.8rem; margin-bottom: 8px; }
.flow-title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.flow-desc { font-size: 0.75rem; color: #8aaccf; line-height: 1.6; }

/* ===== お客様の声 ===== */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.voice-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 10px; }
.voice-text { font-size: 0.88rem; color: #444; line-height: 1.8; margin-bottom: 14px; }
.voice-info { display: flex; align-items: center; gap: 10px; }
.voice-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.voice-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.voice-area { font-size: 0.75rem; color: var(--gray); }

/* ===== 対応エリア ===== */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 30px; }
.area-item { background: var(--beige); border-radius: 8px; padding: 14px 10px; text-align: center; font-size: 0.88rem; font-weight: 700; color: var(--navy); border-left: 3px solid var(--green); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq-q { padding: 18px 24px; font-weight: 700; color: var(--navy); display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.faq-q::before { content: "Q"; background: var(--navy); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; flex-shrink: 0; }
.faq-a { padding: 0 24px 18px 62px; font-size: 0.88rem; color: #555; line-height: 1.8; }

/* ===== 料金テーブル ===== */
.price-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 480px; }
.price-table th { background: var(--navy); color: #fff; padding: 14px 20px; text-align: left; font-weight: 700; white-space: nowrap; }
.price-table td { padding: 14px 20px; border-bottom: 1px solid #e8e8e8; vertical-align: top; }
.price-table tr:nth-child(even) td { background: var(--beige); }
.price-note { font-size: 0.82rem; color: var(--gray); margin-top: 16px; text-align: center; }

/* ===== 品目リスト ===== */
.items-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.item-tag { background: var(--beige); border-radius: 8px; padding: 10px 14px; font-size: 0.85rem; font-weight: 700; color: var(--navy); text-align: center; border-left: 3px solid var(--orange); }

/* ===== お問い合わせ ===== */
#contact { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; padding: 70px 20px; }
#contact .section-title { color: #fff; }
#contact .section-sub { color: #a0b8cc; }
.contact-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 30px; text-align: center; }
.contact-card .icon { font-size: 2.5rem; margin-bottom: 14px; }
.contact-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.contact-card p { font-size: 0.82rem; color: #a0b8cc; margin-bottom: 20px; }
.tel-big { font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: 0.05em; display: block; margin-bottom: 8px; }
.tel-free { font-size: 0.75rem; color: #8aaccf; }
.btn-line { display: inline-block; background: #06c755; color: #fff; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: background 0.2s; }
.btn-line:hover { background: #05b04c; }

/* ===== 他サービスリンク ===== */
.other-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.other-service-link {
  display: block;
  background: var(--beige);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.other-service-link:hover { border-color: var(--navy); background: #fff; }
.other-service-link .os-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }

/* ===== フッター ===== */
footer { background: #111; color: #888; font-size: 0.8rem; padding: 30px 20px; text-align: center; }
footer p { margin-bottom: 6px; }

/* ===== 固定CTA（スマホ） ===== */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); padding: 10px 16px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.sticky-tel { flex: 1; background: var(--orange); color: #fff; text-align: center; padding: 14px 8px; border-radius: 8px; font-weight: 900; font-size: 1rem; min-height: 52px; display: flex; align-items: center; justify-content: center; }
.sticky-line { flex: 1; background: #06c755; color: #fff; text-align: center; padding: 14px 8px; border-radius: 8px; font-weight: 900; font-size: 1rem; min-height: 52px; display: flex; align-items: center; justify-content: center; }

/* ===== スクロールアニメーション ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== タブレット（〜900px） ===== */
@media (max-width: 900px) {
  html { font-size: 16px; }
  #main-nav { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .flow-step:not(:last-child)::after { content: '▼'; position: absolute; right: auto; left: 50%; top: auto; bottom: -18px; transform: translateX(-50%); font-size: 1rem; }
  .flow-step { padding: 20px 10px 34px; }
  .voices-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .other-services { grid-template-columns: repeat(2, 1fr); }
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ===== スマホ 375px〜600px（iPhone最適化・40代以上向け） ===== */
@media (max-width: 600px) {
  html { font-size: 16px; overflow-x: hidden; }
  body { overflow-x: hidden; max-width: 100vw; }

  /* コンテナ */
  .container { padding: 0 14px; width: 100%; }
  .section { padding: 44px 0; }

  /* 見出し */
  .section-title { font-size: 1.35rem; line-height: 1.5; margin-bottom: 10px; }
  .section-sub { font-size: 0.88rem; margin-bottom: 30px; }

  /* ヘッダー：スマホ1行レイアウト（60px） */
  .header-inner {
    flex-direction: row;
    align-items: center;
    padding: 0 16px;
    height: 60px;
  }
  .header-logo { font-size: 0.9rem; gap: 8px; white-space: nowrap; }
  .header-logo img { height: 30px !important; }
  .header-tel { display: none; }

  /* サービスカード：1列 */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 20px 16px; }
  .service-icon { font-size: 2.2rem; margin-bottom: 10px; }
  .service-name { font-size: 1rem; }
  .service-desc { font-size: 0.88rem; line-height: 1.75; }

  /* 選ばれる理由 */
  .reasons-grid { gap: 12px; }
  .reason-card { padding: 18px 14px; gap: 12px; }
  .reason-num { font-size: 1.6rem; }
  .reason-body h3 { font-size: 1rem; }
  .reason-body p { font-size: 0.88rem; line-height: 1.8; }

  /* ご利用の流れ */
  .flow-steps { max-width: 100%; }
  .flow-step { padding: 16px 8px 32px; }
  .flow-num { width: 42px; height: 42px; font-size: 1rem; }
  .flow-icon { font-size: 1.5rem; }
  .flow-title { font-size: 0.9rem; }
  .flow-desc { font-size: 0.8rem; }

  /* お客様の声 */
  .voice-card { padding: 18px 14px; }
  .voice-text { font-size: 0.88rem; line-height: 1.85; }
  .voice-name { font-size: 0.88rem; }
  .voice-area { font-size: 0.78rem; }

  /* 対応エリア */
  .area-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-item { font-size: 0.85rem; padding: 12px 6px; }

  /* FAQ */
  .faq-q { font-size: 0.92rem; padding: 16px 12px; gap: 10px; line-height: 1.6; }
  .faq-q::before { width: 26px; height: 26px; font-size: 0.78rem; flex-shrink: 0; }
  .faq-a { font-size: 0.88rem; padding: 0 12px 16px 48px; line-height: 1.85; }

  /* 料金テーブル：横スクロール */
  .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }
  .price-table { min-width: 480px; font-size: 0.82rem; }
  .price-table th, .price-table td { padding: 10px 12px; }
  .price-note { font-size: 0.82rem; line-height: 1.7; }

  /* 品目タグ */
  .items-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .item-tag { font-size: 0.82rem; padding: 10px 8px; }

  /* お問い合わせ */
  .contact-inner { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 22px 16px; }
  .tel-big { font-size: 1.8rem; }
  .contact-card h3 { font-size: 1rem; }
  .contact-card p { font-size: 0.86rem; }
  .btn-line { font-size: 1rem; padding: 15px 24px; width: 100%; text-align: center; }

  /* 他サービスリンク */
  .other-services { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .other-service-link { font-size: 0.82rem; padding: 12px 8px; }
  .other-service-link .os-icon { font-size: 1.4rem; }

  /* 固定CTA */
  .sticky-cta { padding: 8px 10px; gap: 8px; }
  .sticky-tel, .sticky-line { font-size: 0.95rem; padding: 13px 6px; min-height: 50px; border-radius: 8px; }

  /* フッター */
  footer { font-size: 0.8rem; padding: 20px 14px; line-height: 1.8; }

  /* ページヒーロー */
  .page-hero { padding: 40px 14px; }
  .page-hero h1 { font-size: 1.35rem; line-height: 1.45; }
  .page-hero p { font-size: 0.88rem; }
  .page-hero-badge { font-size: 0.76rem; padding: 5px 12px; }
  .hero-cta { width: 100%; max-width: 420px; }
  .hero-tel-btn { padding: 14px 16px; width: 100%; box-sizing: border-box; }
  .hero-tel-btn .tel-num { font-size: 1.5rem; }
  .hero-line-btn { padding: 14px 16px; font-size: 0.95rem; width: 100%; box-sizing: border-box; }

  /* パンくず */
  .breadcrumb { font-size: 0.78rem; padding: 10px 14px; }

  /* btn-primary */
  .btn-primary { font-size: 1rem; padding: 15px 24px; width: 100%; text-align: center; display: block; }
}

/* ========================================
   グローバルナビゲーション
   ======================================== */
#main-nav {
  background: #fff;
  border-bottom: 2px solid var(--beige2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.main-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  height: 52px;
}
.nav-list {
  display: flex;
  list-style: none;
  height: 100%;
  width: 100%;
  gap: 0;
}
.nav-list > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-list > li > a {
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}
.nav-list > li > a:hover {
  background: var(--beige);
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-list > li.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--beige2);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  list-style: none;
  min-width: 190px;
  z-index: 1000;
}
.nav-dropdown li a {
  display: block;
  padding: 11px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  border-bottom: 1px solid var(--beige);
  transition: background 0.15s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: var(--beige); color: var(--orange); }
.nav-cta-btn {
  margin-left: auto;
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 0 18px !important;
  font-size: 0.82rem !important;
  border-bottom: none !important;
  height: 32px !important;
  align-self: center;
}
.nav-cta-btn:hover { background: var(--orange-light) !important; border-bottom: none !important; }

/* ハンバーガーボタン */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 78px;
  left: 0; right: 0; bottom: 0;
  z-index: 997;
  background: rgba(0,0,0,0.5);
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu-panel {
  background: #fff;
  max-height: calc(100vh - 78px);
  overflow-y: auto;
}
.mobile-menu-panel a {
  display: block;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--beige2);
}
.mobile-menu-panel a:hover { background: var(--beige); color: var(--orange); }
.mobile-menu-panel .mm-section {
  background: var(--beige);
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--gray);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--beige2);
}
.mobile-menu-panel .mm-cta-tel {
  background: var(--orange);
  color: #fff !important;
  text-align: center;
  font-size: 1.1rem !important;
  padding: 18px !important;
}
.mobile-menu-panel .mm-cta-line {
  background: #06c755;
  color: #fff !important;
  text-align: center;
  font-size: 1.1rem !important;
  padding: 18px !important;
}

@media (max-width: 900px) {
  #main-nav { display: none; }
  .nav-hamburger { display: flex; align-items: center; }
}

/* ナビ追加分の上部余白 */
.has-nav { margin-top: 108px; }
.has-nav-mobile { margin-top: 78px; }
@media (max-width: 900px) {
  .has-nav { margin-top: 78px; }
}

/* ========================================
   信頼バッジ
   ======================================== */
#trust-badges {
  background: var(--beige);
  padding: 28px 20px;
  border-bottom: 2px solid var(--beige2);
}
.trust-badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-left: 4px solid var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.trust-badge .tb-icon { font-size: 1.3rem; }
.trust-badge.green { border-left-color: var(--green); }
.trust-badge.orange { border-left-color: var(--orange); }
@media (max-width: 600px) {
  .trust-badges-grid { gap: 8px 12px; }
  .trust-badge { padding: 9px 12px; font-size: 0.78rem; }
}

/* ========================================
   ブログカード
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.blog-card-body { padding: 20px; }
.blog-tag { display: inline-block; background: var(--navy); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; }
.blog-title { font-size: 0.95rem; font-weight: 900; color: var(--navy); line-height: 1.5; margin-bottom: 10px; }
.blog-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.blog-meta { font-size: 0.75rem; color: #aaa; }
.blog-more { font-size: 0.8rem; color: var(--orange); font-weight: 700; }
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================================
   記事ページ
   ======================================== */
.article-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 50px 20px 40px;
  color: #fff;
  text-align: center;
}
.article-hero h1 { font-size: 1.6rem; font-weight: 900; line-height: 1.5; margin-bottom: 14px; }
.article-hero .art-meta { font-size: 0.82rem; color: #a0b8cc; }
.article-body { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.article-body h2 { font-size: 1.25rem; font-weight: 900; color: var(--navy); margin: 36px 0 14px; padding-left: 14px; border-left: 4px solid var(--orange); line-height: 1.4; }
.article-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.article-body p { font-size: 0.95rem; line-height: 1.9; color: #444; margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 20px; }
.article-body li { font-size: 0.92rem; line-height: 1.9; color: #444; margin-bottom: 4px; }
.article-body .info-box { background: var(--beige); border-radius: 10px; padding: 18px 20px; margin: 24px 0; }
.article-body .info-box p { margin: 0; font-size: 0.9rem; }
.article-cta { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; padding: 40px 20px; text-align: center; margin: 40px 0 0; border-radius: 14px; }
.article-cta h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 16px; }
.related-articles { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.related-articles h3 { font-size: 1rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; border-bottom: 2px solid var(--beige2); padding-bottom: 10px; }
.related-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; list-style: none; }
.related-list li a { display: block; background: var(--beige); border-radius: 8px; padding: 12px; font-size: 0.82rem; font-weight: 700; color: var(--navy); line-height: 1.5; }
.related-list li a:hover { background: var(--beige2); color: var(--orange); }
@media (max-width: 600px) {
  .article-hero h1 { font-size: 1.25rem; }
  .article-body { padding: 28px 14px; }
  .article-body h2 { font-size: 1.1rem; }
  .related-list { grid-template-columns: 1fr; }
}

/* ===== Instagram ===== */
.btn-instagram { display:inline-block; background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; font-weight:700; font-size:0.95rem; padding:14px 28px; border-radius:50px; text-decoration:none; transition:opacity .2s; }
.btn-instagram:hover { opacity:.85; }
.mm-cta-instagram { display:block; margin:8px 16px 0; padding:14px; background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; font-weight:700; font-size:1rem; border-radius:10px; text-align:center; text-decoration:none; }

/* ===== お客様の声（拡張版） ===== */
.voices-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card-v2 { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); border-bottom: 4px solid var(--beige2); display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.voice-card-v2:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.12); }
.voice-stars-v2 { color: #fbbf24; font-size: 1.25rem; margin-bottom: 10px; letter-spacing: 3px; }
.voice-headline { font-size: 1.05rem; font-weight: 900; color: var(--navy); line-height: 1.5; margin-bottom: 12px; }
.voice-body { font-size: 1rem; color: #444; line-height: 1.9; margin-bottom: 18px; flex: 1; }
.voice-meta { border-top: 1px solid #eee; padding-top: 14px; margin-top: auto; }
.voice-customer { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.voice-detail { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.voice-usedate { font-size: 0.78rem; color: var(--gray); margin-top: 5px; }
.voices-more-link { text-align: right; margin-top: 24px; }
.voices-more-link a { color: var(--navy); font-weight: 700; font-size: 0.95rem; text-decoration: none; border-bottom: 2px solid var(--beige2); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.voices-more-link a:hover { color: var(--orange); border-color: var(--orange); }
.voices-permission { text-align: center; color: var(--gray); font-size: 0.8rem; margin-top: 16px; }

/* フィルターバー（/voice/ページ用） */
.voice-filter-section { background: var(--beige); border-radius: 16px; padding: 24px 28px; margin-bottom: 36px; }
.voice-filter-group { margin-bottom: 16px; }
.voice-filter-group:last-child { margin-bottom: 0; }
.voice-filter-label { font-size: 0.82rem; font-weight: 700; color: var(--gray); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.voice-filter-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.voice-filter-btn { background: #fff; border: 2px solid #d8e2ed; color: #555; font-size: 0.82rem; font-weight: 700; padding: 7px 16px; border-radius: 20px; cursor: pointer; transition: all 0.18s; line-height: 1; }
.voice-filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.voice-filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.voice-filter-result { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.voice-card-v2.hidden { display: none; }

/* 声ページ下部CTA */
.voice-bottom-cta { background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%); color: #fff; border-radius: 20px; padding: 52px 32px; text-align: center; margin-top: 60px; }
.voice-bottom-cta h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; line-height: 1.4; }
.voice-bottom-cta p { font-size: 0.98rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.8; }

@media (max-width: 960px) { .voices-grid-v2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .voices-grid-v2 { grid-template-columns: 1fr; }
  .voice-card-v2 { padding: 22px 18px; }
  .voice-body { font-size: 0.97rem; }
  .voice-filter-section { padding: 18px 16px; }
  .voice-bottom-cta { padding: 36px 20px; }
  .voice-bottom-cta h3 { font-size: 1.2rem; }
}
