:root {
  --ink: #172338;
  --ink-soft: #4c5a6d;
  --navy: #173b64;
  --navy-deep: #102b49;
  --blue-soft: #edf4fa;
  --gold: #b68b3a;
  --gold-soft: #f5ecdc;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #d8e0e8;
  --notice: #fff8e8;
  --danger: #9a3c33;
  --shadow: 0 16px 42px rgba(23, 59, 100, 0.1);
  --radius: 18px;
  --content: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--navy);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #245f97;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 6px;
}

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

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 40px), var(--content));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

.global-nav a {
  padding: 0.58rem 0.7rem;
  color: var(--ink);
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--blue-soft);
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 34vw, 580px);
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0;
  color: var(--white);
  background-color: #161616;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
}

.hero-home {
  --hero-image: url("/assets/hero-home.jpg");
  --hero-position: center top;
}

.hero-inner,
.page-heading-inner,
.section-inner,
.footer-inner {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  min-width: 0;
}

.hero-inner,
.page-heading-inner {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section .eyebrow {
  color: var(--gold);
}

.hero h1,
.page-heading h1 {
  margin: 0;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(2.15rem, 5.5vw, 4rem);
  line-height: 1.22;
  letter-spacing: 0.035em;
}

.hero-lead {
  max-width: 780px;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.page-heading {
  display: flex;
  align-items: center;
  min-height: clamp(460px, 36vw, 580px);
  box-sizing: border-box;
  padding: clamp(60px, 7vw, 96px) 0;
  color: var(--white);
  background-color: #161616;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
}

.hero-jimukumiai {
  --hero-image: url("/assets/hero-jimukumiai.jpg");
  --hero-position: 62% top;
}

.hero-hitorioyakata {
  --hero-image: url("/assets/hero-hitorioyakata.jpg");
  --hero-position: 62% top;
}

.hero-dantai {
  --hero-image: url("/assets/hero-dantai.jpg");
  --hero-position: 62% top;
}

.hero-privacy {
  --hero-image: url("/assets/hero-privacy.jpg");
  --hero-position: 64% top;
}

.hero-not-found {
  --hero-image: url("/assets/hero-404.jpg");
  --hero-position: 64% top;
}

.page-heading h1 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
}

.page-heading p:last-child {
  max-width: 740px;
  margin: 0.75rem 0 0;
  color: #e1eaf2;
}

.section {
  padding: clamp(44px, 6vw, 72px) 0;
}

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

.section-dark {
  color: var(--white);
  background: var(--navy-deep);
}

.section-heading {
  max-width: 790px;
  margin: 0 0 1.6rem;
}

.section-heading h2,
.content-block h2,
.legal-content h2 {
  margin: 0 0 1rem;
  color: var(--navy-deep);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  line-height: 1.45;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.home-section {
  padding: clamp(34px, 4.5vw, 52px) 0;
}

.home-heading {
  max-width: 960px;
  margin-bottom: 1rem;
}

.home-heading h2 {
  margin-bottom: 0.55rem;
}

.definition-lead {
  max-width: 920px;
  font-size: 1.06rem;
  line-height: 1.85;
}

.system-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.system-point {
  min-width: 0;
  padding: 18px 20px;
  background: var(--white);
}

.point-number,
.route-number {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.system-point h3 {
  margin: 0.25rem 0 0.35rem;
  color: var(--navy-deep);
  font-size: 1.04rem;
}

.system-point p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.official-source {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.service-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compact-panel {
  min-width: 0;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.compact-panel h3 {
  margin: 0 0 0.65rem;
  color: var(--navy-deep);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 800;
}

.panel-note {
  margin: 0.7rem 0 0;
  padding-top: 0.65rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.65;
}

.eligibility-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.eligibility-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.eligibility-list dt,
.eligibility-list dd {
  margin: 0;
}

.eligibility-list dt {
  color: var(--ink-soft);
}

.eligibility-list dd {
  color: var(--navy-deep);
  font-weight: 800;
  white-space: nowrap;
}

.route-list {
  display: grid;
  gap: 8px;
}

.route-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.route-item:nth-child(2) {
  border-left-color: var(--gold);
}

.route-item:nth-child(3) {
  border-left-color: #607286;
}

.route-item:hover {
  color: var(--ink);
  background: var(--blue-soft);
}

.route-item strong,
.route-item small {
  display: block;
}

.route-item strong {
  color: var(--navy-deep);
}

.route-item small {
  margin-top: 0.1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.route-arrow {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.compact-note {
  margin-top: 10px;
  padding: 11px 14px;
  font-size: 0.86rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.7fr 1.7fr;
  gap: 1px;
  overflow: hidden;
  margin: 16px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.trust-strip div {
  min-width: 0;
  padding: 12px 14px;
  background: var(--paper);
}

.trust-strip dt,
.trust-strip dd {
  margin: 0;
}

.trust-strip dt {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.trust-strip dd {
  margin-top: 0.15rem;
  color: var(--navy-deep);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.detail-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-contact {
  padding: 24px 0;
}

.compact-contact {
  padding: 18px 22px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.choice-grid > *,
.entity-grid > * {
  min-width: 0;
}

.choice-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2.5vw, 26px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.choice-card:hover {
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(23, 59, 100, 0.16);
}

.choice-card:nth-child(2) {
  border-top-color: var(--gold);
}

.choice-card.phone-choice {
  border-top-color: #607286;
}

.choice-number {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.choice-card h3 {
  margin: 1rem 0;
  font-size: clamp(1.14rem, 2vw, 1.38rem);
  line-height: 1.65;
}

.choice-action {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.guidance-note,
.notice-box {
  margin: 24px 0 0;
  padding: 18px 22px;
  background: var(--notice);
  border: 1px solid #ead8aa;
  border-left: 5px solid var(--gold);
  border-radius: 10px;
}

.guidance-note p,
.notice-box p {
  margin: 0;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.entity-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.entity-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy-deep);
  font-size: 1.08rem;
}

.entity-card p {
  margin: 0;
  color: var(--ink-soft);
}

.entity-link {
  display: inline-block;
  margin-top: 1.8rem;
  font-weight: 800;
}

.phone-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--ink);
}

.phone-panel h2 {
  margin: 0 0 0.4rem;
  color: var(--navy-deep);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.phone-panel p {
  margin: 0;
}

.phone-link {
  display: inline-block;
  color: var(--navy-deep);
  font-family: Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.content-block + .content-block {
  margin-top: clamp(36px, 5vw, 48px);
  padding-top: clamp(32px, 4.5vw, 44px);
  border-top: 1px solid var(--line);
}

.content-block h3 {
  margin: 2rem 0 0.8rem;
  color: var(--navy-deep);
  font-size: 1.25rem;
}

.content-block p {
  max-width: 1000px;
}

.content-block ul {
  padding-left: 1.4rem;
}

.content-block li + li {
  margin-top: 0.4rem;
}

.data-table-wrap {
  margin: 1.25rem 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
  line-height: 1.7;
}

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

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

.data-table th {
  width: 31%;
  color: var(--navy-deep);
  background: var(--blue-soft);
  font-weight: 800;
}

.data-table thead th {
  width: auto;
  color: var(--white);
  background: var(--navy);
}

.attention {
  margin-top: 1.8rem;
  padding: 20px 22px;
  background: var(--notice);
  border-left: 5px solid var(--gold);
}

.attention p {
  margin: 0;
}

.next-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.next-link {
  padding: 21px 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.next-link:hover {
  color: var(--navy);
  border-color: #9cb4ca;
}

.contact-section {
  padding: clamp(36px, 5vw, 56px) 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 14px;
}

.contact-primary,
.contact-topics {
  min-width: 0;
  padding: 24px 28px;
}

.contact-primary {
  background: var(--navy-deep);
  color: var(--white);
}

.contact-label,
.contact-hours,
.contact-address {
  margin: 0;
}

.contact-label {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-primary h2 {
  margin: 0.25rem 0 0.45rem;
  color: var(--white);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.contact-number {
  display: inline-block;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.contact-number:hover {
  color: var(--gold-soft);
}

.contact-hours {
  margin-top: 0.5rem;
  color: #e1eaf2;
  font-size: 0.9rem;
}

.contact-topics {
  align-self: center;
}

.contact-topics h3 {
  margin: 0 0 0.65rem;
  color: var(--navy-deep);
  font-size: 1.05rem;
}

.contact-address {
  padding-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-heading {
  margin-bottom: 1rem;
}

.office-profile {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.15fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.office-summary {
  padding: 24px 28px;
  color: var(--white);
  background: var(--navy-deep);
}

.office-role {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.office-summary h3 {
  margin: 0.35rem 0 0.6rem;
  color: var(--white);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.office-summary > p:not(.office-role):not(.security-badge) {
  margin: 0;
  color: #e1eaf2;
  font-size: 0.92rem;
}

.security-badge {
  display: inline-block;
  margin: 0.85rem 0 0;
  padding: 0.28rem 0.65rem;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.office-link {
  display: block;
  width: fit-content;
  margin-top: 0.8rem;
  color: var(--white);
  font-weight: 800;
}

.office-link:hover {
  color: var(--gold-soft);
}

.office-details {
  margin: 0;
  padding: 10px 22px;
}

.office-details div {
  display: grid;
  grid-template-columns: 8em minmax(0, 1fr);
  gap: 16px;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.office-details div:last-child {
  border-bottom: 0;
}

.office-details dt,
.office-details dd {
  margin: 0;
}

.office-details dt {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.office-details dd {
  color: var(--navy-deep);
  font-weight: 700;
}

.legal-content {
  max-width: 900px;
}

.legal-content > h2 {
  margin-top: 3.2rem;
  padding-bottom: 0.65rem;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  border-bottom: 1px solid var(--line);
}

.legal-lead {
  margin-bottom: 2rem;
  font-size: 1.04rem;
}

.legal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2rem 0;
}

.legal-badges span {
  padding: 0.5rem 0.8rem;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.legal-meta {
  margin-top: 3.5rem;
  padding: 24px;
  background: var(--blue-soft);
  border-radius: 14px;
}

.legal-meta dl {
  margin: 0;
}

.legal-meta div {
  display: grid;
  grid-template-columns: 9em 1fr;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-meta div:last-child {
  border-bottom: 0;
}

.legal-meta dt {
  color: var(--navy-deep);
  font-weight: 800;
}

.legal-meta dd {
  margin: 0;
}

.site-footer {
  padding: 52px 0 28px;
  color: #dce6ee;
  background: #0b2037;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
}

.footer-title {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-phone {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-phone-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.84rem;
}

.footer-entities {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
}

.footer-entities li + li {
  margin-top: 0.35rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--white);
}

@media (max-width: 960px) {
  .header-inner {
    width: 100%;
    min-height: auto;
    padding: 14px 20px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-brand {
    align-self: flex-start;
  }

  .global-nav {
    min-width: 0;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 0 12px;
    overflow: visible;
  }

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

  .choice-card {
    min-height: 0;
  }

  .service-overview {
    grid-template-columns: 1fr;
  }

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

  .contact-panel,
  .office-profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-inner,
  .page-heading-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .hero {
    min-height: 440px;
    padding: 48px 0;
  }

  .page-heading {
    min-height: 380px;
    padding: 48px 0;
  }

  .home-section {
    padding: 30px 0;
  }

  .system-points,
  .service-overview,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .system-point,
  .compact-panel {
    padding: 16px;
  }

  .route-item {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 8px;
    padding: 12px;
  }

  .eligibility-list div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .eligibility-list dd {
    white-space: normal;
  }

  .compact-contact {
    padding: 16px;
  }

  .contact-primary,
  .contact-topics,
  .office-summary {
    padding: 20px;
  }

  .office-details {
    padding: 8px 16px;
  }

  .office-details div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .office-summary h3 {
    font-size: 1.15rem;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .entity-grid,
  .next-links,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .phone-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .data-table th,
  .data-table td {
    padding: 14px;
  }

  .legal-meta div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .office-summary h3 {
    font-size: 1rem;
    letter-spacing: -0.04em;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
