@charset "UTF-8";
:root {
  --ink: #1c3346;
  --muted: #566573;
  --paper: #fff;
  --pale: #f2f5f7;
  --line: #d8e0e6;
  --accent: #a3743e;
  --serif: 'Yu Mincho','Hiragino Mincho ProN','Noto Serif JP',serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Yu Gothic','Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
  font-size: 16px;
  line-height: 1.95;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #b9853a;
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.55;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 20px;
  line-height: 1.65;
}
.skip {
  position: absolute;
  left: 10px;
  top: -100px;
  z-index: 100;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
header {
  height: 96px;
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  gap: 20px;
  background: white;
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1.7;
}
.brand strong {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .05em;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
}
.nav-contact {
  border: 1px solid var(--line);
  padding: 10px 18px;
}
.hero {
  display: grid;
  max-width: 1440px;
  margin: auto;
  position: relative;
}
.hero-copy {
  z-index: 1;
}
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 22px;
}
h1 {
  font-size: 52px;
  line-height: 1.6;
}
h1 span {
  font-size: 33px;
}
.lead {
  font-size: 19px;
  margin: 24px 0 14px;
}
.hero-copy>p:not(.eyebrow):not(.lead) {
  color: var(--muted);
  font-size: 15px;
}
.hero-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.hero-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent,#15222dc7);
  color: white;
  font-family: var(--serif);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-decoration: none;
  background: var(--ink);
  color: white;
  padding: 16px 26px;
  border: 1px solid var(--ink);
  font-weight: 700;
  margin-top: 28px;
  cursor: pointer;
  transition: background .2s;
}
.button:hover {
  background: #304e65;
}
.hero-note {
  margin-top: 16px;
  font-size: 13px!important;
  max-width: 390px;
}
.intro-strip {
  display: flex;
  justify-content: center;
  gap: 44px;
  padding: 22px;
  background: var(--ink);
  color: white;
}
.intro-strip span {
  color: #c5cfd6;
}
.intro-strip a {
  text-decoration: none;
}
.section {
  max-width: 1120px;
  margin: auto;
  padding: 100px 32px;
}
.worries {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
}
.worry-list>p {
  position: relative;
}
.worry-list>p:before {
  position: absolute;
  color: var(--accent);
}
.soft-note {
  padding: 24px 0 0;
  color: var(--muted);
}
.guide {
  max-width: none;
  text-align: center;
}
.guide>p {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.section-lead {
  color: var(--muted);
  margin-top: 20px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 1056px;
  margin: 45px auto 26px;
  text-align: left;
}
.steps>div {
  padding: 30px 34px;
}
.steps>div:last-child {
  border: 0;
}
.step-number {
  font-family: Georgia,serif;
  font-size: 42px;
  color: var(--accent);
}
.steps h3 {
  margin: 12px 0 18px;
}
.footnote {
  font-size: 14px;
  color: var(--muted);
  text-align: left;
}
.mobile {
  display: none;
}
footer {
  background: var(--ink);
  color: #fff;
  padding: 45px 7%;
  font-size: 14px;
}
.section-heading {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 35px;
}
.chapter {
  font: 60px/1.2 Georgia,serif;
  color: #bdc8d0;
  border-top: 2px solid var(--accent);
  padding-top: 12px;
  min-width: 80px;
}
.section-heading .eyebrow {
  margin-bottom: 14px;
}
.reading {
  max-width: 850px;
  margin: auto;
}
.legal-note {
  margin-top: 42px;
  background: #f9f4ed;
  border-left: 3px solid var(--accent);
  padding: 32px 40px;
}
.note-label {
  font-size: 13px;
  letter-spacing: .08em;
  color: #80552b;
}
.legal-note h3 {
  margin: 8px 0 16px;
}
.source {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 15px;
}
.specialist-note {
  background: var(--pale);
  padding: 24px 30px;
  margin: 30px 0 20px;
}
.specialist-note h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
form {
  background: var(--pale);
  padding: 35px;
}
.field {
  margin-bottom: 23px;
}
.field>label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 15px;
}
.field label span,
.field label em {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  margin-left: 10px;
}
.field label span {
  background: var(--ink);
  color: white;
  padding: 2px 7px;
}
.field label em {
  color: var(--muted);
}
input:not([type=checkbox]),
textarea,
select {
  width: 100%;
  border: 1px solid #aebdc8;
  border-radius: 0;
  background: white;
  color: var(--ink);
  padding: 11px 13px;
  min-height: 48px;
  font-size: 16px;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #697681;
  opacity: 1;
}
input::file-selector-button {
  padding: 7px 10px;
  background: var(--ink);
  color: white;
  border: 0;
  margin-right: 10px;
  cursor: pointer;
}
.field small {
  font-size: 13px;
  line-height: 1.7;
  display: block;
  margin-top: 7px;
  color: var(--muted);
}
.consent {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
}
.consent input {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 5px;
  accent-color: var(--ink);
}
.submit {
  width: 100%;
  margin: 23px 0 15px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.preview-notice {
  font-size: 13px;
  line-height: 1.8;
  border: 1px dashed #8093a2;
  padding: 12px;
  margin-bottom: 25px;
  background: white;
}
.preview-notice[hidden] {
  display: none;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
footer p {
  margin-top: 20px;
}
footer a:not(.brand) {
  display: inline-block;
  margin-right: 20px;
  margin-top: 15px;
}
footer .copyright {
  font-size: 12px;
  color: #c3cbd3;
  margin-top: 30px;
}
dialog {
  max-width: 700px;
  width: calc(100% - 32px);
  border: 0;
  padding: 0;
  color: var(--ink);
  max-height: 85vh;
}
dialog::backdrop {
  background: #152533aa;
}
.dialog-inner {
  padding: 32px;
}
.dialog-inner h2 {
  font-size: 24px;
}
dl {
  margin: 25px 0;
}
dt {
  font-size: 13px;
  color: var(--muted);
  margin-top: 15px;
}
dd {
  margin: 4px 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.dialog-actions .button {
  margin: 0;
}
.outline-button {
  padding: 12px 20px;
  background: white;
  color: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
}
.simple-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 65px 25px;
}
.simple-page h1 {
  font-size: 34px;
}
.simple-page h2 {
  font-family: inherit;
  font-size: 20px;
  margin: 30px 0 10px;
}
.simple-page p {
  margin-top: 15px;
}
.simple-page ul {
  padding-left: 23px;
}
.simple-page .button {
  font-size: 15px;
}
.steps p,
.specialist-note p {
  font-size: 16px;
}

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

/* Header emblem and clearer guide title */
.brand-emblem {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-contact {
  background: #edf3f8;
  border-color: #d7e3ed;
}
.nav-contact:hover {
  background: #dfeaf3;
}

/* PC edition: mobile is produced separately. */
body {
  min-width: 1120px;
}
.intro-strip,
.intro-strip span,
.intro-strip a {
  font-size: 19px;
}
.hero-copy .lead {
  white-space: normal;
}
.hero-copy {
  text-align: center;
}
.hero-copy .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.hero-copy .hero-note {
  margin-left: auto;
  margin-right: auto;
}
.hero-copy h1 {
  letter-spacing: .025em;
}

/* Approved PC hero: gold fine rules and compact lower spacing. */
.hero {
  padding-left: 0;
  grid-template-columns: 49.4% 50.6%;
}
.hero-copy {
  padding: 32.4px 42px 42px;
}
.hero-copy h1 {
  font-size: 46px;
  line-height: 1.5;
}
.hero h1 span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 420px;
  height: 132px;
  font-size: 32px;
  line-height: 1.65;
  margin-top: 18px;
  color: #926120;
  font-weight: 700;
  position: relative;
}
.hero-copy .lead {
  max-width: 480px;
  font-size: 18px;
  margin-top: 26px;
}
.hero-copy>.eyebrow {
  font-size: 19px;
  letter-spacing: .05em;
}
.hero-copy .button {
  margin-top: 25px;
  gap: 22px;
}
.hero-photo figcaption {
  font-size: 21.6px;
  padding: 45px 30px 27px;
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-copy .hero-note {
  max-width: 450px;
}
.hero-photo img {
  object-position: 48% center;
}
.hero h1 span .copy-line {
  display: block;
  font: inherit;
  line-height: inherit;
  color: inherit;
}
.hero h1 span {
  border-top: 1px solid #bc955a;
  border-bottom: 1px solid #bc955a;
}
.hero {
  height: auto;
  min-height: 0;
}
.hero-copy {
  padding-bottom: 28px;
}
.hero-photo img {
  position: absolute;
  inset: 0;
}
.nav-contact svg,
.hero-copy .button svg {
  flex-shrink: 0;
}

/* Section eyebrows share the hero eyebrow size. */
.eyebrow {
  font-size: 19px;
}

/* Worries list: stronger serif items with pale-blue check. */
.worries {
  align-items: start;
}
.worry-list>p {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.6;
  padding: 20px 0 20px 50px;
  border-bottom: 1px solid #c5d0d8;
}
.worry-list>p:first-child {
  border-top: 1px solid #c5d0d8;
}
.worry-list>p:before {
  content: '';
  left: 2px;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  border-radius: 50%;
  background: #edf3f8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c3346' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 12.5 3.5 3.5L17 8.5'/%3E%3C/svg%3E") center/20px no-repeat;
}
.worry-list .soft-note {
  font-size: 17px;
  padding-top: 28px;
}
.worry-figure {
  margin-top: 31px;
}
.worry-figure img {
  width: 100%;
  height: auto;
}
.worries {
  padding-top: 70px;
}
.worry-list {
  align-self: center;
}

/* Guide: washitsu photo background with frosted-glass step cards. */
.guide {
  position: relative;
  isolation: isolate;
  background: #f3eee6 url(assets/guide-washitsu.webp) center top/cover no-repeat;
}
.guide:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(255,251,245,.66),rgba(255,251,245,.36) 45%,rgba(255,251,245,.6));
}
.guide .section-lead,
.guide .footnote {
  color: var(--ink);
}
.guide .footnote {
  text-align: center;
}
.steps {
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(70,50,25,.1);
}
.steps>div {
  padding-left: 48px;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-right: 1px solid rgba(255,255,255,.95);
}
.steps p {
  color: #3a4a57;
}
.steps .step-number {
  display: block;
  line-height: 1.6;
  margin-top: -15px;
}
.steps .step-number:after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  margin-top: -6px;
  background: var(--accent);
}
.steps h3 {
  margin-top: 30px;
}

/* Legal: deadline overview and eight-step guide. */
.deadline-summary {
  margin-top: 48px;
  background: var(--pale);
  padding: 34px 40px 40px;
}
.deadline-summary h3 {
  font-family: var(--serif);
  font-size: 22px;
}
.deadline-summary>p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.deadline-summary ol {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.deadline-summary li {
  background: #fff;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.deadline-summary li:last-child {
  border-right: 0;
}
.deadline-summary .term {
  display: block;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}
.deadline-summary .term b {
  font: 40px/1.3 Georgia,serif;
  margin-right: 4px;
}
.deadline-summary strong {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 8px;
}
.deadline-summary small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.legal-steps {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
}
.legal-steps>li {
  display: grid;
  grid-template-columns: 296px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.step-head>span:after {
  content: '';
  width: 48px;
  height: 1px;
  margin-top: 6px;
  background: var(--accent);
}
.step-head h3 {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.6;
  margin-top: 16px;
}
.step-body>p strong {
  color: #80552b;
}
.step-point {
  margin-top: 18px;
  background: var(--pale);
  padding: 18px 24px;
}
.step-point p {
  font-size: 15px;
  line-height: 1.85;
}
.step-point.caution {
  background: #f9f4ed;
  border-left: 3px solid var(--accent);
}
.step-point strong {
  display: block;
  color: #80552b;
  font-size: 15px;
  margin-bottom: 4px;
}
.step-body .source {
  margin-right: 22px;
}
.guide:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50px;
  width: 1000px;
  height: 340px;
  margin-left: -500px;
  z-index: -1;
  background: radial-gradient(closest-side,rgba(255,252,247,.95),rgba(255,252,247,.82) 60%,rgba(255,252,247,0));
}
.guide>.eyebrow {
  color: #8a5a22;
}
.guide>h2 {
  text-shadow: 0 0 18px #fffcf7,0 0 6px #fffcf7;
}
.guide>.section-lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  text-shadow: 0 0 12px #fffcf7,0 0 4px #fffcf7;
}
.guide>.footnote {
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 0 10px #fffcf7,0 0 4px #fffcf7,0 0 2px #fffcf7;
}
.worries>div:first-child>.eyebrow,
.worries>div:first-child>h2 {
  padding-left: 1.2%;
}

/* Chapter numbers sit centered under their gold rule. */
.chapter {
  text-align: center;
}

/* Legal intro: heading and lead on the left, illustration on the right. */
.legal-intro {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 55px;
  align-items: center;
}
.legal-intro .reading {
  max-width: none;
  margin: 0;
  padding-left: 108px;
}
.legal-intro-figure img {
  width: 100%;
  height: auto;
}

/* Legal: compact spacing (adopted from index2 comparison). */
.legal-compact {
  padding-top: 72px;
  padding-bottom: 72px;
}
.legal-compact .section-heading {
  margin-bottom: 22px;
}
.legal-compact .deadline-summary {
  margin-top: 30px;
  padding: 24px 32px 28px;
}
.legal-compact .deadline-summary ol {
  margin-top: 16px;
}
.legal-compact .deadline-summary li {
  padding: 14px 22px 16px;
}
.legal-compact .deadline-summary .term b {
  line-height: 1.2;
}
.legal-compact .deadline-summary strong {
  margin-top: 4px;
}
.legal-compact .deadline-summary small {
  margin-top: 2px;
}
.legal-compact .step-body>p {
  line-height: 1.85;
}
.legal-compact .step-point {
  margin-top: 12px;
  padding: 12px 20px;
}
.legal-compact .step-point strong {
  margin-bottom: 2px;
}
.legal-compact .step-body .source {
  margin-top: 8px;
}
.legal-compact .legal-note {
  margin-top: 32px;
  padding: 24px 32px;
}
.legal-compact .legal-note h3 {
  margin: 6px 0 10px;
}
.legal-compact .specialist-note {
  margin: 20px 0 14px;
  padding: 20px 28px;
}

/* Legal steps as cards: navy STEP panel + white body (adopted from index2). */
.legal-compact .legal-steps {
  border-top: 0;
  margin-top: 36px;
  display: grid;
  gap: 20px;
}
.legal-compact .legal-steps>li {
  grid-template-columns: 280px 1fr;
  gap: 0;
  padding: 0;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(28,51,70,.06);
}
.step-head {
  background: #1c3346;
  border-right: 3px solid #b98f55;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
}
.step-head>span {
  display: inline-block;
  font: 600 22px/1.4 var(--serif);
  letter-spacing: .16em;
  color: #d8b584;
  padding-bottom: 6px;
  border-bottom: 2px solid #d8b584;
}
.step-head>span:after {
  display: none;
}
.legal-compact .step-head h3 {
  color: #fff;
  font-size: 23px;
  line-height: 1.55;
  margin-top: 18px;
}
.step-head small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: .06em;
  color: #aebdc8;
}
.legal-compact .step-body {
  padding: 30px 40px 26px;
}
.legal-compact .step-point {
  border-radius: 6px;
}
.legal-compact .step-point.caution {
  border-radius: 0 6px 6px 0;
}
.legal-compact .step-body .source {
  color: #a3743e;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.legal-compact .step-body .source:hover {
  text-decoration: underline;
}

/* Future (02): comparison table of house options. */
.future {
  padding-bottom: 72px;
}
.future .future-lead {
  margin: 6px 0 0 108px;
  font-size: 17px;
}
.future .split h3 {
  font-family: var(--serif);
}
.future .split ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.future .split span {
  line-height: 1.7;
  color: var(--muted);
}
.future .todo,
.future .caution {
  list-style: none;
  padding: 0;
  margin: 0;
}
.future .todo li,
.future .caution li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.75;
}
.future .todo li+li,
.future .caution li+li {
  margin-top: 6px;
}
.future .todo li {
  padding-left: 18px;
}
.future .todo li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #1c3346;
  font-weight: 700;
}
.future .caution li:before {
  content: "!";
  position: absolute;
  left: 0;
  top: .25em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #b98f55;
  color: #fff;
  font: 700 12px/18px sans-serif;
  text-align: center;
}
.future .lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
}
.future .lbl i {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font: 700 13px/22px sans-serif;
  text-align: center;
}
.future .lbl.t {
  color: #1c3346;
}
.future .lbl.t i {
  background: #1c3346;
}
.future .lbl.c {
  color: #8a5a22;
}
.future .lbl.c i {
  background: #b98f55;
}
.future .g {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  column-gap: 26px;
}
.future .hd {
  margin-top: 40px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1c3346;
}
.future .hd .lbl:first-child {
  color: var(--muted);
}
.future .row {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.future .opt h3 {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
  background: #1c3346;
  color: #fff;
  padding: 12px 18px;
}
.future .opt p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
}
.future .box-t {
  border-left: 3px solid #1c3346;
  padding: 14px 20px;
}
.future .box-c {
  background: #f9f4ed;
  border-left: 3px solid #a3743e;
  padding: 14px 20px;
}
.future .sources {
  margin-top: 18px;
}
.future .sources .source {
  margin-right: 22px;
}
.future .footnote {
  margin-top: 6px;
}

/* Future (02): garden photo fading in from the right behind the heading and split cards. */
.future {
  position: relative;
  isolation: isolate;
}
.future:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 44%;
  right: calc(50% - 50vw);
  height: 540px;
  background: url(assets/future-garden.webp) center/cover no-repeat;
  -webkit-mask-image: linear-gradient(to right,transparent 0,transparent 8%,#000 46%),linear-gradient(to bottom,#000 72%,transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right,transparent 0,transparent 8%,#000 46%),linear-gradient(to bottom,#000 72%,transparent 100%);
  mask-composite: intersect;
}
.future {
  padding-top: 36px;
}
body {
  overflow-x: clip;
}
.future {
  margin-top: 32px;
}
.future .hd .lbl.t {
  padding-left: 20px;
}
.future .hd .lbl.c {
  padding-left: 21px;
}

/* Future (02): split as navy heading bar + joined white table with gold top lines (adopted plan 1). */
.future .split {
  margin-top: 34px;
  text-align: left;
}
.future .split h3 {
  display: block;
  position: static;
  font-size: 21px;
  background: #1c3346;
  color: #fff;
  border: 0;
  border-radius: 6px 6px 0 0;
  box-shadow: none;
  padding: 12px 24px;
  text-shadow: none;
}
.future .split ul {
  margin: 0;
  gap: 0;
  background: #fff;
  border: 1px solid #1c3346;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}
.future .split li {
  background: none;
  border: 0;
  border-top: 3px solid #b98f55;
  border-radius: 0;
  box-shadow: none;
  padding: 20px 24px 22px;
}
.future .split li+li {
  border-left: 1px solid #d8e0e6;
}
.future .split strong {
  font-family: var(--serif);
  font-size: 21px;
  color: #1c3346;
  padding: 0;
  border: 0;
}
.future .split span {
  display: block;
  font-size: 15px;
}
.future .split h3,
.future .split li {
  text-align: center;
}
.future .split strong {
  display: inline-block;
  padding-bottom: 0;
  border-bottom: 2px solid #b98f55;
}
.future .split span {
  margin-top: 13px;
}

/* Belongings (03): scenes, checklist, methods, cost and resale. */
.belongings {
  padding-top: 72px;
  padding-bottom: 72px;
}
.belongings .reading {
  margin: 0 0 0 108px;
  max-width: 760px;
}
.belongings .bl-head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 23px;
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.belongings .bl-head em {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1c3346;
  color: #fff;
  font: 600 16px/32px Georgia,var(--serif);
  text-align: center;
}
.belongings .bl-lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 14px;
}
.belongings .bl-scenes {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.belongings .bl-scene {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.belongings .bl-scene strong {
  font-family: var(--serif);
  font-size: 20px;
  color: #1c3346;
}
.belongings .bl-scene p {
  font-size: 16px;
}
.belongings .todo,
.belongings .caution {
  list-style: none;
  padding: 0;
  margin: 0;
}
.belongings .todo li,
.belongings .caution li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.belongings .todo li+li,
.belongings .caution li+li {
  margin-top: 6px;
}
.belongings .todo li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #1c3346;
  font-weight: 700;
}
.belongings .caution li {
  padding-left: 26px;
}
.belongings .caution li:before {
  content: "!";
  position: absolute;
  left: 0;
  top: .25em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #b98f55;
  color: #fff;
  font: 700 12px/18px sans-serif;
  text-align: center;
}
.belongings .bl-methods {
  display: grid;
  margin-top: 6px;
}
.belongings .bl-methods article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(28,51,70,.06);
}
.belongings .bl-methods h4 {
  font-family: var(--serif);
  font-size: 21px;
  color: #1c3346;
  padding-bottom: 0;
  border-bottom: 2px solid #b98f55;
}
.belongings .bl-methods dl {
  margin: 16px 0 0;
}
.belongings .bl-methods dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #80552b;
  margin-top: 12px;
}
.belongings .bl-methods dd {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.8;
  border: 0;
  padding: 0;
}
.belongings .bl-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #80552b;
  margin-bottom: 8px;
}
.belongings .bl-sell {
  display: grid;
  align-items: start;
}
.belongings .bl-tags {
  font-size: 15px;
  line-height: 2;
  color: #3a4a57;
  margin-bottom: 14px;
}

/* Belongings (03): two-column judgement block. */
.belongings .bl-judge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}
.belongings .bl-judge h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  margin-bottom: 12px;
}
.belongings .bl-judge h4 i {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font: 700 14px/26px sans-serif;
  text-align: center;
}
.belongings .bl-judge h4 small {
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .04em;
}
.belongings .bl-can {
  background: #fff;
  border: 1px solid #1c3346;
  border-radius: 8px;
  padding: 22px 26px 24px;
}
.belongings .bl-can h4 i {
  background: #1c3346;
}
.belongings .bl-wait {
  background: #f9f4ed;
  border-left: 3px solid #a3743e;
  border-radius: 0 8px 8px 0;
  padding: 22px 26px 24px;
}
.belongings .bl-wait h4 {
  color: #80552b;
}
.belongings .bl-wait h4 i {
  background: #b98f55;
}
.belongings .bl-wait h4 small {
  color: #8a6a45;
}
.belongings .bl-still {
  background: var(--pale);
  padding: 20px 26px;
  margin-top: 18px;
}
.belongings .bl-still>strong {
  display: block;
  font-size: 16px;
  color: #1c3346;
}
.belongings .bl-still p {
  font-size: 16px;
  margin-top: 6px;
}
.belongings .bl-still .bl-still-note {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}

/* Belongings (03): heading with illustration on the right. */
.belongings .bl-intro .reading {
  margin: 0;
  padding-left: 108px;
  max-width: none;
}
.belongings .bl-intro {
  grid-template-columns: 1fr 500px;
  gap: 28px;
  margin-right: -40px;
}
.belongings .bl-intro .legal-intro-figure {
  transform: translateX(-38px);
}
.belongings .bl-scene {
  padding: 0;
  align-items: stretch;
}
.belongings .bl-scene strong {
  display: flex;
  align-items: center;
  background: var(--pale);
  padding: 10px 18px;
  line-height: 1.6;
}
.belongings .bl-scene p {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.belongings .bl-judge {
  align-items: stretch;
}
.belongings .bl-judge h4 {
  margin-top: 0;
}
.belongings .bl-can {
  display: flex;
  flex-direction: column;
}
.belongings .bl-can-figure {
  margin-top: auto;
  padding-top: 16px;
}
.belongings .bl-can-figure img {
  width: 100%;
  height: auto;
}

/* Belongings (03): two method cards with cost inside. */
.belongings .bl-methods {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.belongings .bl-methods article {
  display: flex;
  flex-direction: column;
  padding: 24px 28px 26px;
}
.belongings .bl-methods h4 {
  display: table;
  margin: 0 auto;
}
.belongings .bl-hard {
  background: #f9f4ed;
  border-left: 3px solid #a3743e;
  padding: 14px 18px;
  margin-top: 18px;
}
.belongings .bl-hard>strong {
  display: block;
  font-size: 15px;
  color: #80552b;
  margin-bottom: 8px;
}
.belongings .bl-hard .caution li {
  font-size: 15px;
  line-height: 1.75;
}
.belongings .bl-buy {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 14px;
}

/* Belongings (03): vendor card cost box. */
.belongings .bl-methods article .bl-hard {
  flex: 1;
}
.belongings .bl-hard>strong {
  white-space: nowrap;
}
.belongings .bl-hard .bl-hard-note {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}

/* Belongings (03): compact resale block with horizontal example bar. */
.belongings .bl-example-bar {
  align-items: center;
  flex-wrap: wrap;
  background: #1c3346;
  color: #fff;
  border-radius: 8px;
  margin-top: 16px;
}
.belongings .bl-example-bar .bl-label {
  color: #d8b584;
  margin: 0;
}
.belongings .bl-example-bar p {
  display: flex;
  align-items: center;
  font-family: var(--serif);
}
.belongings .bl-example-bar b {
  font-weight: 600;
}
.belongings .bl-example-bar i {
  font-style: normal;
  color: #d8b584;
}
.belongings .bl-example-bar em {
  font-style: normal;
  color: #d8b584;
  font-weight: 600;
}
.belongings .bl-sell {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}
.belongings .bl-sell .bl-tags {
  margin-bottom: 0;
}
.belongings .bl-example-bar {
  display: inline-flex;
}
.belongings .bl-example-bar {
  gap: 14px;
  padding: 10px 22px;
}
.belongings .bl-example-bar .bl-label {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}
.belongings .bl-example-bar p {
  gap: 10px;
}
.belongings .bl-example-bar p,
.belongings .bl-example-bar em {
  font-size: 23px;
}

/* Wood Life: toned-down introduction with portrait. */
.wl {
  border-top: 1px solid #eadfcd;
  padding: 80px 32px;
}
.wl-inner {
  max-width: 1056px;
  margin: auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
}
.wl-photo img {
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(70,50,25,.12);
}
.wl-photo figcaption {
  margin-top: 14px;
  text-align: center;
}
.wl-photo strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .12em;
}
.wl-photo span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.wl h2 {
  font-size: 30px;
  line-height: 1.6;
}
.wl-text {
  margin-top: 18px;
  font-size: 16px;
}
.wl-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.wl-points li {
  background: #fff;
  border: 1px solid #e6dccb;
  border-radius: 8px;
  padding: 18px 18px 20px;
}
.wl-points i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1e6d3;
  color: #a3743e;
  margin-bottom: 10px;
}
.wl-points svg {
  width: 22px;
  height: 22px;
}
.wl-points strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: #1c3346;
}
.wl-points span {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 6px;
}
.wl-close {
  margin-top: 22px;
  font-size: 16px;
}
.wl-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 22px;
}
.wl-btn {
  display: inline-block;
  border: 1px solid #1c3346;
  color: #1c3346;
  background: #fff;
  padding: 13px 26px;
  text-decoration: none;
  font-weight: 700;
}
.wl-link {
  font-size: 14px;
  color: var(--muted);
}
.wl-photo img {
  height: auto;
}

/* Flow: Wood Life-style steps with illustration, continuing the Wood Life background. */
.flow2 {
  padding: 56px 32px 80px;
  border-bottom: 1px solid #eadfcd;
}
.flow2-inner {
  max-width: 1056px;
  margin: auto;
  text-align: center;
}
.flow2 h2 {
  font-size: 30px;
  line-height: 1.6;
}
.flow2-steps {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: left;
}
.flow2-steps span {
  display: block;
  text-align: center;
  font: 600 24px/1.2 Georgia,var(--serif);
  color: #a3743e;
}
.flow2-steps h3 {
  text-align: center;
  font-family: var(--serif);
  font-size: 21px;
  margin: 6px 0 10px;
}
.flow2-steps p {
  font-size: 15px;
  line-height: 1.85;
  color: #3a4a57;
}
.flow2 .footnote {
  text-align: center;
  margin-top: 26px;
}
.wl {
  background: var(--pale);
  border-top-color: #dfe6ec;
  border-bottom: 1px solid #dfe6ec;
  padding-bottom: 80px;
}
.wl-points li {
  border-color: #dfe6ec;
}

/* Flow: one illustration per step. */
.flow2-steps {
  gap: 56px;
  margin-top: 34px;
}
.flow2-steps li {
  border-top: 0;
  padding-top: 0;
}
.flow2-card-figure {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #c9a97a;
}
.flow2-card-figure img {
  width: 100%;
  height: auto;
}
.flow2 {
  background: #f9f4ea;
}

/* Contact: one-column form like the Wood Life LP, apricot background (adopted warm plan 2). */
.contact-one {
  background: #f8eadf;
  border-top: 1px solid #ecd3c0;
  padding: 72px 32px 80px;
}
.c1-wrap {
  max-width: 780px;
  margin: auto;
}
.c1-head {
  text-align: center;
  margin-bottom: 32px;
}
.c1-badge {
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #9a5a2e;
  padding-bottom: 4px;
  border-bottom: 1px solid #c98f63;
}
.c1-head h1,
.c1-head h2 {
  font-size: 34px;
  line-height: 1.6;
  margin-top: 10px;
}
.c1-info {
  display: inline-block;
  margin-top: 22px;
  background: #fffaf6;
  border: 1px solid #ecd3c0;
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.8;
}
.c1-info strong {
  display: block;
  font-size: 17px;
  color: #1c3346;
}
.c1-info p {
  color: #6a5a4e;
  margin-top: 4px;
}
.contact-one form {
  background: #fff;
  padding: 40px 48px 36px;
  border: 1px solid #ecd3c0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(120,70,40,.08);
}
.contact-one .field {
  margin-bottom: 26px;
}
.contact-one .field>label {
  font-size: 19px;
  margin-bottom: 10px;
}
.contact-one .field label span {
  font-size: 13px;
  padding: 2px 9px;
  vertical-align: 3px;
}
.contact-one .field label em {
  font-size: 14px;
}
.contact-one input:not([type=checkbox]),
.contact-one textarea,
.contact-one select {
  font-size: 18px;
  min-height: 56px;
  padding: 13px 16px;
  border-radius: 4px;
}
.contact-one textarea {
  min-height: 170px;
}
.contact-one .field small {
  font-size: 14px;
}
.contact-one .consent {
  font-size: 15px;
  justify-content: center;
}
.contact-one .submit {
  justify-content: center;
  gap: 18px;
  font-size: 20px;
  min-height: 68px;
  border-radius: 5px;
  margin-top: 28px;
}
.contact-one form>.footnote {
  text-align: center;
}

/* Details: supplementary notes below the form, headings on the left (adopted plan 3). */
.details {
  background: #fbfaf7;
  border-top: 1px solid #ece6dc;
  padding: 80px 32px 88px;
}
.dt-inner {
  max-width: 1056px;
  margin: auto;
}
.details h2 {
  font-size: 34px;
}
.dt-lead {
  color: var(--muted);
  margin-top: 16px;
}
.dt-group {
  margin-top: 44px;
}
.dt-glabel {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--serif);
  font-size: 22px;
  color: #1c3346;
  padding-bottom: 10px;
  border-bottom: 2px solid #1c3346;
}
.dt-glabel small {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.dt-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.dt-no {
  display: block;
  font: 600 15px/1.6 Georgia,var(--serif);
  letter-spacing: .14em;
  color: #a3743e;
}
.dt-rh h4 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: #1c3346;
  margin-top: 4px;
}
.dt-rb>p:not(.dt-src) {
  font-size: 16px;
  line-height: 1.85;
}
.dt-rb>p+p:not(.dt-src) {
  margin-top: 8px;
}
.details .dt-src {
  margin-top: 10px;
}
.details .source {
  color: #a3743e;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  margin: 4px 22px 0 0;
}
.details .source:hover {
  text-decoration: underline;
}
.details p strong {
  color: #80552b;
}
.dt-note {
  margin-top: 30px;
}

/* Links from sections 01/02 to the supplementary notes. */
.dt-jump {
  margin-top: 22px;
}
.dt-jump a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #80552b;
  text-decoration: none;
  border-bottom: 1px solid #c9a97a;
  padding-bottom: 2px;
}
.dt-jump a:hover {
  color: #1c3346;
  border-bottom-color: #1c3346;
}
.future .dt-jump {
  margin-top: 22px;
  margin-bottom: 4px;
}

/* Gyoseishoshi contact page: same one-column form, pale blue-grey to set it apart from Wood Life. */
.gy-contact {
  background: var(--pale);
  border-top: 1px solid #dfe6ec;
}
.gy-contact .c1-badge {
  color: #80552b;
  border-bottom-color: #b98f55;
}
.gy-contact .c1-info {
  background: #fff;
  border-color: #d8e0e6;
}
.gy-contact form {
  border-color: #d8e0e6;
  box-shadow: 0 10px 30px rgba(28,51,70,.07);
}
.gy-notes {
  background: #fff;
  border-left: 3px solid #b98f55;
  padding: 16px 22px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
}
.gy-notes p+p {
  margin-top: 6px;
}
.gy-notes a {
  color: #1c3346;
  font-weight: 700;
}

/* Footer: office contact link right under the address; Wood Life name links to its LP. */
footer a.ft-gy {
  display: inline-block;
  margin-top: 0;
  margin-right: 0;
}
footer a.ft-wl {
  display: inline;
  margin: 0;
}

/* Contact: telephone for Wood Life, under the form (adopted plan C). */
.tel-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  max-width: 780px;
  margin: 26px auto 0;
  padding: 22px 32px;
  background: #fffaf6;
  border: 1px solid #ecd3c0;
  border-radius: 8px;
}
.tel-left {
  padding-right: 36px;
  border-right: 1px solid #e3d0bd;
}
.tel-left strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: #1c3346;
}
.tel-name {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: var(--muted);
}
.tel-num a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #1c3346;
  text-decoration: none;
}
.tel-num a:before {
  content: '';
  width: 26px;
  height: 26px;
  background: no-repeat center/26px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c3346' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.tel-time {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}
