@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("assets/fonts/zen-kaku-gothic-new-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("assets/fonts/zen-kaku-gothic-new-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --c-base: #FFFFFF;
  --c-surface: #EDF3EC;
  --c-text: #16211A;
  --c-text-muted: #5C6B60;
  --c-main: #1F4632;
  --c-on-main: #FFFFFF;
  --c-accent: #0E7A45;
  --c-on-accent: #FFFFFF;
  --c-line: #DCE5DA;

  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --content-width: 1160px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(72px, 10vw, 144px);
  --focus-ring: 3px solid var(--c-accent);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--c-base);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--c-main);
  color: var(--c-on-main);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-base);
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  width: min(var(--content-width), calc(100% - var(--page-gutter) * 2));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--c-main);
  color: var(--c-on-main);
}

.brand__mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand__name,
.brand__area {
  display: block;
}

.brand__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand__area {
  margin-top: 1px;
  color: var(--c-text-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  border: 1px solid var(--c-main);
  background: var(--c-base);
  color: var(--c-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--c-main);
  color: var(--c-on-main);
}

.section {
  width: min(var(--content-width), calc(100% - var(--page-gutter) * 2));
  margin: 0 auto;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section--surface {
  width: 100%;
  padding-right: max(var(--page-gutter), calc((100% - var(--content-width)) / 2));
  padding-left: max(var(--page-gutter), calc((100% - var(--content-width)) / 2));
  background: var(--c-surface);
}

.section--main {
  width: 100%;
  padding-right: max(var(--page-gutter), calc((100% - var(--content-width)) / 2));
  padding-left: max(var(--page-gutter), calc((100% - var(--content-width)) / 2));
  background: var(--c-main);
  color: var(--c-on-main);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
}

.eyebrow--light {
  color: var(--c-on-main);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: auto-phrase;   /* 日本語は文節で折る。孤立文字を作らない */
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.28;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(31px, 3.8vw, 55px);
  letter-spacing: 0.02em;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(26px, 3.1vw, 43px);
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(22px, 2.15vw, 32px);
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--accent {
  background: var(--c-accent);
  color: var(--c-on-accent);
}

.button--accent:hover {
  background: var(--c-main);
}

.button--outline {
  border-color: var(--c-main);
  background: var(--c-base);
  color: var(--c-main);
}

.button--outline:hover {
  background: var(--c-main);
  color: var(--c-on-main);
}

.button--full {
  width: 100%;
  cursor: pointer;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 84px));
  overflow: hidden;
  background: var(--c-base);
}

.hero__inner {
  display: grid;
  width: min(var(--content-width), calc(100% - var(--page-gutter) * 2));
  min-height: inherit;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero__lead {
  max-width: 33em;
  margin: 0;
  color: var(--c-text-muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero__actions {
  display: flex;
  margin-top: 35px;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__note {
  margin: 18px 0 0;
  color: var(--c-text-muted);
  font-size: 12px;
}

.hero__art {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  color: var(--c-main);
}


.hero-photo {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: var(--c-surface);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 52% 62%;
}

.hero__caption {
  position: absolute;
  right: 6%;
  bottom: 13%;
  max-width: 180px;
  padding: 14px 16px;
  border-left: 4px solid var(--c-accent);
  background: var(--c-base);
  color: var(--c-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 9vw, 152px);
}

.intro__heading h2 {
  margin-bottom: 0;
}

.intro__body {
  padding-top: 13px;
  border-top: 1px solid var(--c-main);
}

.intro__body p {
  margin: 0 0 24px;
  color: var(--c-text-muted);
}

.intro__body p:last-child {
  margin-bottom: 0;
}

.book__grid {
  display: grid;
  max-width: var(--content-width);
  margin: 0 auto;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(52px, 10vw, 156px);
}

.book__visual {
  position: relative;
  width: min(100%, 420px);
  min-height: 530px;
  margin: 0 auto;
}

.book-cover {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 22px;
  display: flex;
  width: 320px;
  min-height: 460px;
  padding: 29px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--c-main);
  color: var(--c-on-main);
  transform: rotate(-4deg);
}

.book-cover__label,
.book-cover__footer {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.book-cover__house {
  width: 100%;
  color: var(--c-on-main);
}

.book-cover__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.06em;
}

.book-sheet {
  position: absolute;
  width: 280px;
  height: 415px;
  border: 1px solid var(--c-line);
  background: var(--c-base);
}

.book-sheet--one {
  top: 56px;
  right: 1px;
  transform: rotate(7deg);
}

.book-sheet--two {
  top: 78px;
  right: 18px;
  background: var(--c-surface);
  transform: rotate(12deg);
}

.book__lead {
  max-width: 35em;
  margin: 0 0 32px;
  color: var(--c-text-muted);
}

.book-list {
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
  counter-reset: book-list;
}

.book-list li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 17px;
  border-top: 1px solid var(--c-line);
}

.book-list li:last-child {
  border-bottom: 1px solid var(--c-line);
}

.book-list__number {
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.book-list h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.book-list p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.performance__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: clamp(35px, 9vw, 150px);
}

.performance__top h2 {
  margin-bottom: 0;
}

.performance__intro {
  max-width: 31em;
  margin: 0 0 6px;
  color: var(--c-text-muted);
}

.performance__layout {
  display: grid;
  margin-top: clamp(42px, 6vw, 75px);
  grid-template-columns: 1.25fr 0.9fr;
  gap: 18px;
}

.performance-panel {
  min-height: 290px;
  padding: clamp(24px, 3vw, 40px);
}

.performance-panel--main {
  position: relative;
  overflow: hidden;
  background: var(--c-main);
  color: var(--c-on-main);
}

.performance-panel--light {
  background: var(--c-surface);
}

.performance-panel--outline {
  display: grid;
  min-height: 190px;
  grid-column: 1 / -1;
  grid-template-columns: 0.85fr 1fr 1fr;
  align-items: center;
  gap: 34px;
  border: 1px solid var(--c-line);
}

.performance-panel__kicker {
  margin: 0 0 15px;
  color: var(--c-text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.performance-panel--main .performance-panel__kicker {
  color: var(--c-on-main);
}

.performance-panel__number {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.performance-panel__number strong {
  margin-left: 6px;
  font-size: clamp(54px, 7vw, 85px);
  line-height: 1;
}

.performance-panel__copy {
  position: relative;
  z-index: 1;
  max-width: 30em;
  margin: 18px 0 0;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.performance-panel--main .performance-panel__copy {
  color: var(--c-on-main);
}

.performance-panel__svg {
  position: absolute;
  right: -22px;
  bottom: -1px;
  width: 89%;
  color: var(--c-on-main);
}

.scale {
  position: relative;
  height: 75px;
  margin-top: 46px;
}

.scale__line {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--c-main);
}

.scale__point {
  position: absolute;
  top: 10px;
  left: 30%;
  width: 17px;
  height: 17px;
  border: 4px solid var(--c-surface);
  border-radius: 50%;
  background: var(--c-accent);
}

.scale__label {
  position: absolute;
  top: 33px;
  color: var(--c-text-muted);
  font-size: 11px;
  line-height: 1.5;
}

.scale__label--left {
  left: 0;
}

.scale__label--right {
  right: 0;
  text-align: right;
}

.cost-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cost-list li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 14px;
}

.cost-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  content: "";
}

.homes__heading {
  display: grid;
  max-width: var(--content-width);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  column-gap: 100px;
}

.homes__heading h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.homes__heading > p:last-child {
  align-self: end;
  margin: 0 0 8px;
  color: var(--c-on-main);
}

.home-stories {
  max-width: var(--content-width);
  margin: clamp(50px, 7vw, 95px) auto 0;
}

.home-story {
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: stretch;
}

.home-story--reverse {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.home-story__illustration {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--c-on-main);
}

.home-story__illustration::before {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 28px;
  width: 46px;
  height: 1px;
  background: var(--c-on-main);
  content: "";
}

.home-story__illustration svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.home-story__illustration--one {
  background: var(--c-surface);
}

.home-story__illustration--two {
  background: var(--c-base);
}

.home-story__illustration--three {
  background: var(--c-surface);
}

.home-story__content {
  display: flex;
  padding: clamp(32px, 5vw, 68px);
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--c-on-main);
  border-bottom: 1px solid var(--c-on-main);
}

.home-story--reverse .home-story__content {
  border-right: 1px solid var(--c-on-main);
}

.home-story:not(.home-story--reverse) .home-story__content {
  border-left: 1px solid var(--c-on-main);
}

.home-story__type {
  margin: 0 0 18px;
  color: var(--c-on-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-story__content h3 {
  margin-bottom: 22px;
}

.home-story__content > p:not(.home-story__type):not(.home-story__meta) {
  margin: 0;
  color: var(--c-on-main);
  font-size: 15px;
}

.home-story__meta {
  margin: 27px 0 0;
  color: var(--c-on-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.homes__disclaimer {
  max-width: var(--content-width);
  margin: 25px auto 0;
  color: var(--c-on-main);
  font-size: 12px;
  line-height: 1.7;
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 10vw, 160px);
}

.promise__intro h2 {
  margin-bottom: 0;
}

.promise__list {
  border-top: 1px solid var(--c-main);
}

.promise-item {
  display: grid;
  padding: 30px 0 32px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--c-line);
}

.promise-item__number {
  color: var(--c-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.promise-item h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.promise-item p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 14px;
}

.request__grid {
  display: grid;
  max-width: var(--content-width);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.78fr) minmax(370px, 1fr);
  align-items: start;
  gap: clamp(45px, 9vw, 140px);
}

.request__intro {
  position: sticky;
  top: 30px;
}

.request__intro > p:not(.eyebrow) {
  max-width: 29em;
  margin: 0;
  color: var(--c-text-muted);
}

.request__guide {
  display: flex;
  margin-top: 35px;
  padding-top: 25px;
  align-items: flex-start;
  gap: 15px;
  border-top: 1px solid var(--c-main);
}

.request__guide svg {
  width: 34px;
  flex: 0 0 34px;
  color: var(--c-main);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.request__guide p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.request__guide strong {
  color: var(--c-text);
}

.form-wrap {
  padding: clamp(25px, 4vw, 46px);
  background: var(--c-base);
  border: 1px solid var(--c-line);
}

.form-message {
  display: none;
  margin-bottom: 24px;
  padding: 13px 16px;
  border-left: 4px solid var(--c-accent);
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  border-left-color: var(--c-main);
}

.field {
  margin-bottom: 25px;
}

.field label,
.fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 700;
}

.field label span[aria-hidden="true"],
.fieldset legend span[aria-hidden="true"] {
  color: var(--c-accent);
}

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 0;
  background: var(--c-base);
  color: var(--c-text);
  line-height: 1.5;
  transition: border-color 160ms ease, background 160ms ease;
}

.field input[type="text"],
.field input[type="email"],
.field select {
  min-height: 51px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 118px;
  padding: 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--c-text-muted);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--c-main);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border: 2px solid var(--c-main);
  background: var(--c-surface);
}

.field__hint {
  margin: 7px 0 0;
  color: var(--c-text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.field__error {
  min-height: 1.5em;
  margin: 5px 0 0;
  color: var(--c-main);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  position: relative;
  display: flex;
  min-height: 51px;
  align-items: center;
  padding: 10px 12px;
  gap: 10px;
  border: 1px solid var(--c-line);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.choice:has(input:checked) {
  border-color: var(--c-main);
  background: var(--c-surface);
}

.choice input,
.check-choice input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--c-accent);
  flex: 0 0 auto;
}

.conditional-fields {
  margin: -3px 0 25px;
  padding: 22px 20px 0;
  border-left: 3px solid var(--c-main);
  background: var(--c-surface);
}

.field--consent {
  margin-top: 28px;
  margin-bottom: 27px;
}

.check-choice {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.form-footnote {
  margin: 15px 0 0;
  color: var(--c-text-muted);
  font-size: 11px;
  line-height: 1.7;
}

.complete-panel {
  padding: 26px 0 4px;
}

.complete-panel__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--c-main);
  color: var(--c-on-main);
  font-size: 25px;
  font-weight: 700;
}

.complete-panel h3 {
  margin-bottom: 17px;
  font-size: 28px;
}

.complete-panel > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--c-text-muted);
  font-size: 15px;
}

.site-footer {
  background: var(--c-main);
  color: var(--c-on-main);
}

.site-footer__inner {
  display: flex;
  width: min(var(--content-width), calc(100% - var(--page-gutter) * 2));
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 36px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.site-footer p {
  margin: 0;
}

.site-footer__brand {
  margin-bottom: 3px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer__inner > div > p:last-child,
.site-footer__notice {
  color: var(--c-on-main);
  font-size: 11px;
  line-height: 1.7;
}

.site-footer__notice {
  max-width: 580px;
  text-align: right;
}

.art-base {
  fill: var(--c-base);
}

.art-surface {
  fill: var(--c-surface);
}

.art-main {
  fill: var(--c-main);
}

.art-accent {
  fill: var(--c-accent);
}

.art-line {
  fill: none;
  stroke: var(--c-main);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.art-line-light {
  fill: none;
  stroke: var(--c-on-main);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 72px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    display: block;
  }

  .hero__copy {
    padding-top: 62px;
    padding-bottom: 30px;
  }

  .hero__art {
    min-height: 430px;
  }

  .hero-photo img {
    min-height: 380px;
  }

  .intro,
  .book__grid,
  .performance__top,
  .promise,
  .request__grid {
    grid-template-columns: 1fr;
  }

  .book__grid,
  .request__grid {
    gap: 54px;
  }

  .performance__layout {
    grid-template-columns: 1fr;
  }

  .performance-panel--outline {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .homes__heading {
    grid-template-columns: 1fr;
  }

  .homes__heading > p:last-child {
    margin-top: 4px;
  }

  .home-story,
  .home-story--reverse {
    grid-template-columns: 1fr;
  }

  .home-story--reverse .home-story__illustration {
    grid-row: 1;
  }

  .home-story__illustration {
    min-height: 330px;
  }

  .home-story--reverse .home-story__content,
  .home-story:not(.home-story--reverse) .home-story__content {
    border-right: 1px solid var(--c-on-main);
    border-left: 1px solid var(--c-on-main);
  }

  .request__intro {
    position: static;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__notice {
    text-align: left;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 14px;
  }

  .brand__area {
    font-size: 10px;
  }

  .header-cta {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .hero__copy {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(28px, 8.4vw, 39px);
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 39px);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__art {
    min-height: 330px;
    margin-right: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
  }

  .hero-photo img {
    min-height: 300px;
  }

  .hero__caption {
    right: 6%;
    bottom: 7%;
    max-width: 152px;
    padding: 10px 11px;
    font-size: 11px;
  }

  .book__visual {
    min-height: 425px;
    transform: scale(0.83);
    transform-origin: top left;
    width: 121%;
    margin-bottom: -67px;
  }

  .book-cover {
    left: 0;
  }

  .book-sheet--one {
    right: 9px;
  }

  .book-sheet--two {
    right: 24px;
  }

  .performance-panel {
    min-height: 0;
  }

  .performance-panel__number strong {
    font-size: 62px;
  }

  .home-story__illustration {
    min-height: 255px;
  }

  .home-story__content {
    padding: 32px 24px;
  }

  .home-story__content h3 {
    font-size: 25px;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    margin-right: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
    padding: 25px 20px;
    border-right: 0;
    border-left: 0;
  }

  .conditional-fields {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
