/* =====================
   リセット・基本
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body { font-family: 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; font-size: 17px; line-height: 1.85; color: #333; background: #fdf8f3; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =====================
   変数
===================== */
:root {
  --red: #c0392b;
  --red-light: #fde8e8;
  --accent-bg: #f0e6de;
  --main-bg: #fdf8f3;
  --border: #e0d8d0;
  --border-light: #e8ddd8;
  --text: #333;
  --text-muted: #777;
  /* 明朝体：大見出しのみに限定して使用 */
  --font-mincho: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Yu Mincho', 'YuMincho', serif;
}

/* =====================
   共通レイアウト
===================== */
.section-inner { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.section { padding: 48px 0; }
.bg-accent { background: var(--accent-bg); }

.section-label { font-size: 12px; color: var(--red); letter-spacing: 0.14em; font-weight: 500; margin-bottom: 6px; }
.section-title { font-size: 34px; font-weight: 700; font-family: var(--font-mincho); letter-spacing: 0.05em; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.divider { width: 32px; height: 2px; background: var(--red); margin: 10px 0 24px; border-radius: 1px; }

/* =====================
   ヘッダー
===================== */
.header {
  background: #fff;
  border-bottom: 0.5px solid var(--border);
  padding: 0;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo { display: flex; flex-direction: column; line-height: 1.2; align-items: flex-start; }
.header-logo-img { height: 38px; width: auto; display: block; }
.header-logo span { font-size: 10px; color: var(--text-muted); font-weight: 400; margin-top: 2px; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-tel { display: flex; flex-direction: column; align-items: flex-start; }
.header-tel-label { font-size: 9px; color: var(--text-muted); line-height: 1.2; }
.header-tel-num { font-size: 15px; font-weight: 600; color: var(--red); letter-spacing: 0.03em; opacity: 0.88; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.nav-active { color: var(--red); }
.header-cta { background: var(--red); color: #fff; padding: 7px 16px; border-radius: 6px; font-size: 12px; font-weight: 500; transition: opacity 0.15s; }
.header-cta:hover { opacity: 0.85; }

/* ハンバーガー（SP） */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 11px 12px; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: all 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sp-menu { display: none; flex-direction: column; background: #fff; border-bottom: 0.5px solid var(--border); position: fixed; top: 64px; left: 0; right: 0; z-index: 99; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.sp-menu.open { display: flex; }
.sp-menu a { padding: 15px 24px; font-size: 16px; border-bottom: 0.5px solid var(--border-light); color: var(--text); min-height: 52px; display: flex; align-items: center; }
.sp-menu-cta { background: var(--red); color: #fff !important; text-align: center; margin: 12px 24px 16px; border-radius: 6px; border-bottom: none !important; }

/* =====================
   ヒーロー（新デザイン：左アイボリー＋右写真）
===================== */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(120deg, #fffdf8 0%, #fffaf2 54%, #f2e9dc 100%);
}
.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  animation: hero-fade-img 1.1s ease-out 0.1s both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,253,248,1) 0%,
    rgba(255,253,248,.98) 36%,
    rgba(255,253,248,.80) 48%,
    rgba(255,253,248,0) 68%);
}
.hero-inner {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 58px 0 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 11px;
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--font-mincho);
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: .06em;
  font-weight: 700;
  color: #302b29;
  margin: 0 0 12px;
  animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero-h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-lead {
  color: #665f5a;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
  margin: 0 0 18px;
  animation: hero-fade-up 0.75s ease-out 0.35s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  animation: hero-fade-up 0.7s ease-out 0.46s both;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(192,57,43,.18);
  transition: opacity 0.15s;
}
.hero-btn-primary:hover { opacity: 0.88; }
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 7px;
  border: 1px solid #d8c8b9;
  background: rgba(255,255,255,.7);
  color: #5e5149;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.15s;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.95); }
/* =====================
   ヒーローフェードインアニメーション
===================== */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-img {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}

/* アクセシビリティ：動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-eyebrow,
  .hero-h1,
  .hero-lead,
  .hero-actions,
  .hero-proof {
    animation: none;
  }
}

/* ヒーロー強みカード：スマホ専用（PCでは非表示） */
.hero-proof { display: none; }
.proof-card {
  min-height: 72px;
  padding: 12px 10px 10px;
  border-radius: 8px;
  border: 1px solid rgba(222,208,193,.9);
  background: rgba(255,253,249,.84);
}

/* PC専用：ヒーロー直下の横長特徴バー */
.proof-strip {
  background: #fffdf8;
  border-top: 1px solid rgba(231,221,209,.60);
  border-bottom: 1px solid #e7ddd1;
  box-shadow: inset 0 2px 5px rgba(0,0,0,.03);
}
.proof-strip-inner {
  display: flex;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.proof-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid #e7ddd1;
}
.proof-strip-item:last-child { border-right: none; }
.proof-strip-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #923d30;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.proof-strip-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.proof-card b {
  display: block;
  color: #923d30;
  font-size: 17px;
  margin-bottom: 6px;
}
.proof-card span {
  color: #6e645e;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}
.hero-area-tag {
  position: absolute;
  right: 5vw;
  bottom: 24px;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(48,43,41,.68);
  color: #fff;
  font-size: 11px;
  letter-spacing: .05em;
}

/* =====================
   選ばれる理由（コンパクト3カラムカード）
===================== */
.strengths { background: #fffdf9; }
.strengths-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.strengths-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
  align-items: flex-end;
}
.strengths-title {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text);
  margin: 6px 0 0;
  line-height: 1.5;
}
.strengths-note {
  max-width: 440px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  flex-shrink: 1;
}
.strengths-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.strength-card {
  display: flex;
  gap: 14px;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1px solid #eee4d9;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(114,93,72,.06);
  align-items: flex-start;
}
.strength-num {
  color: #ddcdb9;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
  margin-top: 2px;
}
.strength-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.4;
}
.strength-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* =====================
   ボトムストリップ（CTA帯）
===================== */
.bottom-strip {
  background: #923d30;
  color: #fffaf5;
  padding: 22px 6.5vw;
}
.bottom-strip-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.bottom-strip-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bottom-strip-title {
  font-size: 16px;
  font-weight: 800;
  color: #f4d9b7;
  letter-spacing: 0.04em;
}
.bottom-strip-sub {
  font-size: 13px;
  color: rgba(255,250,245,.78);
  font-weight: 400;
}
.bottom-strip-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.bottom-strip-tel-label {
  font-size: 12px;
  color: rgba(255,250,245,.70);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.bottom-strip-tel-num {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #fffaf5;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border: 1.5px solid rgba(255,250,245,.35);
  border-radius: 6px;
  transition: background 0.15s;
  min-height: 44px;
}
.bottom-strip-tel-num:hover { background: rgba(255,255,255,.12); }
.bottom-strip-tel-time {
  font-size: 12px;
  color: rgba(255,250,245,.60);
}

/* =====================
   サービス
===================== */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-card { border: 0.5px solid var(--border); border-radius: 10px; overflow: hidden; }
.service-img { width: 100%; height: 120px; object-fit: cover; background: #e8ddd8; }
.service-img-icon { display: flex; align-items: center; justify-content: center; background: var(--red-light); }
.service-body { padding: 16px; }
.service-tag { font-size: 12px; background: var(--red-light); color: var(--red); display: inline-block; padding: 3px 9px; border-radius: 4px; margin-bottom: 7px; }
.service-name { font-size: 20px; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.service-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; }

/* =====================
   タイムライン時間表示
===================== */
.tl-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  opacity: 0.85;
}

/* =====================
   1日の流れ（縦型タイムライン）
===================== */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 42px;
  bottom: 42px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red) 0%, rgba(192,57,43,0.18) 100%);
}
.tl-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0 16px 66px;
}
.tl-node {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(192,57,43,0.32);
  z-index: 1;
  flex-shrink: 0;
}
.tl-content {
  flex: 1;
  min-width: 0;
}
.tl-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.tl-detail {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.tl-photo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(192,57,43,0.14);
}
.tl-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =====================
   ごあいさつ
===================== */
.greeting-inner { display: flex; gap: 28px; align-items: flex-start; }
.greeting-photo { width: 170px; height: 170px; object-fit: cover; object-position: top center; border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; flex-shrink: 0; border: 3px solid rgba(192,57,43,0.18); background: #e0d0c8; box-shadow: 0 4px 18px rgba(0,0,0,0.10); animation: blob-morph 9s ease-in-out infinite; }
@keyframes blob-morph {
  0%, 100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
  33%  { border-radius: 48% 52% 60% 40% / 44% 62% 38% 56%; }
  66%  { border-radius: 38% 62% 36% 64% / 56% 38% 62% 44%; }
}
.greeting-name { font-size: 16px; color: var(--text-muted); margin-bottom: 12px; }
.greeting-text { font-size: 17px; color: #3f3a36; line-height: 2.0; }
.greeting-accent { font-weight: 700; font-style: normal; color: #302b29; border-bottom: 1.5px solid rgba(182,77,59,.32); }

/* ウェーブ区切り */
.wave-divider { line-height: 0; overflow: hidden; display: block; font-size: 0; margin-bottom: -2px; }
.wave-divider svg { display: block; width: 200%; height: 72px; animation: wave-scroll 20s linear infinite; vertical-align: bottom; }
@keyframes wave-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   ご利用の流れ CTA
===================== */
.flow-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(192, 57, 43, 0.15);
}
.flow-cta-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.flow-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* フォームボタン */
.flow-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(192,57,43,.20);
  transition: opacity 0.15s;
  white-space: nowrap;
}
.flow-cta-btn:hover { opacity: 0.88; }
/* 電話ボタン */
.flow-cta-tel-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 58px;
  padding: 10px 28px;
  border-radius: 8px;
  background: rgba(192,57,43,.06);
  border: 1.5px solid rgba(192,57,43,.20);
  color: var(--red);
  text-decoration: none;
  transition: background 0.15s;
}
.flow-cta-tel-btn:hover { background: rgba(192,57,43,.11); }
.flow-cta-tel-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.flow-cta-tel-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--red);
}
.flow-cta-time {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* =====================
   ご利用の流れ
===================== */
.flow-steps { display: flex; align-items: stretch; }
.flow-step { flex: 1; text-align: center; padding: 20px 8px; position: relative; }
.flow-step:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--red); font-size: 16px; }
.flow-circle { width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: #fff; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.flow-label { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.flow-detail { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* =====================
   アクセス
===================== */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-wrap iframe { border-radius: 10px; }
.access-info { font-size: 13px; }
.access-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.access-label { font-size: 10px; color: #fff; background: var(--red); padding: 2px 6px; border-radius: 3px; flex-shrink: 0; margin-top: 2px; font-weight: 500; }
.access-val { color: var(--text); line-height: 1.6; font-size: 15px; }
.tel-big { font-size: 22px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; margin-bottom: 2px; text-decoration: none; padding: 6px 12px; border: 1.5px solid rgba(192,57,43,.25); border-radius: 6px; transition: background 0.15s; min-height: 44px; letter-spacing: 0.04em; }
.tel-big:hover { background: rgba(192,57,43,.05); }
.access-btn { display: block; margin-top: 14px; background: var(--red); color: #fff; text-align: center; padding: 14px; border-radius: 8px; font-size: 16px; font-weight: 700; transition: opacity 0.15s; }
.access-btn:hover { opacity: 0.85; }

/* FAQバナー */
.faq-banner { background: #fffdf8; border-top: 1px solid #e7ddd1; border-bottom: 1px solid #e7ddd1; padding: 22px 24px; }
.faq-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.faq-banner-text { display: flex; flex-direction: column; gap: 4px; }
.faq-banner-title { font-size: 16px; font-weight: 700; color: var(--text); }
.faq-banner-sub { font-size: 13px; color: var(--text-muted); }
.faq-banner-btn { display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; padding: 0 28px; border-radius: 8px; background: #923d30; color: #fff; font-size: 16px; font-weight: 700; transition: opacity 0.15s; min-height: 58px; }
.faq-banner-btn:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .faq-banner-inner { flex-direction: column; align-items: flex-start; }
  .faq-banner-btn { width: 100%; justify-content: center; }
}

/* アクセス電話カード */
.access-tel-card {
  background: #fffdf8;
  border: 1px solid #e7ddd1;
  border-radius: 10px;
  padding: 14px 18px 12px;
  margin-bottom: 14px;
}
.access-tel-top {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.access-tel-num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 4px;
  transition: opacity 0.15s;
}
.access-tel-num:hover { opacity: 0.78; }
.access-tel-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* =====================
   ページヘッダー（FAQ・Contact共通）
===================== */
.page-hero { background: var(--accent-bg); border-bottom: 0.5px solid var(--border-light); padding: 32px 0; }
.breadcrumb { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--red); }
.page-title { font-size: 32px; font-weight: 700; font-family: var(--font-mincho); letter-spacing: 0.05em; color: var(--text); margin-bottom: 6px; }
.page-sub { font-size: 15px; color: var(--text-muted); }

/* FAQページ専用ヒーロー（アイボリー） */
.page-hero-faq {
  position: relative;
  padding: 40px 0 32px;
  background: linear-gradient(135deg, #fffdf8 0%, #f8efe4 100%);
  border-bottom: 1px solid #e7ddd1;
  overflow: hidden;
}
.page-hero-faq::before { display: none; }
.page-hero-faq .section-inner { position: relative; z-index: 1; }
.page-hero-faq .breadcrumb { color: var(--text-muted); }
.page-hero-faq .breadcrumb a { color: var(--red); }
.page-hero-faq .page-title { color: var(--text); text-shadow: none; }
.page-hero-faq .page-sub { color: var(--text-muted); }
.page-hero-faq .divider { background: var(--red); }
.faq-lead { line-height: 2.1; }

/* =====================
   FAQ
===================== */
.faq-body { padding: 36px 24px 48px; max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 40px; }
.cat-title { font-size: 20px; font-weight: 700; font-family: var(--font-mincho); letter-spacing: 0.04em; color: var(--text); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 0.5px solid var(--border); display: flex; align-items: center; gap: 10px; }
.cat-icon { flex-shrink: 0; display: flex; align-items: center; }
.cat-icon svg { display: block; }

/* Q&Aアイテム：シンプルなカード浮き上がりエフェクト */
.faq-item { border: 1px solid var(--border-light); border-radius: 10px; margin-bottom: 8px; overflow: hidden; background: #fff; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.faq-item:has(.faq-a.open) { border-color: rgba(192,57,43,0.28); box-shadow: 0 6px 24px rgba(192,57,43,0.09); transform: translateY(-2px); }
.faq-q { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; cursor: pointer; user-select: none; transition: background 0.2s; width: 100%; text-align: left; background: none; border: none; font-family: inherit; font-size: inherit; color: inherit; }
.faq-q:hover { background: var(--accent-bg); }
.q-badge { width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: #fff; font-size: 11px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.q-text { font-size: 17px; font-weight: 500; color: var(--text); flex: 1; line-height: 1.5; }
.faq-arrow { font-size: 11px; color: var(--red); transition: transform 0.3s; flex-shrink: 0; margin-top: 3px; }
.faq-arrow.open { transform: rotate(180deg); }

/* スムーズ開閉アニメーション */
.faq-a { display: block; max-height: 0; overflow: hidden; padding: 0 16px 0 50px; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { max-height: 500px; padding: 4px 16px 16px 50px; }
.a-text { font-size: 16px; color: var(--text-muted); line-height: 1.9; }

.cta-box { max-width: 800px; margin: 0 auto 48px; padding: 36px 32px; background: var(--accent-bg); border: 0.5px solid var(--border-light); border-radius: 12px; text-align: center; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cta-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.cta-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.cta-btn { display: inline-block; background: var(--red); color: #fff; padding: 14px 36px; border-radius: 6px; font-size: 16px; font-weight: 700; transition: opacity 0.15s; }
.cta-btn:hover { opacity: 0.85; }
.cta-tel { font-size: 22px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; justify-content: center; margin-top: 14px; text-decoration: none; padding: 10px 20px; border: 1.5px solid rgba(192,57,43,.28); border-radius: 7px; transition: background 0.15s; min-height: 50px; letter-spacing: 0.04em; }
.cta-tel:hover { background: rgba(192,57,43,.05); }
.cta-teltime { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* =====================
   お問い合わせフォーム
===================== */
.tel-bar { background: #fff; border-bottom: 0.5px solid var(--border-light); padding: 16px 0; }
.tel-bar-inner { display: flex; align-items: center; gap: 24px; }
.tel-bar-label { font-size: 14px; color: var(--text-muted); margin-bottom: 2px; }
.tel-bar-num { font-size: 26px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; text-decoration: none; padding: 6px 14px; border: 1.5px solid rgba(192,57,43,.25); border-radius: 6px; min-height: 44px; letter-spacing: 0.04em; transition: background 0.15s; }
.tel-bar-num:hover { background: rgba(192,57,43,.05); }
.tel-bar-time { font-size: 13px; color: var(--text-muted); }
.tel-bar-sep { width: 0.5px; height: 44px; background: var(--border); flex-shrink: 0; }
.tel-bar-fax { font-size: 17px; font-weight: 500; color: var(--text); }

.form-body { padding: 32px 24px 56px; max-width: 800px; margin: 0 auto; }
.form-note { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.9; background: var(--accent-bg); border: 0.5px solid var(--border-light); border-radius: 8px; padding: 14px 16px; }

.field { margin-bottom: 24px; }
.field-label { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.badge-req { font-size: 11px; background: var(--red); color: #fff; padding: 2px 7px; border-radius: 3px; }
.badge-opt { font-size: 11px; background: var(--border-light); color: var(--text-muted); padding: 2px 7px; border-radius: 3px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--red); }
textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-item { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.radio-item input[type="radio"] { accent-color: var(--red); width: 18px; height: 18px; flex-shrink: 0; }
.radio-item span { font-size: 15px; color: var(--text); }

.privacy-box { background: var(--accent-bg); border: 0.5px solid var(--border-light); border-radius: 8px; padding: 16px; margin-bottom: 24px; }
.privacy-title { font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.privacy-text { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 12px; }
.privacy-check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.privacy-check input { accent-color: var(--red); width: 18px; height: 18px; flex-shrink: 0; }
.privacy-check span { font-size: 15px; color: var(--text); }

.submit-btn { width: 100%; padding: 16px; background: var(--red); color: #fff; border: none; border-radius: 8px; font-size: 17px; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity 0.15s; }
.submit-btn:hover:not(:disabled) { opacity: 0.85; }
.submit-btn:disabled { background: #ccc; cursor: default; }

/* =====================
   フッター
===================== */
.footer { background: #f5ede8; color: #555; padding: 28px 24px; font-size: 13px; }
.footer-logo { color: var(--red); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.footer-address { color: #888; font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.footer-links { display: flex; gap: 20px; margin-bottom: 16px; }
.footer-links a { color: #888; font-size: 13px; }
.footer-links a:hover { color: var(--red); }
.footer-copy { color: #aaa; font-size: 12px; }

/* =====================
   トップページ ホバーエフェクト
===================== */

.service-card { transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.flow-step { transition: background 0.2s, border-radius 0.2s; }
.flow-step:hover { background: rgba(192,57,43,0.04); border-radius: 10px; }

/* =====================
   トップへ戻るボタン
===================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s, box-shadow 0.2s;
  z-index: 200;
  box-shadow: 0 4px 14px rgba(192,57,43,0.35);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 7px 20px rgba(192,57,43,0.45); }

/* =====================
   レスポンシブ（768px以下）
===================== */
@media (max-width: 768px) {
  .nav-links, .header-cta, .header-tel { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 16px; }

  /* スマホヒーロー：画像（上）＋テキスト（下）の縦積み */
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #fffdf8 0%, #f2e9dc 100%);
  }
  .hero-bg {
    position: relative;
    width: 100%;
    height: 230px;
    clip-path: none;
    object-fit: cover;
    object-position: 42% center;
  }
  .hero-shade { display: none; }
  .hero-inner {
    position: relative;
    width: 100%;
    padding: 22px 24px 28px;
  }
  .hero-eyebrow { font-size: 11px; margin-bottom: 12px; }
  .hero-h1 { font-size: 26px; margin-bottom: 12px; }
  .hero-lead { font-size: 14px; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .hero-btn-primary, .hero-btn-secondary { min-height: 48px; font-size: 14px; width: 100%; }
  /* スマホ：強みカードを2×2グリッドで表示 */
  .hero-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; animation: hero-fade-up 0.7s ease-out 0.52s both; }
  .proof-card { min-height: 72px; }
  /* PC用横バーはスマホで非表示 */
  .proof-strip { display: none; }
  .hero-area-tag { display: none; }

  /* 選ばれる理由 スマホ */
  .strengths-inner { padding: 0 20px; }
  .strengths-head { flex-direction: column; gap: 10px; align-items: flex-start; }
  .strengths-title { font-size: 22px; }
  .strengths-note { max-width: 100%; font-size: 13px; }
  .strengths-cards { grid-template-columns: 1fr; }
  .strength-num { font-size: 28px; }

  /* ボトムストリップ スマホ */
  .bottom-strip { padding: 24px 20px; }
  .bottom-strip-inner { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .bottom-strip-tel { align-items: center; width: 100%; }
  .bottom-strip-tel-num { font-size: 24px; width: 100%; justify-content: center; padding: 14px 20px; min-height: 54px; border-color: rgba(255,250,245,.45); }

  /* ヒーローリード スマホ */
  .hero-lead { font-size: 15px; }

  /* フッター スマホ */
  .footer-links a, .footer-address, .footer-copy { font-size: 13px; }
  .service-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  /* スマホ：ご利用までの流れ 2×2グリッド */
  .flow-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
  .flow-step { flex: none; text-align: center; padding: 18px 10px; background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); position: relative; }
  .flow-step:not(:last-child)::after { content: none; }
  .flow-circle { margin: 0 auto 10px; width: 44px; height: 44px; font-size: 15px; }
  .flow-label { font-size: 16px; }
  .flow-detail { font-size: 14px; }

  .greeting-inner { flex-direction: column; align-items: center; }
  .greeting-photo { width: 150px; height: 150px; }

  .tel-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .tel-bar-sep { display: none; }

  .section-inner { padding: 0 28px; }
  .section { padding: 36px 0; }
  .faq-body, .form-body { padding: 24px 16px 40px; }
  .cta-box { margin: 0 0 36px; padding: 28px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  /* スマホタイムライン：PCと同じ縦型、サイズ調整のみ */
  .tl-item { padding: 14px 0 14px 58px; gap: 14px; }
  .tl-node { width: 38px; height: 38px; font-size: 11px; }
  .timeline::before { left: 18px; }
  .tl-time { font-size: 12px; }
  .tl-name { font-size: 18px; }
  .tl-detail { font-size: 15px; }
  .tl-icon, .tl-photo { width: 60px; height: 60px; }

  /* ご利用の流れ CTA スマホ */
  .flow-cta { margin-top: 28px; padding-top: 24px; }
  .flow-cta-text { font-size: 18px; }
  .flow-cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .flow-cta-btn { width: 100%; min-height: 54px; padding: 0 20px; font-size: 15px; }
  .flow-cta-tel-btn { width: 100%; min-height: 62px; }
  .flow-cta-tel-num { font-size: 24px; }
  .flow-cta-time { font-size: 14px; margin-top: 12px; }
}
