/* about.css — おくみせができるまで ページ専用スタイル */

/* ── ページ全体レイアウト ─────────────────────── */
.about-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ページヘッダー ───────────────────────────── */
.about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #F3F0EB;
  max-width: 680px;
  margin: 0 auto;
}

.about-header .logo a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A2E;
  text-decoration: none;
}

.about-header .logo a:hover {
  color: #E8920B;
}

.about-header nav a {
  font-size: 0.875rem;
  color: #6B7280;
  text-decoration: none;
}

.about-header nav a:hover {
  color: #E8920B;
}

/* ── ストーリーヘッダー ──────────────────────── */
.story-header {
  text-align: center;
  padding: 60px 0 40px;
}

.story-header h1 {
  font-size: 32px;
  color: #1A1A2E;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.4;
}

.story-header .subtitle {
  font-size: 16px;
  color: #6B7280;
  margin: 0;
}

/* ── ストーリー本文 ───────────────────────────── */
.story-body {
  padding: 40px 0;
}

.story-body p {
  font-size: 17px;
  line-height: 2.0;
  color: #1A1A2E;
  margin: 0 0 28px;
}

.story-body p.emphasis {
  font-size: 20px;
  font-weight: 700;
  color: #C67A08;
  margin: 40px 0;
  text-align: center;
}

.story-body p.closing {
  margin-top: 50px;
  font-size: 18px;
}

/* ── 言い訳ブロック ───────────────────────────── */
.excuse-block {
  background: #FFF8F0;
  border-left: 4px solid #E8920B;
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}

.excuse-block p {
  font-size: 15px;
  color: #6B7280;
  margin: 0 0 8px;
  font-style: italic;
}

.excuse-block p:last-child {
  margin-bottom: 0;
}

/* ── 名前の意味ブロック ──────────────────────── */
.name-meaning {
  background: #FFFBF5;
  border: 2px solid #E8920B;
  border-radius: 12px;
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.name-meaning h3 {
  font-size: 22px;
  color: #C67A08;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.5;
}

.name-meaning p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: #1A1A2E;
}

.name-meaning p:last-child {
  margin-bottom: 0;
}

.name-meaning .name-summary {
  font-size: 14px;
  color: #6B7280;
  margin-top: 12px;
}

/* ── ストーリーフッター（CTA） ───────────────── */
.story-footer {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid #F3F0EB;
  text-align: center;
}

.cta h2 {
  font-size: 22px;
  color: #1A1A2E;
  margin: 0 0 16px;
  font-weight: 700;
}

.cta p {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 24px;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: #E8920B;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #C67A08;
  color: #fff;
}

/* ── ページフッター ───────────────────────────── */
.page-footer {
  text-align: center;
  padding: 24px 0;
  color: #6B7280;
  font-size: 12px;
  border-top: 1px solid #F3F0EB;
  margin-top: 60px;
}

/* ── モバイル対応 ─────────────────────────────── */
@media (max-width: 768px) {
  .story-header {
    padding: 40px 0 28px;
  }

  .story-header h1 {
    font-size: 24px;
  }

  .story-body p {
    font-size: 16px;
  }

  .story-body p.emphasis {
    font-size: 18px;
  }

  .story-body p.closing {
    font-size: 16px;
  }

  .excuse-block {
    padding: 18px 20px;
  }

  .name-meaning {
    padding: 24px 20px;
  }

  .name-meaning h3 {
    font-size: 18px;
  }

  .cta h2 {
    font-size: 19px;
  }
}
