@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Shippori+Mincho:wght@600;700&display=swap');
:root {
  --ink: #0e3042;
  --ink-soft: #446371;
  --blue: #117899;
  --blue-deep: #0a607d;
  --aqua: #63c2ca;
  --mist: #eef8f8;
  --cream: #fbfaf5;
  --line: #d8e5e7;
  --white: #fff;
  --shadow: 0 20px 55px rgba(12, 58, 75, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: .02em;
}
a { color: inherit; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.pc-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(216,229,231,.85);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  color: var(--blue-deep);
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.06em;
}
.brand-mark::first-letter { color: #c84d35; }
.brand-sub {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 13px; font-weight: 600; text-decoration: none; }
.nav-cta {
  padding: 8px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background: linear-gradient(135deg, #fff 0%, #f4fbfb 57%, #e2f6f8 100%);
}
.hero::before {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(17,120,153,.1);
  border-radius: 50%;
  content: "";
}
.hero-orb { position: absolute; border: 1px solid rgba(99,194,202,.26); border-radius: 50%; }
.hero-orb-one { width: 360px; height: 360px; top: -190px; left: -120px; }
.hero-orb-two { width: 180px; height: 180px; top: -80px; left: 90px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.eyebrow { margin: 0 0 20px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .22em; }
.hero-kicker { margin: 0 0 16px; color: var(--ink-soft); font-size: 15px; font-weight: 600; }
h1, h2 { margin: 0; font-family: "Shippori Mincho", serif; line-height: 1.38; letter-spacing: -.04em; }
h1 { font-size: clamp(38px, 4.2vw, 62px); }
h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: var(--ink-soft); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(17,120,153,.22); }
.button-primary:hover { background: var(--blue-deep); }
.button-quiet { color: var(--ink); background: rgba(255,255,255,.72); border-color: var(--line); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 28px 0 0; color: var(--ink-soft); font-size: 12px; list-style: none; }
.hero-facts li::before { margin-right: 7px; color: var(--aqua); content: "●"; font-size: 8px; }
.hero-visual { position: relative; }
.hero-image-frame { overflow: hidden; border: 8px solid rgba(255,255,255,.9); border-radius: 30px; box-shadow: var(--shadow); }
.hero-image-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-note {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: min(330px, 80%);
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(14,48,66,.12);
}
.hero-note span { display: block; margin-bottom: 4px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.hero-note strong { font-family: "Shippori Mincho", serif; font-size: 16px; }

.section { padding: 104px 0; }
.section-soft { background: var(--mist); }
.section-heading h2, .method-copy h2, .check-intro h2, .consultation h2 { font-size: clamp(32px, 3.6vw, 52px); }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.split-heading > p { margin: 0 0 8px; color: var(--ink-soft); }
.dilemma-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 54px; }
.dilemma-card { position: relative; min-height: 260px; padding: 34px 30px; background: var(--cream); border: 1px solid #ece9dd; border-radius: var(--radius); }
.card-no { color: var(--aqua); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.dilemma-card h3 { margin: 45px 0 14px; font-family: "Shippori Mincho", serif; font-size: 24px; line-height: 1.5; }
.dilemma-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.method-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; align-items: center; }
.method-copy > p:last-child { max-width: 470px; margin: 24px 0 0; color: var(--ink-soft); }
.axis-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.axis-list article { min-height: 195px; padding: 28px; background: #fff; }
.axis-list span { color: var(--aqua); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.axis-list h3 { margin: 12px 0 8px; font-family: "Shippori Mincho", serif; font-size: 27px; }
.axis-list p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.check { background: #fdfcf8; }
.check-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.check-intro { position: sticky; top: 116px; }
.check-intro > p:not(.eyebrow) { margin: 24px 0 0; color: var(--ink-soft); }
.check-promise { display: grid; gap: 9px; margin-top: 32px; padding: 22px; border-left: 3px solid var(--aqua); background: #fff; }
.check-promise strong { margin-bottom: 3px; }
.check-promise span { color: var(--ink-soft); font-size: 14px; }
.check-promise span::before { margin-right: 8px; color: var(--aqua); content: "✓"; }
.decision-form { display: grid; gap: 18px; }
.decision-form fieldset { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; padding: 25px; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(14,48,66,.06); }
.decision-form legend { grid-column: 1/-1; padding: 0 8px; font-family: "Shippori Mincho", serif; font-size: 18px; font-weight: 700; }
.decision-form legend b { display: inline-grid; place-items: center; width: 28px; height: 28px; margin-right: 8px; color: #fff; background: var(--blue); border-radius: 50%; font-family: "Noto Sans JP", sans-serif; font-size: 12px; }
.decision-form label { position: relative; cursor: pointer; }
.decision-form input { position: absolute; opacity: 0; pointer-events: none; }
.decision-form label span { display: flex; align-items: center; min-height: 58px; padding: 12px 15px; color: var(--ink-soft); background: #f7fbfb; border: 1px solid transparent; border-radius: 12px; font-size: 13px; transition: .18s ease; }
.decision-form input:checked + span { color: var(--ink); background: #e7f6f7; border-color: var(--aqua); box-shadow: inset 0 0 0 1px var(--aqua); }
.decision-form input:focus-visible + span { outline: 3px solid rgba(99,194,202,.3); }
.form-submit { width: 100%; margin-top: 5px; }
.form-error { margin: -7px 0 0; color: #a53d34; font-size: 13px; text-align: center; }
.check-result { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.result-label { margin: 0; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.check-result h3 { margin: 15px 0 12px; font-family: "Shippori Mincho", serif; font-size: 30px; line-height: 1.45; }
.check-result > p:not(.result-label) { color: var(--ink-soft); }
.result-next { margin: 26px 0; padding: 22px; background: var(--mist); border-radius: 14px; }
.result-next ul { padding-left: 20px; margin: 10px 0 0; }
.result-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section-deep { color: #fff; background: linear-gradient(135deg, #0c455e, #0b6c89); }
.consultation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.eyebrow-light { color: #a6e7e9; }
.consultation-copy > p { margin: 0; font-size: 18px; }
.consultation-copy ul { padding: 0; margin: 28px 0; list-style: none; }
.consultation-copy li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.consultation-copy li::before { margin-right: 10px; color: #a6e7e9; content: "○"; }
.button-light { color: var(--ink); background: #fff; }
.preview-message { margin: 15px 0 0 !important; padding: 12px 14px; color: #d9f3f4; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; font-size: 12px !important; }
.compact-heading { margin-bottom: 44px; }
.process-list { display: grid; grid-template-columns: repeat(4,1fr); padding: 0; margin: 0; list-style: none; }
.process-list li { display: flex; gap: 16px; min-height: 150px; padding: 25px 22px; border-left: 1px solid var(--line); }
.process-list li:last-child { border-right: 1px solid var(--line); }
.process-list span { color: var(--aqua); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.process-list h3 { margin: 0 0 8px; font-family: "Shippori Mincho", serif; font-size: 20px; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.pcv-footer { padding: 30px 0; color: #fff; background: #082c3b; }
.pcv-footer .footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pcv-footer .footer-brand .brand-mark, .footer-brand .brand-sub { color: #fff; }
.footer-row p { margin: 0; color: rgba(255,255,255,.65); font-size: 11px; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 68px; }
  .hero-grid, .method-layout, .check-shell, .consultation-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-visual { width: min(620px, 92%); margin: 0 auto; }
  .hero-note { right: -5%; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .dilemma-grid { grid-template-columns: 1fr; }
  .dilemma-card { min-height: 0; }
  .dilemma-card h3 { margin-top: 24px; }
  .check-intro { position: static; }
  .process-list { grid-template-columns: repeat(2,1fr); }
  .process-list li:nth-child(3) { border-top: 1px solid var(--line); }
  .process-list li:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .pc-site-header { min-height: 62px; padding: 9px 18px; }
  .brand-sub { display: none; }
  .brand-mark { font-size: 23px; }
  .nav-cta { padding: 7px 14px; font-size: 12px; }
  .shell { width: min(100% - 32px, 1180px); }
  .hero { padding: 56px 0 72px; }
  h1 { font-size: 30px; line-height: 1.48; }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-facts { display: grid; gap: 5px; }
  .hero-visual { width: 94%; }
  .hero-note { position: relative; right: auto; bottom: auto; width: 92%; margin: -18px auto 0; }
  .section { padding: 76px 0; }
  .section-heading h2, .method-copy h2, .check-intro h2, .consultation h2 { font-size: 31px; }
  .dilemma-grid { margin-top: 34px; }
  .axis-list { grid-template-columns: 1fr; }
  .axis-list article { min-height: 145px; }
  .decision-form fieldset { grid-template-columns: 1fr; padding: 18px; }
  .decision-form legend { font-size: 16px; }
  .check-result { padding: 26px 20px; }
  .result-actions { display: grid; }
  .consultation-copy > p { font-size: 16px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .process-list li:first-child { border-top: 0; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}


.application { background: var(--mist); }
.application .compact-heading { max-width: 780px; }
.application-lead { max-width: 680px; margin: 22px 0 0; color: var(--ink-soft); }
.pc-goal-form-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.pc-goal-form-kicker,
.pc-goal-form > h3,
.pc-goal-form-lead,
.pc-form-scope { display: none !important; }
.pc-form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.pc-form-field, .pc-form-fieldset { display: block; margin: 0 0 20px; padding: 0; border: 0; }
.pc-form-field > span, .pc-form-fieldset legend { display: block; margin-bottom: 7px; color: var(--ink); font-size: 12px; font-weight: 700; }
.pc-form-field em, .pc-form-fieldset em { color: #b44c43; font-size: 10px; font-style: normal; }
.pc-form-field input, .pc-form-field select, .pc-form-field textarea {
  width: 100%;
  border: 1px solid rgba(14,48,66,.2);
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}
.pc-form-field input, .pc-form-field select { min-height: 50px; padding: 10px 13px; }
.pc-form-field textarea { min-height: 105px; padding: 12px 13px; line-height: 1.7; resize: vertical; }
.pc-form-field input:focus, .pc-form-field select:focus, .pc-form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(17,120,153,.12);
}
.pc-goal-options { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.pc-goal-options input { position: absolute; opacity: 0; pointer-events: none; }
.pc-goal-options label {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 8px;
  border: 1px solid rgba(14,48,66,.2);
  border-radius: 10px;
  background: #f7fbfb;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.pc-goal-options input:focus + label { box-shadow: 0 0 0 3px rgba(17,120,153,.12); }
.pc-goal-options input:checked + label { border-color: var(--blue); background: var(--blue); color: #fff; }
.pc-form-consent { display: flex; align-items: flex-start; gap: 9px; margin: 2px 0 20px; color: var(--ink-soft); font-size: 11px; cursor: pointer; }
.pc-form-consent input { margin-top: 4px; accent-color: var(--blue); }
.pc-form-submit {
  width: 100%;
  min-height: 54px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  cursor: pointer;
}
.pc-form-submit:hover { background: var(--blue-deep); }
.pc-form-note { margin: 12px 0 0; color: var(--ink-soft); font-size: 11px; }
.pc-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pc-form-status { margin-bottom: 22px; padding: 16px 18px; border-radius: 12px; font-size: 12px; }
.pc-form-status strong { display: block; }
.pc-form-status p { margin: 3px 0 0; }
.pc-form-status-success { color: #174f3f; background: #dcebe4; }
.pc-form-status-error { color: #74382b; background: #f4dfd8; }
@media (max-width: 600px) {
  .pc-goal-form-panel { padding: 26px 18px; }
  .pc-form-row, .pc-goal-options { grid-template-columns: 1fr; }
}


/* Page-scoped theme reset lives in an asset, outside WordPress text formatting. */
body:is(.page-id-1256,.page-id-1287) .page-wrap > .site-header,
body:is(.page-id-1256,.page-id-1287) .top-header.singular-heading,
body:is(.page-id-1256,.page-id-1287) .single-title,
body:is(.page-id-1256,.page-id-1287) .single-footer,
body:is(.page-id-1256,.page-id-1287) #content-footer-section,
body:is(.page-id-1256,.page-id-1287) .footer-credits,
body:is(.page-id-1256,.page-id-1287) #return-to-top { display: none !important; }
body:is(.page-id-1256,.page-id-1287) #site-content,
body:is(.page-id-1256,.page-id-1287) .page-builders,
body:is(.page-id-1256,.page-id-1287) .page-builders-content-area,
body:is(.page-id-1256,.page-id-1287) #site-content > .row,
body:is(.page-id-1256,.page-id-1287) article.col-md-12,
body:is(.page-id-1256,.page-id-1287) .single-entry-summary,
body:is(.page-id-1256,.page-id-1287) .single-page { width: 100% !important; max-width: none !important; margin: 0 !important; padding: 0 !important; }
body:is(.page-id-1256,.page-id-1287) { background: #fff !important; }
.check-interaction { min-width: 0; }
.check-interaction [hidden] { display: none !important; }
#check, #consultation, #fit, #method, #goal-form, #decision-form, #check-result { scroll-margin-top: 100px; }
.hero { padding: 64px 0; }
.hero-grid { gap: 48px; }
h1 { font-size: clamp(32px, 3.6vw, 48px); }
.pc-goal-form-lead { display: block !important; margin: 0 0 24px; font-size: 14px; }
.pc-form-field > span, .pc-form-fieldset legend, .pc-goal-options label, .pc-form-consent { font-size: 14px; }
.pc-form-field input, .pc-form-field select, .pc-form-field textarea { font: inherit; font-size: 16px; }
.pc-form-note { font-size: 13px; }
.pc-goal-options { grid-template-columns: repeat(3,minmax(0,1fr)); }
.pc-form-details { margin-bottom: 24px; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.pc-form-details summary { cursor: pointer; color: var(--blue-deep); font-weight: 700; }
.pc-form-details[open] summary { margin-bottom: 20px; }
.footer-contact { display: grid; gap: 8px; font-size: 13px; }
.footer-contact p { margin: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
@media (max-width: 600px) {
  .hero { padding: 40px 0 56px; }
  h1 { font-size: 29px; }
  .pc-goal-options { grid-template-columns: 1fr; }
  .hero-actions .button { font-size: 15px; }
  .footer-contact { overflow-wrap: anywhere; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
/* Keep the check introduction readable within its narrower desktop column. */
#check .check-intro h2 { font-size: clamp(27px, 2.5vw, 32px); line-height: 1.55; }
body:is(.page-id-1256,.page-id-1287) .pc-site-header a,
body:is(.page-id-1256,.page-id-1287) a.button { text-decoration: none; }

/* Brand catch: keep the intended three lines legible on narrow screens. */
.hero h1.pc-catch { font-size: clamp(30px, 3.05vw, 42px); }
@media (max-width: 600px) {
  .hero h1.pc-catch { font-size: clamp(22px, 6.2vw, 29px); }
}

/* Consultation examples, reading links and FAQ (2026-09-08). */
.pc-image-caption { font-size: 12px; color: #626d6a; margin: 10px 0 0; }
.pc-faq details { border-bottom: 1px solid #cbd6d1; padding: 20px 0; }
.pc-faq summary { cursor: pointer; font-weight: 700; font-size: 17px; line-height: 1.7; }
.pc-faq details p { max-width: 850px; margin: 14px 0 0; line-height: 1.9; }
.pc-faq a, .pc-reading a { color: #246655; text-decoration: underline; text-underline-offset: 4px; }
.pc-reading .eyebrow { font-size: 12px; letter-spacing: .07em; }
.pc-reading h3 { line-height: 1.7; }
.pc-reading-follow { margin-top: 26px; line-height: 1.9; }
.pc-faq summary:focus-visible, .pc-reading a:focus-visible { outline: 3px solid #a37a28; outline-offset: 5px; }
@media (max-width: 600px) { .pc-site-header nav > a:not(.nav-cta) { display: none; } }

.pc-guide { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }
.pc-guide h1 { font-size: clamp(25px, 4vw, 36px); line-height: 1.7; margin: 16px 0 20px; }
.pc-guide h2 { font-size: clamp(22px, 3vw, 28px); line-height: 1.7; margin: 48px 0 20px; }
.pc-guide p { font-size: 16px; line-height: 2; margin: 18px 0; }
.pc-guide .pc-guide-meta { color: #546975; font-size: 13px; margin-bottom: 40px; }
.pc-guide a { color: #246655; text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.pc-guide-back { padding-top: 30px; border-top: 1px solid #d8e5e7; }
