/* ========================================
   Reset & Base
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #f5c200;
  --yellow-light: #fef8e6;
  --yellow-dark: #e0ad00;
  --peach: #fef0e0;
  --salmon: #f2a88a;
  --red: #e95454;
  --pink: #e9546b;
  --white: #fff;
  --dark: #333;
  --gray: #777;
}

body {
  font-family:
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ",
    sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 769px) {
  .container {
    max-width: 800px;
    padding: 0 40px;
  }
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 16px;
}

.header-container {
  display: flex;
  justify-content: flex-end;
}

/* Hamburger Button */
.hamburger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffb7a7;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}
.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ========================================
   Mobile Menu
======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--yellow);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.mobile-menu.active {
  transform: translateX(0);
}

@media (min-width: 769px) {
  .mobile-menu {
    left: auto;
    width: 400px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  }
}

.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 520px);
  margin: 0 auto;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 18px 0;
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nav-en {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-circle {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--white);
  border-top: 2px solid var(--white);
  transform: rotate(45deg);
}

.nav-ja {
  display: block;
  font-size: 13px;
  color: #000;
  font-weight: bold;
  margin-top: 4px;
}

.mobile-menu-dog {
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 120px;
}

/* ========================================
   FV Section
======================================== */
.fv {
  position: relative;
  background: linear-gradient(180deg, #ffb7a7 0%, #ffaaa6 100%);
  overflow: hidden;
  padding: 18px 0px 50px;
}

/* Background "HAPPY LIFE ENDING FAIR" text */
.fv-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: fvFadeIn 0.8s ease forwards;
  animation-delay: 1.45s;
}

.fv-bg-text-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: bgTextScroll 200s linear infinite;
}

.fv-bg-text-track img {
  height: 85px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.fv-bottom-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.fv-bottom-bg img {
  width: 100%;
  height: auto;
}

@keyframes bgTextScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fv-vertical-r,
.fv-top-left,
.fv-mascot,
.fv-grid-area,
.fv-badge-area,
.fv-vertical-l,
.fv-mobile-replacement {
  opacity: 0;
  animation: fvFadeIn 0.8s ease forwards;
}

.fv-vertical-r {
  animation-delay: 0.05s;
}

.fv-top-left,
.fv-mobile-replacement {
  animation-delay: 0.2s;
}

.fv-mascot {
  animation-delay: 0.35s;
}

.fv-grid-area {
  animation-delay: 0.5s;
}

.fv-badge-area,
.fv-vertical-l {
  animation-delay: 0.65s;
}

@media (prefers-reduced-motion: reduce) {
  .fv-bg-text {
    opacity: 1;
    animation: none;
  }

  .fv-vertical-r,
  .fv-top-left,
  .fv-mascot,
  .fv-grid-area,
  .fv-badge-area,
  .fv-vertical-l,
  .fv-mobile-replacement {
    opacity: 1;
    animation: none;
  }
}

/* Left vertical text (アセット 9: 36×498) */
.fv-vertical-l {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  max-width: 640px;
  margin: 14px auto 0;
  order: 3;
  z-index: 1;
}

.fv-vertical-l img {
  width: min(195px, 100%);
  height: auto;
  margin-right: auto;
}

.fv-vertical-l picture {
  display: block;
  width: 100%;
}

/* Right vertical text (アセット 11: 65×627) */
.fv-vertical-r {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  width: 100%;
  max-width: 640px;
  margin: 50px auto 0;
  order: 1;
  z-index: 4;
}

.fv-vertical-r img {
  width: min(236px, 100%);
  height: auto;
  margin-right: auto;
}

.fv-vertical-r picture {
  display: block;
  width: 100%;
}

/* Main content container */
.fv-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  min-height: 390px;
  margin: 0 auto;
  order: 2;
}

.fv-mobile-replacement {
  display: none;
}

.fv-mobile-replacement img {
  width: 100%;
  height: auto;
}

@media (max-width: 959px) {
  .fv-bg-text {
    top: auto;
    bottom: 24px;
  }

  .fv-mobile-replacement {
    display: block;
  }

  .fv-vertical-l img,
  .fv-vertical-r img {
    padding: 0 14px;
  }

  .fv-vertical-r img {
    width: min(320px, 100%);
    padding: 0 8px;
  }

  .fv-vertical-l img {
    width: min(230px, 100%);
  }

  .fv-container > :not(.fv-mobile-replacement):not(.fv-grid-badge-row) {
    display: none;
  }

  .fv-grid-badge-row {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .fv-grid-area {
    display: none;
  }

  .fv-badge-area {
    display: flex;
    right: 0;
    bottom: 0;
    max-width: none;
  }

  .fv-container {
    min-height: auto;
  }
}

/* Top row: Logo/Label (left) + Mascot (right) */
.fv-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  min-height: 15vh;
  --fv-logo-left: 0px;
  --fv-logo-top: 26px;
  --fv-logo-width: 66%;
  --fv-mascot-top: 0px;
  --fv-mascot-right: -20px;
  --fv-mascot-width: 40%;
}

.fv-top-left {
  position: absolute;
  left: var(--fv-logo-left);
  top: var(--fv-logo-top);
  width: var(--fv-logo-width);
  max-width: none;
  min-width: 0;
}

/* Logo */
.fv-logo-wrap {
  width: 100%;
}

.fv-logo {
  width: 100%;
}

/* Mascot */
.fv-mascot {
  position: absolute;
  right: var(--fv-mascot-right);
  top: var(--fv-mascot-top);
  width: var(--fv-mascot-width);
  z-index: 3;
}

.fv-mascot img {
  width: 100%;
}

/* Category grid area */
.fv-grid-badge-row {
  position: absolute;
  top: 14.25vh;
  left: 0;
  right: 0;
  width: 100%;
}

.fv-grid-area {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.fv-categories {
  width: 100%;
}

.fv-categories img {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}

/* Badge area */
.fv-badge-area {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: auto;
  max-width: 25%;
  margin-top: 0;
}

.fv-badge {
  width: 92px;
  flex-shrink: 0;
}

/* ========================================
   Date Section
======================================== */
.intro-sections {
  background: #fff9ae;
}

.date-section {
  padding: 48px 0 32px;
  text-align: center;
}

.date-main {
  max-width: 420px;
  margin: 0 auto 16px;
  padding: 0 20px;
}

.date-main img {
  width: 100%;
}

.date-venue {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.8;
  font-weight: 500;
}

/* ========================================
   About Section
======================================== */
.about-section {
  padding: 48px 0;
}

.about-section .container {
  max-width: 1080px;
  /* 12-grid based outer gutter (1/12 unit rhythm) */
  padding-left: clamp(14px, calc(100% / 24), 45px);
  padding-right: clamp(14px, calc(100% / 24), 45px);
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 640px) {
  .about-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.about-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-right {
  width: 100%;
}

@media (min-width: 640px) {
  .about-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 180px;
  }
}

.about-logo {
  width: 200px;
}

@media (min-width: 640px) {
  .about-logo {
    width: 160px;
  }
}

.about-toha {
  font-size: 22px;
  font-weight: bold;
  color: var(--dark);
  white-space: nowrap;
}

.about-copy {
  font-size: clamp(16px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-headline {
  margin-bottom: 16px;
  line-height: 1;
}

.about-headline span {
  font-size: clamp(16px, 5.5vw, 25px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  background: var(--white);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 2px 4px;
}

.about-text {
  font-size: clamp(12px, 1.9vw, 20px);
  font-weight: 700;
  color: var(--dark);
  line-height: clamp(18px, 2.8vw, 30px);
  margin-bottom: 16px;
}

.about-badge-text {
  font-size: 13px;
  font-weight: bold;
  color: var(--dark);
}

.about-free {
  font-size: 18px;
  font-weight: bold;
  color: var(--red);
}

@media (min-width: 960px) {
  .about-section .container {
    border-top: 1px solid #2f2622;
    border-bottom: 1px solid #2f2622;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .about-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: calc(100% / 12);
  }

  .about-left,
  .about-right {
    flex: 0 0 calc((100% - (100% / 12)) / 2);
    max-width: calc((100% - (100% / 12)) / 2);
  }

  .about-left {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    max-width: 50%;
  }

  .about-logo {
    width: min(100%, 540px);
  }

  .about-toha {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 4px;
  }

  .about-text {
    font-size: clamp(14px, 1.45vw, 16px);
    line-height: 1.7;
  }
}

/* ========================================
   Guide Map Section
======================================== */
.map-section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  --map-radius: 70px;
  padding: 48px 0;
  background: #ffdbbc;
  border-radius: var(--map-radius);
}

.map-section > * {
  position: relative;
  z-index: 1;
}

.map-section::before,
.map-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(var(--map-radius) * 2);
  z-index: -1;
  pointer-events: none;
}

.map-section::before {
  top: calc(var(--map-radius) * -1);
  background:
    radial-gradient(
        circle at 100% 100%,
        transparent var(--map-radius),
        #fff9ae calc(var(--map-radius) + 1px)
      )
      bottom left / var(--map-radius) var(--map-radius) no-repeat,
    radial-gradient(
        circle at 0 100%,
        transparent var(--map-radius),
        #fff9ae calc(var(--map-radius) + 1px)
      )
      bottom right / var(--map-radius) var(--map-radius) no-repeat;
}

.map-section::after {
  bottom: calc(var(--map-radius) * -1);
  background:
    radial-gradient(
        circle at 100% 0,
        transparent var(--map-radius),
        #ffdd25 calc(var(--map-radius) + 1px)
      )
      top left / var(--map-radius) var(--map-radius) no-repeat,
    radial-gradient(
        circle at 0 0,
        transparent var(--map-radius),
        #ffdd25 calc(var(--map-radius) + 1px)
      )
      top right / var(--map-radius) var(--map-radius) no-repeat;
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-en {
  font-family: "Satoshi", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}

.section-en-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.section-en.is-visible .section-en-char {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-en-char {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-ja {
  font-size: 14px;
  font-weight: bold;
  color: var(--dark);
  margin-top: 4px;
}

.map-placeholder {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: var(--white);
  min-height: 200px;
  padding: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  width: 100%;
}

.map-image {
  width: 100%;
  height: auto;
}

/* ========================================
   Store List Section
======================================== */
.store-section {
  padding: 48px 0;
  background: #ffdd25;
}

.store-section .section-en {
  color: var(--white);
  font-size: 44px;
}

.store-section .section-ja {
  color: var(--dark);
}

@media (max-width: 768px) {
  .section-en {
    font-size: 32px;
  }

  .store-section .section-en {
    font-size: 36px;
  }
}

@media (min-width: 769px) {
  .section-en,
  .store-section .section-en {
    font-size: 89px;
  }
}

.store-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timetable {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.timetable-image {
  width: 100%;
  height: auto;
}

/* Store Card */
.store-card {
  --store-card-col-gap: 16px;
  background: #fbca28;
  border: 4px solid #000;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: var(--store-card-col-gap);
  overflow: visible;
  position: relative;
  box-shadow: none;
}

/* Corner icon decorations */
.card-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.card-corner--tl {
  top: 6px;
  left: 6px;
}
.card-corner--tr {
  top: 6px;
  right: 6px;
}
.card-corner--bl {
  bottom: 6px;
  left: 6px;
}
.card-corner--br {
  bottom: 6px;
  right: 6px;
}

.store-card-img {
  flex: 0 0 calc((100% - var(--store-card-col-gap)) / 2);
  max-width: calc((100% - var(--store-card-col-gap)) / 2);
  width: auto;
  min-height: 150px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  box-sizing: border-box;
  overflow: hidden;
}

.store-card-img--photo {
  padding: 12px;
  background: #fff;
  overflow: visible;
  min-height: 220px;
}

.store-card-visual {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.store-card-visual--small {
  max-height: 180px;
}

.card-dog {
  width: 96px;
  opacity: 0.6;
}

.store-card-content {
  flex: 0 0 calc((100% - var(--store-card-col-gap)) / 2);
  max-width: calc((100% - var(--store-card-col-gap)) / 2);
  padding: 14px 20px;
  border-radius: 0 9px 9px 0;
  overflow: hidden;
  position: relative;
}

.store-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 10px;
  padding-bottom: 6px;
}

.store-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.store-info li {
  font-size: 12px;
  color: var(--dark);
  line-height: 1.5;
  display: flex;
  gap: 6px;
}

.info-label {
  font-size: 11px;
  font-weight: bold;
  color: var(--dark);
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
  padding: 1px 0 1px 7px;
  white-space: nowrap;
  flex-shrink: 0;
  height: fit-content;
  margin-top: 1px;
}

.info-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1em;
  background: #ffaaa6;
}

/* ========================================
   Access Section
======================================== */
.access-section {
  padding: 48px 0 56px;
  background: #fff9ae;
}

.access-section .section-en {
  color: var(--black);
}

.access-panel {
  border-radius: 24px;
  padding: 20px;
}

.access-intro {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 18px;
}

.access-map {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}

.access-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.access-steps {
  display: grid;
  gap: 12px;
}

.access-step {
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
}

.access-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.access-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.access-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.access-step-text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--dark);
}

.access-marker {
  background: linear-gradient(transparent 62%, #ffe36a 62%);
  font-weight: 700;
}

.access-exit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25em;
  padding: 0 0.22em;
  margin: 0 0.05em;
  border: 1px solid #000;
  border-radius: 0.2em;
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
  background: #ffe36a;
}

.access-exit-num--2 {
  background: #ffe36a;
}

.access-exit-num--4 {
  background: #ffe36a;
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--white);
  padding: 28px 0 30px;
}

.footer-contact-head {
  max-width: 940px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, #f29a9a 0%, #f6b3a4 100%);
  color: var(--white);
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.footer-body {
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  align-items: center;
  gap: 54px;
  max-width: 940px;
  margin: 0 auto;
}

.footer-logo-area {
  width: 100%;
}

.footer-logo-area img {
  width: 100%;
  max-width: 300px;
}

.footer-info {
  width: 100%;
}

.footer-dept {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.25;
}

.footer-info p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--dark);
}

.footer-sponsors {
  background: transparent;
  padding: 30px 28px 0;
  border-top: none;
}

.footer-sponsors dl {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
}

.sponsor-row {
  display: flex;
  gap: 12px;
  font-size: 15px;
  align-items: center;
  justify-content: flex-start;
}

.sponsor-row dt {
  font-weight: bold;
  color: var(--dark);
  white-space: nowrap;
  min-width: 74px;
  text-align: center;
  border: 1px solid #000;
  padding: 1px 10px 2px;
  font-size: 12px;
  line-height: 1;
}

.sponsor-row dd {
  color: var(--dark);
  margin: 0;
  line-height: 1.45;
}

@media (min-width: 769px) {
  .footer-sponsors dl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sponsor-row {
    justify-content: flex-start;
    width: 100%;
    max-width: 700px;
  }

  .sponsor-row dd {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 0 24px;
  }

  .footer-contact-head {
    margin: 0 20px 20px;
    font-size: 22px;
    padding: 10px 16px;
  }

  .footer-body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  .footer-logo-area img {
    max-width: 240px;
  }

  .footer-dept {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-info p {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-sponsors {
    padding: 20px 20px 0;
  }

  .footer-sponsors dl {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .sponsor-row {
    font-size: 13px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .sponsor-row dt {
    min-width: 56px;
    font-size: 12px;
    padding: 2px 6px;
  }

  .store-card {
    flex-direction: column;
    gap: 14px;
  }

  .store-card-img,
  .store-card-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .access-panel {
    padding: 16px;
  }

  .access-intro {
    font-size: 13px;
  }
}

/* Copyright */
.copyright {
  background: var(--dark);
  padding: 12px 20px;
  text-align: center;
}

.copyright p {
  font-size: 11px;
  color: #aaa;
}

/* ========================================
   Responsive - PC
======================================== */
@media (min-width: 960px) {
  .fv {
    display: flex;
    min-height: 104svh;
    padding: 80px 100px 150px;
    align-items: center;
    justify-content: center;
  }

  .fv-bg-text-track img {
    height: 278px;
  }

  .fv-container {
    max-width: 840px;
    min-height: 720px;
    margin-top: 0;
  }

  .fv-top {
    min-height: 260px;
    --fv-logo-left: 0px;
    --fv-logo-top: 26px;
    --fv-logo-width: 64%;
    --fv-mascot-top: -20px;
    --fv-mascot-right: 6px;
    --fv-mascot-width: 38%;
  }

  .fv-grid-badge-row {
    display: block;
    top: 247px;
    width: 100%;
  }

  .fv-grid-area {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .fv-badge-area {
    position: absolute;
    right: -112px;
    bottom: 0;
    margin-left: 0;
    z-index: 5;
  }

  .fv-top-left {
    max-width: none;
  }

  .fv-badge {
    width: 100px;
  }

  .fv-vertical-l {
    position: absolute;
    left: 30px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    margin: 0;
    order: initial;
    width: 52px;
  }

  .fv-vertical-r {
    position: absolute;
    left: auto;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    order: initial;
    width: 36px;
    z-index: 1;
  }
}

@media (min-width: 769px) {
  .date-section {
    padding: 60px 0 48px;
  }

  .date-main {
    max-width: 600px;
  }

  .about-section {
    padding: 60px 0;
  }

  .map-section {
    padding: 60px 0;
  }

  .store-section {
    padding: 60px 0;
  }

  .store-list {
    gap: 24px;
  }

  .store-card-img {
    min-height: 170px;
  }

  .card-dog {
    width: 128px;
  }

  .store-name {
    font-size: 18px;
  }

  .store-info li {
    font-size: 13px;
  }
}

@media (max-width: 1180px) {
  .fv-grid-badge-row {
    display: block;
  }

  .fv-grid-area {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .fv-badge-area {
    position: absolute;
    right: 15px;
    bottom: -100px;
    width: 90px;
  }
}
