/* インフォメーション系ページ共通スタイル（白ベース + ピンクアクセント） */

.page-header {
  margin: 8px 0 12px;
  padding-top: 8px;
}

.page-header h1 {
  text-align: center;
  font-weight: 900;
  letter-spacing: .05em;
  margin: 0;
}

.page-header h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ec4899, #f9a8d4);
}

/* セクションカード（読みやすい余白とピンクの淡色グラデ） */
.info {
  background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%);
  border: 2px solid #f9a8d4;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.12);
}

.info + .info {
  margin-top: 12px;
}

.info h2 {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .02em;
}

.info h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: #ec4899;
  margin-top: 6px;
}

.info p {
  margin: 6px 0 0;
}

.info ul {
  margin: 6px 0 0;
  padding-left: 0;
  list-style: none;
}

.info li {
  margin: 4px 0;
}

.info a {
  color: #ec4899;
  text-decoration: underline;
}

/* FAQ ブロック */
.faq-item {
  border: 2px solid #f9a8d4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.12);
  padding: 12px;
  margin: 10px 0;
}

.faq-q {
  font-weight: 800;
  margin: 0 0 6px;
}

.faq-a {
  margin: 0;
  color: var(--color-text);
}

/* アクセスページの地図埋め込み（必要時） */
.map-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; border: 2px solid #f9a8d4; }
.map-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

@media (min-width: 900px) {
  .page-header h1::after { width: 80px; }
}


