:root {
  --ink: #21304a;
  --muted: #5d7294;
  --blue: #8ec2ec;
  --blue-deep: #477fb4;
  --mint: #cdebdc;
  --rose: #f3a6b6;
  --gold: #d8aa4f;
  --paper: rgba(255, 255, 255, 0.86);
  --line: rgba(95, 130, 171, 0.24);
  --shadow: 0 18px 50px rgba(64, 104, 149, 0.18);
  font-family: "LINE Seed JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color: var(--ink);
  background: #f7fbff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(239, 249, 255, 0.92), rgba(247, 251, 255, 1) 34rem),
    linear-gradient(135deg, rgba(142, 194, 236, 0.18), rgba(243, 166, 182, 0.12));
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(64, 104, 149, 0.12);
}

.brand,
.social-mini,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.logo-brand {
  min-width: 160px;
}

.brand img.brand-logo {
  width: clamp(140px, 15vw, 210px);
  height: auto;
  border-radius: 0;
}

.nav {
  justify-content: center;
  gap: clamp(8px, 1.35vw, 18px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav a,
.social-mini a {
  text-decoration: none;
}

.nav a:hover,
.social-mini a:hover {
  color: var(--blue-deep);
}

.social-mini {
  justify-content: flex-end;
  gap: 10px;
}

.social-mini a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.social-mini img {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-deep);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  background: #fff;
  box-shadow: 0 10px 24px rgba(64, 104, 149, 0.16);
}

.menu-toggle span:not(.menu-toggle-text) {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(620px, 82svh, 820px);
  place-items: center;
  overflow: hidden;
  padding: 64px clamp(20px, 7vw, 96px) 120px;
  border-bottom-right-radius: clamp(36px, 8vw, 112px);
  border-bottom-left-radius: clamp(36px, 8vw, 112px);
  background: #eff8ff;
  box-shadow: 0 26px 70px rgba(64, 104, 149, 0.16);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  display: none;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 18%;
}

.hero-content {
  width: min(720px, 100%);
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.95;
  letter-spacing: 0;
  color: #416f9d;
  text-shadow: 0 10px 40px rgba(255, 255, 255, 0.9);
}

.hero-title-logo {
  width: min(520px, 50vw);
  margin-bottom: 20px;
}

.hero-title-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(255, 255, 255, 0.9));
}

.lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.7;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  border-color: transparent;
  background: #ff0033;
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 0, 51, 0.22);
}

.button.primary:hover {
  background: #e6002e;
  box-shadow: 0 16px 32px rgba(255, 0, 51, 0.28);
  transform: translateY(-2px);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button.ghost:hover {
  border-color: rgba(71, 127, 180, 0.5);
  background: rgba(71, 127, 180, 0.12);
  color: var(--blue-deep);
  box-shadow: 0 12px 26px rgba(71, 127, 180, 0.14);
  transform: translateY(-2px);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: 0;
}

.profile-card,
.profile-panel,
.fact-list,
.guide-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: clamp(22px, 4vw, 38px);
}

.profile-side {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
}

.profile-panel {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
}

.profile-logo {
  width: min(280px, 100%);
}

.profile-main h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

.profile-icon {
  width: 156px;
  height: 156px;
  flex: 0 0 auto;
  border: 6px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(64, 104, 149, 0.2);
}

.profile-panel h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
}

.profile-stats div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.profile-stats dt,
.profile-stats dd {
  margin: 0;
}

.profile-stats dt {
  color: #8aa9eb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.profile-stats dd {
  margin-top: 4px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.fan-info-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(64, 104, 149, 0.08);
}

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

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

.fan-info-table th {
  width: 34%;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.fan-info-table td {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.6;
}

.profile-panel p,
.timeline p,
.source-panel p,
.source-panel li,
.footer {
  color: var(--muted);
  line-height: 1.9;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 1px;
  background: var(--line);
}

.fact-list div {
  min-height: 128px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.fact-list.compact {
  width: 100%;
  grid-template-columns: 1fr;
  border-radius: 8px;
}

.fact-list.compact div {
  min-height: auto;
  padding: 14px 16px;
}

.source-panel {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.source-panel h3 {
  margin: 30px 0 12px;
  color: #416f9d;
  font-size: clamp(20px, 3vw, 28px);
}

.source-panel h3:first-child {
  margin-top: 0;
}

.source-panel h4 {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 18px;
}

.source-panel p {
  margin-bottom: 16px;
}

.source-panel ul,
.source-panel ol {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 1.25em;
}

.source-panel a {
  color: var(--blue-deep);
  font-weight: 800;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.split-list > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 24px;
}

.status-grid div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(142, 194, 236, 0.18), rgba(243, 166, 182, 0.18));
}

.status-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-grid strong {
  color: #416f9d;
  font-size: 30px;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.visual-card,
.schedule-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visual-card h3 {
  margin: 0;
  color: #416f9d;
  font-size: clamp(24px, 3vw, 36px);
}

.visual-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  object-fit: contain;
}

.schedule-card,
.video-thumb-card {
  padding: 0;
  overflow: hidden;
  text-decoration: none;
}

.schedule-thumb,
.video-thumb-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.72);
  object-fit: contain;
}

.video-thumb-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.play-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-deep);
  font-weight: 900;
}

.fact-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-list strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

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

.image-link {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(64, 104, 149, 0.24);
}

.image-link img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.image-link span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.media-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.media-grid iframe {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.media-grid iframe:first-child {
  aspect-ratio: 16 / 9;
  height: auto;
}

.media-grid iframe:last-child {
  min-height: 352px;
}

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

.guide-grid article {
  padding: 26px;
}

.guide-grid h3 {
  margin-bottom: 18px;
  color: #416f9d;
  font-size: 21px;
}

.guide-grid ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.timeline span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(142, 194, 236, 0.24), rgba(243, 166, 182, 0.28));
  color: var(--blue-deep);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 8px;
}

.timeline p:last-child {
  margin-bottom: 0;
}

.history-lead {
  margin-bottom: 18px;
}

.carousel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.carousel-track {
  display: flex;
  transition: transform 0.32s ease;
}

.carousel-slide {
  position: relative;
  display: grid;
  min-width: 100%;
  height: min(74svh, 720px);
  margin: 0;
  place-items: center;
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carousel-slide figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.carousel-button {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 2;
  display: grid;
  width: 48px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(64, 104, 149, 0.16);
}

.carousel-button:hover {
  background: #fff;
}

.carousel-button.prev {
  left: 30px;
}

.carousel-button.next {
  right: 30px;
}

.carousel-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.carousel-thumb {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.carousel-thumb.is-active {
  border-color: var(--blue-deep);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  object-fit: contain;
}

.footer {
  margin-top: clamp(40px, 7vw, 84px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 248, 255, 0.96)),
    linear-gradient(135deg, rgba(142, 194, 236, 0.14), rgba(243, 166, 182, 0.1));
}

.footer-inner {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: minmax(240px, 1.2fr) minmax(260px, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: clamp(38px, 6vw, 68px) 0 28px;
}

.footer-brand img {
  width: min(260px, 78vw);
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

.footer-nav a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--blue-deep);
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: #fff;
  transform: translateY(-2px);
}

.footer-social img {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    display: none;
    width: min(300px, calc(100vw - 28px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 42px rgba(64, 104, 149, 0.2);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 16px;
  }

  .nav a:hover {
    background: rgba(142, 194, 236, 0.16);
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 720px;
    align-items: end;
    padding-top: 88px;
  }

  .hero-media img {
    object-position: center top;
  }

  .intro-grid,
  .media-grid,
  .guide-grid,
  .link-grid,
  .split-list,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

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

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

  .carousel-slide {
    height: 62svh;
  }

  .carousel-button {
    width: 42px;
    height: 48px;
  }

  .carousel-button.prev {
    left: 22px;
  }

  .carousel-button.next {
    right: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand span {
    max-width: 8em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .social-mini a {
    width: 38px;
    height: 38px;
  }

  .logo-brand {
    min-width: 0;
  }

  .brand img.brand-logo {
    width: 138px;
  }

  .hero {
    min-height: 640px;
    padding: 72px 18px 64px;
  }

  .hero-title-logo {
    width: min(338px, 100%);
    margin-bottom: 18px;
  }

  .lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

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

  .profile-stats {
    grid-template-columns: 1fr;
  }

  .source-panel {
    padding: 20px;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .carousel {
    padding: 10px;
  }

  .carousel-slide {
    height: 58svh;
  }

  .carousel-button {
    top: calc(50% - 24px);
    width: 38px;
    height: 44px;
    font-size: 30px;
  }

  .carousel-button.prev {
    left: 14px;
  }

  .carousel-button.next {
    right: 14px;
  }

  .carousel-thumb {
    width: 62px;
    height: 62px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-bottom: 24px;
  }
}
