:root {
  --blue: #1e88d6;
  --blue-dark: #0f4f8a;
  --orange: #f6a623;
  --green: #31a66a;
  --soft: #eaf7ff;
  --warm: #fff7e8;
  --ink: #1f2933;
  --muted: #627184;
  --line: #d7e4ec;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(22, 57, 88, .13);
  --radius: 8px;
  --wrap: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(215, 228, 236, .9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-weight: 800;
  line-height: 1.25;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: #344256;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.25;
  box-shadow: 0 12px 26px rgba(30, 136, 214, .2);
}

.nowrap {
  white-space: nowrap;
}

.button.secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--line);
  box-shadow: none;
}

.button.line {
  background: var(--green);
  box-shadow: 0 12px 26px rgba(49, 166, 106, .22);
}

.site-nav a.button.line {
  color: var(--white);
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section.dark {
  background: #142433;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.section.dark .eyebrow {
  color: #8bd2ff;
}

.section-title {
  margin: 0;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: pretty;
}

.section-lead {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-weight: 500;
}

.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section.dark .section-lead,
.section.dark .muted {
  color: rgba(255, 255, 255, .76);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card.pad {
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.45;
  text-wrap: pretty;
}

.card p {
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-media {
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: var(--white);
}

.media-card .card-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.media-card .body {
  padding: 22px;
}

.article-cards {
  margin-top: 32px;
}

.article-card {
  color: inherit;
  text-decoration: none;
}

.article-card img {
  display: block;
  width: 100%;
  height: clamp(168px, 14.5vw, 204px);
  aspect-ratio: 1200 / 630;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.article-card time {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-card h3 {
  margin-bottom: 10px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-card h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.proof-meta {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.proof-link {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.photo-frame img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.article-layout--with-side {
  grid-template-columns: minmax(0, 820px) minmax(260px, 320px);
  gap: 48px;
  align-items: start;
  justify-items: stretch;
}

.article-main {
  width: 100%;
  max-width: 820px;
}

.article-featured {
  width: 100%;
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-featured img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fact {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(30, 136, 214, .1);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.number-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

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

.number {
  padding: 26px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.number strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.number span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
}

.price-box {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price {
  margin: 10px 0;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.price small {
  font-family: inherit;
  font-size: 18px;
}

.note {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(246, 166, 35, .14);
  color: #6d4700;
  font-weight: 800;
}

.schedule-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom: 0;
}

.schedule-table thead th {
  background: rgba(30, 136, 214, .08);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.schedule-table tbody th {
  width: 30%;
  font-size: 16px;
  line-height: 1.6;
}

.schedule-table td {
  color: var(--muted);
  font-weight: 600;
}

.schedule-table strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.schedule-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.schedule-status.available {
  background: rgba(49, 166, 106, .12);
  color: #157247;
}

.schedule-status.consult {
  background: rgba(246, 166, 35, .16);
  color: #865700;
}

.schedule-status.full {
  background: rgba(98, 113, 132, .13);
  color: #495569;
}

.schedule-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.calendar-link {
  margin: 22px 0 0;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background: linear-gradient(120deg, rgba(234, 247, 255, .94), rgba(255, 247, 232, .88));
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.32;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: .14;
  display: flex;
  align-items: center;
}

.page-hero__mq {
  display: flex;
  gap: 20px;
  min-width: 200%;
  animation: mq 34s linear infinite;
}

.page-hero__mq img {
  width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
}

@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.contact-embed {
  min-height: 420px;
  padding: 28px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer {
  background: #101c28;
  color: rgba(255, 255, 255, .82);
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .5fr);
  gap: 32px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.article-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.article-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.article-item img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: center;
  border-radius: 6px;
  background: var(--white);
}

.article-item time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-item h2,
.article-item h3 {
  margin: 6px 0 8px;
  line-height: 1.45;
}

.article-item p {
  margin: 0;
  color: var(--muted);
}

.map-shell {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(30, 136, 214, .14), rgba(246, 166, 35, .12)),
    #fff;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 360px;
  padding: 28px;
  text-align: center;
}

.map-placeholder p {
  margin: 0;
  color: var(--muted);
}

.map-placeholder strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .site-nav .button {
    min-height: 40px;
    padding: 9px 14px;
  }

.grid.two,
.grid.three,
.grid.four,
.grid.five,
.proof-grid,
.split,
.split.reverse,
.footer-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 82px 0 58px;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(100% - 28px, 1120px);
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
    font-size: 13px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .section-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-row .button {
    align-self: flex-start;
    min-height: 42px;
    padding: 10px 18px;
    white-space: nowrap;
  }

  .section-title {
    max-width: 92%;
    font-size: clamp(23px, 6.2vw, 30px);
    line-height: 1.42;
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  .column-section .section-title {
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .article-cards {
    gap: 18px;
  }

  .article-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: initial;
  }

  .number-list,
  .article-item {
    grid-template-columns: 1fr;
  }

  .article-item img {
    height: auto;
    aspect-ratio: auto;
    object-fit: initial;
  }

  .photo-frame img {
    min-height: 260px;
  }

  .article-featured {
    margin-bottom: 26px;
    border-radius: 10px;
  }

  .schedule-table-wrap {
    overflow: visible;
  }

  .schedule-table {
    min-width: 0;
  }

  .schedule-table,
  .schedule-table thead,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table th,
  .schedule-table td {
    display: block;
  }

  .schedule-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .schedule-table tbody tr {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .schedule-table tbody tr:last-child {
    border-bottom: 0;
  }

  .schedule-table th,
  .schedule-table td,
  .schedule-table tr:last-child th,
  .schedule-table tr:last-child td {
    width: 100%;
    padding: 0;
    border-bottom: 0;
  }

  .schedule-table tbody th {
    width: 100%;
    margin-bottom: 12px;
    font-size: 17px;
  }

  .schedule-table td {
    margin-top: 12px;
  }

  .schedule-table td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 900;
  }

  .schedule-table td:nth-child(2)::before {
    content: "曜日・時間";
  }

  .schedule-table td:nth-child(3)::before {
    content: "会場";
  }

  .schedule-table td:nth-child(4)::before {
    content: "体験受付";
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


.fv {
      position: relative;
      height: 100vh;
      min-height: 680px;
      overflow: hidden;
      background: #101c28;
      color: #fff;
    }

    .fv-world {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      padding: 112px max(24px, 7vw) 72px;
    }

    .fv-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url("../images/fv.jpg") center / cover no-repeat;
    }

    .fv-world > *:not(.fv-photo) {
      position: relative;
      z-index: 1;
    }

    .fv-before .fv-photo {
      filter: grayscale(1) brightness(.45) contrast(1.05);
    }

    .fv-before .fv-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(16, 28, 40, .88), rgba(16, 28, 40, .48) 56%, rgba(16, 28, 40, .18));
    }

    .fv-after {
      visibility: hidden;
      clip-path: circle(0% at 68% 42%);
    }

    .fv-after .fv-photo {
      filter: saturate(1.12) brightness(1.06);
    }

    .fv-after .fv-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(80% 72% at 76% 24%, rgba(246, 166, 35, .24), transparent 58%),
        linear-gradient(105deg, rgba(12, 74, 124, .94) 0%, rgba(30, 136, 214, .82) 34%, rgba(30, 136, 214, .48) 58%, rgba(49, 166, 106, .18) 100%);
    }

    .fv-content {
      max-width: 760px;
      padding-bottom: clamp(86px, 14vh, 140px);
    }

    .fv-eyebrow {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
      font-weight: 900;
    }

    .fv h1,
    .fv h2 {
      margin: 0;
      font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", sans-serif;
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1.18;
      letter-spacing: 0;
      text-wrap: balance;
      text-shadow: 0 4px 22px rgba(5, 28, 48, .34);
    }

    .fv p {
      max-width: 620px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, .88);
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 700;
    }

    .fv-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .fv-facts {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      width: min(940px, calc(100% - 40px));
      position: absolute;
      left: 50%;
      bottom: 28px;
      z-index: 4;
      transform: translateX(-50%);
    }

    .fv-fact {
      padding: 12px 14px;
      border: 1px solid rgba(255, 255, 255, .22);
      background: rgba(255, 255, 255, .14);
      border-radius: 8px;
      backdrop-filter: blur(10px);
      font-size: 13px;
      font-weight: 800;
    }

    .fv-seed {
      position: absolute;
      left: 68%;
      top: 42%;
      z-index: 5;
      width: 14px;
      height: 14px;
      margin: -7px 0 0 -7px;
      border-radius: 50%;
      background: #f6a623;
      box-shadow: 0 0 0 0 rgba(246, 166, 35, .45);
      animation: fvPulse 2.2s ease-out infinite;
    }

    .fv-hint {
      position: absolute;
      right: 28px;
      bottom: 36px;
      z-index: 5;
      writing-mode: vertical-rl;
      color: rgba(255, 255, 255, .62);
      font-size: 11px;
      font-weight: 900;
    }

    @keyframes fvPulse {
      to { box-shadow: 0 0 0 46px rgba(246, 166, 35, 0); }
    }

    @keyframes fvMobileReveal {
      0%, 18% {
        -webkit-clip-path: circle(0% at 72% 39%);
        clip-path: circle(0% at 72% 39%);
      }
      62%, 100% {
        -webkit-clip-path: circle(145% at 72% 39%);
        clip-path: circle(145% at 72% 39%);
      }
    }

    @keyframes fvMobileBeforeOut {
      0%, 30% { opacity: 1; transform: translateY(0); }
      52%, 100% { opacity: 0; transform: translateY(-18px); }
    }

    @keyframes fvMobileAfterIn {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fvMobileSeedOut {
      to { opacity: 0; transform: scale(1.35); }
    }

    .worry-list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .worry {
      padding: 18px 20px;
      border-left: 5px solid var(--orange);
      background: #fff;
      border-radius: 0 8px 8px 0;
      box-shadow: var(--shadow);
      font-weight: 700;
      text-wrap: pretty;
    }

    .road {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      margin-top: 32px;
    }

    .road-item {
      min-height: 190px;
      padding: 18px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      font-size: 15px;
      line-height: 1.8;
      text-wrap: pretty;
    }

    .road-item strong {
      display: block;
      margin-bottom: 8px;
      color: var(--blue);
      font-size: 16px;
      line-height: 1.45;
    }

    @media (max-width: 900px) {
      .fv {
        min-height: 760px;
      }

      .fv-world {
        padding-top: 150px;
      }

      .fv-content {
        padding-bottom: 150px;
      }

      .fv-facts,
      .road {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .fv-actions .button {
        width: 100%;
      }
    }

    @media (max-width: 640px) {
      .fv {
        height: auto;
        min-height: 900px;
        background: #168bd2;
      }

      .fv-world {
        padding: 78px 18px 390px;
        align-items: flex-start;
      }

      .fv-photo {
        background-position: 67% center;
      }

      .fv-before .fv-photo {
        filter: grayscale(1) brightness(.68) contrast(1.04);
      }

      .fv-before .fv-photo::after {
        background:
          linear-gradient(100deg, rgba(16, 28, 40, .76) 0%, rgba(16, 28, 40, .42) 54%, rgba(16, 28, 40, .08) 100%),
          linear-gradient(180deg, rgba(16, 28, 40, .06) 0%, rgba(16, 28, 40, .18) 48%, rgba(16, 28, 40, .48) 100%);
      }

      .fv-after .fv-photo::after {
        background:
          radial-gradient(92% 64% at 78% 24%, rgba(246, 166, 35, .32), transparent 58%),
          linear-gradient(100deg, rgba(12, 74, 124, .9) 0%, rgba(30, 136, 214, .72) 42%, rgba(30, 136, 214, .34) 68%, rgba(49, 166, 106, .16) 100%),
          linear-gradient(180deg, rgba(16, 28, 40, .08) 0%, rgba(16, 28, 40, .22) 48%, rgba(16, 28, 40, .66) 100%);
      }

      .fv-content {
        padding-bottom: 0;
        width: min(92vw, 560px);
        max-width: none;
      }

      .fv h1,
      .fv h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.28;
        word-break: keep-all;
        overflow-wrap: normal;
        text-wrap: wrap;
      }

      .fv h2 {
        font-size: clamp(23px, 6.8vw, 30px);
      }

      .fv .nowrap {
        white-space: normal;
      }

      .fv p {
        max-width: 92vw;
        font-size: 15px;
        line-height: 1.8;
      }

      .fv-actions {
        position: relative;
        z-index: 8;
        margin-top: 22px;
      }

      .fv-actions .button {
        min-height: 50px;
      }

      .fv-after {
        visibility: visible;
        -webkit-clip-path: circle(0% at 72% 39%);
        clip-path: circle(0% at 72% 39%);
      }

      .fv-facts,
      .road {
        grid-template-columns: 1fr;
      }

      .fv-facts {
        bottom: 32px;
        z-index: 6;
        width: calc(100% - 36px);
        gap: 10px;
      }

      .fv-fact {
        min-height: 54px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
      }

      .fv-hint {
        display: none;
      }

      .fv-after {
        animation: fvMobileReveal 5.8s cubic-bezier(.2, .8, .2, 1) .3s forwards;
      }

      #fv-before .fv-content {
        animation: fvMobileBeforeOut 5.8s ease .3s forwards;
      }

      #fv-after h2,
      #fv-after p,
      #fv-after .button {
        opacity: 0;
        transform: translateY(18px);
        animation: fvMobileAfterIn .72s ease 2.2s forwards;
      }

      .fv-seed {
        animation: fvPulse 2.2s ease-out infinite, fvMobileSeedOut .35s .95s ease-out forwards;
      }
    }

    @media (max-width: 640px) and (prefers-reduced-motion: reduce) {
      .fv-after,
      #fv-before .fv-content,
      #fv-after h2,
      #fv-after p,
      #fv-after .button,
      .fv-seed {
        animation: none;
      }

      .fv-after {
        -webkit-clip-path: circle(145% at 72% 39%);
        clip-path: circle(145% at 72% 39%);
      }

      #fv-before .fv-content {
        opacity: 0;
      }

      #fv-after h2,
      #fv-after p,
      #fv-after .button {
        opacity: 1;
        transform: none;
      }

      .fv-seed {
        display: none;
      }
    }

@media (max-width: 768px){.site-nav .button{width:100%;}}

@media (max-width: 768px){.site-nav .button{width:100%;}}

@media (max-width: 768px){.site-nav .button{width:100%;}}

@media (max-width: 768px){.site-nav .button{width:100%;}}

@media (max-width: 768px){.site-nav .button{width:100%;}}

/* WordPress nav normalization */
.site-nav__list {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list li {
  display: contents;
}
@media (max-width: 768px) {
  .site-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
  }
  .site-nav__list li {
    display: block;
  }
}
.footer-seo {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 24px;
  padding-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.9;
}
.footer-seo p {
  margin: 0 0 8px;
}
