/* ============================================================
   和良屋 ガイドページ共通スタイル — guide.css
   ============================================================ */

/* === ページヘッダー === */
.guide-page-header {
  background: #faf7f4;
  border-bottom: 1px solid #e8ddd4;
  padding: 48px 0 44px;
}

.guide-page-header__inner {
  max-width: 740px;
  margin: 0 auto;
}

.guide-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.guide-breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

.guide-breadcrumb a:hover {
  text-decoration: underline;
}

.guide-breadcrumb__sep {
  color: #d0c8c0;
}

.guide-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 20px;
  word-break: auto-phrase;
}

.guide-lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 12px;
}

.guide-meta {
  font-size: 0.8rem;
  color: #bbb;
}

/* === 目次 === */
.guide-toc {
  background: #fff;
  border: 1px solid #e0d5c9;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 48px 0 0;
  max-width: 680px;
}

.guide-toc__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.guide-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-toc__item a {
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}

.guide-toc__item a:hover {
  color: var(--brand);
}

.guide-toc__num {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px;
}

/* === 記事エリア === */
.guide-article {
  padding: 64px 0 80px;
}

.guide-article__inner {
  max-width: 740px;
  margin: 0 auto;
}

/* === 各セクション === */
.guide-section {
  margin-bottom: 60px;
}

.guide-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand);
  margin-bottom: 22px;
  word-break: auto-phrase;
}

.guide-section__body p {
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.guide-section__body p:last-child {
  margin-bottom: 0;
}

.guide-section__body ul,
.guide-section__body ol {
  padding-left: 1.4em;
  margin-bottom: 18px;
}

.guide-section__body li {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* === コールアウト（強調ボックス） === */
.guide-callout {
  background: #faf7f4;
  border-left: 3px solid var(--brand);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}

.guide-callout p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

/* === チェックリスト === */
.guide-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-checklist__item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 8px;
  align-items: start;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.guide-checklist__item::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
}

/* === CTA前テキスト === */
.guide-cta-pre {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: center;
  margin-top: 72px;
  margin-bottom: 16px;
}

/* === CTAボックス === */
.guide-cta-box {
  background: #f3ede6;
  border-radius: 12px;
  padding: 44px 36px;
  text-align: center;
  margin-top: 72px;
}

.guide-cta-pre + .guide-cta-box {
  margin-top: 0;
}

.guide-cta-box__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.guide-cta-box__desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.guide-cta-box__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === 関連ページ === */
.guide-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0d5c9;
}

.guide-related__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.guide-related__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-related__list a {
  font-size: 0.95rem;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.guide-related__list a::before {
  content: '→';
  font-size: 0.85rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.guide-related__list a:hover {
  text-decoration: underline;
}

/* === レスポンシブ === */
@media (max-width: 767px) {
  .guide-page-header {
    padding: 32px 0 28px;
  }

  .guide-article {
    padding: 40px 0 60px;
  }

  .guide-section {
    margin-bottom: 44px;
  }

  .guide-toc {
    padding: 20px;
    margin-top: 32px;
  }

  .guide-cta-box {
    padding: 28px 20px;
  }

  .guide-cta-box__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-cta-box__buttons .btn {
    width: 100%;
    text-align: center;
  }
}
