/* ==========================================================================
   初めての方へページ
   ========================================================================== */

.page-guide {
  --guide-warm: #faf6f0;
  --guide-peach: #fde8d8;
  --guide-cream: #f5ecd8;
  --guide-mint: #e4f0eb;
  --guide-sky: #e3edf5;
  --guide-lavender: #ebe8f4;
  --guide-icon-color: #c45a20;
}

.page-guide .section {
  padding-block: 72px;
}

@media (min-width: 768px) {
  .page-guide .section {
    padding-block: 96px;
  }
}

/* ---------- ページヘッダー ---------- */
.page-hero--warm {
  padding: 36px 0 56px;
  background: linear-gradient(180deg, var(--guide-warm) 0%, var(--color-white) 100%);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--color-border);
}

.breadcrumb__list a:hover {
  color: var(--color-cta);
}

.page-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-main);
  margin-bottom: 20px;
}

.page-hero__lead {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 2;
  max-width: none;
  width: 100%;
}

@media (min-width: 768px) {
  .page-hero--warm {
    padding: 52px 0 72px;
  }

  .page-hero__title {
    font-size: 2.25rem;
  }

  .page-hero__lead {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 2.5rem;
  }
}

/* ---------- イラスト風アイコン ---------- */
.guide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--guide-icon-color);
  margin-bottom: 20px;
}

.guide-icon--peach {
  background: var(--guide-peach);
}

.guide-icon--cream {
  background: var(--guide-cream);
}

.guide-icon--mint {
  background: var(--guide-mint);
}

.guide-icon--sky {
  background: var(--guide-sky);
}

.guide-icon--lavender {
  background: var(--guide-lavender);
}

/* ---------- よくある不安 ---------- */
.guide-worries {
  padding-top: 0;
}

.guide-worries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-worries__card {
  padding: 32px 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(31, 54, 92, 0.04);
}

.guide-worries__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 12px;
  line-height: 1.5;
}

.guide-worries__card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
}

@media (min-width: 768px) {
  .guide-worries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .guide-worries__card {
    padding: 36px 32px;
  }

  .guide-worries__card h3 {
    font-size: 18px;
  }

  .guide-worries__card p {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .guide-worries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-worries__card:nth-child(4) {
    grid-column: 1;
  }

  .guide-worries__card:nth-child(5) {
    grid-column: 2;
  }
}

/* ---------- 考え方 ---------- */
.guide-philosophy__body > p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 40px;
}

.guide-philosophy__body > p strong {
  color: var(--color-main);
  font-weight: 700;
}

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

.guide-philosophy__list li {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.guide-philosophy__num {
  flex-shrink: 0;
  font-family: var(--font-latin);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-cta);
  letter-spacing: 0.04em;
  min-width: 2.5em;
}

@media (min-width: 768px) {
  .guide-philosophy__num {
    font-size: 32px;
  }
}

.guide-philosophy__list h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 10px;
  line-height: 1.5;
}

.guide-philosophy__list p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.85;
}

@media (min-width: 768px) {
  .guide-philosophy__body > p {
    font-size: 16px;
  }

  .guide-philosophy__list h3 {
    font-size: 20px;
  }
}

/* ---------- 安心な理由 ---------- */
.guide-reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-reasons__item {
  padding: 28px 24px;
  background: var(--guide-warm);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 237, 227, 0.8);
}

.guide-reasons__item .guide-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.guide-reasons__item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 10px;
  line-height: 1.5;
}

.guide-reasons__item p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.85;
}

@media (min-width: 768px) {
  .guide-reasons__item h3 {
    font-size: 20px;
  }

  .guide-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* 5件目：2列目に並べる（1行目2+2、2行目は右列のみ等にならないよう全幅） */
  .guide-reasons__item--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .guide-reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 4件目の右隣（2列分）に5件目を配置 */
  .guide-reasons__item--wide {
    grid-column: span 2;
  }
}

/* ---------- 制作の流れ ---------- */
.guide-flow__steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-flow__step {
  padding: 28px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.guide-flow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--color-cta);
  background: var(--guide-peach);
  border-radius: 50%;
}

.guide-flow__num {
  display: block;
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-cta);
  margin-bottom: 10px;
}

.guide-flow__step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
}

.guide-flow__step p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.guide-flow__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  color: var(--color-cta);
  opacity: 0.65;
  list-style: none;
}

.guide-flow__arrow svg {
  transform: rotate(90deg);
}

.guide-flow__note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .guide-flow__steps {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
  }

  .guide-flow__step {
    flex: 1 1 0;
    min-width: 0;
    padding: 24px 12px;
  }

  .guide-flow__arrow {
    flex: 0 0 24px;
    align-self: center;
    padding: 0;
  }

  .guide-flow__arrow svg {
    transform: rotate(0deg);
  }

  .guide-flow__num {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .guide-flow__step {
    padding: 28px 14px;
  }

  .guide-flow__num {
    font-size: 16px;
  }

  .guide-flow__arrow {
    flex: 0 0 28px;
  }
}

/* ---------- FAQ（やわらかめ） ---------- */
.guide-faq {
  background: var(--guide-warm);
}

.guide-faq__list .faq__item {
  border-radius: var(--radius-md);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.guide-faq__list .faq__question {
  font-weight: 600;
}

/* ---------- 最終CTA ---------- */
