:root {
  --cream: #fbf8f2;
  --cream-deep: #f6eee5;
  --paper: #fffdfa;
  --brown: #3e2b23;
  --muted: #75695f;
  --orange: #cc6d4e;
  --orange-dark: #bb5b3b;
  --peach: #d58b70;
  --green: #8c9870;
  --green-dark: #7d8963;
  --line: #e8d8c7;
  --shadow: 0 8px 24px rgba(79, 53, 39, .06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brown);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body, button, input { font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }
.content-width { width: min(858px, calc(100% - 80px)); margin-inline: auto; }

/* header */
.site-header {
  position: relative;
  z-index: 30;
  height: 83px;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #ddd7d0;
}
.header-inner {
  height: 100%;
  max-width: 900px;
  padding: 0 4px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; gap: 4px; }
.brand img { width: 43px; height: 44px; object-fit: cover; border-radius: 4px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: "Zen Kurenaido", cursive;
  font-size: 28px;
  line-height: .95;
  font-weight: 400;
  letter-spacing: .08em;
}
.brand-tagline { margin-top: 8px; font-size: 8.5px; letter-spacing: .03em; color: #6d6259; white-space: nowrap; }
.global-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 2vw, 27px); white-space: nowrap; }
.global-nav a { font-size: 11.5px; font-weight: 600; transition: color .2s; }
.global-nav a:hover { color: var(--orange); }
.search-button { appearance: none; border: 0; padding: 7px; width: 29px; height: 29px; background: transparent; cursor: pointer; }
.search-button span { display: block; width: 15px; height: 15px; border: 2px solid #4f392e; border-radius: 50%; position: relative; }
.search-button span::after { content: ""; position: absolute; width: 7px; height: 2px; background: #4f392e; right: -6px; bottom: -3px; transform: rotate(48deg); border-radius: 2px; }
.menu-button, .mobile-menu { display: none; }

/* hero */
.hero {
  height: 402px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 53%;
  background-image: url("../img/hero-house.jpg");
  background-size: cover;
  background-position: center 42%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 37%, rgba(255,255,255,.74) 53%, rgba(255,255,255,.03) 78%),
    linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 28%);
}
.hero-inner { height: 100%; position: relative; z-index: 2; padding-top: 40px; }
.hero-copy h1 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 44px;
  line-height: 1.48;
  letter-spacing: .08em;
  font-weight: 600;
}
.hero-copy h1 span { color: #c9694b; }
.hero-copy p { margin: 19px 0 0; font-size: 13px; line-height: 1.8; font-weight: 500; letter-spacing: .015em; }
.reasons {
  position: absolute;
  left: 0;
  bottom: 13px;
  width: 656px;
  min-height: 117px;
  padding: 15px 22px 14px;
  background: rgba(255,253,249,.96);
  border: 1px solid #b89a82;
  border-radius: 16px;
  box-shadow: 0 11px 27px rgba(90, 61, 39, .06);
}
.reasons-title { margin: 0 0 10px 36px; color: #7a4d37; font-family: "Noto Serif JP", serif; font-size: 12px; font-weight: 600; letter-spacing: .05em; }
.reason-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.reason-item { min-height: 60px; padding: 0 22px; display: flex; align-items: flex-start; gap: 12px; border-left: 1px solid #eee4da; }
.reason-item:first-child { padding-left: 0; border-left: 0; }
.reason-item:last-child { padding-right: 0; }
.reason-icon { width: 28px; flex: 0 0 28px; color: #d8814a; font-size: 30px; line-height: 1; text-align: center; font-family: Georgia, serif; font-weight: 400; }
.icon-chart { font-size: 25px; }
.reason-item strong { display: block; font-size: 12px; margin-bottom: 3px; white-space: nowrap; }
.reason-item small { display: block; color: #73675e; font-size: 9.5px; line-height: 1.65; }

/* guide cards */
.guides { padding: 17px 0 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-card {
  height: 323px;
  padding: 13px 18px 15px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(63, 39, 27, .025);
}
.guide-heading { min-height: 58px; display: flex; align-items: flex-start; gap: 10px; }
.guide-heading > span {
  width: 37px; height: 37px; flex: 0 0 37px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--peach);
  font-family: "Noto Serif JP", serif;
  font-size: 17px; font-weight: 600;
}
.guide-heading h2 { margin: -1px 0 1px; font-family: "Noto Serif JP", serif; font-size: 19px; line-height: 1.45; font-weight: 600; white-space: nowrap; }
.guide-heading p { margin: 0; font-size: 9.5px; line-height: 1.35; font-weight: 600; white-space: nowrap; }
.guide-card > img { width: 100%; height: 124px; object-fit: contain; mix-blend-mode: multiply; }
.guide-card ul { list-style: none; margin: 5px 0 11px; padding: 0 0 0 8px; display: grid; gap: 4px; }
.guide-card li { position: relative; padding-left: 16px; font-size: 10.5px; line-height: 1.45; }
.guide-card li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 11px; height: 11px; line-height: 10px; text-align: center; border: 1px solid currentColor; border-radius: 50%; color: var(--green-dark); font-size: 8px; font-weight: 700; }
.guide-button {
  height: 34px;
  margin-top: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  background: var(--peach);
  border-radius: 5px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: filter .2s, transform .2s;
}
.guide-button:hover { filter: brightness(.94); transform: translateY(-1px); }
.guide-button span { position: absolute; right: 12px; font-size: 18px; font-weight: 400; }
.guide-subsidy .guide-heading > span, .guide-subsidy .guide-button { background: var(--green); }
.guide-subsidy li::before { color: var(--green-dark); }
.guide-contractor .guide-heading > span, .guide-contractor .guide-button { background: var(--orange); }
.guide-contractor li::before { color: var(--orange); }

/* simulator */
.simulator {
  height: 184px;
  margin-top: 1px;
  margin-bottom: 21px;
  padding: 16px 20px 14px 12px;
  display: grid;
  grid-template-columns: 238px 1fr 263px;
  align-items: center;
  background: linear-gradient(105deg, #fffaf4, #fffdf9 60%, #fbf4ec);
  border: 1px solid #edd5bf;
  border-radius: 13px;
  box-shadow: 0 7px 24px rgba(93, 62, 42, .04);
}
.sim-visual { position: relative; height: 145px; border-right: 1px solid #e9dfd5; }
.sim-visual img { width: 188px; height: 143px; margin-left: 37px; object-fit: contain; mix-blend-mode: multiply; }
.sim-badge {
  position: absolute; z-index: 2; left: -4px; top: 18px;
  width: 64px; height: 64px; display: grid; place-items: center;
  color: white; background: #d99b73; border-radius: 50%;
  text-align: center; line-height: 1.35; font-size: 10px; font-weight: 600;
}
.sim-copy { padding-left: 20px; }
.sim-copy > p { margin: 0; font-size: 10px; font-weight: 600; }
.sim-copy h2 { margin: 1px 0 7px; font-family: "Noto Serif JP", serif; font-size: 29px; line-height: 1.3; font-weight: 500; letter-spacing: .05em; white-space: nowrap; }
.sim-copy > span { display: block; color: #6c6159; font-size: 9.5px; line-height: 1.7; }
.sim-merits { display: flex; gap: 20px; padding: 0; margin: 12px 0 0; list-style: none; }
.sim-merits li { position: relative; padding-left: 19px; font-size: 9px; font-weight: 600; white-space: nowrap; }
.sim-merits li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 13px; height: 13px; border: 1px solid var(--orange); color: var(--orange); border-radius: 50%; display: grid; place-items: center; font-size: 8px; }
.sim-action { height: 140px; padding-left: 20px; border-left: 1px solid #e9dfd5; display: flex; flex-direction: column; justify-content: center; }
.sim-action > a { height: 56px; display: flex; align-items: center; gap: 12px; padding: 0 18px; color: white; background: linear-gradient(90deg, #d67a5c, #cc6848); border-radius: 7px; box-shadow: 0 8px 14px rgba(186, 90, 56, .25); font-size: 14px; font-weight: 700; letter-spacing: .03em; }
.sim-action > a b { margin-left: auto; font-size: 19px; }
.calc-icon { display: grid; place-items: center; width: 28px; height: 33px; border: 2px solid white; border-radius: 4px; font-size: 17px; }
.sim-action ol { list-style: none; margin: 11px 0 0; padding: 0 6px; display: flex; justify-content: space-between; position: relative; }
.sim-action ol::after { content: ""; position: absolute; left: 34px; right: 34px; bottom: -7px; border-bottom: 1px solid #ad9a88; }
.sim-action li { min-width: 57px; text-align: center; font-size: 8px; line-height: 1.45; position: relative; }
.sim-action li::after { content: ""; position: absolute; z-index: 2; left: 50%; transform: translateX(-50%); bottom: -10px; width: 6px; height: 6px; border: 1px solid #b98f71; border-radius: 50%; background: white; }
.sim-action li span { display: block; font-size: 8px; font-weight: 700; }

/* articles */
.articles { padding: 0 3px 11px; }
.section-heading { height: 39px; display: flex; align-items: center; justify-content: space-between; }
.section-heading h2 { margin: 0; font-family: "Noto Serif JP", serif; font-size: 20px; font-weight: 600; letter-spacing: .07em; }
.section-heading h2 span { color: #db7d45; font-family: sans-serif; font-size: 25px; vertical-align: -2px; }
.section-heading a { color: #78513e; font-size: 10px; font-weight: 600; }
.section-heading a span { color: var(--orange); font-size: 20px; vertical-align: -2px; margin-left: 7px; }
.article-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.article-card a { display: block; }
.article-image { height: 103px; position: relative; overflow: hidden; border: 1px solid #eaded3; border-radius: 7px 7px 0 0; background: var(--cream); }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-image span { position: absolute; left: 7px; top: 6px; padding: 3px 8px; color: #bd694b; background: rgba(255,253,247,.93); border: 1px solid #e8a28a; border-radius: 3px; font-size: 8px; font-weight: 700; line-height: 1; }
.article-card:nth-child(3) .article-image span { color: #7e8861; border-color: #a9b28c; }
.article-card h3 { min-height: 67px; margin: 7px 3px 4px; color: #3f312b; font-size: 9.5px; line-height: 1.75; font-weight: 600; }
.article-card time { margin-left: 3px; color: #665d56; font-size: 8.5px; }
.article-card time::before { content: "▧"; color: #a97658; margin-right: 5px; font-size: 12px; vertical-align: -1px; }

/* neutrality */
.neutrality {
  height: 85px;
  margin-bottom: 20px;
  padding: 14px 28px 12px 77px;
  position: relative;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(95deg, #fffdf9 0%, #fffaf5 66%, #f7eee5 100%);
  border: 1px solid #e9ddd1;
  border-radius: 11px;
  overflow: hidden;
}
.heart-icon { position: absolute; left: 22px; top: 17px; width: 39px; height: 39px; display: grid; place-items: center; color: var(--orange); border: 1px solid #e7d8ca; border-radius: 50%; font-family: Georgia, serif; font-size: 25px; }
.neutrality h2 { margin: 0 0 6px; font-family: "Noto Serif JP", serif; color: #84503c; font-size: 15px; font-weight: 500; letter-spacing: .08em; }
.neutrality p { margin: 0; color: #756860; font-size: 9px; }
.neutrality img { position: absolute; right: 49px; bottom: 0; width: 178px; height: 90px; object-fit: contain; object-position: bottom; mix-blend-mode: multiply; }
.neutrality > div { position: relative; z-index: 2; }

/* footer */
.site-footer { background: #faf4ed; border-top: 1px solid #e8ddd3; }
.footer-grid { height: 223px; min-height: 0; padding: 20px 8px 13px; display: grid; grid-template-columns: 235px 135px 292px 150px; gap: 25px; overflow: hidden; }
.footer-brand { display: flex; align-items: center; gap: 7px; font-family: "Zen Kurenaido", cursive; font-size: 24px; letter-spacing: .08em; }
.footer-brand img { width: 34px; height: 35px; object-fit: cover; border-radius: 3px; }
.footer-about > small { display: block; margin-top: 1px; font-size: 7px; }
.footer-about > p { margin: 23px 0 15px; color: #625851; font-size: 8.5px; line-height: 1.9; }
.socials { display: flex; gap: 14px; }
.socials a { width: 24px; height: 24px; display: grid; place-items: center; color: white; background: #d39172; border-radius: 50%; font-family: Arial, sans-serif; font-size: 14px; }
.footer-column h2 { margin: 3px 0 13px; font-size: 11px; font-weight: 700; }
.footer-column h2 small { color: #9b7966; font-size: 6.5px; font-weight: 500; }
.footer-column > a { display: block; margin-bottom: 5px; font-size: 8.5px; }
.operator dl { margin: 0; border: 1px solid #e1d8cf; border-radius: 3px; overflow: hidden; background: rgba(255,255,255,.55); }
.operator dl div { min-height: 21px; display: grid; grid-template-columns: 70px 1fr; border-top: 1px solid #e1d8cf; font-size: 8px; }
.operator dl div:first-child { border-top: 0; }
.operator dt, .operator dd { margin: 0; padding: 4px 7px; }
.operator dt { border-right: 1px solid #e1d8cf; }
.footer-links a { margin-bottom: 11px; }
.footer-bottom { height: 34px; padding: 0 max(42px, calc((100% - 858px) / 2)); display: flex; align-items: center; justify-content: center; position: relative; color: white; background: #cd6e4e; font-size: 8px; }
.footer-bottom a { position: absolute; right: max(42px, calc((100% - 858px) / 2)); }

/* dialogs and focus */
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(204,109,78,.45); outline-offset: 3px; }
.search-dialog[hidden] { display: none; }
.search-dialog { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 30px; background: rgba(53,39,31,.58); }
.search-dialog form { width: min(520px, 100%); padding: 30px; background: white; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.search-dialog label { display: block; margin-bottom: 12px; font-family: "Noto Serif JP", serif; font-size: 20px; }
.search-dialog form div { display: flex; }
.search-dialog input { min-width: 0; flex: 1; height: 44px; padding: 0 13px; border: 1px solid #d8c9bc; border-radius: 6px 0 0 6px; }
.search-dialog form button { border: 0; padding: 0 20px; color: white; background: var(--orange); border-radius: 0 6px 6px 0; cursor: pointer; }
.search-close { position: fixed; right: 28px; top: 22px; border: 0; color: white; background: transparent; font-size: 40px; cursor: pointer; }

@media (max-width: 900px) {
  .content-width { width: min(858px, calc(100% - 36px)); }
  .header-inner { padding: 0 18px; }
  .global-nav { gap: 13px; }
  .global-nav a { font-size: 10px; }
  .guides { gap: 15px; }
  .guide-card { padding-inline: 13px; }
  .guide-heading h2 { font-size: 16px; }
  .simulator { grid-template-columns: 220px 1fr 240px; }
  .sim-copy h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1.2fr .7fr 1.35fr .8fr; gap: 18px; }
}

@media (max-width: 760px) {
  body { font-size: 14px; }
  .content-width { width: min(100% - 32px, 520px); }
  .site-header { height: 66px; position: sticky; top: 0; }
  .header-inner { padding-inline: 14px; }
  .brand img { width: 36px; height: 37px; }
  .brand-name { font-size: 24px; }
  .brand-tagline { display: none; }
  .global-nav { display: none; }
  .menu-button { width: 38px; height: 38px; padding: 8px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-button span { height: 2px; width: 100%; background: var(--brown); border-radius: 2px; }
  .mobile-menu { position: absolute; left: 0; right: 0; top: 66px; padding: 9px 18px 15px; display: none; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .mobile-menu.is-open { display: grid; }
  .mobile-menu a { padding: 10px 2px; border-bottom: 1px solid #eee6df; font-size: 13px; }

  .hero { height: auto; min-height: 660px; }
  .hero-photo { width: 100%; height: 310px; opacity: .82; }
  .hero-shade { background: linear-gradient(0deg, #fff 48%, rgba(255,255,255,.06) 85%), linear-gradient(90deg, rgba(255,255,255,.3), rgba(255,255,255,0)); }
  .hero-inner { min-height: 660px; padding-top: 255px; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { font-size: clamp(30px, 9vw, 39px); line-height: 1.5; letter-spacing: .04em; }
  .hero-copy p { margin-top: 12px; font-size: 12px; line-height: 1.8; }
  .hero-copy p br { display: none; }
  .reasons { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 24px; padding: 15px 18px; }
  .reasons-title { margin-left: 0; text-align: center; }
  .reason-list { grid-template-columns: 1fr; }
  .reason-item { min-height: 0; padding: 12px 0; border-left: 0; border-top: 1px solid #eee4da; }
  .reason-item:first-child { border-top: 0; }
  .reason-item strong, .reason-item small { white-space: normal; }

  .guides { padding-top: 26px; grid-template-columns: 1fr; gap: 18px; }
  .guide-card { height: auto; min-height: 370px; padding: 18px 20px; }
  .guide-heading { min-height: 60px; }
  .guide-heading h2 { font-size: 21px; }
  .guide-heading p { font-size: 10.5px; }
  .guide-card > img { height: 150px; }
  .guide-card li { font-size: 12px; }
  .guide-button { height: 42px; margin-top: 10px; }

  .simulator { height: auto; margin-top: 9px; padding: 22px; display: block; text-align: center; }
  .sim-visual { height: 165px; border-right: 0; border-bottom: 1px solid #e9dfd5; }
  .sim-visual img { width: 215px; height: 160px; margin: auto; }
  .sim-badge { left: 8%; }
  .sim-copy { padding: 20px 0 16px; }
  .sim-copy h2 { font-size: 27px; white-space: normal; }
  .sim-copy > span br { display: none; }
  .sim-merits { justify-content: center; flex-wrap: wrap; gap: 10px 18px; }
  .sim-action { height: auto; padding: 17px 0 10px; border-left: 0; border-top: 1px solid #e9dfd5; }
  .sim-action ol { margin-top: 18px; }

  .articles { padding-top: 10px; }
  .section-heading { height: 54px; }
  .section-heading h2 { font-size: 22px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .article-grid article:last-child { grid-column: 1 / -1; width: calc(50% - 6px); }
  .article-image { height: 118px; }
  .article-card h3 { min-height: 0; font-size: 10.5px; }

  .neutrality { height: auto; min-height: 155px; margin-top: 10px; padding: 20px 20px 92px 64px; }
  .heart-icon { left: 16px; }
  .neutrality h2 { font-size: 15px; }
  .neutrality p { font-size: 10px; }
  .neutrality img { right: 10px; width: 170px; }

  .footer-grid { height: auto; padding: 28px 2px; grid-template-columns: 1fr 1fr; gap: 30px 24px; overflow: visible; }
  .footer-about, .operator { grid-column: 1 / -1; }
  .footer-about > p { font-size: 10px; margin-top: 15px; }
  .footer-column h2 { font-size: 13px; }
  .footer-column > a { font-size: 10px; }
  .operator dl div { font-size: 9px; grid-template-columns: 82px 1fr; }
  .footer-bottom { height: 44px; justify-content: flex-start; padding-inline: 16px; }
  .footer-bottom a { right: 16px; }
}

@media (max-width: 390px) {
  .content-width { width: calc(100% - 24px); }
  .hero-copy h1 { font-size: 30px; }
  .guide-heading h2 { font-size: 19px; }
  .guide-heading p { white-space: normal; }
  .sim-copy h2 { font-size: 24px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid article:last-child { grid-column: auto; width: auto; }
  .article-image { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about, .operator { grid-column: auto; }
  .footer-bottom a { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* 追記: アフィリエイト広告開示 */
.footer-about .ad-disclosure { display: block; margin-top: 10px; opacity: .75; font-size: 11px; }

/* ===== 下層ページ共通（P1骨格 2026-08-15） ===== */
.page-hero { background: linear-gradient(180deg, var(--cream), #fff); border-bottom: 1px solid var(--line); padding: 22px 0 26px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .bc-sep { color: #c9b8a6; }
.breadcrumb [aria-current] { color: var(--brown); font-weight: 600; }
.page-title { margin: 0; font-family: "Noto Serif JP", serif; font-size: 26px; font-weight: 600; line-height: 1.4; letter-spacing: .04em; }
.page-lead { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.subpage-main { padding: 8px 0 44px; }
.prose { font-size: 13.5px; line-height: 1.9; }
.prose h2 { margin: 34px 0 12px; padding: 2px 0 2px 12px; border-left: 4px solid var(--orange); font-family: "Noto Serif JP", serif; font-size: 19px; font-weight: 600; line-height: 1.5; }
.prose h3 { margin: 22px 0 8px; font-size: 15px; font-weight: 700; }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 7px; }
.prose a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { opacity: .8; }
.prose .note { font-size: 11.5px; color: var(--muted); line-height: 1.7; }
.table-scroll { overflow-x: auto; margin: 0 0 14px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 12.5px; line-height: 1.6; }
.data-table th, .data-table td { padding: 9px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table thead th { background: var(--cream-deep); font-weight: 700; white-space: nowrap; }
.data-table tbody th { background: var(--cream); font-weight: 600; white-space: nowrap; width: 9em; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin: 0 0 8px; }
.hub-card { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; box-shadow: var(--shadow); }
.hub-card h3 { margin: 0 0 6px; font-size: 13.5px; font-weight: 700; line-height: 1.5; }
.hub-card p { margin: 0; font-size: 11.5px; color: var(--muted); line-height: 1.7; }
.soon-badge { display: inline-block; margin-left: 4px; padding: 1px 7px; border-radius: 99px; background: var(--cream-deep); border: 1px solid var(--line); color: var(--muted); font-size: 9.5px; font-weight: 600; vertical-align: 2px; white-space: nowrap; }
.cta-duo { margin: 40px 0 0; padding: 24px 20px; background: var(--cream-deep); border-radius: 12px; text-align: center; }
.cta-duo h2 { margin: 0 0 8px; font-family: "Noto Serif JP", serif; font-size: 18px; font-weight: 600; }
.cta-duo p { margin: 0 0 16px; font-size: 12px; color: var(--muted); }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.prose .cta-main, .cta-main { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; color: #fff; background: linear-gradient(90deg, #d67a5c, #cc6848); border-radius: 8px; box-shadow: 0 8px 14px rgba(186, 90, 56, .25); font-size: 14px; font-weight: 700; letter-spacing: .03em; }
.prose .cta-main:hover, .cta-main:hover { filter: brightness(.94); transform: translateY(-1px); opacity: 1; }
.cta-soon { font-size: 11px; color: var(--muted); }
@media (max-width: 760px) {
  .page-title { font-size: 21px; }
  .prose h2 { font-size: 17px; }
  .cta-main { width: 100%; justify-content: center; }
}
