* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  font-weight: 600;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: anywhere;
  opacity: 0;
  transition: opacity 0.6s ease;
  min-height: 100vh;
}

body.page-show {
  opacity: 1;
}

body.page-hide {
  opacity: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* ===== ヘッダー ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(10, 10, 10, 0.88));
  border-bottom: 1px solid rgba(255, 215, 160, 0.14);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 1200;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  border-radius: 10px;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, #f6ae54, #ffd7a0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 999px;
}

.nav a:hover {
  color: #ffd7a0;
  background-color: rgba(246, 174, 84, 0.1);
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* ===== ハンバーガー ===== */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1300;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: all 0.35s ease;
}

.hamburger span:nth-child(1) {
  top: 1px;
}

.hamburger span:nth-child(2) {
  top: 13px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.68) contrast(1.08);
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(246, 174, 84, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.78));
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 140px 20px 80px;
}

.hero-line {
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #ffd7a0, transparent);
}

.hero-line-top {
  width: min(160px, 28vw);
  height: 1px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroLineFade 0.9s ease 0.05s forwards;
}

.hero-logo {
  width: min(760px, 78vw);
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
  opacity: 0;
  transform: translateY(20px);
  animation: heroLogoFade 1.2s ease 0.2s forwards;
}

.hero-subtitle {
  margin-top: 28px;
  color: #e7cfaa;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextFade 1s ease 0.45s forwards;
}

.hero-date-wrap {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextFade 1s ease 0.6s forwards;
}

.hero-date {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffd7a0;
}

.hero-date .festival-year {
  display: inline-block;
  margin-right: 28px;
  font-size: 1.22em;
  letter-spacing: 0.16em;
}

.hero-date .festival-schedule {
  display: inline-block;
  color: rgba(255, 236, 210, 0.96);
}

.hero-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 160, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
}

.hero-countdown strong {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  color: #ffd7a0;
  text-shadow: 0 0 18px rgba(246, 174, 84, 0.28);
}

.hero-nav-preview {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextFade 1s ease 0.8s forwards;
}

.hero-nav-preview a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-bottom: 8px;
}

.hero-nav-preview a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd7a0, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hero-nav-preview a:hover::after {
  transform: scaleX(1);
}

.scroll-down {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  width: 38px;
  height: 68px;
  margin-top: 42px;
  border: 1px solid rgba(255, 215, 160, 0.55);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroTextFade 1s ease 0.95s forwards;
}

.scroll-down span {
  width: 6px;
  height: 14px;
  margin-top: 12px;
  border-radius: 999px;
  background: #ffd7a0;
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* ===== 共通セクション ===== */
.section {
  position: relative;
  padding: 110px 20px;
  background: transparent;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 215, 160, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 215, 160, 0.28);
  border-radius: 999px;
  color: #fff1d7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background:
    linear-gradient(180deg, rgba(255, 215, 160, 0.12), rgba(246, 174, 84, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.18);
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
}

.point-title {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: 0.02em;
}

.point-caption {
  margin-bottom: 28px;
  color: rgba(255, 236, 210, 0.82);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.dark-section .section-inner {
  background: rgba(12, 12, 12, 0.46);
}

/* ===== カード ===== */
.feature-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.feature-card.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-card.reverse .feature-visual {
  order: 2;
}

.feature-card.reverse .feature-text {
  order: 1;
}

.feature-visual {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(246, 174, 84, 0.18), transparent 48%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(42, 26, 6, 0.88));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.image-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.feature-text.center {
  align-items: center;
  text-align: center;
}

.feature-text h3 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  color: #fff;
}

.feature-text p {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 180px;
  height: 54px;
  margin-top: 8px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #8f5c17, #d59c49);
  box-shadow: 0 12px 24px rgba(143, 92, 23, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(143, 92, 23, 0.28);
}

/* ===== ミニ開催情報 ===== */
.mini-schedule {
  margin-top: 12px;
  padding: 16px 18px 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 215, 160, 0.18);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mini-schedule.large {
  width: min(760px, 100%);
  margin-inline: auto;
}

.mini-schedule.center {
  margin-inline: auto;
}

.mini-title {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8f5c17, #d59c49);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.mini-schedule ul {
  list-style: none;
}

.mini-schedule li {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-schedule li:first-child {
  border-top: none;
}

.mini-schedule li span:first-child {
  color: #ffd7a0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}

.mini-schedule li span:last-child {
  display: flex;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
}

.feature-note {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 14px;
}

/* ===== 本陣スライダー ===== */
.honjin-slider-wrap {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 24px;
  align-items: center;
}

.honjin-slider {
  overflow: hidden;
  border-radius: 28px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.honjin-slider.dragging {
  cursor: grabbing;
}

.honjin-slider *,
.honjin-slider img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.honjin-track {
  display: flex;
  will-change: transform;
}

.honjin-slide {
  min-width: 100%;
}

.slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(246, 174, 84, 0.18), transparent 48%),
    linear-gradient(135deg, rgba(31, 21, 11, 0.9), rgba(0, 0, 0, 0.95));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slide-award {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 215, 160, 0.18), rgba(246, 174, 84, 0.12));
  border: 1px solid rgba(255, 215, 160, 0.25);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff4df;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
  width: min(680px, 100%);
}

.slide-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 160, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.slide-arrow:hover {
  transform: scale(1.05);
  background: rgba(255, 215, 160, 0.08);
}

.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.dot.active {
  background: #ffd7a0;
}

.slider-text {
  text-align: center;
  margin-top: 24px;
}

/* ===== スクロールアニメーション ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* ===== フッター ===== */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0b0b0b 0%, #000 100%);
  color: #fff;
  overflow: hidden;
  padding: 90px 20px 36px;
  margin-top: 40px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(246, 174, 84, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
  background-size: auto, 36px 36px, 36px 36px;
  background-position: center, 0 0, 18px 18px;
  opacity: 0.55;
  pointer-events: none;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92%);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(246, 174, 84, 0) 0%,
    rgba(246, 174, 84, 0.95) 20%,
    rgba(255, 215, 160, 1) 50%,
    rgba(246, 174, 84, 0.95) 80%,
    rgba(246, 174, 84, 0) 100%
  );
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-top-line {
  width: 120px;
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, transparent, #ffd7a0, transparent);
  opacity: 0.9;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.footer-logo {
  width: auto;
  max-width: min(90vw, 520px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.footer-subtitle {
  color: #e7cfaa;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 34px;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 2px;
  transition: color 0.3s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f6ae54, #ffd7a0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 999px;
}

.footer-nav a:hover {
  color: #ffd7a0;
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.footer-info {
  margin-bottom: 24px;
}

.footer-info p:first-child {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer-info p:last-child {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.46);
  letter-spacing: 0.12em;
}

.footer-copy {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

/* ===== アニメーション ===== */
@keyframes heroLogoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(22px);
  }
}

/* ===== タブレット ===== */
@media screen and (max-width: 1200px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 90px;
    right: 0;
    left: auto;
    transform: translateX(100%);
    width: min(360px, 82vw);
    height: calc(100svh - 90px);
    padding: 28px 22px;
    background: rgba(0, 0, 0, 0.94);
    border-left: 1px solid rgba(255, 215, 160, 0.16);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .nav::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, #f6ae54, rgba(255, 215, 160, 0.2));
    border-radius: 999px;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    display: block;
    width: 100%;
    font-size: 22px;
    padding: 18px 18px 18px 22px;
    border-radius: 0;
  }

  .nav a::after {
    left: 22px;
    right: 0;
    bottom: 0;
    height: 1px;
    transform: scaleX(1);
    background: linear-gradient(90deg, rgba(246, 174, 84, 0.9), rgba(255, 215, 160, 0.15));
  }

  .nav a:hover {
    transform: none;
    background: rgba(255, 215, 160, 0.04);
  }

  .feature-card,
  .feature-card.reverse {
    grid-template-columns: 1fr;
  }

  .feature-card.reverse .feature-visual,
  .feature-card.reverse .feature-text {
    order: initial;
  }

  .slide-visual {
    aspect-ratio: 4 / 3;
  }
}

/* ===== スマホ ===== */
@media screen and (max-width: 680px) {
  .header {
    height: 80px;
  }

  .logo {
    left: 16px;
  }

  .logo img {
    height: 42px;
  }

  .hamburger {
    right: 16px;
    width: 34px;
    height: 26px;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 11px;
  }

  .hamburger span:nth-child(3) {
    top: 22px;
  }

  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    top: 11px;
  }

  .nav {
    top: 80px;
    width: min(340px, 88vw);
    height: calc(100svh - 80px);
    padding: 22px 16px;
  }

  .nav::before {
    top: 18px;
    bottom: 18px;
  }

  .nav a {
    font-size: 18px;
    padding: 16px 14px 16px 18px;
  }

  .nav a::after {
    left: 18px;
  }

  .hero-content {
    width: 100%;
    padding: 118px 16px 60px;
  }

  .hero-line-top {
    width: 110px;
    margin-bottom: 24px;
  }

  .hero-logo {
    width: 92vw;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }

  .hero-date-wrap {
    gap: 12px;
  }

  .hero-date {
    display: block;
    font-size: 18px;
    line-height: 1.8;
  }

  .hero-date .festival-year {
    display: block;
    margin-right: 0;
    margin-bottom: 6px;
    font-size: 1.4em;
  }

  .hero-date .festival-schedule {
    display: block;
    font-size: 0.95em;
  }

  .hero-countdown {
    flex-direction: column;
    gap: 6px;
    padding: 12px 18px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-countdown strong {
    font-size: 34px;
  }

  .hero-nav-preview {
    margin-top: 30px;
    gap: 14px 18px;
  }

  .hero-nav-preview a {
    font-size: 15px;
  }

  .scroll-down {
    width: 34px;
    height: 62px;
    margin-top: 32px;
  }

  .section {
    padding: 80px 16px;
  }

  .section-inner {
    padding: 24px;
    border-radius: 22px;
  }

  .section-label {
    margin-bottom: 14px;
    font-size: 12px;
    padding: 7px 13px;
  }

  .section h2 {
    margin-bottom: 14px;
  }

  .point-title {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.35;
  }

  .point-caption {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.7;
  }

  .feature-card,
  .feature-card.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card.reverse .feature-visual,
  .feature-card.reverse .feature-text {
    order: initial;
  }

  .feature-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  .feature-text p {
    font-size: 15px;
  }

  .detail-btn {
    width: 100%;
    min-width: 0;
    height: 50px;
  }

  .mini-schedule {
    padding: 14px 14px 12px;
  }

  .mini-title {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .mini-schedule li {
    grid-template-columns: 84px 1fr;
    padding: 8px 0;
  }

  .mini-schedule li span:first-child {
    font-size: 12px;
  }

  .mini-schedule li span:last-child {
    font-size: 13px;
    line-height: 1.6;
  }

  .honjin-slider-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .slide-arrow {
    display: none;
  }

  .slide-visual {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .slide-award {
    margin-top: 14px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.55;
    width: 100%;
    min-width: 0;
  }

  .slider-dots {
    margin-top: 12px;
    margin-bottom: 8px;
  }

  .slider-text {
    margin-top: 16px;
  }

  .feature-note {
    font-size: 12px;
  }

  .footer {
    padding: 70px 16px 28px;
  }

  .footer-top-line {
    margin-bottom: 28px;
  }

  .footer-subtitle {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 26px;
    line-height: 1.8;
  }

  .footer-nav {
    gap: 14px 18px;
    margin-bottom: 28px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-info p:first-child {
    font-size: 16px;
  }

  .footer-info p:last-child {
    font-size: 11px;
  }

  .footer-copy {
    font-size: 11px;
  }
}