/* ベビメイド 下層ページ共通スタイル（トップページのデザインに合わせています） */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #567f70;
  --navy-mid: #7aa693;
  --navy-deep: #1f5136;
  --gold: #f4c96b;
  --gold-light: #f8dc9a;
  --white: #ffffff;
  --off-white: #f6fbf6;
  --gray-light: #daede2;
  --gray: #9e9e9e;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fffdf8;
  line-height: 1.9;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 12px rgba(30,111,102,0.08);
  backdrop-filter: blur(8px);
  padding: 6px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 36px; width: auto; display: block; }
header nav { display: flex; gap: 28px; align-items: center; }
header nav a {
  color: #3f524c;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  white-space: nowrap;
}
header nav a:hover { color: var(--gold); }
.btn-header {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px !important;
  letter-spacing: 0.08em;
}
.btn-header:hover { background: var(--gold-light); }

/* ===== PAGE HEAD ===== */
.page-head {
  padding: 130px 40px 60px;
  background: linear-gradient(180deg, #f6fbf6 0%, #fffdf8 100%);
  text-align: center;
}
.breadcrumb {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-head h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #24352f;
}
.page-lead {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
}

/* ===== SECTION ===== */
.section { padding: 56px 40px; }
.section-inner { max-width: 880px; margin: 0 auto; }
.section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #24352f;
  padding-left: 14px;
  border-left: 5px solid var(--gold);
  margin-bottom: 26px;
  line-height: 1.6;
}
.section h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 32px 0 12px;
  letter-spacing: 0.03em;
}
.section p { font-size: 15px; color: var(--text-mid); margin-bottom: 16px; }
.section p strong { color: var(--text); font-weight: 700; }
.section.alt { background: var(--off-white); }

/* リスト */
ul.check { list-style: none; margin: 6px 0 20px; }
ul.check li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 10px;
}
ul.check li::before {
  content: "◼︎";
  color: var(--navy);
  font-size: 9px;
  position: absolute;
  left: 0; top: 5px;
}

/* テーブル */
table.tbl { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 15px; }
table.tbl th, table.tbl td {
  border: 1px solid var(--gray-light);
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
}
table.tbl th {
  background: var(--off-white);
  color: var(--navy-deep);
  font-weight: 700;
  width: 46%;
  white-space: normal;
}
table.tbl td.num { text-align: right; white-space: nowrap; font-weight: 700; color: var(--text); }

/* カード */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 8px 0 20px; }
.card {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 22px 24px;
  background: var(--white);
}
.card h3 { margin: 0 0 10px; font-size: 16px; }
.card p { font-size: 14px; margin: 0; line-height: 1.9; }

/* 料金ボックス */
.price-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 28px 30px;
  margin: 8px 0 24px;
  text-align: center;
}
.price-box .plan-name { font-size: 14px; letter-spacing: 0.1em; color: var(--navy); font-weight: 700; }
.price-box .amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
  margin: 6px 0 2px;
}
.price-box .amount small { font-size: 15px; font-weight: 400; }
.price-box .note { font-size: 13px; color: var(--gray); }

/* FAQ */
.qa { border-bottom: 1px solid var(--gray-light); padding: 22px 0; }
.qa:first-of-type { border-top: 1px solid var(--gray-light); }
.qa h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--navy-deep);
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
}
.qa h3::before {
  content: "Q";
  position: absolute; left: 0; top: 0;
  font-family: 'Noto Serif JP', serif;
  color: var(--gold);
  font-size: 19px;
  font-weight: 700;
}
.qa p { margin: 0; padding-left: 30px; position: relative; font-size: 15px; }
.qa p::before {
  content: "A";
  position: absolute; left: 0; top: 0;
  font-family: 'Noto Serif JP', serif;
  color: var(--navy-mid);
  font-size: 19px;
  font-weight: 700;
}

/* 関連ページ */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 10px; }
.related a {
  display: block;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.related a:hover { border-color: var(--gold); transform: translateY(-2px); }
.related .r-title { font-size: 15px; font-weight: 700; color: var(--navy-deep); display: block; margin-bottom: 4px; }
.related .r-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* CTA */
.cta-section { background: #daede2; padding: 78px 40px; text-align: center; color: var(--text); }
.cta-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 600;
  border: none;
  padding: 0;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.7;
}
.cta-section p { color: var(--text-mid); font-size: 15px; margin-bottom: 26px; }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.btn-line { box-shadow: 0 6px 18px rgba(244,201,107,0.4); }
.btn-line:hover { background: var(--gold-light); }

/* FOOTER */
footer { background: #ffffff; border-top: 1px solid #e3ede7; color: var(--text-mid); padding: 56px 40px 0; }
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-tagline { font-size: 13px; line-height: 1.9; margin: 14px 0 18px; max-width: 420px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { color: #4a5a55; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--gold); }
.footer-line-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-deep);
  text-decoration: none; padding: 13px 28px;
  border-radius: 100px; font-weight: 700; font-size: 14px;
}
.footer-copy {
  max-width: 1080px; margin: 36px auto 0;
  border-top: 1px solid #e3ede7;
  padding: 18px 0 24px;
  font-size: 12px; color: #93a29c;
}

@media (max-width: 860px) {
  header { padding: 6px 16px; }
  header nav { gap: 14px; }
  header nav a:not(.btn-header) { display: none; }
  .page-head { padding: 100px 20px 44px; }
  .page-head h1 { font-size: 25px; }
  .section { padding: 44px 20px; }
  .section h2 { font-size: 20px; }
  .cards, .related { grid-template-columns: 1fr; }
  table.tbl th { width: 55%; }
  .cta-section { padding: 48px 20px; }
  footer { padding: 40px 20px 0; }
}
