.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0 16px;
  border: var(--border);
  border-radius: 2px;
  font-family: var(--font-display) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.sticker--sm {
  min-height: 23px;
  padding: 0 10px;
  font-size: 12px;
}

main:has(.sub-visual) .sub-visual .sticker,
main:has(.sub-visual) .home-sec-head .sticker,
main:has(.sub-visual) .crew-intro .sticker {
  min-height: 52px;
  padding: 0 20px;
  font-size: 32px;
}

.sticker--white { background: var(--color-white); color: var(--color-black); }
.sticker--yellow { background: var(--color-yellow); color: var(--color-black); }
.sticker--green { background: var(--color-green); color: var(--color-white); }
.sticker--orange { background: var(--color-orange); color: var(--color-white); }
.sticker--blue { background: var(--color-blue); color: var(--color-white); }
.sticker--black { background: var(--color-black); color: var(--color-yellow); }

.market-awning {
  height: 32px;
  border-bottom: var(--border);
  background-image: repeating-linear-gradient(
    90deg,
    var(--color-blue) 0 22px,
    var(--color-black) 22px 24px,
    var(--color-white) 24px 46px,
    var(--color-black) 46px 48px
  );
}

/* Main Visual ??full-width hero video (index only) */
.main-visual {
  margin-top: var(--header-height);
  width: 100%;
  background: #fff8f0;
  border-bottom: var(--border);
}

.main-visual__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1000;
  height: auto;
  margin-inline: auto;
  overflow: hidden;
}

.main-visual__picture,
.main-visual__bg,
.main-visual__obj,
.main-visual__tag,
.main-visual__awning {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.main-visual__picture {
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.main-visual__bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}

.main-visual__awning {
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 10;
  object-fit: fill;
}

.main-visual__obj--left {
  left: 5%;
  bottom: 4.5%;
  height: 25%;
  width: auto;
  z-index: 3;
}

.main-visual__obj--right {
  right: 5%;
  bottom: 4.5%;
  height: 25%;
  width: auto;
  z-index: 3;
}

.main-visual__tag {
  width: auto;
  z-index: 2;
  transform-origin: 50% 0;
}

.main-visual__tag--1 {
  left: 5.2%;
  top: 25%;
  height: 12%;
  z-index: 2;
}

.main-visual__tag--2 {
  left: 12%;
  top: 31%;
  height: 9%;
  z-index: 3;
}

.main-visual__tag--3 {
  left: 17%;
  top: 25%;
  height: 13%;
}

.main-visual__tag--4 {
  left: auto;
  right: 41%;
  top: 25%;
  height: 14%;
}

.main-visual__tag--5 {
  left: auto;
  right: 20%;
  top: 26%;
  height: 18%;
  z-index: 3;
}

.main-visual__tag--6 {
  left: auto;
  right: 14.5%;
  top: 28%;
  height: 12%;
}

@media (max-width: 1023px) {
  .main-visual__media {
    aspect-ratio: 941 / 1672;
  }

  .main-visual__bg {
    object-fit: fill;
  }

  .main-visual__tag,
  .main-visual__awning {
    display: none;
  }

  .main-visual__obj--left,
  .main-visual__obj--right {
    height: 16%;
    max-width: 38vw;
    max-height: 132px;
    object-fit: contain;
    bottom: 5.5%;
  }

  .main-visual__obj--left {
    left: 4%;
  }

  .main-visual__obj--right {
    right: 4%;
  }
}

@media (max-width: 374px) {
  .main-visual__obj--left,
  .main-visual__obj--right {
    height: 14%;
    max-height: 108px;
    max-width: 34vw;
  }
}

.quick-nav {
  background: var(--color-yellow);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 80px 0;
}

.quick-nav__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.quick-nav__head p {
  font-family: var(--font-display) !important;
  font-size: 20px;
}

.quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.quick-nav__pagination {
  display: none;
}

@media (min-width: 1024px) {
  .quick-nav__swiper.swiper {
    overflow: visible;
    margin: 0;
  }

  .quick-nav__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    transform: none !important;
  }

  .quick-nav__swiper .swiper-slide {
    width: auto !important;
    height: auto;
    margin: 0 !important;
  }
}

.quick-card {
  display: flex;
  flex-direction: column;
  min-height: 242px;
  padding: 24px;
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.quick-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.quick-card--blue { background: var(--color-blue); }
.quick-card--orange { background: var(--color-orange); }
.quick-card--white { background: var(--color-white); color: var(--color-black); }
.quick-card--green { background: var(--color-green); }

.quick-card__icon {
  min-height: 80px;
  border: var(--border);
  border-radius: 2px;
  margin-bottom: 16px;
}

.quick-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.quick-card p {
  font-size: 14px;
  font-weight: 500;
}

.quick-card__arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--color-white);
  color: var(--color-black);
  border: var(--border);
  border-radius: var(--radius-sm);
}

.home-sec-head {
  margin-bottom: 48px;
}

.home-sec-head h2 {
  font-size: 40px;
  margin-top: 16px;
  word-break: keep-all;
}

.home-sec-head--center {
  text-align: center;
}

.home-sec-head--center p {
  margin-top: 16px;
  color: #666;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.shop-card__image {
  height: 220px;
  border: var(--border);
  border-radius: 2px;
  margin: 16px 0 20px;
  overflow: hidden;
  background: var(--color-gray-200);
}

.shop-card__image-inner {
  width: 100%;
  height: 100%;
}

.shop-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop-card__content {
  display: flex;
  flex-direction: column;
}

.shop-card__kicker {
  font-family: var(--font-display) !important;
  font-size: 16px;
  margin-bottom: 8px;
}

.shop-card__kicker--blue { color: var(--color-blue); }
.shop-card__kicker--green { color: var(--color-green); }
.shop-card__kicker--orange { color: var(--color-orange); }

.shop-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  word-break: keep-all;
}

.shop-card__desc {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}

.shop-card__btn {
  width: 100%;
  margin-top: auto;
}

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

.mascot-card {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}

.mascot-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  aspect-ratio: 1 / 1;
  padding: 12px;
  border: var(--border);
  border-radius: 2px;
  margin-bottom: 0;
  background: var(--color-cream);
  overflow: hidden;
}

.mascot-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mascot-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 34px;
  padding: 2px 16px 0;
  border: var(--border);
  border-radius: 100px;
  font-family: var(--font-display) !important;
  font-size: 18px;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.mascot-pill--blue { background: var(--color-blue); color: var(--color-white); }
.mascot-pill--orange { background: var(--color-orange); color: var(--color-white); }
.mascot-pill--yellow { background: var(--color-yellow); color: var(--color-black); }
.mascot-pill--green { background: var(--color-green); color: var(--color-white); }

.mascot-card p {
  margin-top: 6px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.home-location {
  background: var(--color-white);
  border-top: var(--border);
  border-bottom: var(--border);
}

.home-location__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.home-location__map {
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 428px;
  background: var(--color-gray-200);
}

.home-location__map iframe {
  width: 100%;
  height: 428px;
  border: 0;
  display: block;
}

.home-location__info h3 {
  font-size: 28px;
  word-break: keep-all;
  margin-bottom: 12px;
}

.home-location__info > p {
  color: #666;
  font-weight: 600;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.home-location__divider {
  display: block;
  height: 0;
  margin: 0 0 24px;
  border: 0;
  border-bottom: var(--border);
  transform-origin: left center;
}

.transit-list {
  display: grid;
  gap: 12px;
}

.transit-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 12px;
  background: var(--color-cream);
  border: var(--border);
  border-radius: var(--radius-sm);
}

.transit-list span {
  flex-shrink: 0;
  min-width: 84px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 2px;
  font-family: var(--font-display) !important;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.transit-list p {
  font-size: 14px;
  font-weight: 600;
}

.home-notice__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 48px;
}

.home-notice__head .home-sec-head {
  margin-bottom: 0;
}

.notice-list {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
}

.notice-list li + li {
  border-top: var(--border);
}

.notice-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 71px;
  padding: 0 24px;
}

.notice-list strong {
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-list time {
  color: #666;
  font-size: 14px;
  flex-shrink: 0;
}

/* Overview */
.poster-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.poster-block .image-placeholder {
  min-height: 480px;
  border: var(--border);
}

/* Venue */
.venue-map {
  border: var(--border-strong);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.venue-map .image-placeholder {
  min-height: 480px;
}

/* Location */
.location-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 40px;
}

.map-embed {
  border: var(--border-strong);
  box-shadow: var(--shadow);
  min-height: 420px;
  background: var(--color-gray-200);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.location-address {
  border: var(--border);
  background: var(--color-white);
  padding: 32px;
}

.location-address h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Regions */
.sub-visual__stack {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.regions-intro {
  margin-bottom: 48px;
}

.regions-intro h2 {
  margin-top: 16px;
  word-break: keep-all;
}

.regions-split {
  display: grid;
  grid-template-columns: minmax(0, 672px) minmax(0, 560px);
  justify-content: space-between;
  gap: 48px;
  align-items: start;
}

.regions-map {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.regions-map .image-placeholder {
  min-height: 520px;
  border: var(--border);
  border-radius: var(--radius-sm);
  color: var(--color-black);
  font-size: 13px;
  font-weight: 700;
}

.regions-results {
  display: grid;
  gap: 24px;
}

.regions-select {
  display: block;
}

.regions-select select {
  width: 100%;
  min-height: 54px;
  padding: 0 44px 0 16px;
  border: var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-appearance: none;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23111111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  appearance: none;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-black);
}

.regions-cards {
  display: grid;
  gap: 16px;
}

.region-event {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.region-event[hidden] {
  display: none;
}

.region-event__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.region-event__dday {
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 700;
}

.region-event .sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 50px;
  min-height: 50px;
  padding: 2px 18px 0;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.region-event h3 {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 8px;
  word-break: keep-all;
}

.region-event__facts {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-event__facts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.region-event__facts li::before {
  content: '·';
  flex: none;
  width: 12px;
  color: var(--color-black);
  font-weight: 800;
  text-align: center;
  line-height: 1.8;
}

.region-event__facts span {
  min-width: 0;
  white-space: pre-line;
}

.region-event p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-line;
}

.region-event__home {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  font-weight: 700;
  word-break: keep-all;
}

.region-event__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 20px;
  background: var(--color-yellow);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 900;
}

.region-event__btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--color-black);
}

.regions-empty {
  display: flex;
  align-items: center;
  min-height: 160px;
  padding: 24px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  color: #666;
  font-size: 15px;
  font-weight: 700;
  word-break: keep-all;
}

.regions-empty[hidden] {
  display: none;
}

.region-map-section__heading .section__desc {
  margin-top: 16px;
  max-width: 42em;
}

.region-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 32px;
  align-items: start;
}

.region-map {
  --map-land: #F3B44A;
  --map-line: #1C140E;
  --map-gap: var(--color-cream);
  background: var(--color-cream);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 12px 16px 16px;
}

.region-map__svg-wrap {
  position: relative;
  width: 100%;
}

.gg-map {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.gg-map__region {
  cursor: pointer;
  outline: none;
}

.gg-map__path {
  fill: var(--map-land);
  stroke: none;
  transition: fill 0.25s ease, opacity 0.25s ease;
}

.gg-map__rails {
  pointer-events: none;
}

.gg-map__rail {
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.gg-map__rail--dark {
  stroke: var(--map-line);
  stroke-width: 5;
}

.gg-map__rail--light {
  stroke: var(--map-gap);
  stroke-width: 1.85;
}

.gg-map.is-interacting .gg-map__region:not(.is-hover):not(.is-active) {
  opacity: 0.78;
}

.gg-map__region:hover .gg-map__path,
.gg-map__region:focus-visible .gg-map__path,
.gg-map__region.is-hover .gg-map__path {
  fill: var(--color-blue);
}

.gg-map__region.is-active .gg-map__path {
  fill: var(--color-orange);
}

.gg-map__region.is-active.is-hover .gg-map__path,
.gg-map__region.is-active:hover .gg-map__path,
.gg-map__region.is-active:focus-visible .gg-map__path {
  fill: var(--color-orange);
}

.gg-map__region:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

.region-label {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  text-shadow:
    -1px -1px 0 var(--color-cream),
    1px -1px 0 var(--color-cream),
    -1px 1px 0 var(--color-cream),
    1px 1px 0 var(--color-cream);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.region-label--compact {
  font-size: 11px;
}

.region-label:hover,
.region-label:focus-visible,
.region-label.is-hover {
  color: var(--color-blue);
}

.region-label.is-active {
  padding: 3px 6px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  text-shadow: none;
  box-shadow: 2px 2px 0 var(--color-black);
}

.region-label:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

.region-marker {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 22px;
  margin-left: -9px;
  margin-top: -22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px) scale(0.7);
  transform-origin: 50% 100%;
}

.region-marker.is-visible {
  opacity: 1;
  transform: none;
}

.region-marker__pin {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  background: var(--color-orange);
  border: 2px solid var(--color-black);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 2px 2px 0 var(--color-black);
}

.region-info {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.region-info__idle,
.region-info__empty {
  display: flex;
  align-items: center;
  min-height: 160px;
  margin: 0;
  padding: 24px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  color: #666;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
}

.region-info__empty {
  min-height: 120px;
}

.region-info__events {
  display: grid;
  gap: 16px;
  margin: 0;
}

.region-info__idle[hidden],
.region-info__detail[hidden],
.region-info__empty[hidden],
.region-event__btn[hidden],
.region-event__dday[hidden],
.region-event__home[hidden],
.region-event p[hidden],
.region-event__facts li[hidden] {
  display: none;
}

.region-list {
  display: none;
}

.region-list__btn {
  min-height: 42px;
  padding: 0 8px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.region-list__btn.is-active,
.region-list__btn.is-hover,
.region-list__btn:focus-visible {
  background: var(--color-black);
  color: var(--color-white);
}

.region-list__btn:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

/* Team */
.crew-awning {
  margin-top: var(--header-height);
}

.sub-visual.sub-visual--crew {
  margin-top: 0;
  background: var(--color-orange);
}

.sub-visual--crew .breadcrumb,
.sub-visual--crew .breadcrumb a,
.sub-visual--crew .breadcrumb__sep {
  color: var(--color-white);
}

.sub-visual--crew .sub-visual__en {
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.crew-hero-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 188px;
  min-height: 55px;
  padding: 0 20px;
  background: var(--color-black);
  color: var(--color-white);
  border: var(--border);
  border-radius: 2px;
  font-size: 32px;
  line-height: 1;
}

.youth-day-page {
  background: var(--color-cream);
}

.youth-day-copy {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 56px 48px;
  text-align: center;
  color: var(--color-black);
  background: var(--color-white);
  border: var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.youth-day-copy__title:not(.is-active),
.youth-day-copy__lead:not(.is-active),
.youth-day-copy__law:not(.is-active) {
  display: none;
}

.youth-day-copy__title.is-active {
  display: inline-block;
}

.youth-day-copy__lead.is-active,
.youth-day-copy__law.is-active {
  display: block;
}

.youth-day-copy__tape {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 108px;
  height: 28px;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--color-yellow);
  clip-path: polygon(4% 16%, 22% 0, 48% 12%, 72% 2%, 96% 14%, 100% 86%, 78% 100%, 52% 88%, 24% 100%, 0 84%);
  box-shadow: 0 2px 0 rgba(17, 17, 17, 0.16);
}

.youth-day-copy .sticker {
  margin-bottom: 20px;
}

.youth-day-copy__title {
  display: inline-block;
  font-family: var(--font-display) !important;
  font-size: 53px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
  background-image: linear-gradient(transparent 62%, rgba(244, 204, 90, 0.75) 62%);
}

.youth-day-copy__lead {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 36px;
  word-break: keep-all;
}

.youth-day-copy__law {
  padding: 24px 28px 20px;
  background: var(--color-cream);
  border: 2px dashed var(--color-black);
  border-radius: var(--radius-sm);
}

.youth-day-copy__law-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-bottom: 12px;
  padding: 2px 16px 0;
  background: var(--color-black);
  color: var(--color-yellow);
  font-family: var(--font-display) !important;
  font-size: 24px;
  letter-spacing: 0.04em;
  transition: opacity 0.4s ease;
}

.youth-day-copy__legal {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  word-break: keep-all;
}

.youth-day-copy__caret {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 3px;
  background: var(--color-black);
  vertical-align: -0.05em;
  animation: youth-day-caret 0.64s steps(1) infinite;
}

.youth-day-copy__title .youth-day-copy__caret {
  height: 0.78em;
  width: 4px;
  background: var(--color-orange);
}

@keyframes youth-day-caret {
  50% { opacity: 0; }
}

.crew-intro {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 48px;
}

.crew-intro__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.crew-intro h2 {
  font-family: var(--font-display) !important;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.2;
  word-break: keep-all;
}

.crew-intro > p {
  color: #666;
  font-size: 18px;
  line-height: 1.56;
  word-break: keep-all;
}

.crew-gallery__head {
  margin-bottom: 48px;
}

.crew-gallery__head h3 {
  font-family: var(--font-display) !important;
  font-size: 32px;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.crew-gallery__head p {
  color: #666;
  font-size: 16px;
}

.crew-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.crew-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  min-width: 0;
  height: auto;
}

.crew-card .image-placeholder {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  min-height: 260px;
  border: var(--border);
  border-radius: 2px;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 700;
  padding: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.crew-card__image {
  flex-shrink: 0;
  width: 100%;
  border: var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-gray-200);
}

.crew-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.crew-card--compact .image-placeholder {
  min-height: 56px;
}

.crew-card__body {
  flex: 1 1 auto;
  margin-top: 20px;
  min-width: 0;
}

.crew-card h4 {
  font-family: var(--font-display) !important;
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.crew-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Program list */
.prog-awning {
  margin-top: var(--header-height);
}

.sub-visual.sub-visual--prog {
  margin-top: 0;
  background: var(--color-blue);
}

.sub-visual--prog .breadcrumb,
.sub-visual--prog .breadcrumb a,
.sub-visual--prog .breadcrumb__sep,
.sub-visual--prog .sub-visual__title,
.sub-visual--prog .sub-visual__en {
  color: #fff;
}

.sub-visual--prog.sub-visual--detail .breadcrumb,
.sub-visual--prog.sub-visual--detail .breadcrumb a,
.sub-visual--prog.sub-visual--detail .breadcrumb__sep,
.sub-visual--prog.sub-visual--detail .sub-visual__en {
  color: #fff;
}

.sub-visual.sub-visual--prog .sub-visual__title {
  font-size: 42px;
}

.sub-visual--prog .sub-visual__en {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.prog-tabs {
  padding: 20px 0 0;
}

.prog-tabs__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.prog-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 151px;
  min-height: 54px;
  padding: 0 20px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 900;
}

.prog-tabs a.is-current {
  background: var(--color-blue);
  color: var(--color-white);
}

/* Program theme: diagnosis (green #35A85D) */
.prog-theme--diagnosis .market-awning {
  background-image: repeating-linear-gradient(
    90deg,
    var(--color-green) 0 22px,
    var(--color-black) 22px 24px,
    var(--color-white) 24px 46px,
    var(--color-black) 46px 48px
  );
}

.prog-theme--diagnosis .sub-visual.sub-visual--prog {
  background: var(--color-green);
}

.prog-theme--diagnosis .prog-tabs a.is-current {
  background: var(--color-green);
}

.prog-theme--diagnosis .prog-card__badge {
  background: var(--color-green);
}

.prog-theme--diagnosis .prog-card__tag {
  color: var(--color-green);
}

.prog-theme--diagnosis .prog-detail__keyword {
  color: var(--color-green);
}

/* Program theme: challenge (orange #E9562D) */
.prog-theme--challenge .market-awning {
  background-image: repeating-linear-gradient(
    90deg,
    var(--color-orange) 0 22px,
    var(--color-black) 22px 24px,
    var(--color-white) 24px 46px,
    var(--color-black) 46px 48px
  );
}

.prog-theme--challenge .sub-visual.sub-visual--prog {
  background: var(--color-orange);
}

.prog-theme--challenge .prog-tabs a.is-current {
  background: var(--color-orange);
}

.prog-theme--challenge .prog-card__badge {
  background: var(--color-orange);
}

.prog-theme--challenge .prog-card__tag {
  color: var(--color-orange);
}

.prog-theme--challenge .prog-detail__keyword {
  color: var(--color-orange);
}

.prog-intro {
  margin-bottom: 48px;
}

.prog-keys {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.prog-keys .sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  padding: 2px 16px 0;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.prog-intro > p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
}

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

.prog-theme--diagnosis .prog-card-grid,
.prog-theme--challenge .prog-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.prog-theme--diagnosis .prog-card .image-placeholder,
.prog-theme--challenge .prog-card .image-placeholder {
  min-height: 160px;
}

.prog-card__image {
  height: 220px;
  margin: 20px 0;
  border: var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-gray-200);
}

.prog-theme--diagnosis .prog-card__image,
.prog-theme--challenge .prog-card__image {
  height: 160px;
}

.prog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.prog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.prog-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 60px;
  height: 29px;
  padding: 0 10px;
  background: var(--color-blue);
  color: var(--color-white);
  border: var(--border);
  border-radius: 2px;
  font-size: 16px;
  line-height: 2;
}

.prog-card .image-placeholder {
  min-height: 220px;
  margin: 20px 0;
  border: var(--border);
  border-radius: 2px;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 700;
}

.prog-card__media {
  position: relative;
  margin: 20px 0;
}

.prog-card__media .image-placeholder {
  margin: 0;
}

.prog-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center top;
  border: var(--border);
  border-radius: 2px;
}

.prog-card__speaker {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  background: var(--color-black);
  color: var(--color-white);
  border: var(--border);
  font-family: var(--font-display) !important;
  font-size: 16px;
  line-height: 1;
}

.prog-card__tag {
  color: var(--color-blue);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
}

.prog-card h2 {
  font-family: var(--font-body);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 8px;
  word-break: keep-all;
}

.prog-card__desc {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
  flex: 1;
}

.prog-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 20px;
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 900;
}

.prog-card__btn:hover {
  background: var(--color-yellow);
}

.sub-visual--detail:not(.sub-visual--prog) .breadcrumb,
.sub-visual--detail:not(.sub-visual--prog) .breadcrumb a,
.sub-visual--detail:not(.sub-visual--prog) .breadcrumb__sep {
  color: #666;
}

/* Sub-visual titles ??display font (HS?�토?�체) */
.sub-visual__title,
.detail-hero-title,
.crew-hero-title,
.notice-hero-title {
  font-family: var(--font-display) !important;
}

.detail-hero-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 194px;
  min-height: 55px;
  padding: 0 20px;
  background: var(--color-black);
  color: var(--color-white);
  border: var(--border);
  border-radius: 2px;
  font-size: 32px;
  line-height: 1;
}

.sub-visual--detail:not(.sub-visual--prog) .sub-visual__en {
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.prog-detail__card {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
}

.prog-detail__card > .image-placeholder {
  min-height: 420px;
  margin-bottom: 32px;
  border: var(--border);
  border-radius: 2px;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 700;
}

.prog-detail__image {
  height: 560px;
  margin-bottom: 32px;
  border: var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-gray-200);
}

.prog-detail__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.prog-detail__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.prog-detail .prog-card__badge {
  font-size: 24px;
  line-height: 1;
  height: 48px;
  min-width: 96px;
  padding: 2px 16px 0;
}

.prog-detail__keyword {
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 800;
}

.prog-detail__card h2 {
  font-family: var(--font-body);
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 12px;
  word-break: keep-all;
}

.prog-detail__lead {
  color: #666;
  font-size: 18px;
  margin-bottom: 32px;
  word-break: keep-all;
}

.prog-detail__list {
  display: grid;
  gap: 20px;
  padding: 32px 0;
  border-top: var(--border);
  border-bottom: var(--border);
}

.prog-detail__list div {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 24px;
  align-items: center;
}

.prog-detail__list dt {
  margin: 0;
}

.prog-detail__list dd {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  word-break: keep-all;
}

.prog-detail__places {
  align-items: start;
}

.prog-place-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prog-place-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
}

.prog-place-list li span:first-child {
  color: var(--color-orange);
}

.speaker-profile {
  margin-top: 32px;
  padding-top: 32px;
}

.speaker-profile h3 {
  margin: 0 0 24px;
}

.speaker-profile__grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.speaker-profile__photo {
  overflow: hidden;
  min-height: 280px;
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.speaker-profile__photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}

.speaker-profile__name {
  font-family: var(--font-display) !important;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.speaker-profile__role {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  word-break: keep-all;
}

.speaker-profile__link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
}

.speaker-profile__career {
  display: grid;
  gap: 10px;
}

.speaker-profile__career li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  word-break: keep-all;
}

.speaker-profile__career li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: var(--color-orange);
  border: 1px solid var(--color-black);
}

.prog-detail__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.prog-detail__list .sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 46px;
  min-height: 46px;
  padding: 2px 16px 0;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.prog-detail__actions p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-orange);
  font-size: 16px;
  font-weight: 800;
  word-break: keep-all;
}

.prog-detail__actions p::before {
  content: '??;
  font-size: 18px;
  line-height: 1;
}

.prog-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 227px;
  min-height: 54px;
  padding: 0 24px;
  background: var(--color-orange);
  color: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.prog-detail__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--color-black);
}

/* Program detail */
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.detail-hero .image-placeholder {
  min-height: 360px;
  border: var(--border);
}

.detail-hero h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 12px 0 16px;
}

.page-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

/* Event overview */
.sub-visual--festival {
  background: var(--color-yellow);
  padding: 48px 0 48px;
  border-bottom: var(--border);
}

.sub-visual--festival::before,
.sub-visual--festival::after {
  display: none;
}

.sub-visual--festival .breadcrumb,
.sub-visual--festival .breadcrumb a,
.sub-visual--festival .breadcrumb__sep {
  color: #000;
}

.sub-visual--festival.sub-visual--prog .breadcrumb,
.sub-visual--festival.sub-visual--prog .breadcrumb a,
.sub-visual--festival.sub-visual--prog .breadcrumb__sep,
.sub-visual--festival.sub-visual--prog .sub-visual__title,
.sub-visual--festival.sub-visual--prog .sub-visual__en {
  color: #fff;
}

.sub-visual--festival .breadcrumb {
  margin-bottom: 24px;
  font-weight: 700;
}

.sub-visual__title-group {
  display: grid;
  gap: 12px;
}

.sub-visual__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.sub-visual--festival .sub-visual__title {
  font-family: var(--font-display) !important;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.21;
}

.sub-visual--festival .sub-visual__en {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
  letter-spacing: 0;
}

.sub-visual--overview .sub-visual__en {
  color: var(--color-blue);
}

.sub-visual.sub-visual--illustrated {
  padding: 0;
  background: #fcf6e0;
  border-bottom: 0;
  overflow: hidden;
}

.sub-visual.sub-visual--illustrated::before,
.sub-visual.sub-visual--illustrated::after {
  content: none;
  display: none;
}

.sub-visual__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4096 / 1494;
  overflow: hidden;
  background: #fcf6e0;
}

.sub-visual__picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.sub-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
  pointer-events: none;
}

.sub-visual__obj-wrap {
  position: absolute;
  bottom: 7.2%;
  height: 34%;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.sub-visual__obj-wrap--left {
  left: 8%;
  animation: sub-visual-walk-right 5s ease-in-out infinite;
}

.sub-visual__obj-wrap--right {
  right: 8%;
  animation: sub-visual-walk-left 5.4s ease-in-out infinite;
}

.sub-visual__obj {
  display: block;
  height: 100%;
  width: auto;
  animation: sub-visual-bounce 0.78s ease-in-out infinite;
}

.sub-visual__obj-wrap--right .sub-visual__obj {
  animation-duration: 0.86s;
}

.sub-visual--illustrated .sub-visual__title {
  position: absolute;
  left: 26%;
  right: 26%;
  top: 52%;
  z-index: 4;
  margin: 0;
  transform: translateY(-50%);
  color: var(--color-black);
  font-family: var(--font-display) !important;
  font-size: clamp(40px, 5.6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-align: left;
  word-break: keep-all;
}

@keyframes sub-visual-walk-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(7.5vw); }
}

@keyframes sub-visual-walk-left {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-7.5vw); }
}

@keyframes sub-visual-walk-right-m {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5vw); }
}

@keyframes sub-visual-walk-left-m {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5vw); }
}

@keyframes sub-visual-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 1023px) {
  .sub-visual__media {
    aspect-ratio: 941 / 1672;
  }

  .sub-visual__bg {
    object-fit: fill;
    object-position: center;
  }

  .sub-visual__obj-wrap {
    height: 20%;
    max-height: 200px;
    bottom: 5.4%;
  }

  .sub-visual__obj-wrap--left {
    left: 4%;
    animation-name: sub-visual-walk-right-m;
  }

  .sub-visual__obj-wrap--right {
    right: 4%;
    animation-name: sub-visual-walk-left-m;
  }

  .sub-visual__obj {
    max-width: 42vw;
    object-fit: contain;
  }

  .sub-visual--illustrated .sub-visual__title {
    left: 8%;
    right: 8%;
    top: 34%;
    font-size: clamp(40px, 10.5vw, 56px);
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sub-visual__obj-wrap--left,
  .sub-visual__obj-wrap--right,
  .sub-visual__obj {
    animation: none;
  }

  .gg-map__path,
  .gg-map__rail,
  .region-label,
  .region-marker,
  .region-info__inner {
    transition: none;
  }
}

.overview-info {
  background: var(--color-cream);
  padding-block: 80px;
}

.overview-info .home-sec-head h2 {
  font-size: 52px;
  padding-top: 24px;
}

.overview-info__head {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.overview-info__head h2 {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.21;
  word-break: keep-all;
}

.overview-info__grid {
  display: grid;
  grid-template-columns: 592px 640px;
  justify-content: space-between;
  gap: 48px;
  align-items: stretch;
}

.overview-info__poster {
  border: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.overview-info__poster img {
  display: block;
  width: 100%;
  height: auto;
}

.overview-info__list {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  margin: 0;
}

@media (min-width: 1024px) {
  .overview-info__list {
    display: flex;
    flex-direction: column;
    height: 0;
    min-height: 100%;
  }

  .overview-info__row--dates {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .overview-info__row--dates dd {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 0;
  }

  .overview-info__row--dates .overview-schedule {
    flex: 1;
    align-content: space-between;
  }
}

.overview-info__row {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-black);
}

.overview-info__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.overview-info__row + .overview-info__row {
  padding-top: 32px;
}

.overview-info__row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.overview-info__row dt::before {
  content: '';
  position: static;
  width: 10px;
  height: 10px;
  background: var(--color-blue);
  border: var(--border);
  flex-shrink: 0;
}

.overview-info__row dd {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  word-break: keep-all;
}

.overview-schedule {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.overview-schedule li {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) minmax(0, 1.4fr);
  gap: 12px 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.overview-schedule li span:first-child {
  color: var(--color-blue);
  white-space: nowrap;
}

.overview-mascots {
  background: var(--color-white);
  border-top: var(--border);
  padding-block: 80px;
}

.overview-mascots .home-sec-head {
  margin-bottom: 48px;
}

.overview-mascots .home-sec-head h2 {
  font-family: var(--font-body);
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1.2;
}

.overview-mascots .section__desc {
  margin-top: 16px;
  font-size: 18px;
  color: #666;
  max-width: none;
}

.overview-mascots__split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.intent-panel {
  position: relative;
  align-self: start;
  margin-top: 14px;
  padding: 40px 28px 32px;
  background: var(--color-cream);
  border: 4px solid #2a241c;
  border-radius: 28px;
  box-shadow: 8px 12px 0 rgba(42, 36, 28, 0.1);
}

.intent-panel__tape {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 96px;
  height: 30px;
  transform: translateX(-50%) rotate(-3deg);
  background: repeating-linear-gradient(
    90deg,
    var(--color-blue) 0 24px,
    var(--color-orange) 24px 48px,
    var(--color-green) 48px 72px,
    var(--color-yellow) 72px 96px
  );
  clip-path: polygon(3% 18%, 18% 4%, 38% 14%, 58% 0, 78% 12%, 97% 6%, 100% 82%, 82% 100%, 62% 88%, 40% 100%, 18% 90%, 0 100%);
  box-shadow: 0 2px 0 rgba(42, 36, 28, 0.18);
}

.intent-panel h3 {
  display: inline-block;
  font-family: var(--font-display) !important;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 16px;
  background-image: linear-gradient(transparent 62%, rgba(244, 204, 90, 0.7) 62%);
}

.intent-panel__lead,
.intent-panel__close {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

.intent-panel__lead {
  margin-bottom: 8px;
}

.intent-panel__close {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}

.intent-steps {
  display: grid;
  gap: 0;
}

.intent-steps li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 0 16px 14px;
  border-bottom: 1.5px dashed rgba(42, 36, 28, 0.28);
  border-left: 4px solid transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.intent-steps li > span {
  font-family: var(--font-display) !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  word-break: keep-all;
}

.intent-steps li:nth-child(1) { border-left-color: var(--color-blue); }
.intent-steps li:nth-child(2) { border-left-color: var(--color-orange); }
.intent-steps li:nth-child(3) { border-left-color: var(--color-green); }
.intent-steps li:nth-child(4) { border-left-color: var(--color-yellow); }

.intent-steps__key {
  font-family: var(--font-display) !important;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  padding: 0 4px;
}

.intent-steps__key--hear {
  color: var(--color-blue);
  background-image: linear-gradient(transparent 58%, rgba(22, 149, 204, 0.22) 58%);
}

.intent-steps__key--find {
  color: var(--color-orange);
  background-image: linear-gradient(transparent 58%, rgba(233, 86, 45, 0.22) 58%);
}

.intent-steps__key--pick {
  color: var(--color-green);
  background-image: linear-gradient(transparent 58%, rgba(53, 168, 93, 0.22) 58%);
}

.intent-steps__key--open {
  color: #d4a017;
  background-image: linear-gradient(transparent 58%, rgba(244, 204, 90, 0.55) 58%);
}

@media (min-width: 1024px) {
  .overview-mascots__split {
    align-items: stretch;
  }

  .intent-panel {
    align-self: stretch;
    margin-top: 0;
    height: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .intent-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 8px 0 4px;
  }

  .intent-steps li {
    flex: 1;
    justify-content: center;
  }

  .intent-steps li:last-child {
    border-bottom: none;
  }

  .intent-panel__close {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1.5px dashed rgba(42, 36, 28, 0.28);
  }
}

.overview-mascots__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  align-items: start;
}

.ov-char-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  height: auto;
}

.ov-char-card:nth-child(4) {
  margin-top: calc((1012 / 959 - 1055 / 723) * 100%);
}

.ov-char-card img {
  display: block;
  width: 100%;
  height: auto;
}

.overview-banner {
  margin-top: 48px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #fcf6e0;
  border: var(--border);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  word-break: keep-all;
}

.sub-visual--orange {
  background: var(--color-orange);
}

.sub-visual--orange .breadcrumb,
.sub-visual--orange .breadcrumb a,
.sub-visual--orange .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.9);
}

.sub-visual--orange .sub-visual__title {
  color: var(--color-white);
}

.sub-visual--orange .sub-visual__en {
  color: var(--color-white);
}

.dir-warning {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  min-height: 42px;
  padding: 10px 20px;
  background: var(--color-yellow);
  border: var(--border);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 800;
  word-break: keep-all;
}

.dir-schedule {
  display: grid;
  margin: 32px 0 24px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dir-schedule__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  border: 0;
  border-bottom: var(--border);
  background: var(--color-white);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.dir-schedule__row:last-child {
  border-bottom: 0;
}

.dir-schedule__row:hover,
.dir-schedule__row.is-active {
  background: var(--color-cream);
}

.dir-schedule__date {
  color: var(--color-blue);
  font-weight: 800;
  white-space: nowrap;
}

.dir-schedule__place {
  font-weight: 700;
  word-break: keep-all;
}

.dir-schedule__link {
  justify-self: end;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-orange);
  white-space: nowrap;
}

.dir-map__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  margin: 0;
  padding: 24px;
  background: var(--color-cream);
  border: var(--border);
  border-radius: 2px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  word-break: keep-all;
}

.dir-card a {
  color: var(--color-orange);
  font-weight: 800;
}

.dir-map__card {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 24px;
}

.dir-map__frame {
  overflow: hidden;
  border-radius: 2px;
}

.dir-map__card iframe {
  width: 100%;
  height: 440px;
  border: var(--border);
  border-radius: 2px;
  display: block;
  background: var(--color-gray-200);
}

.dir-transport {
  background: var(--color-white);
  border-top: var(--border);
}

.dir-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dir-card {
  background: var(--color-cream);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
}

.dir-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: var(--border);
}

.dir-dot {
  width: 16px;
  height: 16px;
  border: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}

.dir-dot--blue { background: var(--color-blue); }
.dir-dot--yellow { background: var(--color-yellow); }
.dir-dot--orange { background: var(--color-orange); }
.dir-dot--green { background: var(--color-green); }

.dir-card ul {
  display: grid;
  gap: 10px;
}

.dir-card li {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  word-break: keep-all;
}

.dir-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
}

.dir-cta p {
  font-weight: 800;
  font-size: 16px;
}

.dir-cta .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.dir-cta__url {
  margin-left: 4px;
}

.sub-visual--blue {
  background: var(--color-blue);
}

.sub-visual--blue .breadcrumb,
.sub-visual--blue .breadcrumb a,
.sub-visual--blue .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.85);
}

.sub-visual--blue .sub-visual__title {
  color: var(--color-white);
}

.sub-visual--blue .sub-visual__en {
  color: var(--color-white);
}

.sub-visual--green {
  background: var(--color-green);
}

.sub-visual--green .breadcrumb,
.sub-visual--green .breadcrumb a,
.sub-visual--green .breadcrumb__sep {
  color: var(--color-cream);
}

.sub-visual--green .sub-visual__title {
  color: var(--color-white);
}

.sub-visual--green .sub-visual__en {
  color: var(--color-yellow);
}

.venue-floor__layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 640px);
  gap: 48px 64px;
  align-items: start;
}

.venue-floor__layout .home-sec-head {
  margin-bottom: 0;
}

.venue-floor__map {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 24px;
}

.venue-floor__zoom {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  font: inherit;
  text-align: left;
  overflow: hidden;
}

.venue-floor__map img {
  display: block;
  width: 100%;
  height: auto;
}

.venue-floor__zoom-hint {
  display: none;
}

.venue-zoom {
  display: none;
}

@media (min-width: 1024px) {
  .venue-floor__layout .home-sec-head {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

.venue-zones {
  background: var(--color-white);
  border-top: var(--border);
}

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

.zone-card {
  background: var(--color-cream);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.zone-card__head {
  padding: 24px;
  border-bottom: var(--border);
  color: var(--color-white);
}

.zone-card__head h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.zone-card__head p {
  font-size: 14px;
  font-weight: 700;
}

.zone-card__head--blue { background: var(--color-blue); }
.zone-card__head--orange { background: var(--color-orange); }
.zone-card__head--green { background: var(--color-green); }

.zone-card ul {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.zone-card li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 700;
  word-break: keep-all;
}

.zone-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-black);
  border-radius: 2px;
}

.zone-card:has(.zone-card__head--green) li::before { background: var(--color-green); }
.zone-card:has(.zone-card__head--blue) li::before { background: var(--color-blue); }
.zone-card:has(.zone-card__head--orange) li::before { background: var(--color-orange); }

.notice-awning {
  margin-top: var(--header-height);
}

.sub-visual--notice .breadcrumb,
.sub-visual--notice .breadcrumb a,
.sub-visual--notice .breadcrumb__sep {
  color: #000;
}

.sub-visual--notice .sub-visual__en {
  color: var(--color-black);
}

.notice-hero-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 158px;
  min-height: 55px;
  padding: 0 20px;
  background: var(--color-black);
  color: var(--color-white);
  border: var(--border);
  border-radius: 2px;
  font-size: 32px;
  line-height: 1;
}

.notice-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.notice-toolbar p {
  font-size: 16px;
  font-weight: 800;
}

.notice-toolbar b {
  color: var(--color-orange);
}

.notice-search {
  display: flex;
  width: min(100%, 348px);
  border: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-white);
}

.notice-search input {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  font-size: 15px;
}

.notice-search button {
  min-width: 68px;
  background: var(--color-yellow);
  border: 0;
  border-left: var(--border);
  font-size: 15px;
  font-weight: 900;
}

.notice-box {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.notice-box__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 57px;
  padding: 0 20px;
  border-bottom: var(--border);
}

.notice-box__bar p {
  color: #555;
  font-size: 14px;
}

.notice-box__find {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 0 10px;
  border: var(--border);
  border-radius: 3px;
  background: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}

.notice-box__find::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-black);
  border-radius: 50%;
  box-shadow: 3px 3px 0 -1px var(--color-black);
  clip-path: inset(0 0 2px 0);
}

.notice-cards {
  display: grid;
}

.notice-card {
  border-bottom: var(--border);
}

.notice-card:last-child {
  border-bottom: 0;
}

.notice-card.is-pin {
  background: #fffeef;
}

.notice-card a {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
}

.notice-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.notice-card__top strong {
  font-size: 16px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-card p {
  color: #888;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-card__meta {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.notice-card__meta div {
  display: flex;
  gap: 6px;
  font-size: 13px;
}

.notice-card__meta dt {
  color: #aaa;
}

.notice-card__meta dd {
  color: #555;
  margin: 0;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 41px;
  height: 20px;
  padding: 0 6px;
  border: var(--border);
  border-radius: 2px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 900;
  color: var(--color-white);
}

.notice-badge--alert { background: var(--color-orange); }
.notice-badge--plan { background: #4a90d9; }
.notice-badge--info { background: #7b5ea7; }
.notice-badge--news { background: var(--color-yellow); color: var(--color-black); }

.notice-empty {
  padding: 48px 20px;
  text-align: center;
  color: #888;
  font-weight: 700;
}

.notice-empty[hidden],
.notice-card[hidden] {
  display: none;
}

.notice-paging {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.notice-paging a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  padding: 0 8px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
}

.notice-paging .is-current {
  background: var(--color-yellow);
}

.notice-paging__arrow {
  min-width: 36px;
  height: 36px;
}

/* Community ??youth news */
.community-awning {
  margin-top: var(--header-height);
}

.sub-visual.sub-visual--community {
  margin-top: 0;
  background: var(--color-yellow);
}

.sub-visual--community .breadcrumb,
.sub-visual--community .breadcrumb a,
.sub-visual--community .breadcrumb__sep {
  color: #666;
}

.sub-visual--community .sub-visual__en {
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.community-intro {
  margin-bottom: 64px;
}

.community-intro__label {
  color: var(--color-orange);
  font-size: 16px;
  font-weight: 800;
}

.community-intro__title {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.2;
  word-break: keep-all;
}

/* 카드삭제 수정 */
.community-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.community-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 274px;
  padding: 32px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.community-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.community-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.community-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
}

.community-card__icon i {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.community-card--blue .community-card__icon {
  background: var(--color-blue);
}

.community-card--orange .community-card__icon {
  background: var(--color-orange);
}

.community-card--green .community-card__icon {
  background: var(--color-green);
}

.community-card__external {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.community-card h3 {
  font-family: var(--font-body);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 8px;
  word-break: keep-all;
}

.community-card > p {
  flex: 1;
  color: #666;
  font-size: 15px;
  line-height: 1.47;
  word-break: keep-all;
}

.community-card__link {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 900;
}

.community-card--blue .community-card__link {
  color: var(--color-blue);
}

.community-card--orange .community-card__link {
  color: var(--color-orange);
}

.community-card--green .community-card__link {
  color: var(--color-green);
}

.community-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-sm);
}

.community-banner__body {
  display: grid;
  gap: 24px;
}

.community-banner__body .sticker {
  justify-self: start;
}

.community-banner__body h3 {
  font-family: var(--font-body);
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.2;
  word-break: keep-all;
}

.community-banner__body > p:not(.community-banner__note) {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
}

.community-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 51px;
  padding: 0 32px;
  background: var(--color-orange);
  border: var(--border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 900;
}

.community-banner__cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--color-black);
}

.community-banner__note {
  color: #666;
  font-size: 13px;
}

.community-banner__media.site-window {
  position: relative;
  padding: 24px;
  background: var(--color-white);
  border: var(--border);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.site-window__now {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 4px 12px;
  background: var(--color-green);
  color: var(--color-white);
  border: var(--border);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  z-index: 1;
}

.site-window__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.site-window__filename::before {
  content: 'WWW_';
  color: var(--color-orange);
}

.site-window__dots {
  display: flex;
  gap: 6px;
}

.dot {
  display: block;
  width: 12px;
  height: 12px;
  border: var(--border);
  border-radius: 50%;
}

.dot--yellow { background: var(--color-yellow); }
.dot--orange { background: var(--color-orange); }
.dot--blue { background: var(--color-blue); }

.site-window__screen {
  position: relative;
  border: var(--border);
  overflow: hidden;
  background: var(--color-gray-200);
}

.site-window__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.site-window__tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .poster-block,
  .location-layout,
  .regions-split,
  .region-map-layout,
  .detail-hero,
  .home-location__grid,
  .overview-info__grid,
  .overview-mascots__split,
  .dir-card-grid,
  .prog-card-grid,
  .crew-gallery {
    grid-template-columns: 1fr;
  }

  .overview-info {
    padding-block: 56px;
  }

  .overview-info .home-sec-head h2 {
    font-size: 28px;
    padding-top: 12px;
  }

  .overview-info__grid {
    gap: 24px;
  }

  .overview-info__list {
    padding: 20px 16px;
  }

  .overview-info__list::before {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }

  .overview-info__row + .overview-info__row {
    padding-top: 16px;
  }

  .overview-info__row dt {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .overview-info__row dt .info-num {
    min-width: 28px;
    height: 22px;
    font-size: 11px;
    margin-right: 6px;
  }

  .overview-info__row dd {
    font-size: 15px;
    margin: 6px 0 0;
  }

  .overview-schedule {
    gap: 8px;
  }

  .overview-schedule li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 10px;
    font-size: 14px;
    align-items: start;
  }

  .overview-mascots {
    padding-block: 56px;
  }

  .overview-mascots .home-sec-head {
    margin-bottom: 28px;
  }

  .overview-mascots .section__desc {
    font-size: 15px;
  }

  .overview-mascots__split {
    gap: 28px;
  }

  .overview-mascots__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ov-char-card:nth-child(4) {
    margin-top: 0;
  }

  .intent-panel {
    margin-top: 8px;
    padding: 32px 18px 24px;
  }

  .intent-steps {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .intent-steps li {
    padding: 10px 8px 10px 10px;
    gap: 4px;
    border-bottom: 0;
  }

  .intent-steps__key {
    font-size: 22px;
  }

  .intent-steps li > span {
    font-size: 15px;
  }

  .intent-panel__close {
    font-size: 16px;
    margin-top: 12px;
  }

  .overview-banner {
    margin-top: 28px;
    min-height: 0;
    padding: 14px 16px;
    font-size: 14px;
  }

  .prog-theme--diagnosis .prog-card-grid,
  .prog-theme--challenge .prog-card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .prog-page {
    padding-block: 48px;
  }

  .prog-tabs {
    padding: 12px 0 0;
  }

  .prog-tabs__inner {
    gap: 8px;
  }

  .prog-tabs a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding: 8px 6px;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    word-break: keep-all;
  }

  .prog-intro {
    margin-bottom: 32px;
  }

  .prog-keys {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .prog-keys .sticker {
    min-width: 40px;
    min-height: 36px;
    height: auto;
    padding: 8px 12px 6px;
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;
    max-width: 100%;
  }

  .prog-intro > p {
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
  }

  .prog-intro > p br {
    display: none;
  }

  .prog-keys-line {
    font-size: 11px;
    letter-spacing: 0.06em;
    word-break: break-word;
  }

  .prog-card {
    padding: 20px 16px;
  }

  .prog-card__badge {
    font-size: 13px;
    height: 26px;
    min-width: 0;
    padding: 0 8px;
  }

  .prog-card__num {
    font-size: 28px;
    top: 12px;
    right: 12px;
  }

  .prog-card h2 {
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .prog-card__tag {
    font-size: 13px;
    word-break: keep-all;
  }

  .prog-card__desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .prog-card__btn {
    min-height: 44px;
    margin-top: 16px;
    font-size: 14px;
  }

  .prog-card__media img {
    height: 200px;
  }

  .prog-card__speaker {
    font-size: 14px;
    min-height: 28px;
    padding: 0 10px;
  }

  .prog-theme--diagnosis .prog-card__image,
  .prog-theme--challenge .prog-card__image {
    height: 140px;
    margin: 14px 0;
  }

  .dir-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 16px;
  }

  .dir-cta p {
    font-size: 15px;
    word-break: keep-all;
  }

  .dir-cta .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
    white-space: normal;
    line-height: 1.35;
    word-break: keep-all;
  }

  main:has(.sub-visual) .dir-map .home-sec-head .sticker,
  main:has(.sub-visual) .dir-transport .home-sec-head .sticker {
    min-height: 36px;
    height: auto;
    padding: 8px 12px;
    font-size: 18px;
    line-height: 1.15;
    white-space: normal;
    max-width: 100%;
  }

  .dir-map .home-sec-head h2,
  .dir-transport .home-sec-head h2 {
    font-size: 26px;
    margin-top: 12px;
  }

  .dir-warning {
    display: flex;
    width: 100%;
    min-height: 0;
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .dir-schedule {
    margin: 20px 0 16px;
  }

  .dir-schedule__row {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 14px 16px;
  }

  .dir-schedule__date {
    grid-column: 1;
    white-space: normal;
  }

  .dir-schedule__place {
    grid-column: 1;
    font-size: 15px;
  }

  .dir-schedule__link {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 13px;
  }

  .dir-map__empty {
    min-height: min(56vw, 360px);
    font-size: 15px;
  }

  .dir-map,
  .dir-transport {
    padding-block: 48px;
  }

  .dir-map__card {
    padding: 12px;
  }

  .dir-map__card iframe {
    height: min(56vw, 360px);
    min-height: 240px;
  }

  .dir-transport .dir-card {
    padding: 20px 16px;
  }

  .dir-transport .dir-card h3 {
    font-size: 18px;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .dir-transport .dir-card li {
    font-size: 14px;
    line-height: 1.55;
  }

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

  .quick-nav__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
  }

  .quick-nav__head p {
    font-size: 16px;
  }

  .quick-nav__swiper {
    overflow: hidden;
    padding: 14px 2px 8px;
  }

  .quick-nav__swiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch;
    gap: 0;
  }

  .quick-nav__swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
  }

  .quick-nav__swiper .quick-card {
    height: 100%;
    min-height: 220px;
  }

  .quick-nav__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: static;
    margin-top: 20px;
  }

  .quick-nav__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: var(--color-black);
    border: 2px solid var(--color-black);
    border-radius: 2px;
    opacity: 0.22;
  }

  .quick-nav__pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    opacity: 1;
  }

  .zone-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .venue-floor {
    padding-block: 48px;
  }

  .venue-floor__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .venue-floor__layout .home-sec-head h2,
  .venue-zones .home-sec-head h2,
  .regions-page .home-sec-head h2 {
    font-size: 26px;
  }

  .venue-floor__layout .section__desc {
    font-size: 15px;
    margin-top: 8px;
  }

  .venue-floor__map {
    position: relative;
    padding: 12px;
    overflow: hidden;
    max-height: none;
  }

  .venue-floor__map img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .venue-floor__zoom {
    cursor: zoom-in;
  }

  .venue-floor__zoom-hint {
    display: inline-flex;
    position: absolute;
    right: 10px;
    bottom: 10px;
    min-height: 28px;
    padding: 0 10px;
    align-items: center;
    background: var(--color-black);
    color: var(--color-white);
    border: var(--border);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    pointer-events: none;
  }

  .venue-zoom {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 240;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(18, 18, 18, 0.94);
  }

  .venue-zoom[open] {
    display: flex;
    flex-direction: column;
  }

  .venue-zoom::backdrop {
    background: rgba(18, 18, 18, 0.94);
  }

  .venue-zoom__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    min-height: 36px;
    padding: 0 14px;
    background: var(--color-yellow);
    color: var(--color-black);
    border: var(--border);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
  }

  .venue-zoom__stage {
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 56px 12px 24px;
  }

  .venue-zoom__stage img {
    display: block;
    width: 220%;
    max-width: none;
    height: auto;
    margin: 0 auto;
    background: var(--color-white);
    border: var(--border);
  }

  .venue-zones {
    padding-block: 48px;
  }

  .zone-card__head {
    padding: 16px;
  }

  .zone-card__head h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .zone-card__head p {
    font-size: 13px;
    word-break: keep-all;
  }

  .zone-card ul {
    padding: 16px;
    gap: 12px;
  }

  .zone-card li {
    font-size: 14px;
  }

  .crew-page {
    padding-block: 48px;
  }

  main:has(.sub-visual) .crew-intro .sticker {
    min-height: 36px;
    height: auto;
    padding: 8px 12px;
    font-size: 18px;
    line-height: 1.15;
    white-space: normal;
    max-width: 100%;
  }

  .crew-intro {
    padding: 24px 20px;
    margin-bottom: 36px;
  }

  .crew-intro__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }

  .crew-intro h2 {
    font-size: 22px;
  }

  .crew-intro > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .crew-intro > p br {
    display: none;
  }

  .crew-gallery__head {
    margin-bottom: 24px;
  }

  .crew-gallery__head h3 {
    font-size: 26px;
  }

  .crew-gallery__head p {
    font-size: 14px;
    word-break: keep-all;
  }

  .crew-gallery {
    gap: 16px;
  }

  .crew-card {
    padding: 16px;
  }

  .crew-card__label {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }

  .crew-card h4 {
    font-size: 18px;
  }

  .crew-card p {
    font-size: 14px;
  }

  .crew-card__body {
    margin-top: 14px;
  }

  .regions-select select {
    font-size: 16px;
  }

  .region-map-layout {
    gap: 20px;
  }

  .region-info {
    min-height: 0;
    padding: 0;
    box-shadow: none;
    max-height: none;
  }

  .region-label {
    font-size: 10px;
    padding: 0;
  }

  .region-label--compact {
    display: none;
  }

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

  .notice-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .notice-search {
    width: 100%;
  }

  .community-cards {
    grid-template-columns: 1fr;
  }

  .community-banner {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .youth-day-page {
    padding-block: 48px;
  }

  .youth-day-copy {
    width: 100%;
    max-width: 100%;
    padding: 36px 24px 32px;
    box-sizing: border-box;
  }

  .youth-day-copy__title {
    font-size: 32px;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .youth-day-copy__lead {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .youth-day-copy__lead br,
  .youth-day-copy__legal br {
    display: none;
  }

  .youth-day-copy__law {
    padding: 20px 16px 16px;
  }

  .youth-day-copy__law-label {
    min-height: 36px;
    margin-bottom: 10px;
    padding: 2px 12px 0;
    font-size: 18px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .youth-day-copy__legal {
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: break-word;
  }
}

@media (max-width: 767px) {
  .poster-block .image-placeholder,
  .venue-map .image-placeholder,
  .map-embed,
  .map-embed iframe,
  .home-location__map,
  .home-location__map iframe {
    min-height: 240px;
    height: 240px;
  }

  .quick-nav,
  .home-programs,
  .home-mascots,
  .home-location,
  .home-notice {
    padding-block: 64px;
  }

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

  .mascot-grid {
    gap: 12px;
  }

  .mascot-card {
    padding: 12px 10px 16px;
  }

  .mascot-card__image {
    min-height: 0;
    padding: 6px;
  }

  .mascot-card__corner {
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .mascot-pill {
    min-width: 52px;
    height: 28px;
    padding: 2px 10px 0;
    font-size: 15px;
  }

  .mascot-card__keyword {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .mascot-card p {
    font-size: 12px;
    word-break: keep-all;
  }

  .venue-floor__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  main:has(.sub-visual) .venue-floor .home-sec-head .sticker,
  main:has(.sub-visual) .venue-zones .home-sec-head .sticker,
  main:has(.sub-visual) .regions-page .home-sec-head .sticker {
    min-height: 32px;
    padding: 0 12px;
    font-size: 16px;
  }

  .venue-floor,
  .venue-zones {
    padding-block: 40px;
  }

  .venue-floor__layout .home-sec-head h2,
  .venue-zones .home-sec-head h2,
  .regions-page .home-sec-head h2 {
    font-size: 22px;
    margin-top: 10px;
  }

  .dir-map__card iframe {
    min-height: 220px;
    height: min(62vw, 300px);
  }

  .dir-map__empty {
    min-height: min(62vw, 300px);
    font-size: 14px;
  }

  .dir-schedule__row {
    padding: 12px 14px;
  }

  .dir-schedule__place {
    font-size: 14px;
  }

  .dir-map,
  .dir-transport {
    padding-block: 40px;
  }

  main:has(.sub-visual) .dir-map .home-sec-head .sticker,
  main:has(.sub-visual) .dir-transport .home-sec-head .sticker {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 16px;
  }

  .dir-map .home-sec-head h2,
  .dir-transport .home-sec-head h2 {
    font-size: 22px;
    margin-top: 10px;
  }

  .dir-warning {
    padding: 8px 12px;
    font-size: 12px;
  }

  .dir-transport .dir-card h3 {
    font-size: 17px;
  }

  .dir-transport .dir-card li {
    font-size: 13px;
  }

  .dir-cta .btn {
    font-size: 13px;
  }

  .home-sec-head h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .home-notice__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 28px;
  }

  .home-notice__head .home-sec-head h2 {
    font-size: 28px;
    margin-top: 10px;
  }

  .home-notice__head .btn {
    flex-shrink: 0;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .notice-list a {
    grid-template-columns: auto 1fr;
    padding: 16px;
    min-height: 0;
    gap: 10px;
  }

  .notice-list time {
    grid-column: 2;
  }

  .notice-list strong {
    white-space: normal;
  }

  .notice-card__top strong,
  .notice-card p {
    white-space: normal;
  }

  .notice-card__meta {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .notice-hero-title,
  .crew-hero-title {
    font-size: 24px;
    min-height: 44px;
    min-width: 0;
  }

  .crew-page {
    padding-block: 40px;
  }

  main:has(.sub-visual) .crew-intro .sticker {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 16px;
  }

  .crew-intro {
    padding: 20px 16px;
    margin-bottom: 28px;
  }

  .crew-intro h2 {
    font-size: 20px;
  }

  .crew-intro > p {
    font-size: 14px;
  }

  .crew-gallery__head {
    margin-bottom: 20px;
  }

  .crew-gallery__head h3 {
    font-size: 22px;
  }

  .crew-gallery__head p {
    font-size: 13px;
  }

  .crew-card {
    padding: 14px;
  }

  .crew-card .image-placeholder {
    min-height: 180px;
  }

  .crew-card--compact .image-placeholder {
    min-height: 56px;
  }

  .crew-card h4 {
    font-size: 16px;
  }

  .crew-card p {
    font-size: 13px;
  }

  .sub-visual.sub-visual--prog .sub-visual__title {
    font-size: 28px;
  }

  .prog-page {
    padding-block: 40px;
  }

  .prog-tabs a {
    min-width: 0;
    flex: 1;
    min-height: 40px;
    padding: 6px 4px;
    font-size: 13px;
  }

  .prog-intro {
    margin-bottom: 24px;
  }

  .prog-keys .sticker {
    min-height: 32px;
    padding: 6px 10px 5px;
    font-size: 14px;
  }

  .prog-intro > p {
    font-size: 14px;
  }

  .prog-card {
    padding: 16px 14px;
  }

  .prog-card h2 {
    font-size: 16px;
    line-height: 1.35;
  }

  .prog-card__desc {
    font-size: 13px;
  }

  .prog-card__media img {
    height: 180px;
  }

  .prog-theme--diagnosis .prog-card-grid,
  .prog-theme--challenge .prog-card-grid {
    grid-template-columns: 1fr;
  }

  .prog-theme--diagnosis .prog-card__image,
  .prog-theme--challenge .prog-card__image {
    height: min(48vw, 200px);
  }

  .prog-detail__card h2 {
    font-size: 24px;
  }

  .speaker-profile__grid {
    grid-template-columns: 1fr;
  }

  .speaker-profile__photo {
    max-width: 220px;
  }

  .prog-detail__card > .image-placeholder,
  .prog-detail__image {
    min-height: 240px;
    height: 240px;
  }

  .prog-detail__list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .prog-detail__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .prog-detail__cta {
    width: 100%;
  }

  .detail-hero-title {
    font-size: 24px;
    min-height: 44px;
    min-width: 0;
  }

  .region-map-section__heading .section__desc {
    font-size: 15px;
  }

  .region-map {
    padding: 10px;
    box-shadow: none;
  }

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

  .region-event h3 {
    font-size: 18px;
  }

  .overview-schedule li span:first-child {
    white-space: nowrap;
  }

  .overview-mascots__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sub-visual--festival .sub-visual__title {
    font-size: 32px;
  }

  .sub-visual.sub-visual--illustrated {
    padding: 0;
  }

  .sub-visual__obj-wrap {
    height: 18%;
    max-height: 168px;
  }

  .sub-visual__obj-wrap--left {
    left: 3%;
  }

  .sub-visual__obj-wrap--right {
    right: 3%;
  }

  .sub-visual--illustrated .sub-visual__title {
    left: 6%;
    right: 6%;
    top: 32%;
    font-size: clamp(36px, 11vw, 48px);
  }

  .overview-info,
  .overview-mascots {
    padding-block: 40px;
  }

  main:has(.sub-visual) .overview-info .home-sec-head .sticker,
  main:has(.sub-visual) .overview-mascots .home-sec-head .sticker {
    min-height: 32px;
    padding: 0 12px;
    font-size: 16px;
  }

  .overview-info .home-sec-head h2 {
    font-size: 22px;
    padding-top: 8px;
  }

  .youth-day-page {
    padding-block: 40px;
  }

  .youth-day-copy {
    padding: 28px 16px 24px;
  }

  .youth-day-copy__title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .youth-day-copy__lead {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .youth-day-copy__law {
    padding: 16px 12px 14px;
  }

  .youth-day-copy__law-label {
    min-height: 32px;
    padding: 2px 10px 0;
    font-size: 16px;
  }

  .youth-day-copy__legal {
    font-size: 13px;
    line-height: 1.65;
  }

  .intent-panel {
    padding: 36px 22px 28px;
    border-radius: 24px;
  }

  .intent-panel h3 {
    font-size: 30px;
  }

  .overview-info__head h2,
  .overview-mascots .home-sec-head h2 {
    font-size: 24px;
  }

  .sub-visual__title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .community-intro {
    margin-bottom: 40px;
  }

  .community-intro__title {
    font-size: 24px;
  }

  .community-cards {
    margin-bottom: 40px;
  }

  .community-card {
    min-height: 0;
    padding: 24px;
  }

  .community-banner {
    padding: 24px;
    gap: 24px;
  }

  .community-banner__body h3 {
    font-size: 22px;
  }

  .community-banner__cta {
    width: 100%;
  }

}
