@charset "UTF-8";
/* Smartphone edition (/sp/). One column, larger type. */
:root {
  --ink: #1c3346;
  --muted: #566573;
  --pale: #f2f5f7;
  --line: #d8e0e6;
  --accent: #a3743e;
  --gold: #b98f55;
  --brown: #80552b;
  --beige: #f9f4ed;
  --serif: 'Yu Mincho','Hiragino Mincho ProN','Noto Serif JP',serif;
  --gutter: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 12px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
  font-size: 17px;
  line-height: 1.85;
  overflow-x: clip;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
h1,
h2,
h3,
h4,
p,
figure,
ul,
ol,
dl,
dd {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.5;
}
h2 {
  font-size: 27px;
}
h3,
h4 {
  line-height: 1.6;
}
/* Break headings and short labels at phrase boundaries (Chrome/Edge; others fall back to normal). */
h2,
h3,
h4,
summary,
.worry-list li,
.op-desc,
.op-do,
.gc-text,
.alert strong,
.still > strong {
  word-break: auto-phrase;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #b9853a;
  outline-offset: 3px;
}
.skip {
  position: absolute;
  left: 10px;
  top: -100px;
  z-index: 100;
  background: #fff;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}

/* Common parts */
.eyebrow {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.sec {
  padding: 56px var(--gutter);
}
.sec-lead {
  margin-top: 16px;
  font-size: 17px;
}
.sec-text {
  margin-top: 18px;
}
.sec-text.small {
  font-size: 15px;
  color: var(--muted);
  margin-top: 14px;
}
.sec-figure {
  margin: 24px auto 0;
  max-width: 420px;
}
.sec-photo {
  margin: 24px calc(var(--gutter) * -1) 0;
}
.sec-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 14px 20px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn svg {
  flex-shrink: 0;
}
.btn-outline {
  background: #fff;
  color: var(--ink);
}
/* Chapter heading: number stays at the left, eyebrow and title centered. */
.chap {
  position: relative;
  text-align: center;
}
.chap-no {
  display: block;
  width: 64px;
  font: 44px/1.1 Georgia,serif;
  color: #bdc8d0;
  border-top: 2px solid var(--accent);
  padding-top: 8px;
  min-width: 64px;
  text-align: center;
  margin-bottom: 14px;
}
.jump {
  margin-top: 26px;
}
.jump a {
  display: block;
  padding: 14px 16px;
  border: 1px solid #e3d3bd;
  border-radius: 6px;
  background: #fffaf3;
  color: var(--brown);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
}
.jump a span {
  margin-left: 6px;
}

/* Header */
.hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
  padding: 0 14px 0 var(--gutter);
  background: #fff;
  border-bottom: 1px solid #eef1f4;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.brand-emblem {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  line-height: 1.5;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: .04em;
  line-height: 1.4;
}
.hd-mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 50px;
  background: #edf3f8;
  border: 1px solid #d7e3ed;
  border-radius: 6px;
  text-decoration: none;
}
.hd-mail span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .02em;
}

/* Hero */
.hero {
  padding-bottom: 48px;
  text-align: center;
}
.hero-text {
  padding: 34px var(--gutter) 0;
}
.hero-eyebrow {
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.7;
}
.hero h1 {
  font-size: 38px;
  line-height: 1.45;
  margin-top: 14px;
}
.hero-frame {
  display: flex;
  flex-direction: column;
  margin: 18px auto 0;
  max-width: 330px;
  padding: 12px 0;
  border-top: 1px solid #bc955a;
  border-bottom: 1px solid #bc955a;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  color: #926120;
  letter-spacing: .03em;
}
.hero-photo {
  position: relative;
  margin-top: 28px;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: 62% center;
}
.hero-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px var(--gutter) 16px;
  background: linear-gradient(transparent,#15222dc7);
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}
.hero-bottom {
  padding-top: 26px;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.9;
}
.hero .btn {
  margin-top: 24px;
}

/* Worries */
.worries {
  background: #fbfaf7;
  border-top: 1px solid #efe9df;
}
.worries h2 {
  font-size: 26px;
}
.worries > .eyebrow,
.worries > h2 {
  text-align: center;
}
.worry-list {
  margin-top: 26px;
  border-top: 1px solid #c5d0d8;
}
.worry-list li {
  position: relative;
  padding: 15px 0 15px 44px;
  border-bottom: 1px solid #c5d0d8;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.worry-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  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/18px no-repeat;
}
.worry-note {
  margin-top: 22px;
  font-weight: 700;
  text-align: center;
}

/* Guide */
.guide {
  position: relative;
  isolation: isolate;
  text-align: center;
  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,.9),rgba(255,251,245,.7) 40%,rgba(255,251,245,.85));
}
.guide .eyebrow {
  color: #8a5a22;
}
.guide .sec-lead {
  font-weight: 600;
}
.guide-cards {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  text-align: left;
}
.guide-cards a {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 12px;
  align-items: start;
  position: relative;
  padding: 20px 44px 20px 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(70,50,25,.1);
  text-decoration: none;
}
.gc-no {
  grid-row: span 2;
  font: 32px/1.1 Georgia,serif;
  color: var(--accent);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent);
  text-align: center;
}
.guide-cards strong {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
}
.gc-text {
  grid-column: 2;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.75;
  color: #3a4a57;
}
.gc-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  line-height: 26px;
  text-align: center;
}
.guide-note {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
}

/* 01 Legal */
.deadlines {
  margin: 30px calc(var(--gutter) * -1) 0;
  padding: 26px var(--gutter);
  background: var(--pale);
}
.deadlines h3 {
  font-family: var(--serif);
  font-size: 21px;
}
.deadlines ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.deadlines li {
  background: #fff;
  border-radius: 6px;
  padding: 12px 14px 14px;
}
.deadlines .term {
  display: block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}
.deadlines .term b {
  font: 34px/1.15 Georgia,serif;
  margin-right: 2px;
}
.deadlines strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 6px;
}
.deadlines small {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 6px;
}
.deadlines-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}
.sub-head {
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.steps8 {
  counter-reset: none;
}
.steps8 li {
  position: relative;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid var(--line);
}
.steps8 li:before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #cfd8df;
}
.steps8 li:first-child:before {
  top: 24px;
}
.steps8 li:last-child:before {
  bottom: auto;
  height: 24px;
}
.s-no {
  position: absolute;
  left: 0;
  top: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #d8b584;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font: 600 9px/1 var(--serif);
  letter-spacing: .1em;
}
.s-no b {
  font: 600 19px/1.1 Georgia,serif;
  letter-spacing: 0;
  margin-top: 2px;
}
.steps8 h4 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  padding-top: 2px;
}
.steps8 p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 6px;
}
.steps8 p strong {
  color: var(--brown);
}
.alert {
  margin-top: 14px;
  background: var(--beige);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
}
.alert strong {
  display: block;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.6;
}
.steps8 .alert p {
  font-size: 15px;
  margin-top: 6px;
}
.expert {
  margin-top: 30px;
  background: var(--pale);
  border-radius: 6px;
  padding: 18px 18px 20px;
}
.expert h3 {
  font-size: 17px;
}
.expert p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 6px;
}

/* 02 Future */
.future {
  background: #fbfaf7;
  border-top: 1px solid #efe9df;
}
.options {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}
.options article {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(28,51,70,.05);
}
.options h3 {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
}
.op-desc {
  font-size: 15px;
  color: var(--muted);
  padding: 12px 18px 0;
}
.op-do,
.op-warn {
  position: relative;
  font-size: 16px;
  line-height: 1.75;
  margin: 10px 18px 0;
  padding-left: 30px;
}
.op-warn {
  margin: 10px 0 0;
  padding: 12px 18px 14px 48px;
  background: var(--beige);
  border-top: 1px solid #efe3d2;
}
.op-do:before,
.op-warn:before,
.lg-do:before,
.lg-warn:before {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font: 700 12px/20px sans-serif;
  text-align: center;
}
.op-do:before,
.lg-do:before {
  content: '✓';
  background: var(--ink);
}
.op-warn:before,
.lg-warn:before {
  content: '!';
  background: var(--gold);
}
.op-do:before {
  left: 0;
  top: .2em;
}
.op-do {
  margin-bottom: 12px;
}
.op-warn:before {
  left: 18px;
  top: calc(12px + .2em);
}
.op-legend {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.lg-do,
.lg-warn {
  position: relative;
  padding-left: 26px;
}
.lg-do:before,
.lg-warn:before {
  left: 0;
  top: 0;
}

/* 03 Belongings */
.num-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 21px;
  margin-top: 44px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.num-head em {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font: 600 15px/30px Georgia,var(--serif);
  font-style: normal;
  text-align: center;
}
.scenes {
  margin-top: 14px;
}
.scenes div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.scenes dt {
  display: inline-block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  background: var(--pale);
  padding: 1px 12px;
  border-radius: 4px;
}
.scenes dd {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 6px;
}
.judge {
  margin-top: 16px;
  border-radius: 8px;
  padding: 18px 18px 20px;
}
.judge h4 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-family: var(--serif);
  font-size: 20px;
}
.judge h4 i {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font: 700 14px/26px sans-serif;
  text-align: center;
}
.judge h4 small {
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  width: 100%;
  padding-left: 36px;
  margin-top: -4px;
}
.judge ul {
  margin-top: 10px;
}
.judge li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px dashed #d6dde3;
}
.judge li:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 1.1em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}
.judge-ok {
  border: 1px solid var(--ink);
  background: #fff;
}
.judge-ok h4 i {
  background: var(--ink);
}
.judge-wait {
  background: var(--beige);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.judge-wait h4 {
  color: var(--brown);
}
.judge-wait h4 i {
  background: var(--gold);
}
.judge-wait li {
  border-top-color: #eadcc6;
}
.judge-wait li:before {
  background: var(--gold);
}
.still {
  margin-top: 16px;
  background: var(--pale);
  border-radius: 8px;
  padding: 16px 18px 18px;
}
.still > strong {
  display: block;
  font-size: 16px;
  line-height: 1.6;
}
.still ul {
  margin-top: 8px;
}
.still li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
}
.still li + li {
  margin-top: 4px;
}
.still li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--ink);
}
.still small {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.method {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(28,51,70,.05);
}
.method h4 {
  display: table;
  font-family: var(--serif);
  font-size: 20px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 10px;
}
.method p {
  font-size: 16px;
  line-height: 1.75;
}
.m-where {
  font-size: 14px !important;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 4px;
}
.m-cost {
  margin: 14px 0 0;
  text-align: center;
  padding: 12px;
  background: #fffaf3;
  border: 1px solid #ecdcc4;
  border-radius: 6px;
}
.m-cost small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.m-cost b {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.4;
  color: var(--brown);
}
.method .m-warn {
  position: relative;
  margin: 14px -18px 0;
  padding: 12px 18px 14px 48px;
  background: var(--beige);
  font-size: 15px;
}
.method .m-warn:before {
  content: '!';
  position: absolute;
  left: 18px;
  top: calc(12px + .2em);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font: 700 12px/20px sans-serif;
  text-align: center;
}
.calc {
  margin-top: 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 16px 20px 18px;
}
.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #d8b584;
  margin-bottom: 6px;
}
.calc p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--serif);
  padding: 6px 0;
}
.calc p span {
  font-size: 16px;
}
.calc p b {
  font-size: 22px;
  font-weight: 600;
}
.calc-minus {
  border-bottom: 1px solid rgba(255,255,255,.4);
}
.calc-total b,
.calc-total span {
  color: #d8b584;
}
.calc-total b {
  font-size: 28px !important;
}
.sellable {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid #ecdcc4;
  border-radius: 8px;
}
.sellable .calc-label {
  color: var(--brown);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tags li {
  font-size: 14px;
  line-height: 1.5;
  color: #3a4a57;
  background: #fffaf3;
  border: 1px solid #ecdcc4;
  border-radius: 999px;
  padding: 4px 11px;
}

/* Wood Life */
.wl {
  background: var(--pale);
  border-top: 1px solid #dfe6ec;
  padding: 56px var(--gutter);
}
.wl > .eyebrow,
.wl > h2 {
  text-align: center;
}
.wl h2 {
  font-size: 26px;
  line-height: 1.6;
}
.wl-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  text-align: center;
}
.wl-photo img {
  width: 140px;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(70,50,25,.12);
  flex-shrink: 0;
}
.wl-photo strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .12em;
}
.wl-photo span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 4px;
}
.wl-text {
  margin-top: 18px;
  font-size: 16px;
}
.wl-points {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.wl-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #dfe6ec;
  border-radius: 8px;
  padding: 14px 16px;
}
.wl-points i {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1e6d3;
  color: var(--accent);
}
.wl-points svg {
  width: 22px;
  height: 22px;
}
.wl-points strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}
.wl-points span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.wl .btn {
  margin-top: 24px;
}
.wl-link {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* Flow */
.flow {
  background: #f9f4ea;
  border-top: 1px solid #eadfcd;
  padding: 56px var(--gutter);
  text-align: center;
}
.flow h2 {
  font-size: 25px;
}
.flow-steps {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  text-align: left;
}
.flow-steps li {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(120,90,40,.07);
}
.flow-steps img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: center 35%;
}
.flow-steps div {
  padding: 14px 18px 18px;
}
.flow-steps span {
  font: 600 22px/1.2 Georgia,var(--serif);
  color: var(--accent);
}
.flow-steps h3 {
  display: inline;
  margin-left: 10px;
  font-family: var(--serif);
  font-size: 19px;
}
.flow-steps p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a4a57;
  margin-top: 8px;
}
.flow-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  text-align: left;
}

/* Contact */
.contact {
  background: #f8eadf;
  border-top: 1px solid #ecd3c0;
  padding: 56px var(--gutter) 60px;
}
.c-head {
  text-align: center;
}
.c-badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #9a5a2e;
  padding-bottom: 3px;
  border-bottom: 1px solid #c98f63;
}
.c-head h2 {
  font-size: 25px;
  line-height: 1.6;
  margin-top: 12px;
}
.c-info {
  margin-top: 20px;
  background: #fffaf6;
  border: 1px solid #ecd3c0;
  border-radius: 6px;
  padding: 14px 16px;
  text-align: left;
}
.c-info strong {
  display: block;
  font-size: 16px;
  text-align: center;
}
.c-info p {
  color: #6a5a4e;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 4px;
}
.contact form {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #ecd3c0;
  border-radius: 8px;
  padding: 26px 18px 22px;
  box-shadow: 0 8px 24px rgba(120,70,40,.08);
}
.field {
  margin-bottom: 24px;
}
.field > label {
  display: block;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.field label span,
.field label em {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
  vertical-align: 2px;
}
.field label span {
  background: var(--ink);
  color: #fff;
  padding: 2px 8px;
}
.field label em {
  color: var(--muted);
}
input:not([type=checkbox]),
textarea,
select {
  width: 100%;
  border: 1px solid #aebdc8;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  min-height: 54px;
  font-size: 17px;
}
select {
  -webkit-appearance: none;
  appearance: none;
  background: #fff 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'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center/18px no-repeat;
  padding-right: 42px;
}
textarea {
  min-height: 170px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #697681;
  opacity: 1;
}
.field small {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 6px;
  color: var(--muted);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.75;
}
.consent input {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--ink);
}
.submit {
  margin-top: 22px;
  min-height: 64px;
  font-size: 18px;
}
.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.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: 22px;
  background: #fff;
}
.preview-notice[hidden] {
  display: none;
}

/* Details (collapsible) */
.details {
  background: #fbfaf7;
  border-top: 1px solid #ece6dc;
  padding: 56px var(--gutter) 60px;
}
.details h2 {
  font-size: 25px;
}
.dt-lead {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
}
.dt-group {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.dt-group small {
  display: block;
  font-family: 'Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.details details {
  border-bottom: 1px solid var(--line);
}
.details summary {
  position: relative;
  display: block;
  padding: 16px 40px 16px 38px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}
.details summary::-webkit-details-marker {
  display: none;
}
.details summary:after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background: #fff 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.2' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center/14px no-repeat;
  border: 1px solid #c5d0d8;
}
.details details[open] summary:after {
  background-image: 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.2' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E");
}
.dt-no {
  position: absolute;
  left: 0;
  top: 19px;
  font: 600 14px/1.4 Georgia,var(--serif);
  color: var(--accent);
  letter-spacing: .05em;
}
.dt-body {
  padding: 0 0 18px;
}
.dt-body p {
  font-size: 16px;
  line-height: 1.85;
}
.dt-body p + p {
  margin-top: 8px;
}
.dt-body strong {
  color: var(--brown);
}
.dt-src a {
  display: inline-block;
  margin: 4px 18px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.dt-dl dt {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  margin-top: 10px;
}
.dt-dl dt:first-child {
  margin-top: 0;
}
.dt-dl dd {
  font-size: 15px;
  color: var(--muted);
}
.dt-note {
  margin-top: 24px;
}

/* Dialog */
dialog {
  width: calc(100% - 24px);
  max-width: 560px;
  max-height: 88vh;
  border: 0;
  border-radius: 10px;
  padding: 0;
  color: var(--ink);
}
dialog::backdrop {
  background: #152533aa;
}
.dialog-inner {
  padding: 24px 18px;
}
.dialog-inner h2 {
  font-size: 22px;
}
#review-values {
  margin: 18px 0;
}
#review-values dt {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
#review-values dd {
  margin: 2px 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 16px;
}
#review-status:empty {
  display: none;
}
.dialog-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.btn-sub {
  min-height: 52px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* Sub pages: privacy / thanks */
.page {
  padding: 40px var(--gutter) 56px;
}
.page h1 {
  font-size: 27px;
  line-height: 1.5;
}
.page h2 {
  font-size: 18px;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.page p {
  font-size: 16px;
  margin-top: 14px;
}
.page ul {
  margin-top: 12px;
}
.page li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.8;
}
.page li + li {
  margin-top: 4px;
}
.page li:before {
  content: '';
  position: absolute;
  left: 3px;
  top: .8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.page a:not(.btn) {
  overflow-wrap: anywhere;
}
.page-box {
  margin-top: 14px;
  background: var(--pale);
  border-radius: 6px;
  padding: 14px 16px;
}
.page-box strong {
  display: block;
  font-size: 15px;
  line-height: 1.6;
}
.page-box p {
  font-size: 15px;
  margin-top: 6px;
}
.page-btn {
  margin-top: 32px;
}
.page-done {
  text-align: center;
  padding-top: 48px;
  min-height: calc(100vh - 64px - 80px);
}
.page-done p:not(.eyebrow) {
  text-align: left;
}
.page-done + .ft {
  padding: 18px var(--gutter);
}
.page-done + .ft .copyright {
  margin-top: 0;
}
.done-mark {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f1e6d3;
  color: var(--accent);
  margin-bottom: 18px;
}
.page-gy .done-mark {
  background: #e4ecf2;
  color: var(--ink);
}

/* Gyoseishoshi contact page: pale blue-grey to set it apart from Wood Life. */
.c-head h1 {
  font-size: 24px;
  line-height: 1.6;
  margin-top: 12px;
}
.contact-gy {
  background: var(--pale);
  border-top: 1px solid #dfe6ec;
}
.contact-gy .c-badge {
  color: var(--brown);
  border-bottom-color: var(--gold);
}
.contact-gy .c-info {
  background: #fff;
  border-color: var(--line);
}
.contact-gy .c-info p {
  color: var(--muted);
}
.contact-gy form {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(28,51,70,.07);
}
.gy-notes {
  margin-top: 20px;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
}
.gy-notes p {
  font-size: 15px;
  line-height: 1.8;
}
.gy-notes p + p {
  margin-top: 8px;
}
.gy-notes a {
  font-weight: 700;
}

/* Footer */
.ft {
  background: var(--ink);
  color: #fff;
  padding: 40px var(--gutter) 32px;
  font-size: 14px;
  line-height: 1.8;
}
.ft p {
  margin-top: 16px;
}
.ft-wl a {
  font-weight: 700;
}
.ft-links {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.ft-links li {
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.ft-links a {
  display: block;
  padding: 13px 0;
  text-decoration: none;
  font-size: 15px;
}
.ft .copyright {
  font-size: 12px;
  color: #c3cbd3;
  margin-top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Contact: telephone for Wood Life, under the form (tap to call). */
.tel-box {
  margin: 20px 0 0;
  padding: 18px 16px 20px;
  background: #fffaf6;
  border: 1px solid #ecd3c0;
  border-radius: 10px;
  text-align: center;
}
.tel-box strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  color: #1c3346;
}
.tel-name {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
}
.tel-num {
  margin-top: 10px;
}
.tel-num a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  background: #fff;
  border: 2px solid #1c3346;
  border-radius: 8px;
  font-size: 30px;
  font-weight: 700;
  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: 8px;
  font-size: 15px;
  color: var(--muted);
}
