/* 家じまい診断 — 下層ページ共通スタイル */
@import url('lp_shared.css');

html { scroll-behavior: smooth; }
body {
  margin: 0; background: #efe7da;
  font-family: var(--font-base); color: var(--ink); line-height: 1.8;
  -webkit-font-smoothing: antialiased; text-wrap: pretty;
}
.page_column {
  max-width: 430px; margin: 0 auto; background: var(--orange-050);
  min-height: 100vh; box-shadow: 0 0 40px rgba(43,40,37,.12);
  display: flex; flex-direction: column;
}
.page_column * { box-sizing: border-box; margin: 0; }

.pr_bar {
  background: #f3e3d2; color: #8a6a4d;
  font-size: 11.5px; text-align: center; padding: 5px 8px; letter-spacing: .04em;
}
.site_header {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px 4px;
}
.site_header a {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.logo_mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy-700); color: #fff;
  display: grid; place-items: center; font-size: 15px; font-weight: 900;
}
.logo_text { font-size: 18.5px; font-weight: 900; color: var(--navy-700); letter-spacing: .08em; }

.page_main { flex: 1; padding: 18px 20px 36px; }
.page_title {
  font-size: 24px; font-weight: 900; color: var(--navy-700);
  text-align: center; margin: 6px 0 4px;
}
.page_title::after {
  content: ""; display: block; width: 36px; height: 4px; border-radius: 99px;
  background: var(--orange-500); margin: 10px auto 0;
}
.page_date { text-align: center; font-size: 12px; color: var(--ink-soft); margin-bottom: 16px; }

.doc_card {
  background: var(--paper); border-radius: 20px; padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(196,95,31,.10);
}
.doc_card section { margin-bottom: 22px; }
.doc_card section:last-child { margin-bottom: 0; }
.doc_card h2 {
  font-size: 16.5px; font-weight: 900; color: var(--navy-700);
  padding-bottom: 6px; margin-bottom: 8px;
  border-bottom: 1.5px solid var(--orange-100);
}
.doc_card p { font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.doc_card p:last-child { margin-bottom: 0; }
.doc_card ul { padding-left: 1.3em; margin: 0 0 8px; }
.doc_card li { font-size: 14px; margin-bottom: 4px; }
.doc_card .note { font-size: 12px; color: var(--ink-soft); }

/* 運営者情報の表 */
.info_table { width: 100%; border-collapse: collapse; }
.info_table th, .info_table td {
  text-align: left; vertical-align: top; font-size: 14px;
  padding: 10px 4px; border-bottom: 1.5px solid var(--orange-050);
}
.info_table th { width: 96px; color: var(--ink-soft); font-weight: 700; }
.info_table td { color: var(--ink); }
.placeholder_value { color: var(--orange-700); background: var(--orange-050); border-radius: 6px; padding: 1px 7px; font-size: 12.5px; }

.back_to_top {
  display: grid; place-items: center; margin-top: 22px; text-decoration: none;
  border: 2px solid var(--navy-700); color: var(--navy-700); border-radius: 999px;
  font-size: 15.5px; font-weight: 900; padding: 13px; min-height: 50px;
}

.site_footer { background: var(--navy-700); color: #cfdce8; padding: 24px 22px 30px; font-size: 12.5px; }
.footer_brand { color: #fff; font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.footer_links { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 12px 0; }
.footer_links a { color: #cfdce8; text-decoration: underline; text-underline-offset: 3px; }
.footer_note { font-size: 11.5px; color: #9fb3c4; line-height: 1.8; }

/* ---------- PC(モバイル優先デザインの拡張) ---------- */
@media (min-width: 880px) {
  .page_column { max-width: 800px; }
  .page_main { padding: 26px 60px 48px; }
  .page_title { font-size: 27.5px; }
  .doc_card { padding: 30px 34px; }
  .doc_card h2 { font-size: 18.5px; }
  .doc_card p, .doc_card li { font-size: 15.5px; }
  .info_table th, .info_table td { font-size: 15.5px; }
  .info_table th { width: 130px; }
  .back_to_top { max-width: 480px; margin-left: auto; margin-right: auto; }
  .site_footer { padding: 28px 60px 36px; }
}
