:root {
  --home-ink: #172522;
  --home-green: #165d4b;
  --home-green-dark: #0d4739;
  --home-green-soft: #eaf4ef;
  --home-coral: #d94b43;
  --home-coral-dark: #ad302d;
  --home-coral-soft: #fff0ec;
  --home-sky: #dceff5;
  --home-yellow: #e6b83f;
  --home-paper: #fffefa;
  --home-rule: #d8ded9;
  --home-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --home-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --home-max: 1200px;
}

.home-page {
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: var(--home-sans);
  line-height: 1.75;
}

.home-page img {
  border-radius: 0;
}

.home-page .site-header--home {
  background: rgba(255, 254, 250, 0.97);
  border-bottom: 1px solid rgba(22, 93, 75, 0.18);
  backdrop-filter: blur(10px);
}

.home-page .site-header__inner {
  display: grid;
  grid-template-columns: minmax(280px, auto) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  width: min(100% - 2.5rem, var(--home-max));
  min-height: 76px;
  padding: 0.65rem 0;
}

.home-page .site-logo {
  color: var(--home-green-dark);
  font-family: var(--home-serif);
  font-size: clamp(1.2rem, 2.1vw, 1.72rem);
  font-weight: 700;
  line-height: 1.35;
}

.home-page .site-logo:hover {
  color: var(--home-coral-dark);
}

.home-page .global-nav {
  justify-content: flex-end;
  gap: 0;
}

.home-page .global-nav a {
  min-height: 2.5rem;
  padding: 0.4rem 0.72rem;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--home-ink);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.home-page .global-nav a:hover {
  border-bottom-color: var(--home-coral);
  background: transparent;
  color: var(--home-coral-dark);
}

.home-container {
  width: min(100% - 2.5rem, var(--home-max));
  margin-inline: auto;
}

.journey-hero {
  position: relative;
  min-height: 580px;
  aspect-ratio: 1942 / 809;
  overflow: hidden;
  background: var(--home-sky);
  border-bottom: 1px solid rgba(22, 93, 75, 0.16);
}

.journey-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.journey-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 980px);
  margin-inline: auto;
  padding-top: clamp(2.4rem, 5.2vw, 5rem);
  text-align: center;
}

.journey-hero__copy h1 {
  margin: 0;
  color: #111c1a;
  font-family: var(--home-serif);
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.24;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 18px rgba(255, 255, 255, 0.78);
}

.journey-hero__copy p {
  margin: 0.8rem 0 0;
  color: #1e2c29;
  font-family: var(--home-serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  text-shadow: 0 1px 0 #fff, 0 0 12px rgba(255, 255, 255, 0.9);
}

.home-paths {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100% - 2.5rem, 980px);
  margin: -3.4rem auto 0;
  background: var(--home-paper);
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
}

.home-path {
  position: relative;
  display: grid;
  gap: 0.12rem;
  min-height: 134px;
  padding: 1.25rem clamp(1.2rem, 4vw, 2.7rem);
  color: var(--home-ink);
  text-decoration: none;
}

.home-path:first-child {
  border-right: 1px solid var(--home-rule);
}

.home-path::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.home-path:hover::after {
  transform: translate(0.25rem, -50%);
}

.home-path span,
.home-path small {
  color: #596762;
  font-size: 0.84rem;
}

.home-path strong {
  padding-right: 2.4rem;
  font-family: var(--home-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.45;
}

.home-path--konkatsu {
  border-top: 4px solid var(--home-green);
}

.home-path--konkatsu strong,
.home-path--konkatsu::after {
  color: var(--home-green-dark);
}

.home-path--preparation {
  border-top: 4px solid var(--home-coral);
}

.home-path--preparation strong,
.home-path--preparation::after {
  color: var(--home-coral-dark);
}

.home-path--konkatsu:hover {
  background: var(--home-green-soft);
}

.home-path--preparation:hover {
  background: var(--home-coral-soft);
}

.home-stage-section {
  padding-block: clamp(3.8rem, 7vw, 6rem) clamp(3.3rem, 6vw, 5rem);
}

.home-section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 1.4rem;
  text-align: center;
}

.home-section-heading p,
.home-guide__header p {
  margin: 0 0 0.25rem;
  color: var(--home-green);
  font-family: var(--home-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-section-heading h2,
.home-guide__header h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--home-serif);
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 700;
}

.home-section-heading span {
  margin-top: 0.45rem;
  color: #65716d;
  font-size: 0.91rem;
}

.home-stage-art {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 53%;
}

.home-stage-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
}

.home-stage-list a {
  display: grid;
  align-content: start;
  min-height: 148px;
  padding: 1rem;
  border-right: 1px solid var(--home-rule);
  color: var(--home-ink);
  text-decoration: none;
}

.home-stage-list a:last-child {
  border-right: 0;
}

.home-stage-list a:hover {
  background: var(--home-green-soft);
}

.home-stage-list b {
  color: var(--home-green);
  font-family: var(--home-serif);
  font-size: 1.12rem;
}

.home-stage-list strong {
  margin-top: 0.22rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-stage-list span {
  margin-top: 0.3rem;
  color: #64706c;
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-guides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(4.2rem, 8vw, 7rem);
}

.home-guide {
  min-width: 0;
  border-top: 3px solid var(--home-green);
}

.home-guide--preparation {
  border-top-color: var(--home-coral);
}

.home-guide__header {
  padding: 1.35rem 0 1.15rem;
  border-bottom: 1px solid var(--home-rule);
}

.home-guide__header h2 {
  color: var(--home-green-dark);
}

.home-guide--preparation .home-guide__header h2,
.home-guide--preparation .home-guide__header p {
  color: var(--home-coral-dark);
}

.home-guide__header span {
  display: block;
  margin-top: 0.35rem;
  color: #5f6b67;
  font-size: 0.88rem;
}

.home-guide__body {
  display: grid;
  grid-template-columns: minmax(145px, 0.7fr) minmax(0, 1.3fr);
  gap: 1.25rem;
  padding-block: 1.35rem;
}

.home-guide__body > img {
  width: 100%;
  height: 100%;
  min-height: 395px;
  object-fit: cover;
  object-position: center center;
}

.home-guide__body ul {
  min-width: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-rule);
  list-style: none;
}

.home-guide__body li {
  margin: 0;
  border-bottom: 1px solid var(--home-rule);
}

.home-guide__body a {
  position: relative;
  display: grid;
  gap: 0.16rem;
  padding: 0.72rem 1.5rem 0.72rem 0;
  color: var(--home-ink);
  text-decoration: none;
}

.home-guide__body a::after {
  content: "\203a";
  position: absolute;
  top: 50%;
  right: 0.15rem;
  color: var(--home-green);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.home-guide--preparation .home-guide__body a::after {
  color: var(--home-coral);
}

.home-guide__body a:hover strong {
  color: var(--home-green-dark);
}

.home-guide--preparation .home-guide__body a:hover strong {
  color: var(--home-coral-dark);
}

.home-guide__body strong {
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-guide__body span {
  color: #68736f;
  font-size: 0.76rem;
  line-height: 1.55;
}

.home-guide__more {
  display: block;
  padding: 0.78rem 0;
  border-top: 1px solid var(--home-green);
  border-bottom: 1px solid var(--home-green);
  color: var(--home-green-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.home-guide--preparation .home-guide__more {
  border-color: var(--home-coral);
  color: var(--home-coral-dark);
}

.home-guide__more:hover {
  background: var(--home-green-soft);
}

.home-guide--preparation .home-guide__more:hover {
  background: var(--home-coral-soft);
}

.home-features {
  border-top: 1px solid var(--home-rule);
  background: #f5f8f5;
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
}

.home-section-heading--compact {
  margin-bottom: 1.8rem;
}

.home-section-heading--compact h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.home-feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
  background: var(--home-paper);
}

.home-feature-list a {
  display: grid;
  gap: 0.28rem;
  min-height: 126px;
  padding: 1.1rem;
  border-right: 1px solid var(--home-rule);
  color: var(--home-ink);
  text-decoration: none;
}

.home-feature-list a:last-child {
  border-right: 0;
}

.home-feature-list a:hover {
  background: #fff7da;
}

.home-feature-list strong {
  color: var(--home-green-dark);
  font-family: var(--home-serif);
  font-size: 1.05rem;
}

.home-feature-list span {
  color: #69736f;
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-updated {
  margin: 1rem 0 0;
  color: #737d79;
  font-size: 0.78rem;
  text-align: right;
}

.home-page .site-footer {
  border-top: 4px solid var(--home-yellow);
  background: var(--home-paper);
}

@media (max-width: 1080px) {
  .home-page .site-header__inner {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .home-page .global-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .journey-hero {
    min-height: 520px;
  }

  .home-guide__body {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .home-guide__body > img {
    min-height: 430px;
  }
}

@media (max-width: 820px) {
  .home-page .site-header--home {
    position: sticky;
  }

  .home-page .site-header__inner,
  .home-container {
    width: min(100% - 1.5rem, var(--home-max));
  }

  .home-page .site-logo {
    font-size: 1.25rem;
  }

  .journey-hero {
    min-height: 500px;
    aspect-ratio: auto;
  }

  .journey-hero__image {
    object-position: 51% center;
  }

  .journey-hero__copy {
    width: min(100% - 1.5rem, 680px);
    padding-top: 2rem;
  }

  .journey-hero__copy h1 {
    max-width: 13em;
    margin-inline: auto;
    font-size: clamp(2rem, 8.4vw, 3.15rem);
  }

  .home-paths {
    width: min(100% - 1.5rem, 680px);
  }

  .home-stage-art {
    height: 170px;
  }

  .home-stage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stage-list a {
    min-height: 126px;
    border-bottom: 1px solid var(--home-rule);
  }

  .home-stage-list a:nth-child(2n) {
    border-right: 0;
  }

  .home-stage-list a:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .home-guides {
    grid-template-columns: 1fr;
  }

  .home-guide__body {
    grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1.38fr);
  }

  .home-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-feature-list a:nth-child(2) {
    border-right: 0;
  }

  .home-feature-list a:nth-child(-n+2) {
    border-bottom: 1px solid var(--home-rule);
  }
}

@media (max-width: 560px) {
  .home-page .site-header__inner {
    width: calc(100% - 1rem);
    min-height: 0;
    padding: 0.58rem 0 0.4rem;
  }

  .home-page .global-nav a {
    min-height: 2.25rem;
    padding: 0.3rem 0.58rem;
    font-size: 0.78rem;
  }

  .journey-hero {
    min-height: 430px;
  }

  .journey-hero__image {
    object-position: 52% center;
  }

  .journey-hero__copy {
    padding-top: 1.45rem;
  }

  .journey-hero__copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .journey-hero__copy p {
    max-width: 18rem;
    margin-inline: auto;
    font-size: 0.94rem;
  }

  .home-paths {
    grid-template-columns: 1fr;
    margin-top: -2.2rem;
  }

  .home-path {
    min-height: 112px;
    padding: 0.95rem 1.1rem;
  }

  .home-path:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--home-rule);
  }

  .home-path strong {
    font-size: 1.4rem;
  }

  .home-stage-section {
    padding-block: 3.4rem;
  }

  .home-stage-art {
    display: none;
  }

  .home-stage-list {
    grid-template-columns: 1fr;
  }

  .home-stage-list a,
  .home-stage-list a:nth-child(2n),
  .home-stage-list a:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 0.9rem 0.75rem;
    border-right: 0;
    border-bottom: 1px solid var(--home-rule);
  }

  .home-stage-list a:last-child {
    border-bottom: 0;
  }

  .home-stage-list b {
    grid-row: 1 / 3;
    margin-right: 0.8rem;
  }

  .home-stage-list a {
    grid-template-columns: auto 1fr;
  }

  .home-stage-list span {
    grid-column: 2;
  }

  .home-guides {
    width: min(100% - 1.5rem, var(--home-max));
    gap: 3.6rem;
  }

  .home-guide__body {
    grid-template-columns: 1fr;
  }

  .home-guide__body > img {
    width: 100%;
    height: 230px;
    min-height: 0;
    object-position: center 42%;
  }

  .home-guide--preparation .home-guide__body > img {
    object-position: center 64%;
  }

  .home-feature-list {
    grid-template-columns: 1fr;
  }

  .home-feature-list a,
  .home-feature-list a:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-rule);
  }

  .home-feature-list a:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-path::after {
    transition: none;
  }
}

/* 2026 split-entry home */
.choice-intro {
  width: min(100% - 2.5rem, 920px);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5.4rem) 0 clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.choice-intro__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--home-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.choice-intro h1 {
  max-width: none;
  margin: 0;
  color: var(--home-ink);
  font-family: var(--home-serif);
  font-size: 4.2rem;
  line-height: 1.3;
}

.choice-intro > p:last-child {
  max-width: 38rem;
  margin: 0.85rem auto 0;
  color: #5d6965;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}

.choice-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100% - 2.5rem, var(--home-max));
  margin-inline: auto;
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
}

.choice-route {
  min-width: 0;
  background: var(--home-paper);
}

.choice-route + .choice-route {
  border-left: 1px solid var(--home-rule);
}

.choice-route__visual {
  height: clamp(270px, 33vw, 430px);
  overflow: hidden;
  border-top: 5px solid var(--home-green);
  border-bottom: 1px solid var(--home-rule);
  background: var(--home-green-soft);
}

.choice-route--preparation .choice-route__visual {
  border-top-color: var(--home-coral);
  background: var(--home-coral-soft);
}

.choice-route__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
  transition: transform 300ms ease;
}

.choice-route--preparation .choice-route__visual img {
  object-position: center 57%;
}

.choice-route:has(.choice-route__button:hover) .choice-route__visual img {
  transform: scale(1.015);
}

.choice-route__content {
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.choice-route__eyebrow {
  margin: 0;
  color: var(--home-green);
  font-size: 0.78rem;
  font-weight: 800;
}

.choice-route--preparation .choice-route__eyebrow {
  color: var(--home-coral-dark);
}

.choice-route h2 {
  margin: 0.15rem 0 0.65rem;
  padding: 0;
  border: 0;
  color: var(--home-green-dark);
  font-family: var(--home-serif);
  font-size: 3.25rem;
}

.choice-route h2::before {
  content: none;
}

.choice-route--preparation h2 {
  color: var(--home-coral-dark);
}

.choice-route__content > p:not(.choice-route__eyebrow) {
  min-height: 5.3rem;
  margin-bottom: 1.15rem;
  color: #53605c;
  font-size: 0.94rem;
}

.choice-route__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-rule);
  list-style: none;
}

.choice-route__steps li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  margin: 0;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--home-rule);
  color: #35413d;
  font-size: 0.9rem;
}

.choice-route__steps span {
  color: var(--home-green);
  font-family: var(--home-serif);
  font-size: 1rem;
  font-weight: 700;
}

.choice-route--preparation .choice-route__steps span {
  color: var(--home-coral-dark);
}

.choice-route__topics {
  margin-top: 2rem;
}

.choice-route__topics h3 {
  margin: 0 0 0.75rem;
  color: var(--home-green-dark);
  font-family: var(--home-serif);
  font-size: 1.18rem;
  line-height: 1.5;
}

.choice-route--preparation .choice-route__topics h3 {
  color: var(--home-coral-dark);
}

.choice-route__topics ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-rule);
  list-style: none;
}

.choice-route__topics li {
  min-width: 0;
  margin: 0;
  border-bottom: 1px solid var(--home-rule);
}

.choice-route__topics li:nth-child(odd) {
  border-right: 1px solid var(--home-rule);
}

.choice-route__topics a {
  position: relative;
  display: grid;
  gap: 0.1rem;
  min-height: 5.25rem;
  padding: 0.75rem 2rem 0.75rem 0.7rem;
  color: var(--home-ink);
  text-decoration: none;
}

.choice-route__topics a::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  color: var(--home-green);
  font-size: 1rem;
  transform: translateY(-50%);
}

.choice-route--preparation .choice-route__topics a::after {
  color: var(--home-coral-dark);
}

.choice-route__topics a:hover {
  background: var(--home-green-soft);
  color: var(--home-green-dark);
}

.choice-route--preparation .choice-route__topics a:hover {
  background: var(--home-coral-soft);
  color: var(--home-coral-dark);
}

.choice-route__topics span {
  color: var(--home-green);
  font-size: 0.71rem;
  font-weight: 800;
}

.choice-route--preparation .choice-route__topics span {
  color: var(--home-coral-dark);
}

.choice-route__topics strong {
  font-size: 0.87rem;
  line-height: 1.55;
}

.choice-route__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
  margin-top: 1.3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--home-green);
  background: var(--home-green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.choice-route__button::after {
  content: "\2192";
  font-size: 1.3rem;
}

.choice-route__button:hover {
  background: var(--home-green-dark);
  color: #fff;
}

.choice-route--preparation .choice-route__button {
  border-color: var(--home-coral-dark);
  background: var(--home-coral-dark);
}

.choice-route--preparation .choice-route__button:hover {
  background: #8f2725;
}

.home-about {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
  background: #f5f7f3;
}

.home-about__visual {
  height: clamp(220px, 31vw, 410px);
  overflow: hidden;
  background: var(--home-sky);
}

.home-about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.home-about__inner {
  width: min(100% - 2.5rem, 1040px);
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.home-about__header {
  max-width: 48rem;
}

.home-about__header > p:first-child {
  margin: 0 0 0.35rem;
  color: var(--home-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.home-about__header h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--home-ink);
  font-family: var(--home-serif);
  font-size: 2.8rem;
  line-height: 1.4;
}

.home-about__header > p:last-child {
  margin: 0.85rem 0 0;
  color: #53605c;
}

.home-about__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
  border-top: 1px solid #cbd3ce;
  border-bottom: 1px solid #cbd3ce;
}

.home-about__points section {
  min-width: 0;
  padding: 1.4rem 1.5rem 1.5rem;
}

.home-about__points section + section {
  border-left: 1px solid #cbd3ce;
}

.home-about__number {
  margin: 0;
  color: var(--home-coral-dark);
  font-family: var(--home-serif);
  font-size: 1rem;
  font-weight: 700;
}

.home-about__points h3 {
  margin: 0.3rem 0 0.6rem;
  color: var(--home-ink);
  font-family: var(--home-serif);
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-about__points section > p:last-child {
  margin: 0;
  color: #596560;
  font-size: 0.88rem;
}

.home-about__operator {
  margin: 1.35rem 0 0;
  color: #596560;
  font-size: 0.86rem;
}

.home-about__operator a {
  color: var(--home-green-dark);
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.choice-updated {
  width: min(100% - 2.5rem, var(--home-max));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
  color: #737d79;
  font-size: 0.76rem;
  text-align: right;
}

@media (max-width: 760px) {
  .choice-intro,
  .choice-split,
  .choice-updated {
    width: min(100% - 1.5rem, var(--home-max));
  }

  .choice-intro {
    padding-top: 2.3rem;
  }

  .choice-intro h1 {
    font-size: 2.8rem;
  }

  .choice-split {
    grid-template-columns: 1fr;
  }

  .choice-route + .choice-route {
    margin-top: 2rem;
    border-left: 0;
    border-top: 1px solid var(--home-rule);
  }

  .choice-route__visual {
    height: 280px;
  }

  .choice-route__content > p:not(.choice-route__eyebrow) {
    min-height: 0;
  }

  .choice-route h2 {
    font-size: 2.6rem;
  }

  .home-about__header h2 {
    font-size: 2.15rem;
  }

  .home-about__inner {
    width: min(100% - 1.5rem, 1040px);
  }

  .home-about__points {
    grid-template-columns: 1fr;
  }

  .home-about__points section + section {
    border-top: 1px solid #cbd3ce;
    border-left: 0;
  }
}

@media (max-width: 460px) {
  .choice-intro,
  .choice-split,
  .choice-updated {
    width: calc(100% - 1rem);
  }

  .choice-intro__eyebrow {
    font-size: 0.64rem;
  }

  .choice-intro h1 {
    font-size: 2rem;
  }

  .choice-route__visual {
    height: 230px;
  }

  .choice-route__content {
    padding: 1.15rem 0.85rem 1.35rem;
  }

  .choice-route__topics ul {
    grid-template-columns: 1fr;
  }

  .choice-route__topics li:nth-child(odd) {
    border-right: 0;
  }

  .choice-route__topics a {
    min-height: 4.7rem;
  }

  .home-about__visual {
    height: 190px;
  }

  .home-about__inner {
    width: calc(100% - 1.5rem);
  }

  .home-about__points section {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .choice-route__visual img {
    transition: none;
  }
}
