/* ── プロフィール ── */
.profile-section {
  background: var(--warm-50);
  padding: 4rem 2rem;
}
.profile-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; gap: 3rem; align-items: flex-start; flex-wrap: wrap;
}
.profile-photo {
  width: 220px; flex-shrink: 0;
}
.profile-photo img {
  width: 100%; border-radius: 4px; display: block;
}
.profile-info { flex: 1; min-width: 260px; }
.profile-name {
  font-size: 20px; font-weight: 700;
  color: var(--gold-900); letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.profile-title {
  font-size: 13px; color: var(--warm-600);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 1.2rem;
}
.profile-career {
  font-size: 13px; color: var(--text-sub);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2;
}
.profile-career li { list-style: none; padding-left: 1em; position: relative; }
.profile-career li::before { content: '・'; position: absolute; left: 0; color: var(--gold-600); }
.profile-career li.no-bullet { padding-left: 1em; }
.profile-career li.no-bullet::before { content: ''; }

/* ── 本文セクション ── */
.story-section {
  padding: 5rem 2rem;
}
.story-container {
  max-width: 720px; margin: 0 auto;
}
.story-heading {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--gold-900);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold-200);
}
.story-block {
  margin-bottom: 1.6rem;
  font-size: 15px;
  color: var(--text-main);
  line-height: 2.1;
}
.story-block.emphasis {
  font-style: italic;
  color: var(--text-sub);
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold-200);
}
.story-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}
.story-closing {
  margin-top: 0;
}
.story-closing p {
  font-size: 15px;
  color: var(--text-main);
  line-height: 2.1;
  margin-bottom: 1.6rem;
}
.story-closing p:last-child { margin-bottom: 0; }
.story-sign {
  text-align: right;
  font-size: 14px;
  color: var(--warm-600);
  margin-top: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ── フッター ── */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2;
}

/* ── 固定予約ボタン ── */
.float-reserve {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
}
.float-reserve a {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold-600); color: #fff;
  padding: 12px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.float-reserve a:hover { background: var(--gold-800); }

/* ── 戻るリンク ── */
.back-link {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.back-link a {
  font-size: 13px;
  color: var(--gold-600);
  font-family: 'Noto Sans JP', sans-serif;
  display: inline-flex; align-items: center; gap: 6px;
}
.back-link a:hover { color: var(--gold-800); }

@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .profile-inner { gap: 1.5rem; }
  .float-reserve { bottom: 1.2rem; right: 1rem; }
  .float-reserve a { font-size: 12px; padding: 0.65rem 1.1rem; }
}
