:root {
  --blue: #00b4d8;
  --blue-dark: #0077b6;
  --navy: #03045e;
  --text: #5c677d;
  --muted: #64748b;
  --line: #cbd5e1;
  --bg: #e6eef4;
  --soft: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(148, 163, 184, 0.14);
  --pop-shadow: 0 14px 28px rgba(0, 180, 216, .18);
  --pop-glow: 0 0 0 4px rgba(144, 224, 239, .14);
  --motion-pop: cubic-bezier(.2, .8, .2, 1);
  --switch-duration: .3s;
  --switch-easing: ease;
  --header-height: 80px;
  --page-heading-font: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
  overflow-x: clip;
}
body {
  margin: 0;
  min-height: 100vh;
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  background-image: linear-gradient(90deg, rgba(255,255,255,.58) 50%, transparent 50%);
  background-size: 40px 100%;
  overflow-x: clip;
}
main { display: block; }
section, [id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p, a, button {
  overflow-wrap: anywhere;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-heading-font,
.page-kicker,
.page-hero h1,
.page-hero p,
.hero-card h1,
.section-title h2,
.section-title p,
.activity-filter-panel h3,
.text-panel h2,
.text-panel h3,
.info-card h2,
.guide-step h2,
.guide-step h3,
.detail-title {
  font-family: var(--page-heading-font);
}

.nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255,255,255,.96);
  border-bottom: 4px dotted var(--line);
  box-shadow: 0 4px 10px rgba(148,163,184,.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    background-color .32s ease,
    box-shadow .32s ease,
    border-color .32s ease,
    backdrop-filter .32s ease,
    transform .32s var(--motion-pop);
}
.nav-header.is-scrolled {
  background: rgba(255,255,255,.78);
  border-bottom-color: rgba(144,224,239,.7);
  box-shadow:
    0 14px 34px rgba(0, 119, 182, .13),
    0 1px 0 rgba(255,255,255,.72) inset;
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.nav-container {
  width: min(1120px, 100%);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.event-name {
  font-family: "Comic Sans MS", "Hiragino Maru Gothic ProN", cursive;
  font-size: 1.55rem;
  color: var(--blue-dark);
  font-weight: 900;
  text-shadow: 2px 2px 0 var(--bg);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 2px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform .28s ease, opacity .28s ease, background-color .28s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  font-weight: 900;
}
.menu a {
  position: relative;
  padding: 8px 8px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color .28s ease,
    background-color .28s ease,
    transform .28s var(--motion-pop),
    box-shadow .28s ease;
}
.menu a:hover {
  color: var(--blue-dark);
  background: rgba(0,180,216,.1);
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 10px 24px rgba(0,180,216,.18);
}
.menu a.active {
  color: var(--blue-dark);
  background: rgba(144,224,239,.24);
  box-shadow: 0 8px 18px rgba(0,180,216,.12);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  border: 0;
  cursor: pointer;
}
.btn {
  padding: 12px 28px;
  transition: box-shadow .55s ease, border-color .55s ease, background .65s ease, color .55s ease;
}
.btn:hover {
  transform: none;
  box-shadow: 0 10px 24px rgba(0,180,216,.2), var(--pop-glow);
}
.btn:active {
  transform: none;
}
.menu a:active {
  transform: translateY(-1px) scale(.985);
}
.btn.primary, .btn.base {
  background: linear-gradient(45deg, var(--blue), #48cae4);
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(0,180,216,.22);
}
.btn.secondary {
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue-dark) !important;
}
.btn.primary:hover,
.btn.base:hover,
.btn.secondary:hover {
  box-shadow: 0 10px 24px rgba(0,180,216,.2), var(--pop-glow);
}
.btn.primary:hover,
.btn.base:hover {
  background: linear-gradient(45deg, var(--blue-dark), #48cae4 50%, #c8ee84);
}
.btn.secondary:hover {
  background: linear-gradient(45deg, rgba(255,255,255,.98), rgba(223,245,248,.95) 52%, rgba(235,255,224,.92));
  border-color: var(--blue-dark);
}
.btn.disabled {
  background: var(--line);
  color: var(--muted) !important;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Home page navigation actions share one restrained, flowing blue gradient. */
.home-action-btn {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    color .85s ease,
    border-color .85s ease,
    box-shadow .85s ease,
    background-color .85s ease;
}
.btn.home-action-btn {
  height: 54px;
  min-height: 54px;
  padding-block: 0;
  line-height: 1.5;
}
.home-action-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, #00b4d8 0%, #48cae4 38%, #0077b6 68%, #90e0ef 100%);
  background-size: 240% 100%;
  background-position: 100% 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .85s ease, background-position .85s ease;
}
.home-action-btn.btn.primary:hover,
.home-action-btn.btn.base:hover,
.home-action-btn.btn.secondary:hover,
.home-action-btn:hover,
.home-action-btn:focus-visible,
.home-action-btn:active {
  border-color: var(--blue-dark);
  color: var(--white) !important;
  box-shadow: 0 12px 28px rgba(0,119,182,.24), 0 0 0 4px rgba(144,224,239,.16);
}
.home-action-btn:hover::before,
.home-action-btn:focus-visible::before,
.home-action-btn:active::before {
  opacity: 1;
  background-position: 0 50%;
}
/* Keep the existing base fills underneath the animated overlay. */
.home-action-btn.btn.primary:hover,
.home-action-btn.btn.base:hover { background: linear-gradient(45deg, var(--blue), #48cae4); }
.home-action-btn.btn.secondary:hover { background: var(--white); }
.home-action-btn.btn.primary:active,
.home-action-btn.btn.base:active { background: linear-gradient(45deg, var(--blue), #48cae4); }
.home-action-btn.btn.secondary:active { background: var(--white); }

/* The home-about link reverses the usual primary hover: blue to white. */
.btn.primary.home-action-btn.home-action-btn--inverse {
  border: 2px solid transparent;
}
.btn.primary.home-action-btn.home-action-btn--inverse::before {
  background: linear-gradient(115deg, rgba(255,255,255,1) 0%, rgba(248,253,255,1) 45%, rgba(255,255,255,1) 100%);
}
.btn.primary.home-action-btn.home-action-btn--inverse:hover,
.btn.primary.home-action-btn.home-action-btn--inverse:focus,
.btn.primary.home-action-btn.home-action-btn--inverse:focus-visible,
.btn.primary.home-action-btn.home-action-btn--inverse:active {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue-dark) !important;
  box-shadow: 0 12px 28px rgba(0,119,182,.24), 0 0 0 4px rgba(144,224,239,.16);
}
.btn.primary.home-action-btn.home-action-btn--inverse:hover::before,
.btn.primary.home-action-btn.home-action-btn--inverse:focus::before,
.btn.primary.home-action-btn.home-action-btn--inverse:focus-visible::before,
.btn.primary.home-action-btn.home-action-btn--inverse:active::before {
  opacity: 1;
  background-position: 0 50%;
}

.hero {
  text-align: center;
  color: var(--navy);
}
.home-hero {
  --hero-decoration-opacity: 1;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  padding: 72px 20px 132px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(223,235,244,.68), rgba(230,238,244,.72)),
    image-set(
      url("../images/optimized/sedare-group-full.webp") type("image/webp"),
      url("../images/sedareGroupPhoto.png") type("image/png")
    );
  background-size: cover;
  background-position: center;
  border-bottom: 8px solid var(--line);
}
.home-hero .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(223,235,244,.42), rgba(230,238,244,.56)),
    rgba(255,255,255,.08);
  pointer-events: none;
  will-change: opacity;
}
.home-hero .hero-video-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}
.home-hero .hero-video-link:focus:not(:focus-visible) {
  outline: none;
}
.home-hero .hero-video-link[data-hero-video-pointer-focus="true"] {
  outline: none;
}
@media (max-width: 640px) {
  .home-hero .hero-video-link {
    display: none;
    pointer-events: none;
  }
}
.hero-card {
  position: relative;
  z-index: 3;
  width: min(860px, 100%);
  background: rgba(255,255,255,.76);
  padding: 24px 54px 30px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  will-change: opacity, transform;
}
.home-quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.home-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 46px;
  padding: 10px 22px;
  border: 2px solid rgba(144,224,239,.82);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 18px rgba(0,119,182,.1);
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .28s var(--motion-pop),
    box-shadow .28s ease,
    border-color .28s ease,
    background-color .28s ease;
}
.home-quick-link:hover,
.home-quick-link:focus-visible {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 28px rgba(0,180,216,.16);
}
.home-quick-link:active { transform: translateY(-1px) scale(.985); }
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  display: grid;
  min-width: 242px;
  padding: 10px 48px 10px 20px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 10px 26px rgba(0,119,182,.14), 0 0 0 4px rgba(200,238,132,.1);
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  transition: opacity .3s ease, transform .3s var(--motion-pop), background-color .3s ease, box-shadow .3s ease;
  animation: scrollCueFadeIn .72s var(--motion-pop) .75s both;
}
.hero-scroll-cue:hover {
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 30px rgba(0,180,216,.2), 0 0 0 5px rgba(200,238,132,.14);
  scale: 1.025;
}
.hero-scroll-cue:active { scale: .985; }
.hero-scroll-cue.is-hidden {
  animation: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}
.hero-scroll-cue__text {
  color: var(--blue-dark);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-scroll-cue__sub {
  margin-top: 2px;
  color: var(--text);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
}
.hero-scroll-cue__icon {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 24px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(0,180,216,.32);
  border-radius: 999px;
  background: rgba(230,247,249,.78);
  color: var(--blue-dark);
  translate: 0 -50%;
}
.hero-scroll-cue__icon::before {
  content: "↓";
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  animation: scrollCueArrow 1.6s ease-in-out infinite;
}
.hero-scroll-cue:hover .hero-scroll-cue__icon::before { translate: 0 3px; }
.hero-scroll-cue__bubble {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 50%;
  background: rgba(144,224,239,.62);
  box-shadow: 0 2px 8px rgba(0,180,216,.18);
  pointer-events: none;
  animation: scrollCueBubble 2.8s ease-in-out infinite;
}
.hero-scroll-cue__bubble--one { top: -8px; left: 18%; animation-delay: -.4s; }
.hero-scroll-cue__bubble--two { right: 6px; bottom: -6px; width: 6px; height: 6px; background: rgba(200,238,132,.7); animation-delay: -1.1s; }
.hero-scroll-cue__bubble--three { top: 7px; right: -12px; width: 5px; height: 5px; background: rgba(255,255,255,.82); animation-delay: -1.8s; }
.logo-img {
  height: 140px;
  width: auto;
  margin: 0 auto 8px;
}
h1 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.35;
  color: var(--navy);
}
.hero-copy {
  margin: 0;
  font-weight: 900;
  font-size: 1.05rem;
}

.page-hero {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  color: var(--navy);
  background-image: image-set(
    url("../images/optimized/sedare-group-full.webp") type("image/webp"),
    url("../images/sedareGroupPhoto.png") type("image/png")
  );
  background-size: cover;
  background-position: center 42%;
  border-bottom: 8px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.52)),
    rgba(230,238,244,.08);
}
.page-hero .inner {
  position: relative;
  z-index: 1;
  padding: 54px 20px 46px;
}
.page-kicker {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-weight: 900;
}
.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-weight: 800;
}
.page-hero h1::after {
  content: "";
  display: block;
  width: min(190px, 62%);
  height: 9px;
  margin: 7px auto 0;
  border-bottom: 6px solid rgba(200, 238, 132, .82);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.badge, .status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
}
.status-pill {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.section { padding: 58px 20px; }
.section.soft {
  background: rgba(255,255,255,.5);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}
.section-title h2 {
  margin: 0 0 5px;
  font-size: clamp(1.55rem, 3vw, 1.85rem);
  color: var(--navy);
  letter-spacing: .08em;
  font-weight: 900;
}
.section-title h2::before, .section-title h2::after {
  content: " ♥ ";
  color: var(--blue);
}
.section-title p {
  margin: 0;
  color: #94a3b8;
  font-weight: 900;
  letter-spacing: .13em;
}

.card, .service-card, .guide-step, .text-panel, .faq-item, .link-card,
.empty-state, .gallery-card, .x-card, .stat-card, .mini-notice, .org-card, .activity-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card, .service-card, .guide-step, .text-panel, .link-card,
.gallery-card, .x-card, .stat-card, .mini-notice, .org-card, .activity-card {
  position: relative;
  transition: transform .28s var(--motion-pop), box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.card:hover, .service-card:hover, .guide-step:hover, .text-panel:hover,
.link-card:hover, .gallery-card:hover, .x-card:hover, .stat-card:hover,
.mini-notice:hover, .org-card:hover, .activity-card:hover {
  z-index: 2;
  transform: translateY(-2px);
  box-shadow: var(--pop-shadow), var(--pop-glow);
  border-color: var(--blue);
}
.card:active,
.service-card:active,
.guide-step:active,
.text-panel:active,
.link-card:active,
.gallery-card:active,
.x-card:active,
.stat-card:active,
.mini-notice:active,
.org-card:active,
.activity-card:active,
.partner-logo-card:active {
  transform: translateY(-1px) scale(.985);
}

.service-card {
  padding: clamp(24px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 24px;
  border-color: #90e0ef;
  background:
    radial-gradient(circle at 12% 16%, rgba(144,224,239,.28), transparent 30%),
    var(--white);
}
.service-card h2, .card h3, .text-panel h3, .guide-step h3, .x-card h3 {
  color: var(--navy);
  margin-top: 0;
}
.card p,
.text-panel p,
.guide-step p,
.faq-answer-inner,
.service-note,
.cast-preview__description {
  max-width: 42em;
}
.service-date {
  margin: 8px 0 14px;
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .02em;
}
.service-note {
  margin-bottom: 0;
  font-weight: 700;
}
.service-details {
  display: grid;
  gap: 12px;
  margin: 0;
}
.service-details div {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(0,180,216,.18);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.service-details dt {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 900;
}
.service-details dd {
  margin: 2px 0 0;
  color: var(--navy);
  font-weight: 900;
}
.service-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-top: 0;
}
.service-actions .btn {
  min-width: min(100%, 190px);
}

.notice-grid, .grid, .link-grid, .gallery-grid, .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.grid[hidden] {
  display: none !important;
}
.notice-grid { margin-bottom: 28px; }
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.cast-preview {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(222,241,246,.72));
}
.cast-preview__inner { width: min(1260px, 100%); }
.cast-preview__heading { margin-bottom: 12px; }
.cast-preview__description {
  max-width: 640px;
  margin: 0 auto 26px;
  color: var(--navy);
  text-align: center;
  font-weight: 800;
  line-height: 1.8;
}
.cast-marquee {
  --cast-marquee-gap: 18px;
  overflow: hidden;
  margin: 0 -20px;
  padding: 14px 20px 22px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.cast-marquee__track {
  display: flex;
  width: max-content;
  gap: var(--cast-marquee-gap);
  animation: castMarquee 58s linear infinite;
  will-change: transform;
}
.cast-marquee__group {
  display: flex;
  gap: var(--cast-marquee-gap);
}
@keyframes castMarquee {
  to { transform: translateX(calc(-50% - (var(--cast-marquee-gap) / 2))); }
}
.cast-marquee:hover .cast-marquee__track,
.cast-preview.has-selection .cast-marquee__track {
  animation-play-state: paused;
}
.cast-preview-card {
  width: 216px;
  flex: 0 0 216px;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(187,210,224,.9);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font: inherit;
  box-shadow: 0 8px 20px rgba(50,92,120,.11);
  cursor: pointer;
  text-align: left;
  transition: transform .3s var(--motion-pop), box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.cast-preview-card:hover,
.cast-preview-card:focus-visible,
.cast-preview-card.is-selected {
  position: relative;
  z-index: 2;
  border-color: var(--blue);
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 18px 32px rgba(0,180,216,.2), 0 0 0 5px rgba(144,224,239,.18);
}
.cast-preview-card:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 4px;
}
.cast-preview-card:active { transform: translateY(-2px) scale(.985); }
.cast-preview-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--soft);
  border-bottom: 2px dashed var(--line);
}
.cast-preview-card__photo,
.cast-preview-card__image .image-placeholder,
.cast-preview-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cast-preview-card__image .image-placeholder,
.cast-preview-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 0;
  color: var(--blue-dark);
  font-family: "Comic Sans MS", cursive;
  font-size: 1.4rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(200,238,132,.62), transparent 28%),
    linear-gradient(135deg, #fff, #dff4f7);
}
.cast-preview-card__body {
  display: flex;
  min-height: 96px;
  padding: 15px 16px 16px;
  flex-direction: column;
  gap: 7px;
}
.cast-preview-card__name {
  overflow: hidden;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cast-preview-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.cast-preview-card__tag {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 900;
}
.cast-preview-card__tag--role {
  border-color: rgba(200,238,132,.8);
  background: rgba(200,238,132,.23);
}
.cast-preview-card__tag--management {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.cast-preview__actions { display: flex; justify-content: center; }
.cast-preview__button { min-width: min(100%, 260px); }
.cast-preview__fallback { margin: 8px 0 0; text-align: center; font-weight: 800; }
.cast-preview__fallback a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 4px; }

.album-preview {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(223,235,244,.58));
}
.album-preview__inner { width: min(1120px, 100%); }
.album-preview__heading { margin-bottom: 12px; }
.album-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
.album-preview-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(187,210,224,.9);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font: inherit;
  box-shadow: 0 8px 20px rgba(50,92,120,.11);
  cursor: pointer;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease, transform .38s var(--motion-pop);
}
.album-preview-card:hover,
.album-preview-card:focus-visible {
  position: relative;
  z-index: 2;
  border-color: var(--blue);
  box-shadow: 0 18px 32px rgba(0,180,216,.2), 0 0 0 5px rgba(144,224,239,.18);
}
.album-preview-card:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 4px;
}
.album-preview-card:active { box-shadow: 0 10px 22px rgba(0,180,216,.16); }
.album-preview-card.is-selected,
.album-preview-card.is-selected:hover {
  position: relative;
  z-index: 3;
  transform: translateY(-5px) scale(1.01);
  border-color: var(--blue);
  box-shadow: 0 18px 32px rgba(0,180,216,.2), 0 0 0 5px rgba(144,224,239,.18);
}
.album-preview-card__title {
  display: block;
  min-height: 0;
  padding: 0;
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
  line-height: 1.35;
  font-weight: 900;
}
.album-preview-card__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  border-bottom: 3px solid rgba(200, 238, 132, .76);
  border-radius: 50%;
  transform: rotate(-.5deg);
}
.album-preview-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(144,224,239,.62), transparent 38%),
    linear-gradient(135deg, #f8fafc, #d9f2f7);
}
.album-preview-card__photo,
.album-preview-card__media .image-placeholder,
.album-preview-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-preview-card__media .image-placeholder,
.album-preview-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 0;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 900;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(135deg, rgba(144,224,239,.8), rgba(0,180,216,.24));
}
.album-preview-card__tags {
  position: static;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  gap: 5px;
  flex-wrap: wrap;
}
.album-preview-card__tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.album-preview-card__tag--more {
  flex: 0 0 auto;
  white-space: nowrap;
}
.album-preview-card__count {
  position: static;
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,55,78,.72);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}
.album-preview-card__count-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.album-preview-card__caption {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  font-weight: 800;
}
.album-preview-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.album-preview__actions { display: flex; justify-content: center; margin-top: 32px; }
.album-preview__button { min-width: min(100%, 260px); }
.album-preview__empty { grid-column: 1 / -1; margin: 0; text-align: center; font-weight: 900; }
.album-preview__fallback { margin: 8px 0 0; text-align: center; font-weight: 800; }
.album-preview__fallback a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 4px; }
@media (hover: none) {
  .cast-marquee:hover .cast-marquee__track { animation-play-state: running; }
  .cast-preview.has-selection .cast-marquee__track { animation-play-state: paused; }
  .cast-preview-card:hover:not(.is-selected) {
    border-color: rgba(187,210,224,.9);
    transform: none;
    box-shadow: 0 8px 20px rgba(50,92,120,.11);
  }
  .album-preview-card:hover {
    border-color: rgba(187,210,224,.9);
    box-shadow: 0 8px 20px rgba(50,92,120,.11);
  }
}
.partner-logo-card {
  position: relative;
  min-height: 120px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .28s var(--motion-pop), box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.partner-logo-card:hover {
  z-index: 2;
  transform: translateY(-7px) scale(1.02);
  border-color: var(--blue);
  box-shadow: var(--pop-shadow), var(--pop-glow);
}
.partner-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.partner-logo-area {
  width: 100%;
  min-height: 74px;
  display: grid;
  place-items: center;
}
.partner-logo-card.auranodez-partner .partner-logo-area { min-height: 84px; }
.partner-logo-card.auranodez-partner img {
  max-width: 90%;
  max-height: 84px;
  object-fit: contain;
}
.partner-logo-area .image-placeholder {
  width: 100%;
  min-height: 72px;
  border-radius: 14px;
  background: rgba(230,238,244,.74);
}
.partner-name {
  display: block;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}
.partner-kana {
  display: block;
  margin-top: -8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
.detail-partner-kana {
  margin: -6px 0 12px;
  text-align: left;
}
.partner-detail-sections {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.partner-detail-section {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.partner-detail-section h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1rem;
}
.partner-detail-section p { margin: 0; }
.partner-logo-card.is-placeholder {
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(230,238,244,.82));
  border-style: dashed;
}
.home-link-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  gap: 20px;
  align-items: stretch;
}
.home-link-primary {
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 12% 18%, rgba(144,224,239,.32), transparent 28%),
    var(--white);
}
.home-link-primary h3 {
  margin-top: 4px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}
.home-link-stack {
  display: grid;
  gap: 20px;
}
.home-about-card {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 38px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
}
.home-about-card__image {
  margin: 0;
  min-width: 0;
}
.home-about-card__image img {
  width: 100%;
  max-height: 560px;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(144,224,239,.72);
  box-shadow: 0 14px 28px rgba(29, 78, 102, .12);
}
.home-about-card__body {
  display: grid;
  gap: 14px;
  justify-items: start;
  min-width: 0;
}
.home-about-card__body h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.35;
}
.home-about-card__body p {
  margin: 0;
  max-width: 42em;
  line-height: 1.9;
  font-weight: 700;
}
.home-about-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.home-about-card__actions .btn {
  width: min(100%, 240px);
}
.mini-notice {
  padding: 18px;
  border-color: #90e0ef;
}
.mini-notice strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.guide-page .mini-notice,
.guide-page .mini-notice:hover,
.guide-page .mini-notice:focus-within,
.guide-page .mini-notice:active {
  transform: none;
}
.guide-page .mini-notice:hover,
.guide-page .mini-notice:focus-within {
  border-color: #90e0ef;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 20px rgba(50,92,120,.11);
}
.guide-page .mini-notice.media-note {
  grid-column: 1 / -1;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.guide-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 38%) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-width: 0;
}
.guide-step-link {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: inherit;
  align-items: stretch;
  min-width: 0;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.guide-step-link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.guide-step-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -6px;
  border-radius: 16px;
}
.step-click-cue {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 12px;
  border: 2px solid rgba(0,174,217,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(50,92,120,.12);
  pointer-events: none;
}
.step-click-cue span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(200,238,132,.55);
  font-size: .72rem;
}
.step-media {
  width: 100%;
  max-width: 100%;
  min-height: 210px;
  min-width: 0;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 20% 20%, rgba(144,224,239,.55), transparent 32%),
    linear-gradient(135deg, #f8fafc, #e6eef4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed var(--line);
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
  padding: 24px;
  line-height: 1.8;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.step-media--image {
  padding: 0;
  background: var(--soft);
}
.step-media--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.guide-list > .guide-step {
  grid-template-columns: minmax(170px, 30%) minmax(0, 1fr);
  align-items: center;
  min-height: 175px;
}
.guide-list > .guide-step .step-media {
  align-self: center;
  width: calc(100% - 18px);
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin-left: 12px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 12px;
}
.guide-list > .guide-step .step-body {
  padding: clamp(12px, 1.6vw, 18px) clamp(20px, 3vw, 34px);
}
.guide-page .guide-list > .guide-step:not(:first-child):hover,
.guide-page .guide-list > .guide-step:not(:first-child):active {
  transform: none;
  box-shadow: var(--shadow);
}
.guide-page .guide-list > .guide-step:not(:first-child):hover {
  border-color: var(--blue);
  background: rgba(255,255,255,.96);
}
.guide-page .guide-list > .guide-step:not(:first-child):hover .step-number,
.guide-page .guide-list > .guide-step:not(:first-child):hover .step-body h3 {
  color: var(--blue-dark);
}
.step-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 4vw, 44px);
}
.step-number {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: .86rem;
}
.step-body h3 {
  margin: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.step-body p {
  margin: 0;
  line-height: 1.9;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.filter-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.cast-content {
  background: rgba(255,255,255,.86);
  border: 2px solid rgba(144,224,239,.7);
  border-radius: 18px;
  padding: clamp(20px, 4vw, 30px);
}
.cast-filter-groups {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.cast-filter-group {
  min-width: 0;
  margin: 0;
  padding: 10px 12px 12px;
  border: 1px solid rgba(93, 177, 195, .3);
  border-radius: var(--radius-sm);
}
.cast-filter-group legend {
  padding: 0 6px;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 700;
}
.cast-filter-actions {
  display: flex;
  justify-content: flex-end;
}
.cast-filter-clear:disabled {
  opacity: .48;
  cursor: not-allowed;
}
.search-box {
  width: min(520px, 100%);
  margin: 0 auto;
  display: block;
  min-height: 48px;
  padding: 10px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  background: var(--white);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 16px;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform .28s var(--motion-pop),
    box-shadow .28s ease,
    border-color .28s ease,
    background-color .28s ease,
    color .28s ease;
}
.filter-btn.active, .filter-btn[aria-pressed="true"], .filter-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.filter-btn:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 10px 24px rgba(0,180,216,.2), var(--pop-glow);
}
.filter-btn.active, .filter-btn[aria-pressed="true"] {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 12px 26px rgba(0,180,216,.16), var(--pop-glow);
}
.filter-btn:active {
  transform: translateY(-1px) scale(.985);
}
.result-count {
  text-align: center;
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}
.cast-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor: pointer;
}
.cast-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.cast-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 22px rgba(0, 180, 216, .14);
  border-color: var(--blue);
}
.cast-card:active {
  transform: translateY(-1px) scale(.99);
}
.cast-card[hidden] { display: none; }
.cast-card img, .cast-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--soft);
  border-bottom: 2px dashed var(--line);
}
.cast-card img {
  outline: 1px solid rgba(200, 238, 132, .68);
  outline-offset: -7px;
}
.cast-placeholder {
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-family: "Comic Sans MS", cursive;
  font-size: 1.55rem;
  background:
    radial-gradient(circle at 35% 25%, rgba(144,224,239,.58), transparent 32%),
    linear-gradient(135deg, #fff, #e6eef4);
}
.cast-meta {
  padding: 13px 16px 11px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cast-meta h3 {
  color: var(--navy);
  text-align: center;
  margin: 0;
  line-height: 1.3;
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
}
.badge-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
.cast-club-list {
  display: grid;
  gap: 7px;
  padding-top: 10px;
  border-top: 1px dashed rgba(144, 224, 239, .68);
}
.cast-club-list__label {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}
.cast-club-list__values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.cast-club-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 3px 10px;
  border: 1px solid rgba(0, 180, 216, .2);
  border-radius: 999px;
  background: rgba(230, 247, 249, .78);
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
}
.badge.management {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.cast-comment {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 700;
}
.cast-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  justify-content: center;
}
.mini-link {
  min-height: 34px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 900;
  color: var(--blue-dark);
}

.text-panel, .card, .x-card, .stat-card { padding: 22px; }
.text-panel { padding: 28px; }
.lead {
  font-size: 1.05rem;
  font-weight: 800;
}
.about-intro-card {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  border-color: rgba(144,224,239,.7);
}
.about-intro-card:hover,
.about-intro-card:focus,
.about-intro-card:focus-visible,
.about-intro-card:focus-within,
.about-intro-card:active {
  border-color: rgba(144,224,239,.7);
}
.about-intro-image {
  margin: 0;
  min-width: 0;
}
.about-intro-image img {
  width: 100%;
  max-height: 560px;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(144,224,239,.7);
  box-shadow: 0 14px 28px rgba(29, 78, 102, .12);
}
.about-intro-copy {
  min-width: 0;
}
.about-card-notes {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed rgba(144,224,239,.7);
}
.about-card-notes section {
  padding-left: 14px;
  border-left: 4px solid rgba(200,238,132,.8);
}
.about-card-notes h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
}
.about-card-notes p {
  margin: 0;
}
.about-service-list {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}
.about-service-list > .about-internal-heading {
  margin-top: clamp(64px, 7vw, 96px);
}
.about-service-item {
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 2px solid rgba(144,224,239,.72);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.about-service-item__heading {
  margin-bottom: 18px;
}
.about-service-item__heading .page-kicker {
  margin: 0 0 2px;
  font-size: clamp(.75rem, 1.1vw, .9rem);
  line-height: 1.2;
}
.about-service-item__heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.8vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: .04em;
}
.about-service-layout {
  display: grid;
  grid-template-columns: clamp(240px, 25vw, 320px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 32px);
  align-items: start;
}
.about-service-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.about-service-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}
.about-service-item--internal .about-service-layout {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
}
.about-service-item--internal .about-service-copy,
.about-service-item--internal .about-service-photos {
  grid-column: 1;
}
.about-service-item--internal .about-service-photos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-service-photo-figure {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  margin: 0;
}
.about-service-photo-figure figcaption {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  overflow-wrap: anywhere;
}
.about-service-item--internal .about-service-photo {
  aspect-ratio: 16 / 9;
}
.about-service-item--internal .about-service-photos--square .about-service-photo {
  aspect-ratio: 1 / 1;
}
.about-service-placeholder {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 16px;
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(223,245,248,.92));
  border: 2px dashed rgba(144,224,239,.9);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.about-service-photo {
  aspect-ratio: 16 / 9;
}
.about-service-poster {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 320px;
  justify-self: start;
}
.about-service-poster--filled,
.about-service-photo--filled {
  padding: 0;
  overflow: hidden;
  border-style: solid;
  border-color: rgba(144,224,239,.72);
}
.about-service-poster--filled {
  aspect-ratio: auto;
}
.about-service-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-service-poster-image {
  display: block;
  width: 100%;
  height: auto;
}
.about-service-copy p {
  margin: 0;
  line-height: 1.9;
  font-weight: 700;
}
@media (max-width: 900px) {
  .about-service-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-service-copy,
  .about-service-poster,
  .about-service-photos {
    grid-column: 1;
    grid-row: auto;
  }
  .about-service-poster {
    justify-self: center;
  }
  .about-service-item--internal .about-service-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .about-service-photos {
    grid-template-columns: 1fr;
  }
  .about-service-poster {
    width: min(100%, 220px);
  }
  .about-service-item--internal .about-service-photos {
    grid-template-columns: 1fr;
  }
}
.stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1.2;
}
.stat-card span {
  color: var(--muted);
  font-weight: 900;
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) {
  .activity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .activity-list {
    grid-template-columns: 1fr;
  }
}
.activity-filter-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.activity-filter-panel h3 {
  margin: 0 0 8px;
  color: var(--navy);
}
.activity-filter-panel > p:not(.page-kicker):not(.result-count) {
  max-width: 720px;
  margin: 0 auto;
  font-weight: 700;
}
.activity-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 14px;
}
.activity-filter-btn { min-height: 44px; }
.activity-flow__toolbar {
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.activity-flow-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
}
.activity-flow-filter__button {
  min-height: 36px;
  padding: 6px 13px;
  border: 1px solid rgba(144,224,239,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--blue-dark);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(0,119,182,.07);
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
}
.activity-flow-filter__button:hover,
.activity-flow-filter__button:focus-visible,
.activity-flow-filter__button.active {
  border-color: var(--blue);
  background: linear-gradient(90deg, rgba(0,180,216,.96), rgba(144,224,239,.96));
  color: var(--white);
  box-shadow: 0 7px 18px rgba(0,180,216,.16);
}
.activity-flow-filter__button:disabled {
  cursor: default;
  opacity: .62;
}
.activity-flow-section {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(238,248,250,.96), rgba(255,255,255,.98)),
    repeating-linear-gradient(90deg, rgba(144,224,239,.07) 0 1px, transparent 1px 32px);
}
.activity-flow__heading {
  margin: 0;
  text-align: left;
}
.activity-flow__heading .page-kicker {
  margin-bottom: 2px;
  font-size: .7rem;
  line-height: 1.2;
}
.activity-flow__heading h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
  line-height: 1.2;
}
.activity-flow-slider {
  position: relative;
  --activity-flow-card-width: clamp(260px, 18vw, 320px);
  --activity-flow-gap: 14px;
  --activity-flow-peek: clamp(32px, 5vw, 58px);
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}
.activity-flow-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 10px;
  cursor: grab;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
}
.activity-flow-marquee::-webkit-scrollbar { display: none; }
.activity-flow-marquee.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.activity-flow-marquee.is-ready { overflow-x: auto; }
.activity-flow-marquee.is-empty {
  overflow: hidden;
  cursor: default;
  -webkit-mask-image: none;
  mask-image: none;
}
.activity-flow-marquee__track {
  position: relative;
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: var(--activity-flow-gap, 14px);
  padding-inline: var(--activity-flow-side-padding, clamp(24px, 4vw, 64px));
}
.activity-flow-marquee.is-empty .activity-flow-marquee__track {
  width: 100%;
  min-height: 112px;
  align-items: center;
  justify-content: center;
}
.activity-flow__empty {
  width: min(620px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px;
  border: 2px dashed rgba(144,224,239,.9);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}
.activity-flow-card {
  position: relative;
  z-index: 0;
  display: block;
  flex: 0 0 var(--activity-flow-card-width, clamp(260px, 18vw, 320px));
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 14px;
  background: #dff5f8;
  box-shadow: 0 8px 20px rgba(0,72,112,.14);
  color: var(--white);
  font: inherit;
  text-align: left;
  text-decoration: none;
  scroll-snap-align: center;
  cursor: pointer;
  transition: opacity .28s ease, filter .28s ease, box-shadow .28s ease, border-color .28s ease, transform .12s ease;
}
.activity-flow-card:hover,
.activity-flow-card:focus-visible,
.activity-flow-card.is-selected {
  z-index: 1;
  border-color: var(--blue);
  box-shadow: 0 11px 25px rgba(0,180,216,.28), 0 0 0 2px rgba(200,238,132,.5);
}
.activity-flow-card.is-current { border-color: rgba(144,224,239,.98); }
.activity-flow-card:active { transform: scale(.985); }
.activity-flow-marquee.has-selection .activity-flow-card:not(.is-selected) {
  opacity: .48;
  filter: brightness(.72) saturate(.7);
}
.activity-flow-card__media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #c7f0f8, #eff9d6);
}
.activity-flow-card__media::before,
.activity-flow-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.activity-flow-card__media::before {
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,180,216,.12), transparent 58%);
}
.activity-flow-card__media::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(2,42,67,.16) 0%, transparent 38%, rgba(3,34,54,.88) 100%);
}
.activity-flow-card__media--event::before { background: linear-gradient(135deg, rgba(200,238,132,.25), transparent 58%); }
.activity-flow-card__media--collaboration::before { background: linear-gradient(135deg, rgba(144,224,239,.28), transparent 58%); }
.activity-flow-card__media--club::before { background: linear-gradient(135deg, rgba(200,238,132,.2), rgba(0,180,216,.08) 58%, transparent); }
.activity-flow-card__media--notice::before { background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(144,224,239,.12) 58%, transparent); }
.activity-flow-card__placeholder {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: .04em;
  opacity: 1;
  text-align: center;
  text-shadow:
    0 2px 8px rgba(0,24,38,.65),
    0 0 12px rgba(255,255,255,.2);
}
.activity-flow-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform .38s ease, filter .28s ease;
}
.activity-flow-card--left .activity-flow-card__image { object-position: 24% center; }
.activity-flow-card--center .activity-flow-card__image { object-position: center; }
.activity-flow-card--right .activity-flow-card__image { object-position: 76% center; }
.activity-flow-card:hover .activity-flow-card__image,
.activity-flow-card:focus-visible .activity-flow-card__image,
.activity-flow-card.is-selected .activity-flow-card__image {
  filter: brightness(1.08) saturate(1.04);
  transform: scale(1.045);
}
.activity-flow-card__media .image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c7f0f8, #eff9d6);
  color: var(--blue-dark);
  font-weight: 900;
}
.activity-flow-card__body {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.activity-flow-card__content {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
}
.activity-flow-card__meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.activity-flow-card__date {
  overflow: hidden;
  color: rgba(255,255,255,.9);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-shadow: 0 1px 5px rgba(0,24,38,.8);
  white-space: nowrap;
}
.activity-flow-card__more {
  flex: 0 0 auto;
  padding: 3px 7px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: .58rem;
  font-weight: 900;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity .22s ease, transform .22s ease, background-color .22s ease;
}
.activity-flow-card:hover .activity-flow-card__more,
.activity-flow-card:focus-visible .activity-flow-card__more,
.activity-flow-card.is-selected .activity-flow-card__more {
  background: rgba(255,255,255,.28);
  opacity: 1;
  transform: none;
}
.activity-flow-card:hover .activity-flow-card__more.home-action-btn,
.activity-flow-card:focus-visible .activity-flow-card__more.home-action-btn,
.activity-flow-card.is-selected .activity-flow-card__more.home-action-btn {
  border-color: var(--blue-dark);
  background: rgba(255,255,255,.18);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0,119,182,.2), 0 0 0 3px rgba(144,224,239,.12);
}
.activity-flow-card__more.home-action-btn {
  transition:
    opacity .22s ease,
    transform .22s ease,
    color .85s ease,
    border-color .85s ease,
    box-shadow .85s ease,
    background-color .85s ease;
}
.activity-flow-card:hover .activity-flow-card__more.home-action-btn::before,
.activity-flow-card:focus-visible .activity-flow-card__more.home-action-btn::before,
.activity-flow-card.is-selected .activity-flow-card__more.home-action-btn::before {
  opacity: 1;
  background-position: 0 50%;
}
.activity-flow-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(144,224,239,.86);
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  color: var(--blue-dark);
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(0,72,112,.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: opacity .24s ease, transform .24s var(--motion-pop), box-shadow .24s ease, border-color .24s ease;
}
.activity-flow-nav::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.activity-flow-nav--prev {
  left: max(8px, calc(50% - (var(--activity-flow-card-width) / 2) - var(--activity-flow-peek)));
}
.activity-flow-nav--next {
  right: max(8px, calc(50% - (var(--activity-flow-card-width) / 2) - var(--activity-flow-peek)));
}
.activity-flow-nav--prev::before { transform: translateX(2px) rotate(-135deg); }
.activity-flow-nav--next::before { transform: translateX(-2px) rotate(45deg); }
.activity-flow-nav:hover,
.activity-flow-nav:focus-visible {
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 9px 22px rgba(0,180,216,.24);
}
.activity-flow-nav:disabled {
  opacity: .2;
  cursor: default;
  box-shadow: none;
  transform: translateY(-50%);
}
.activity-flow-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 18px;
  margin: 0 0 4px;
}
.activity-flow-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8d7df;
  cursor: pointer;
  transition: width .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.activity-flow-dot.active {
  width: 20px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(144,224,239,.2);
}
.activity-flow-detail__image img,
.activity-flow-detail__image .image-placeholder {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.activity-flow-detail { animation: activityFlowDetailIn .26s ease both; }
@keyframes activityFlowDetailIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.activity-flow__intro {
  max-width: 660px;
  margin: 4px auto 0;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
.activity-flow__actions { display: flex; justify-content: center; margin-top: 10px; }
.activity-flow__fallback { text-align: center; }
.activity-category-marquee {
  display: block;
  overflow: visible;
  margin: 8px 0 16px;
  padding: 0;
}
.activity-category-marquee__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.activity-category-marquee .activity-filter-btn {
  min-height: 46px;
  padding-inline: 20px;
}
.activity-category-marquee .activity-filter-btn.active {
  font-weight: 900;
}
.activity-empty { margin-top: 0; }
.activity-card.is-filtered-in { animation: sedareFadeUp .42s var(--motion-pop) both; }
.activity-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-color: #90e0ef;
}
.activity-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2px dashed var(--line);
  background:
    radial-gradient(circle at 24% 24%, rgba(144,224,239,.62), transparent 34%),
    linear-gradient(135deg, #ffffff, #e6eef4);
}
.activity-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--blue-dark);
  padding: 14px;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.activity-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 18px;
  text-align: left;
}
.activity-card__date {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.4;
}
.activity-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}
.activity-content h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.45;
}
.activity-content p {
  margin: 0;
  font-weight: 700;
  line-height: 1.9;
}
.activity-card__summary {
  color: var(--muted);
}
.activity-content .activity-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 900;
}
.activity-card--link { cursor: pointer; }
.activity-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 900;
  text-decoration: none;
}
.activity-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.activity-card-link::after { content: " >"; margin-left: 4px; transition: transform .25s ease; }
.activity-card--link:hover .activity-card-link::after,
.activity-card--link:focus-within .activity-card-link::after { transform: translateX(4px); }
.activity-card--link:focus-within { outline: 3px solid rgba(0,180,216,.48); outline-offset: 4px; }
.activity-detail-gallery-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 28px;
  border: 2px dashed var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 28%, rgba(255,255,255,.88) 0 3%, transparent 3.6%),
    radial-gradient(circle at 76% 66%, rgba(200,238,132,.55) 0 6%, transparent 6.8%),
    linear-gradient(135deg, #e8f8fa, #ffffff 58%, #f2fadf);
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
}

.switch-panel {
  background:
    radial-gradient(circle at 12% 10%, rgba(144,224,239,.26), transparent 30%),
    rgba(255,255,255,.9);
  border: 2px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
  overflow: hidden;
}
.activity-filter-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.guide-jump-panel {
  background:
    radial-gradient(circle at 12% 10%, rgba(144,224,239,.26), transparent 30%),
    rgba(255,255,255,.9);
  border: 2px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
  overflow: hidden;
}
.switch-panels {
  position: relative;
}
.switch-content {
  background: rgba(255,255,255,.86);
  border: 2px solid rgba(144,224,239,.7);
  border-radius: 18px;
  padding: clamp(20px, 4vw, 30px);
  color: var(--text);
  font-weight: 700;
}
.activity-filter-shell .switch-content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.gallery-panel-shell .switch-content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.switch-content .filter-tools {
  margin-bottom: 22px;
}
.switch-content .notice-grid,
.switch-content .guide-list,
.switch-content .gallery-filter-list,
.switch-content .activity-list,
.switch-content .faq-list {
  margin-top: 18px;
}
.switch-content .grid {
  margin-top: 18px;
}
.switch-content + .switch-content {
  margin-top: 14px;
}
.switch-content h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.45;
}
.switch-content p {
  margin: 0;
  line-height: 1.95;
}
.switch-content .btn {
  margin-top: 18px;
}
.credit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.credit-item {
  padding: 16px 18px;
  border: 2px solid rgba(144,224,239,.7);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
}
.credit-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: .86rem;
  font-weight: 900;
}
.credit-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.5;
}
.guide-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.guide-anchor-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 44px;
  padding: 9px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform .28s var(--motion-pop),
    box-shadow .28s ease,
    border-color .28s ease,
    background-color .28s ease,
    color .28s ease;
}
.guide-anchor-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .28s ease, transform .28s var(--motion-pop);
}
.guide-anchor-link:hover,
.guide-anchor-link:focus-visible {
  transform: translateY(-5px) scale(1.025);
  border-color: var(--blue);
  color: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(0,180,216,.18), var(--pop-glow);
}
.guide-anchor-link:active {
  transform: translateY(-1px) scale(.985);
}
.guide-anchor-link:hover::after,
.guide-anchor-link:focus-visible::after {
  opacity: .82;
  transform: scaleX(1);
}
.guide-sections {
  display: grid;
  gap: 18px;
}
.guide-content-panel {
  background: rgba(255,255,255,.86);
  border: 2px solid rgba(144,224,239,.7);
  border-radius: 18px;
  padding: clamp(20px, 4vw, 30px);
  color: var(--text);
  font-weight: 700;
  scroll-margin-top: calc(var(--header-height) + 28px);
}
.guide-content-panel:focus {
  outline: none;
}
.guide-content-panel:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.guide-content-panel .notice-grid,
.guide-content-panel .guide-list {
  margin-top: 18px;
}
.guide-content-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.45;
}
.guide-content-panel p {
  margin: 0;
  line-height: 1.95;
}
.guide-content-panel .btn {
  margin-top: 18px;
}
.guide-content-panel .btn.home-action-btn {
  height: auto;
  min-height: 44px;
  padding-block: 12px;
  line-height: inherit;
}
.pre-visit-check {
  display: grid;
  grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
  margin-top: 18px;
}
.pre-visit-check__image {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  margin: 0;
  min-width: 0;
}
.pre-visit-check__image img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(144,224,239,.72);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(29,78,102,.12);
  background: rgba(255,255,255,.8);
}
.pre-visit-check__body {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.pre-visit-check__body section {
  padding-left: 14px;
  border-left: 4px solid rgba(200,238,132,.84);
}
.pre-visit-check__body h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
}
.pre-visit-check__body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.25em;
}
.pre-visit-check__body li {
  line-height: 1.85;
}
.pre-visit-check__body [lang="en"] {
  color: var(--muted);
  font-size: .94em;
}
.organization-chart {
  margin: 24px auto 0;
}
.organization-chart-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(144,224,239,.5);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(80,150,180,.18);
}
.organization-chart-placeholder {
  display: grid;
  place-items: center;
  min-height: 160px;
  margin-top: 24px;
  padding: 24px;
  border: 2px dashed rgba(144,224,239,.75);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(232,250,255,.72));
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 720px) {
  .organization-chart-image,
  .organization-chart-placeholder {
    border-radius: 18px;
  }
  .organization-chart-placeholder {
    min-height: 120px;
    padding: 18px;
  }
}
.js .switch-content {
  display: none;
  margin-top: 0;
  opacity: 0;
  transform: translateY(8px);
}
.js .switch-content.active {
  display: block;
  animation: switchFade var(--switch-duration) var(--switch-easing) forwards;
}

@keyframes switchFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-filter-list { justify-content: flex-start; }
.gallery-content .filter-btn { max-width: 100%; }
.gallery-content,
.activity-page-content {
  --gallery-drawer-width: min(440px, 38vw);
  --gallery-drawer-shift: max(-220px, -19vw);
  transition: transform .38s var(--motion-pop);
}
.gallery-content { transition-duration: .8s; }
.gallery-content.gallery-drawer-open,
.activity-page-content.activity-drawer-open {
  transform: translateX(var(--gallery-drawer-shift));
}
.gallery-detail-drawer {
  position: fixed;
  top: calc(var(--header-height) + 4px);
  right: 0;
  bottom: 0;
  left: 0;
  --gallery-drawer-width: min(440px, 38vw);
  z-index: 900;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear .38s;
}
.gallery-detail-drawer:not(.activity-detail-drawer) { transition-duration: .8s; }
.gallery-detail-drawer.is-open {
  visibility: visible;
  pointer-events: none;
  transition-delay: 0s;
}
.activity-detail-drawer.is-open {
  pointer-events: auto;
}
.gallery-detail-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 94, .14);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}
.gallery-detail-drawer:not(.activity-detail-drawer) .gallery-detail-drawer__backdrop {
  transition: opacity .8s var(--motion-pop);
}
.gallery-detail-drawer.is-open .gallery-detail-drawer__backdrop {
  opacity: 1;
  pointer-events: auto;
}
.activity-detail-drawer.is-open .gallery-detail-drawer__backdrop {
  pointer-events: auto;
}
.gallery-detail-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: var(--gallery-drawer-width);
  max-width: 100vw;
  flex-direction: column;
  overflow: hidden;
  pointer-events: auto;
  border-left: 2px solid #90e0ef;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,245,249,.98));
  box-shadow: -18px 0 38px rgba(0, 119, 182, .16);
  transform: translateX(102%);
  transition: transform .38s var(--motion-pop);
}
.gallery-detail-drawer:not(.activity-detail-drawer) .gallery-detail-drawer__panel { transition-duration: .8s; }
.gallery-detail-drawer.is-open .gallery-detail-drawer__panel { transform: translateX(0); }
.gallery-detail-drawer__close {
  position: absolute;
  top: 14px;
  right: 16px;
}
.gallery-detail-drawer__content {
  overflow-y: auto;
  min-height: 0;
  padding: 62px 22px 24px;
}
.gallery-detail-drawer__content .detail-title {
  padding-right: 44px;
  margin-bottom: 18px;
}
.gallery-detail-drawer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.gallery-detail-drawer__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.gallery-detail-drawer__photo {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  cursor: zoom-in;
  transition: transform .24s var(--motion-pop), border-color .24s ease, box-shadow .24s ease;
}
.gallery-detail-drawer__photo:hover,
.gallery-detail-drawer__photo:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 180, 216, .16);
  transform: translateY(-2px);
}
.gallery-detail-drawer__image,
.gallery-detail-drawer__photo .image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-detail-drawer__empty {
  margin: 0;
  padding: 26px 18px;
  border: 2px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}
.album-toolbar {
  margin-top: 24px;
}
.album-back-link {
  margin-top: 28px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: start;
  gap: 18px;
}
.gallery-card {
  grid-column: span 4;
  overflow: hidden;
  transition: transform .8s var(--motion-pop), box-shadow .8s ease, border-color .8s ease, background .8s ease;
}
.gallery-card.is-selected,
.gallery-card.is-selected:hover,
.gallery-card.reveal.is-visible.is-selected,
.gallery-card.reveal.is-visible.is-selected:hover {
  z-index: 3;
  transform: translateY(-7px) scale(1.025);
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(0, 119, 182, .2), 0 0 0 3px rgba(144, 224, 239, .22);
}
.gallery-card[data-layout="landscape"] { grid-column: span 6; }
.gallery-card[data-layout="wide"] { grid-column: 1 / -1; }
.gallery-card[data-layout="portrait"],
.gallery-card[data-layout="poster"] { grid-column: span 4; }
.gallery-card[hidden] { display: none; }
.gallery-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--soft);
  cursor: pointer;
}
.gallery-open picture { display: block; }
.gallery-open img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  outline: 1px solid rgba(200, 238, 132, .72);
  outline-offset: -7px;
  transition: filter .24s ease, transform .32s var(--motion-pop);
}
.gallery-card:hover .gallery-open img,
.gallery-open:focus-visible img {
  filter: brightness(1.04);
  transform: scale(1.015);
}
.gallery-open:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: -3px;
}
.gallery-post-card__button {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
}
.gallery-post-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(144,224,239,.62), transparent 38%),
    linear-gradient(135deg, #f8fafc, #d9f2f7);
}
.gallery-post-card__media picture,
.gallery-post-card__image,
.gallery-post-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-post-card__media .gallery-post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-post-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-size: .84rem;
  font-weight: 900;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(135deg, rgba(144,224,239,.8), rgba(0,180,216,.24));
}
.gallery-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.gallery-post-card__tags {
  position: static;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  gap: 5px;
}
.gallery-post-card__tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.gallery-post-card__count {
  position: static;
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 55, 78, .72);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}
.gallery-post-card__count svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.gallery-caption {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  font-weight: 800;
}
.gallery-caption__title {
  position: relative;
  width: fit-content;
  color: var(--navy);
}
.gallery-caption__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  border-bottom: 3px solid rgba(200, 238, 132, .76);
  border-radius: 50%;
  transform: rotate(-.5deg);
}
.gallery-caption small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-top: 4px;
}
.small-note,
.gallery-note,
.caption-note {
  margin-top: 8px !important;
  color: var(--muted) !important;
  font-size: .84rem !important;
  font-weight: 700;
  line-height: 1.8;
}
.gallery-scroll {
  overflow: visible;
  padding-bottom: 8px;
}
.gallery-scroll .gallery-grid {
  min-width: 0;
}
.x-card h3 { margin: 0 0 6px; }
.x-card p { margin: 0 0 14px; font-weight: 700; }

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.org-card {
  padding: 20px;
}
.org-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}
.org-card ul {
  margin: 0;
  padding-left: 1.2em;
  font-weight: 800;
}
.org-card li + li { margin-top: 4px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .36s ease,
    transform .36s var(--motion-pop),
    filter .36s ease;
  filter: blur(2px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.guide-jump-panel.reveal-from-start {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}
.guide-jump-panel.reveal-from-start .guide-anchor-nav,
.guide-jump-panel.reveal-from-start .guide-content-panel {
  opacity: 0;
  animation: sedareFadeUp .46s var(--motion-pop) both;
}
.guide-jump-panel.reveal-from-start .guide-anchor-nav { animation-delay: .04s; }
.guide-jump-panel.reveal-from-start .guide-content-panel:nth-child(1) { animation-delay: .12s; }
.guide-jump-panel.reveal-from-start .guide-content-panel:nth-child(2) { animation-delay: .2s; }
.guide-jump-panel.reveal-from-start .guide-content-panel:nth-child(3) { animation-delay: .28s; }
.guide-jump-panel.reveal-from-start .guide-content-panel:nth-child(4) { animation-delay: .36s; }
.scroll-arrived {
  animation: targetSoftGlow .42s ease both;
}
@keyframes targetSoftGlow {
  0% {
    box-shadow: inset 0 0 0 0 rgba(0,180,216,0);
  }
  38% {
    box-shadow: inset 0 0 0 6px rgba(144,224,239,.22);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(0,180,216,0);
  }
}

@supports (animation-timeline: view()) {
  .section-title {
    animation: titleFloat both ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
  @keyframes titleFloat {
    from {
      opacity: .82;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.faq-list {
  display: grid;
  gap: 16px;
  scroll-margin-top: calc(var(--header-height) + 28px);
}
.faq-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  transition:
    transform .28s var(--motion-pop),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
  scroll-margin-top: calc(var(--header-height) + 28px);
}
.faq-item:hover {
  z-index: 2;
  transform: none;
  box-shadow: var(--pop-shadow), var(--pop-glow);
  border-color: var(--blue);
}
.js .faq-item.open {
  z-index: 2;
  transform: none;
  border-color: var(--blue);
  background:
    linear-gradient(180deg, rgba(0, 180, 216, .09), rgba(255, 255, 255, .96) 58%, rgba(255, 255, 255, .9)),
    rgba(255, 255, 255, .88);
  box-shadow: 0 12px 26px rgba(0, 180, 216, .16), var(--pop-glow);
}
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  min-height: 68px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.6;
  transition: color .2s ease, background-color .2s ease;
}
.faq-question:hover {
  color: var(--blue-dark);
}
.faq-question::after,
.js .faq-item.open .faq-question::after {
  content: none;
  display: none;
}
.faq-answer-wrap {
  display: block;
}
.js .faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .16s ease;
}
.js .faq-item.open .faq-answer-wrap {
  grid-template-rows: 1fr;
}
.faq-answer {
  min-height: 0;
  overflow: hidden;
  color: var(--text);
  font-weight: 700;
}
.js .faq-answer {
  opacity: 0;
  transform: translateY(-2px);
  transition:
    opacity .12s ease,
    transform .12s ease;
  transition-delay: 0s;
}
.js .faq-item.open .faq-answer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.faq-answer-inner {
  position: relative;
  display: block;
  max-width: none;
  padding: 0 24px 24px 72px;
  line-height: 1.9;
  line-break: anywhere;
  overflow-wrap: anywhere;
}
.faq-answer-inner::before {
  content: "A";
  position: absolute;
  top: 2px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200,238,132,.5);
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1;
}
.faq-answer-inner a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.link-icon {
  width: 68px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(144,224,239,.78);
  color: var(--blue-dark);
  font-weight: 900;
  justify-self: center;
}
.link-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.link-icon--photo img {
  border-radius: 10px;
}
.link-icon--wide {
  width: 96px;
  padding: 5px;
}
.link-card strong, .link-card small { display: block; }
.link-card small { color: var(--muted); }
.update-history-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.update-history-item {
  display: grid;
  grid-template-columns: minmax(9.5em, auto) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(144, 224, 239, .76);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 20px rgba(0, 119, 182, .08);
}
.update-history-date {
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 900;
}
.update-history-body {
  display: grid;
  gap: 3px;
}
.update-history-area {
  color: var(--navy);
}
.update-history-summary {
  line-height: 1.7;
  font-weight: 700;
}
.update-history-list--compact.is-scrollable {
  max-height: var(--update-history-max-height);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 180, 216, .52) rgba(203, 213, 225, .36);
}
.update-history-list--compact.is-scrollable::-webkit-scrollbar {
  width: 10px;
}
.update-history-list--compact.is-scrollable::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(203, 213, 225, .36);
}
.update-history-list--compact.is-scrollable::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(0, 180, 216, .52);
  background-clip: padding-box;
}
.empty-state {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-weight: 900;
}
.empty-state[hidden] { display: none; }
.contact-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact-page .page-hero::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.68)),
    rgba(230,238,244,.08);
}
.contact-section {
  position: relative;
  z-index: 1;
}
.contact-card {
  position: relative;
  z-index: 1;
  opacity: 1;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-color: #90e0ef;
  box-shadow: 0 14px 34px rgba(0, 180, 216, .13);
}
.contact-card h3,
.contact-card p {
  color: var(--navy);
}

.modal-open,
.lightbox-open {
  overflow: hidden;
}
.detail-modal[hidden] {
  display: none;
}
.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.detail-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 94, .22);
  backdrop-filter: blur(6px);
}
.detail-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,245,249,.96));
  border: 2px solid #90e0ef;
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(0, 119, 182, .22);
  padding: clamp(20px, 4vw, 34px);
}
.hero-video-confirm-dialog {
  width: min(760px, 100%);
  max-height: none;
  text-align: center;
}
.hero-video-confirm-content {
  display: grid;
  gap: 28px;
}
.hero-video-confirm-content .detail-title {
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: .06em;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}
.hero-video-confirm-content .btn-group {
  margin-top: 0;
}
.detail-content.is-detail-entering {
  animation: switchFade var(--switch-duration) var(--switch-easing) both;
}
.detail-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  font: inherit;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
}
.detail-main-image {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
}
.detail-main-image img,
.detail-large-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--white);
}
.cast-detail-layout .detail-main-image img,
.cast-detail-layout .cast-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
}
.partner-detail-logo {
  padding: 24px;
  min-height: 180px;
  display: grid;
  place-items: center;
}
.partner-detail-logo img {
  max-height: 150px;
  object-fit: contain;
}
.detail-title {
  margin: 0 0 12px;
  color: var(--navy);
}
.detail-body {
  color: var(--text);
  font-weight: 700;
}
.detail-badges {
  justify-content: flex-start;
  margin-bottom: 14px;
}
.detail-meta {
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 900;
}
.detail-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
}
.detail-section h3 {
  margin: 0 0 8px;
  color: var(--navy);
}
.detail-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}
.cast-photo-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 18px;
  border: 2px solid rgba(144,224,239,.85);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(225,249,255,.9));
  color: var(--blue-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(80,150,180,.12);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.cast-photo-toggle:hover,
.cast-photo-toggle:focus-visible {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(80,150,180,.18);
}
.cast-photo-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(206,247,255,.95), rgba(235,255,224,.9));
}
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.detail-gallery-grid[hidden] {
  display: none;
}
.cast-photo-gallery {
  margin-top: 14px;
}
.cast-photo-gallery.is-open {
  animation: sedareFadeUp .32s var(--motion-pop) both;
}
.detail-gallery-item {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
}
.detail-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cast-photo-thumb {
  margin: 0;
  box-shadow: 0 12px 24px rgba(80,150,180,.12);
}
.cast-photo-thumb img {
  display: block;
}
.cast-photo-thumb__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--white);
  color: inherit;
  cursor: zoom-in;
}
.image-lightbox[hidden] {
  display: none;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 30px);
}
.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(3, 4, 94, .78);
  cursor: zoom-out;
}
.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  gap: 8px;
  place-items: center;
  width: min(1080px, 100%);
  max-height: calc(100vh - 24px);
  outline: none;
}
.image-lightbox__stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  place-items: center;
}
.image-lightbox__image {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}
.image-lightbox:not([hidden]) .image-lightbox__image {
  animation: imageLightboxExpand .9s var(--motion-pop) both;
}
@keyframes imageLightboxExpand {
  from {
    opacity: .72;
    transform: scale(.84);
  }
  72% {
    opacity: 1;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}
.image-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(200, 238, 132, .82);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
  cursor: pointer;
  transform: translateY(-50%);
}
.image-lightbox__nav::before {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.image-lightbox__nav--prev { left: 12px; }
.image-lightbox__nav--next { right: 12px; }
.image-lightbox__nav--prev::before { content: "‹"; }
.image-lightbox__nav--next::before { content: "›"; }
.image-lightbox__nav:disabled {
  opacity: .38;
  cursor: not-allowed;
}
.image-lightbox__caption,
.image-lightbox__counter {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}
.image-lightbox__meta {
  display: grid;
  gap: 6px;
  width: min(760px, 100%);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 12px;
  background: rgba(3, 4, 94, .34);
  color: var(--white);
}
.image-lightbox__meta[hidden] {
  display: none;
}
.image-lightbox__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  font-weight: 800;
  line-height: 1.6;
}
.image-lightbox__meta-label {
  color: #caf0f8;
}
.image-lightbox__related {
  width: fit-content;
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.image-lightbox__counter { font-size: .82rem; }
.image-lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  background: rgba(3, 4, 94, .76);
  color: var(--white);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}
.detail-image-view {
  display: grid;
  gap: 16px;
}
.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 140px;
  color: var(--blue-dark);
  font-weight: 900;
  background:
    radial-gradient(circle at 35% 25%, rgba(144,224,239,.58), transparent 32%),
    linear-gradient(135deg, #fff, #e6eef4);
}
.detail-actions {
  justify-content: flex-start;
  margin-top: 20px;
}

.footer {
  padding: 50px 20px;
  text-align: center;
  background: var(--line);
  color: var(--text);
  font-size: .85rem;
  font-weight: 900;
  border-top: 4px dotted #94a3b8;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-links a { text-decoration: underline; }

/* Small, event-like motion details for the HOME view and page tabs. */
.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: calc(.58 * var(--hero-decoration-opacity));
  filter: blur(.2px);
  will-change: opacity;
}
.home-hero::before {
  top: 8%;
  left: -10%;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.78) 0 4%, transparent 4.8%),
    radial-gradient(circle at 64% 25%, rgba(200,238,132,.46) 0 3%, transparent 3.8%),
    radial-gradient(circle at 77% 68%, rgba(144,224,239,.66) 0 5%, transparent 5.8%);
  animation: sedareBubbleDrift 15s ease-in-out infinite alternate;
}
.home-hero::after {
  right: -11%;
  bottom: 4%;
  background:
    radial-gradient(circle at 24% 65%, rgba(255,255,255,.7) 0 4%, transparent 4.8%),
    radial-gradient(circle at 52% 26%, rgba(144,224,239,.6) 0 3.5%, transparent 4.2%),
    radial-gradient(circle at 75% 48%, rgba(200,238,132,.48) 0 5%, transparent 5.8%);
  animation: sedareBubbleDrift 18s ease-in-out -5s infinite alternate-reverse;
}
.logo-img {
  transform-origin: center;
  transition: transform .3s var(--motion-pop), filter .3s ease;
  animation:
    sedareLogoEnter .72s var(--motion-pop) both,
    sedareLogoFloat 5.4s ease-in-out .82s infinite;
}
.logo-img:hover {
  filter: drop-shadow(0 10px 12px rgba(0,180,216,.16));
  translate: 0 -3px;
  scale: 1.025;
}
.logo-img:active { translate: 0 1px; scale: .98; }
.service-card { overflow: hidden; }
.service-card > * { position: relative; z-index: 1; }
.service-card::after {
  content: "";
  position: absolute;
  inset: -45% -20%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 38%, rgba(144,224,239,.14) 48%, rgba(200,238,132,.12) 53%, transparent 64%);
  transform: translateX(-30%) rotate(-8deg);
  animation: sedareCardSheen 9s ease-in-out 1.2s 2;
}
.status-pill { animation: sedareStatusGlow 3.8s ease-in-out 2; }
.service-card.reveal.is-visible .service-details div { animation: sedareFadeUp .36s var(--motion-pop) both; }
.service-card.reveal.is-visible .service-details div:nth-child(1) { animation-delay: .08s; }
.service-card.reveal.is-visible .service-details div:nth-child(2) { animation-delay: .16s; }
.service-card.reveal.is-visible .service-details div:nth-child(3) { animation-delay: .24s; }
.home-link-layout .card h3,
.link-card strong { position: relative; }
.home-link-layout .card h3::after {
  content: "→";
  display: inline-block;
  margin-left: .35em;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .28s ease, transform .28s var(--motion-pop);
}
.home-link-layout .card:hover h3::after {
  opacity: 1;
  transform: translateX(0);
}
.home-link-layout .card:hover { background: linear-gradient(135deg, var(--white), rgba(223,245,248,.78)); }
.link-card { overflow: hidden; }
.link-card::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--blue-dark);
  font-weight: 900;
  opacity: .45;
  transform: translate(-2px, 2px);
  transition: transform .28s var(--motion-pop), opacity .28s ease;
}
.link-card:hover::after { opacity: 1; transform: translate(2px, -2px); }
.link-icon { transition: transform .3s var(--motion-pop), background-color .3s ease, color .3s ease; }
.link-card:hover .link-icon { transform: translateY(-3px) rotate(-5deg); }
.partner-logo-card.reveal { transition-delay: var(--reveal-delay, 0ms); }

.wave-title,
.wave-text {
  white-space: pre-wrap;
}
.wave-char {
  display: inline-block;
  will-change: transform, opacity, filter;
}
.is-waving .wave-char {
  animation: sedareWaveText .42s var(--motion-pop) var(--wave-delay, 0ms) both;
}
.js .switch-content.active { animation: switchFade var(--switch-duration) var(--switch-easing) both; }

@keyframes sedareWaveText {
  0% { opacity: 0; filter: blur(3px); transform: translateY(10px) scale(.98); }
  52% { opacity: 1; filter: blur(0); transform: translateY(-3px) scale(1.015); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}
@keyframes sedareFadeUp {
  from { opacity: 0; filter: blur(2px); transform: translateY(10px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes sedareLogoEnter {
  from { opacity: 0; filter: blur(5px); transform: translateY(14px) scale(.96); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}
@keyframes sedareLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes sedareBubbleDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, -3vh, 0) scale(1.08); }
}
@keyframes sedareStatusGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(144,224,239,0); }
  50% { box-shadow: 0 0 0 5px rgba(144,224,239,.2), 0 8px 18px rgba(0,180,216,.14); }
}
@keyframes sedareCardSheen {
  0%, 30% { transform: translateX(-45%) rotate(-8deg); opacity: 0; }
  42% { opacity: 1; }
  60%, 100% { transform: translateX(45%) rotate(-8deg); opacity: 0; }
}
@keyframes sedareMenuItemIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollCueFadeIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes scrollCueArrow {
  0%, 100% { transform: translateY(-2px); opacity: .7; }
  50% { transform: translateY(3px); opacity: 1; }
}
@keyframes scrollCueBubble {
  0%, 100% { transform: translateY(2px) scale(.9); opacity: .55; }
  50% { transform: translateY(-6px) scale(1.08); opacity: 1; }
}

@media (min-width: 1200px) {
  .page-hero {
    min-height: 360px;
    background-position: center 45%;
  }
  .guide-list > .guide-step .step-media {
    margin-top: 18px;
    margin-bottom: 18px;
  }
  .guide-list > .guide-step {
    min-height: 215px;
  }
  .guide-list > .guide-step .step-body {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (min-width: 1440px) {
  .page-hero {
    min-height: 420px;
  }
}

@media (min-width: 1600px) {
  .page-hero {
    min-height: 460px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .gallery-card { grid-column: span 6; }

  .activity-flow-slider {
    --activity-flow-card-width: clamp(190px, 28vw, 240px);
    --activity-flow-peek: clamp(24px, 5vw, 48px);
  }

  .activity-flow-card,
  .activity-flow-card:focus-visible {
    flex-basis: var(--activity-flow-card-width);
  }
}

@media (max-width: 768px) {
  :root { --header-height: 72px; }
  .gallery-content,
  .activity-page-content {
    --gallery-drawer-width: min(100vw, 440px);
    --gallery-drawer-shift: 0px;
  }
  .gallery-detail-drawer {
    --gallery-drawer-width: min(100vw, 440px);
  }
  .gallery-detail-drawer__panel {
    width: var(--gallery-drawer-width);
    border-left: 0;
  }
  .gallery-detail-drawer__photos {
    grid-template-columns: 1fr;
  }
  .nav-container { min-height: var(--header-height); }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 8px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top right;
    transition: opacity .26s ease, transform .26s var(--motion-pop), visibility .26s step-end;
  }
  .menu.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-timing-function: ease, var(--motion-pop), step-start;
  }
  .menu a { text-align: center; padding: 10px; }
  .menu.open a { animation: sedareMenuItemIn .34s var(--motion-pop) calc(var(--menu-item-index) * 45ms) both; }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: calc(100svh - var(--header-height));
    padding: 82px 16px 100px;
    align-items: flex-end;
  }
  .hero-card {
    padding: 22px 18px 26px;
    border-radius: 20px;
    background: rgba(255,255,255,.8);
  }
  .home-quick-links {
    gap: 10px;
    margin-top: 18px;
  }
  .home-quick-link {
    min-width: min(100%, 160px);
    min-height: 44px;
    padding: 9px 18px;
  }
  .home-about-card {
    grid-template-columns: 1fr;
  }
  .activity-category-marquee .activity-filter-btn {
    min-height: 42px;
    padding-inline: 16px;
  }
  .logo-img { max-width: 82%; height: auto; }
  .hero-scroll-cue {
    bottom: 16px;
    min-width: min(272px, calc(100vw - 32px));
    padding: 9px 44px 9px 17px;
  }
  .hero-scroll-cue__text { font-size: .72rem; }
  .hero-scroll-cue__sub { font-size: .68rem; }
  .section { padding: 42px 16px; }
  .page-hero {
    min-height: 220px;
    padding: 0 16px;
  }
  .page-hero .inner { padding: 44px 0 38px; }
  .about-intro-card {
    grid-template-columns: 1fr;
  }
  .service-card, .guide-step { grid-template-columns: 1fr; }
  .service-actions { justify-content: center; }
  .step-media {
    width: 100%;
    aspect-ratio: auto;
    border-right: 0;
    border-bottom: 2px dashed var(--line);
    min-height: 150px;
  }
  .guide-list > .guide-step {
    grid-template-columns: minmax(120px, 44%) minmax(0, 1fr);
    min-height: 343px;
  }
  .guide-list > .guide-step .guide-step-link {
    grid-template-columns: inherit;
  }
  .guide-list > .guide-step .step-media {
    width: calc(100% - 12px);
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-left: 8px;
    border-bottom: 0;
  }
  .guide-list > .guide-step .step-body {
    padding: 10px 14px;
  }
  .pre-visit-check {
    grid-template-columns: 1fr;
  }
  .pre-visit-check__image {
    position: static;
    max-width: min(100%, 360px);
    margin-inline: auto;
  }
  .pre-visit-check__image img {
    max-height: 520px;
  }
  .step-body { padding: 24px 20px; }
  .grid, .notice-grid, .link-grid, .gallery-grid, .stat-grid, .home-link-layout { grid-template-columns: 1fr; }
  .partner-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-logo-card {
    min-height: 96px;
    padding: 18px;
  }
  .partner-logo-card.auranodez-partner .partner-logo-area { min-height: 76px; }
  .partner-logo-card.auranodez-partner img { max-height: 76px; }
  .update-history-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px;
  }
  .switch-panel {
    padding: 16px;
    border-radius: 20px;
  }
  .switch-content {
    padding: 20px;
  }
  .faq-question {
    min-height: 64px;
    padding: 16px 18px;
    gap: 12px;
  }
  .faq-question::after {
    content: none;
    display: none;
  }
  .faq-answer-inner { padding: 0 18px 20px 62px; }
  .faq-answer-inner::before { left: 18px; }
  .detail-modal { padding: 14px; }
  .detail-dialog {
    max-height: 88vh;
    border-radius: 20px;
    padding: 18px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .detail-main-image {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
  .gallery-scroll .gallery-grid {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .gallery-card,
  .gallery-card[data-layout="landscape"],
  .gallery-card[data-layout="wide"],
  .gallery-card[data-layout="portrait"],
  .gallery-card[data-layout="poster"] { grid-column: 1; }
  .btn { width: 100%; max-width: 330px; }
  .event-name { font-size: 1.25rem; }
  .cast-marquee { margin: 0 -16px; padding-right: 16px; padding-left: 16px; }
  .cast-preview-card { width: 190px; flex-basis: 190px; }
  .cast-preview-card__body { min-height: 90px; padding: 13px 14px 14px; }
  .album-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}

@media (max-width: 768px) {
  .cast-photo-gallery.is-open {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .cast-photo-gallery .cast-photo-thumb {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
  }

  .filter-tools .filter-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 4px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tools .filter-row::-webkit-scrollbar { display: none; }

  .filter-tools .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .gallery-content .filter-row {
    flex-wrap: wrap;
    overflow: visible;
    justify-content: flex-start;
  }

  .gallery-content .filter-btn {
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .activity-flow__toolbar {
    display: block;
    margin-bottom: 5px;
  }

  .activity-flow__heading {
    margin-bottom: 7px;
    text-align: center;
  }

  .activity-flow-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: calc(var(--space-5) * -1);
    padding: 4px var(--space-5) 9px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .activity-flow-filter::-webkit-scrollbar { display: none; }

  .activity-flow-filter__button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .activity-flow-slider {
    --activity-flow-card-width: min(86vw, 340px);
    --activity-flow-gap: 12px;
    --activity-flow-peek: clamp(22px, 8vw, 42px);
  }

  .activity-flow-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    padding: 5px 0 9px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .activity-flow-marquee__track,
  .activity-flow-marquee.is-ready .activity-flow-marquee__track {
    display: flex;
    width: max-content;
    gap: 12px;
    padding-inline: var(--activity-flow-side-padding, 28px);
  }

  .activity-flow-card,
  .activity-flow-card:focus-visible {
    flex: 0 0 var(--activity-flow-card-width);
    opacity: 1;
  }

  .activity-flow-nav {
    width: 34px;
    height: 34px;
  }

  .activity-flow-nav--prev { left: 8px; }
  .activity-flow-nav--next { right: 8px; }

  .activity-flow__intro { font-size: .86rem; }
}

@media (max-width: 720px) {
  .menu a:hover,
  .btn:hover,
  .filter-btn:hover,
  .card:hover,
  .service-card:hover,
  .guide-step:hover,
  .text-panel:hover,
  .link-card:hover,
  .gallery-card:hover,
  .x-card:hover,
  .stat-card:hover,
  .mini-notice:hover,
  .org-card:hover,
  .activity-card:hover,
  .activity-flow-card:hover,
  .activity-flow-filter__button:hover,
  .activity-flow-nav:hover,
  .partner-logo-card:hover,
  .guide-anchor-link:hover,
  .faq-item:hover {
    transform: none;
  }

  .card:hover,
  .service-card:hover,
  .guide-step:hover,
  .text-panel:hover,
  .link-card:hover,
  .gallery-card:hover,
  .x-card:hover,
  .stat-card:hover,
  .mini-notice:hover,
  .org-card:hover,
  .activity-card:hover,
  .partner-logo-card:hover,
  .guide-anchor-link:hover,
  .faq-item:hover {
    box-shadow: var(--shadow);
  }

  .filter-btn.active {
    transform: scale(1.01);
  }

  .js .faq-item.open {
    transform: none;
  }

  .menu a:active,
  .btn:active,
  .filter-btn:active,
  .card:active,
  .service-card:active,
  .guide-step:active,
  .text-panel:active,
  .link-card:active,
  .gallery-card:active,
  .x-card:active,
  .stat-card:active,
  .mini-notice:active,
    .org-card:active,
    .activity-card:active,
    .partner-logo-card:active,
    .guide-anchor-link:active {
    transform: scale(.985);
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .nav-container {
    padding-inline: 14px;
    gap: 10px;
  }

  .event-name {
    max-width: calc(100vw - 82px);
    overflow: hidden;
    font-size: 1.05rem;
    text-overflow: ellipsis;
  }

  .menu {
    left: 10px;
    right: 10px;
    max-height: calc(100svh - var(--header-height) - 18px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 16px;
  }

  .menu a {
    min-height: 44px;
    padding: 11px 12px;
  }

  .home-hero .hero-bg-video {
    display: none;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height));
    padding: 72px 14px 62px;
    align-items: center;
  }

  .hero-card {
    width: min(100%, 420px);
    padding: 18px 14px 20px;
    border-radius: 18px;
  }

  .logo-img {
    max-width: min(82%, 280px);
  }

  .hero-card h1 {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
    line-height: 1.35;
  }

  .hero-copy {
    font-size: .94rem;
    line-height: 1.85;
  }

  .home-quick-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .home-quick-link,
  .btn {
    width: 100%;
    max-width: none;
  }

  .section {
    padding: 34px 14px;
  }

  .inner {
    width: min(100%, 100%);
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.3;
  }

  .activity-menu-title h2 {
    font-size: clamp(1.05rem, 5.5vw, 1.35rem);
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .section-title p,
  .page-kicker {
    letter-spacing: .08em;
  }

  .card,
  .service-card,
  .text-panel,
  .link-card,
  .x-card,
  .stat-card,
  .mini-notice,
  .org-card,
  .activity-card,
  .faq-item {
    border-radius: 16px;
  }

  .home-about-card {
    padding: 14px;
    gap: 16px;
  }

  .home-about-card__image img {
    max-height: 420px;
    border-radius: 14px;
  }

  .home-about-card__body {
    gap: 12px;
  }

  .home-about-card__body h2 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .home-about-card__body p,
  .card p,
  .text-panel p,
  .guide-step p {
    max-width: none;
    font-size: .95rem;
    line-height: 1.8;
  }

  .cast-marquee {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .cast-preview-card {
    width: 172px;
    flex-basis: 172px;
  }

  .album-preview-grid { grid-template-columns: 1fr; gap: 18px; }

  .activity-flow {
    margin-inline: -14px;
  }

  .activity-flow__heading,
  .activity-flow__toolbar {
    padding-inline: 14px;
  }

  .activity-flow-filter {
    margin-inline: 0;
    padding-inline: 14px;
  }

  .activity-flow-slider {
    --activity-flow-card-width: min(88vw, 320px);
  }

  .activity-flow-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .activity-flow-marquee__track,
  .activity-flow-marquee.is-ready .activity-flow-marquee__track {
    padding-inline: var(--activity-flow-side-padding, 22px);
  }

  .activity-flow-card,
  .activity-flow-card:focus-visible {
    flex-basis: var(--activity-flow-card-width);
  }

  .guide-anchor-nav {
    gap: 8px;
    padding-bottom: 4px;
  }

  .guide-anchor-link,
  .filter-btn,
  .activity-flow-filter__button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: .9rem;
  }

  .guide-list {
    gap: 14px;
  }

  .guide-list > .guide-step,
  .guide-list > .guide-step .guide-step-link {
    grid-template-columns: 1fr;
  }

  .guide-list > .guide-step {
    min-height: 0;
  }

  .guide-list > .guide-step .step-media {
    width: 100%;
    margin: 0;
    border-radius: 14px 14px 0 0;
    aspect-ratio: 16 / 9;
  }

  .guide-list > .guide-step .step-body {
    padding: 16px;
  }

  .step-click-cue {
    top: 10px;
    right: 10px;
    min-height: 30px;
    padding: 4px 10px;
    font-size: .74rem;
  }

  .pre-visit-check,
  .switch-content,
  .faq-item {
    padding: 16px;
  }

  .faq-question {
    min-height: 58px;
    padding: 14px 16px;
    line-height: 1.55;
  }

  .faq-answer-inner {
    padding: 0 16px 18px 54px;
    line-height: 1.85;
  }

  .faq-answer-inner::before {
    left: 16px;
  }

  .image-lightbox__nav {
    width: 44px;
    height: 44px;
  }
  .image-lightbox__image {
    max-height: calc(100vh - 240px);
  }
  .image-lightbox__meta {
    max-height: 110px;
    overflow-y: auto;
    font-size: .9rem;
  }
  .image-lightbox__nav--prev { left: 6px; }
  .image-lightbox__nav--next { right: 6px; }

  .filter-tools .filter-row {
    touch-action: pan-x pan-y;
  }

  .filter-tools .filter-btn,
  .cast-filter-clear {
    pointer-events: auto;
    touch-action: manipulation;
  }
}

@media (max-width: 420px) {
  .event-name {
    font-size: .98rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-card {
    padding: 16px 12px 18px;
  }

  .hero-card h1 {
    font-size: clamp(1.34rem, 8.8vw, 1.75rem);
  }

  .hero-copy {
    font-size: .9rem;
  }

  .section {
    padding-inline: 12px;
  }

  .activity-flow {
    margin-inline: -12px;
  }

  .activity-flow__heading,
  .activity-flow__toolbar,
  .activity-flow-filter {
    padding-inline: 12px;
  }

  .activity-flow-slider {
    --activity-flow-card-width: 86vw;
  }

  .activity-flow-card,
  .activity-flow-card:focus-visible {
    flex-basis: var(--activity-flow-card-width);
  }

  .cast-preview-card {
    width: 162px;
    flex-basis: 162px;
  }

  .home-about-card,
  .pre-visit-check,
  .switch-content,
  .faq-item {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-action-btn::before {
    transition: none;
  }
  .home-action-btn:hover::before,
  .home-action-btn:focus-visible::before,
  .home-action-btn:active::before,
  .activity-flow-card:hover .activity-flow-card__more.home-action-btn::before,
  .activity-flow-card:focus-visible .activity-flow-card__more.home-action-btn::before,
  .activity-flow-card.is-selected .activity-flow-card__more.home-action-btn::before {
    background-position: 50% 50%;
  }
  .logo-img,
  .status-pill,
  .home-hero::before,
  .home-hero::after,
  .service-card::after,
  .hero-scroll-cue,
  .hero-scroll-cue__icon::before,
  .hero-scroll-cue__bubble,
  .wave-char {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-scroll-cue { transform: translateX(-50%) !important; }
  .hero-scroll-cue.is-hidden {
    opacity: 0 !important;
    transform: translate(-50%, 12px) !important;
  }
  .cast-marquee__track {
    animation: none;
    transform: none;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .scroll-arrived {
    animation: none;
  }
  .home-hero .hero-bg-video {
    display: none;
  }
  .home-hero::before,
  .home-hero::after {
    opacity: calc(.58 * var(--hero-decoration-opacity)) !important;
  }
  .hero-card { will-change: auto; }
  .activity-flow-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .activity-flow-marquee.is-ready { overflow-x: auto; }
  .activity-flow-marquee.is-ready .activity-flow-marquee__track {
    display: flex;
    animation: none;
    transform: none;
  }
  .activity-flow-card:hover .activity-flow-card__image,
  .activity-flow-card:focus-visible .activity-flow-card__image,
  .activity-flow-card.is-selected .activity-flow-card__image {
    filter: none;
    transform: none;
  }
  .gallery-card:hover .gallery-open img,
  .gallery-card.is-selected .gallery-open img,
  .gallery-open:focus-visible img,
  .page-hero h1::after {
    filter: none;
    transform: none;
  }
  .activity-category-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .activity-category-marquee__track {
    animation: none;
    transform: none;
  }
  .faq-answer-wrap,
  .faq-answer,
  .faq-item,
  .faq-question::after {
    transition: none;
  }
  .faq-item:hover,
  .js .faq-item.open,
  .menu a:hover,
  .menu a:active,
  .btn:hover,
  .btn:active,
  .filter-btn:hover,
  .filter-btn.active,
  .filter-btn:active,
  .card:hover,
  .card:active,
  .service-card:hover,
  .service-card:active,
  .guide-step:hover,
  .guide-step:active,
  .text-panel:hover,
  .text-panel:active,
  .link-card:hover,
  .link-card:active,
  .gallery-card:hover,
  .gallery-card.is-selected,
  .gallery-card:active,
  .x-card:hover,
  .x-card:active,
  .stat-card:hover,
  .stat-card:active,
  .mini-notice:hover,
  .mini-notice:active,
  .org-card:hover,
  .org-card:active,
  .activity-card:hover,
  .activity-card:active,
  .partner-logo-card:hover,
  .partner-logo-card:active,
  .guide-anchor-link:hover,
  .guide-anchor-link:active {
    transform: none;
  }
  .faq-answer {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
}
