:root {
  --red: #ff3f34;
  --orange: #ff8a00;
  --yellow: #ffc334;
  --green: #28c76f;
  --cyan: #13bde6;
  --blue: #5a9be7;
  --pink: #d65ed8;
  --navy: #12314d;
  --ink: #173248;
  --muted: #627184;
  --line: #e7edf1;
  --soft: #f7f7f6;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
}

body.opening-active {
  overflow: hidden;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  pointer-events: none;
}

.opening::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(25, 168, 211, .09), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(245, 194, 71, .12), transparent 24%);
  opacity: 0;
  animation: opening-bg 2600ms ease forwards;
}

.opening-loader {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(22px, 5vw, 34px);
  width: min(420px, 76vw);
}

.opening-logo {
  width: min(310px, 62vw);
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  animation: opening-logo-reveal 760ms ease 20ms forwards;
}

.opening-bar {
  position: relative;
  --progress: 0%;
  width: min(360px, 72vw);
  height: 5px;
  overflow: hidden;
  border-radius: 0;
  background: #edf2f5;
}

.opening-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, #e5243b 0 5.88%, #dda63a 5.88% 11.76%, #4c9f38 11.76% 17.64%, #c5192d 17.64% 23.52%, #ff3a21 23.52% 29.4%, #26bde2 29.4% 35.28%, #fcc30b 35.28% 41.16%, #a21942 41.16% 47.04%, #fd6925 47.04% 52.92%, #dd1367 52.92% 58.8%, #fd9d24 58.8% 64.68%, #bf8b2e 64.68% 70.56%, #3f7e44 70.56% 76.44%, #0a97d9 76.44% 82.32%, #56c02b 82.32% 88.2%, #00689d 88.2% 94.08%, #19486a 94.08% 100%);
  clip-path: inset(0 calc(100% - var(--progress)) 0 0);
  transition: clip-path 80ms linear;
}

.opening.is-ending {
  animation: opening-fade 760ms ease forwards;
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -12vh;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  background: var(--c);
  opacity: .42;
  border-radius: 2px;
  transform: rotate(var(--r));
  animation: confetti-fall var(--d) linear var(--delay) infinite;
}

.confetti-piece:nth-child(3n) {
  border-radius: 50%;
}

.confetti-piece:nth-child(4n) {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  background: transparent;
}

.ticker-bar {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track img {
  flex: 0 0 auto;
  width: 930px;
  max-width: none;
  height: 18px;
  margin-right: 34px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  background: transparent;
  padding: 0 clamp(16px, 4vw, 46px) 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  background: var(--white);
}

.brand img {
  width: 64px;
}

.menu-toggle {
  display: block;
  position: relative;
  z-index: 60;
  width: 44px;
  height: 44px;
  margin-top: 12px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18, 49, 77, .08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 3px;
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
  background: var(--red);
}

.menu-toggle span:nth-child(2) {
  top: 21px;
  background: var(--green);
}

.menu-toggle span:nth-child(3) {
  top: 29px;
  background: var(--cyan);
}

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 620px);
  align-items: center;
  justify-content: center;
  column-gap: 60px;
  row-gap: 32px;
  width: 100%;
  height: 100vh;
  max-height: 0;
  padding: 0 clamp(24px, 5vw, 32px);
  overflow: auto;
  background: rgba(255, 255, 255, .97);
  opacity: 0;
  pointer-events: none;
  transition: max-height 260ms ease, opacity 220ms ease, padding 260ms ease;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4.5rem);
  text-align: center;
}

.nav.is-open {
  max-height: 100vh;
  padding-top: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(34px, 6vw, 72px);
  opacity: 1;
  pointer-events: auto;
}

.nav a {
  padding: 4px 0;
}

.menu-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  justify-self: end;
}

.menu-logo {
  width: min(340px, 100%);
  margin: 0 auto;
}

.menu-primary-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  width: 100%;
  justify-content: center;
  overflow: hidden;
}

.menu-primary-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--tag-color, var(--blue));
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
}

.menu-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(13px, 2vw, 28px);
  width: 100%;
  justify-self: start;
  text-align: left;
}

.menu-group {
  display: flex;
  flex: 1 1 300px;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 5px 5px;
  font-size: clamp(.68rem, 0.8vw, 0.98rem);
}

.menu-group p {
  flex: 0 0 100%;
  margin: 0 0 4px;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--red), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .08em;
}

.menu-group a {
  color: var(--ink);
  line-height: 1.3;
}

.menu-group a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  line-height: 1.2;
}

.menu-group a {
  padding: 4px 12px 4px;
  border: 1px solid color-mix(in srgb, var(--tag-color, var(--green)) 34%, var(--white));
  background: color-mix(in srgb, var(--tag-color, var(--green)) 18%, var(--white));
}

.menu-news-group {
  flex: 1 1 100%;
}

.menu-group a.menu-news-item {
  gap: 10px;
  min-height: 0;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 2px solid var(--blue);
  border-radius: 0;
  background: transparent;
}

.menu-news-item time {
  color: var(--tag-color, var(--blue));
  font-size: .72em;
  font-weight: 1000;
  white-space: nowrap;
}

.menu-guest-group {
  flex: 1 1 100%;
}

.menu-group a.menu-guest-item {
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}

.menu-guest-item img {
  width: clamp(54px, 6vw, 72px);
  aspect-ratio: 1 / 1;
  border: 3px solid color-mix(in srgb, var(--tag-color, var(--green)) 45%, var(--white));
  border-radius: 50%;
  object-fit: cover;
  background: #eeeeee;
}

body.menu-open {
  overflow: hidden;
}

.menu-primary-tags a:nth-child(1),
.menu-group a:nth-of-type(7n+1) { --tag-color: var(--blue); }
.menu-primary-tags a:nth-child(2),
.menu-group a:nth-of-type(7n+2) { --tag-color: var(--green); }
.menu-primary-tags a:nth-child(3),
.menu-group a:nth-of-type(7n+3) { --tag-color: var(--red); }
.menu-primary-tags a:nth-child(4),
.menu-group a:nth-of-type(7n+4) { --tag-color: var(--pink); }
.menu-primary-tags a:nth-child(5),
.menu-group a:nth-of-type(7n+5) { --tag-color: var(--cyan); }
.menu-group a:nth-of-type(7n+6) { --tag-color: var(--orange); }
.menu-group a:nth-of-type(7n) { --tag-color: var(--yellow); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: clamp(26px, 5vw, 70px);
  min-height: min(720px, calc(100svh - 92px));
  padding: 0 clamp(20px, 5vw, 70px) clamp(20px, 7vw, 86px);
  overflow: hidden;
}

.hero-logo-panel,
.hero-events-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-logo-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--white);
}

.hero-logo-panel img {
  width: min(460px, 100%);
}

.hero-events-panel {
  align-self: center;
  display: grid;
  gap: 12px;
}

.hero-mini-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--pink), var(--red), var(--orange));
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
}

.hero-pickup-card {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.hero-pickup-inner {
  position: relative;
  min-height: clamp(240px, 27vw, 340px);
}

.hero-pickup-face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border: 2px solid var(--edge, var(--green));
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 16px 32px rgba(18, 49, 77, .12);
  opacity: 1;
  transition: opacity 680ms ease;
}

.hero-pickup-face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, .64) 100%);
  pointer-events: none;
}

.hero-pickup-back {
  opacity: 0;
}

.hero-pickup-card.is-showing-back .hero-pickup-face:first-child {
  opacity: 0;
}

.hero-pickup-card.is-showing-back .hero-pickup-back {
  opacity: 1;
}

.hero-pickup-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eeeeee;
}

.hero-pickup-copy {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1;
  display: flex;
  width: min(560px, calc(100% - 36px));
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.hero-pickup-date {
  position: absolute;
  top: 8px;
  left: -3px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 26px 0 13px;
  color: var(--white);
  background: var(--edge, var(--green));
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  font-size: 1.05rem;
  font-weight: 1000;
  line-height: 1;
  text-shadow: none;
}

.hero-pickup-copy h3 {
  margin: 6px 0 8px;
  color: var(--white);
  font-size: clamp(1.25rem, 2.35vw, 1.72rem);
  font-weight: 1000;
  line-height: 1.28;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.hero-pickup-copy p {
  margin: 0;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.hero-news {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.hero-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-news-grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(18, 49, 77, .1);
}

.hero-news-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  padding: 10px 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--edge, var(--green)) 28%, transparent);
  background: var(--white);
  box-shadow: none;
}

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

.hero-news-card time {
  display: block;
  color: var(--edge, var(--green));
  font-size: .58rem;
  font-weight: 1000;
  white-space: nowrap;
}

.hero-news-card h3 {
  margin: 0;
  font-size: clamp(.72rem, 1.05vw, .88rem);
  font-weight: 900;
  line-height: 1.45;
}

.hero-news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 14px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  background: var(--white);
  font-size: .76rem;
  font-weight: 1000;
  line-height: 1;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes confetti-fall {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(var(--r));
  }

  50% {
    transform: translate3d(var(--sway), 52vh, 0) rotate(calc(var(--r) + 180deg));
  }

  100% {
    transform: translate3d(calc(var(--sway) * -1), 112vh, 0) rotate(calc(var(--r) + 360deg));
  }
}

@keyframes opening-bg {
  40%,
  100% {
    opacity: 1;
  }
}

@keyframes opening-logo-reveal {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes opening-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening,
  .ticker-track,
  .confetti-piece,
  .event-card,
  .person,
  .place {
    animation: none;
  }

  .opening *,
  .hero-pickup-inner,
  .event-card,
  .person,
  .place {
    transition: none;
  }
}

.intro {
  padding: clamp(62px, 8vw, 96px) clamp(20px, 5vw, 60px) clamp(68px, 9vw, 108px);
  /* background: var(--white); */
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(18, 49, 77, .12);
}

.intro-title {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  font-weight: 1000;
  line-height: 1.2;
}

.intro-title span:nth-child(1) { color: #2d9ac7; }
.intro-title span:nth-child(2) { color: #d43d27; }
.intro-title span:nth-child(3) { color: #168d42; }
.intro-title span:nth-child(4) { color: #d44a92; }
.intro-title span:nth-child(5) { color: #2da87c; }

.intro-lead {
  max-width: 720px;
  margin: 0;
  color: #231f20;
  font-size: clamp(0.55rem, 1vw, 1.0rem);
  font-weight: 900;
  line-height: 2;
  letter-spacing: .04em;
}

.concept-image {
  width: min(300px, 64vw);
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 4vw, 48px);
}

.section-soft {
  background: transparent;
}

.pickup-section {
  padding-top: clamp(54px, 8vw, 96px);
}

.pickup-slider {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(18, 49, 77, .12);
  perspective: 1400px;
}

.pickup-track {
  position: relative;
  aspect-ratio: 3 / 1;
}

.pickup-slide {
  position: absolute;
  inset: 0;
  display: block;
  min-width: 0;
  min-height: 0;
  border-color: var(--edge, var(--green));
  opacity: 0;
  transform: rotateY(90deg) scale(.96);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 680ms cubic-bezier(.2, .75, .2, 1), opacity 280ms ease;
  pointer-events: none;
}

.pickup-slide.is-active {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  pointer-events: auto;
}

.pickup-slide img {
  width: 100%;
  aspect-ratio: 3 / 1;
  height: 100%;
  object-fit: cover;
  background: #eeeeee;
}

.pickup-copy {
  position: absolute;
  left: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  max-width: min(520px, calc(100% - 28px));
  padding: clamp(14px, 2.4vw, 22px);
  border: 2px solid var(--edge, var(--green));
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
}

.pickup-copy .date-tag {
  position: static;
  width: fit-content;
  margin-bottom: 6px;
}

.pickup-copy h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 1000;
}

.pickup-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.pickup-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.pickup-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 49, 77, .34);
  cursor: pointer;
}

.pickup-dot.is-active {
  background: var(--red);
}

.color-word {
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--pink), var(--red), var(--orange), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
}

.news-grid,
.event-grid,
.people-grid,
.place-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}

.news-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
  gap: 16px;
}

.event-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  width: min(1180px, 100%);
}

.people-grid,
.place-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.people-grid {
  max-width: 940px;
}

.place-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  gap: clamp(20px, 3vw, 34px) clamp(18px, 3vw, 28px);
}

.news-card,
.event-card,
.person,
.place {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 2px solid var(--edge, var(--green));
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(18, 49, 77, .12);
}

.news-card {
  display: grid;
  grid-template-columns: minmax(104px, 22%) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(14px, 2vw, 22px);
  min-height: 0;
  padding: 12px clamp(14px, 2.4vw, 22px);
  border-width: 2px;
  box-shadow: 0 16px 32px rgba(18, 49, 77, .12);
}

.news-page {
  min-height: 64vh;
  padding-top: 0;
}

.news-list {
  display: grid;
  gap: 18px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.news-list-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(14px, 3vw, 28px);
  align-items: start;
  padding: clamp(18px, 3vw, 28px);
  border: 2px solid var(--edge, var(--green));
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(18, 49, 77, .1);
}

.news-list-item time {
  position: relative;
  top: .18em;
  color: var(--edge, var(--green));
  font-size: .82rem;
  font-weight: 1000;
  line-height: 1.2;
  white-space: nowrap;
}

.news-list-item h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 1000;
  line-height: 1.35;
}

.news-list-item p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.9;
}

.compact-heading {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 0 auto 28px;
  text-align: center;
}

.compact-heading-en {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--pink), var(--red), var(--orange), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 1000;
  line-height: 1;
}

.compact-heading-ja {
  color: var(--red);
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  font-weight: 900;
  line-height: 1.2;
}

.news-card time {
  display: block;
  margin-bottom: 2px;
  color: var(--edge, var(--green));
  font-weight: 900;
  font-size: .62rem;
}

.news-card .card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  grid-row: span 3;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
}

.news-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 900;
}

.news-grid .news-card p {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

p {
  overflow-wrap: anywhere;
}

.news-card p,
.event-card p,
.person p,
.place p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.event-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border-width: 3px;
  box-shadow: 0 12px 24px rgba(18, 49, 77, .1);
}

.event-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  object-fit: cover;
  background: #eeeeee;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: cover;
  background: #eeeeee;
}

.person {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  justify-items: center;
  padding: clamp(18px, 2.2vw, 26px);
  text-align: center;
}

.person .card-image {
  width: min(100%, 172px);
  aspect-ratio: 1 / 1;
  margin: 0 0 18px;
  border: 4px solid color-mix(in srgb, var(--edge, var(--green)) 42%, var(--white));
  border-radius: 50%;
}

.person h3 {
  display: flex;
  align-items: center;
  min-height: 1.45em;
  margin-bottom: 6px;
}

.person p {
  align-self: start;
}

.guest-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin: -8px 0 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--edge, var(--green));
  font-size: .8rem;
  font-weight: 1000;
  line-height: 1;
}

.date-tag {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: -3px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 16px 0 8px;
  color: var(--white);
  background: var(--edge, var(--green));
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  font-size: .85rem;
  font-weight: 900;
  line-height: 1;
}

.date-tag::after {
  content: none;
}

@media (max-width: 980px) {
.event-card h3 {
  display: flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 13px 8px 4px;
  background: var(--white);
  font-size: clamp(.78rem, 1.15vw, 1.12rem);
  font-weight: 900;
  line-height: 1.35;
}
}
@media (min-width: 981px) {
.event-card h3 {
  display: flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 13px 8px 4px;
  background: var(--white);
  font-size: clamp(.88rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.35;
}
}

@media (max-width: 980px) {
.event-card p {
  display: block;
  padding: 0 8px 8px;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.65;
}
}
@media (min-width: 981px) {
.event-card p {
  display: block;
  padding: 0 8px 8px;
  font-size: .73rem;
  font-weight: 700;
  line-height: 1.65;
}
}

@media (max-width: 980px) {
.event-venue {
  display: block;
  margin: 0 8px 8px;
  padding: 6px 9px;
  background: color-mix(in srgb, var(--edge, var(--green)) 9%, var(--white));
  color: var(--ink);
  font-size: .62rem;
  font-weight: 900;
  line-height: 1.35;
}
}
@media (min-width: 981px) {
.event-venue {
  display: block;
  margin: 0 8px 8px;
  padding: 6px 9px;
  background: color-mix(in srgb, var(--edge, var(--green)) 9%, var(--white));
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.35;
}
}


.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 5px 8px 16px;
}

@media (max-width: 980px) {
.event-tags span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--tag-color);
  background: color-mix(in srgb, var(--tag-color) 13%, var(--white));
  font-size: .48rem;
  font-weight: 900;
  line-height: 1;
}
}
@media (min-width: 981px) {
.event-tags span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--tag-color);
  background: color-mix(in srgb, var(--tag-color) 13%, var(--white));
  font-size: .58rem;
  font-weight: 900;
  line-height: 1;
}
}

.tag-touch {
  --tag-color: #2193bd;
}

.tag-learn {
  --tag-color: #d71618;
}

.tag-connect {
  --tag-color: #f5c247;
}

.goals {
  display: none;
}

.goals li {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--edge, var(--green));
  font-size: .68rem;
  font-weight: 900;
}

.avatar {
  display: none;
}

.place {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  row-gap: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transition: opacity 920ms ease, transform 920ms ease, border-color 220ms ease;
}

.event-card,
.person {
  transition: opacity 920ms ease, transform 920ms ease, border-color 220ms ease;
}

.event-card.is-observed,
.person.is-observed,
.place.is-observed {
  opacity: 0;
  transform: translateY(18px);
}

.place:hover {
  transform: translateY(-4px);
}

.event-card.is-visible,
.person.is-visible,
.place.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.event-card.is-visible:hover,
.person.is-visible:hover,
.place.is-visible:hover {
  transform: translateY(-4px);
}

.place .card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 10px;
  border: 2px solid var(--edge, var(--green));
  object-fit: cover;
}

.place h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: clamp(.9rem, 1.35vw, 1.05rem);
  font-weight: 1000;
  line-height: 1.25;
}

.place address {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
}

.place p {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.35;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 18px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--white);
  background: var(--edge, var(--green));
  font-size: .62rem;
  font-weight: 1000;
  line-height: 1;
}

.plain-area {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.plain-area .section,
.plain-area .section-soft {
  background: var(--white);
}

.plain-area .place {
  box-shadow: none;
}

.sponsor-section {
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

.sponsor-stack {
  display: grid;
  justify-items: center;
  gap: clamp(36px, 6vw, 70px);
  width: min(640px, 100%);
  margin: 0 auto;
  text-align: center;
}

.sponsor-heading {
  margin-bottom: calc(clamp(36px, 6vw, 70px) * -0.45);
}

.sponsor-block {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.operation-heading {
  margin-top: clamp(12px, 3vw, 28px);
}

.sponsor-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 1000;
  line-height: 1;
}

.sponsor-logo {
  width: min(420px, 82vw);
  height: auto;
}

.label-red {
  background: #df1f39;
}

.label-blue {
  background: #2193bd;
}

.label-green {
  background: #33aa7f;
}

.supporters,
.organizer {
  margin: 0;
  color: var(--ink);
  font-size: clamp(.92rem, 2vw, 1.15rem);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.75;
}

.organizer {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: .04em;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}

.contact-mail {
  margin: 0;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .08em;
}

.footer {
  position: relative;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 14%, var(--orange) 14% 28%, var(--yellow) 28% 42%, var(--green) 42% 56%, var(--cyan) 56% 70%, var(--blue) 70% 84%, var(--pink) 84% 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 56px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-logo {
  display: block;
  width: clamp(116px, 14vw, 170px);
}

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

.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: none;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: .76rem;
  font-weight: 1000;
  line-height: 1;
}

.footer-nav a:nth-child(1) { background: var(--blue); }
.footer-nav a:nth-child(2) { background: var(--green); }
.footer-nav a:nth-child(3) { background: var(--red); }
.footer-nav a:nth-child(4) { background: var(--pink); }
.footer-nav a:nth-child(5) { background: var(--cyan); }

.edge-green { --edge: var(--green); }
.edge-orange { --edge: var(--orange); }
.edge-pink { --edge: var(--pink); }
.edge-red { --edge: var(--red); }
.edge-yellow { --edge: var(--yellow); }
.edge-blue { --edge: var(--blue); }
.edge-cyan { --edge: var(--cyan); }
.edge-dark { --edge: var(--navy); }
.event-color-01 { --edge: #ecbc49; --tag-color: #ecbc49; }
.event-color-02 { --edge: #d31176; --tag-color: #d31176; }
.event-color-03 { --edge: #e99411; --tag-color: #e99411; }
.event-color-04 { --edge: #118b3b; --tag-color: #118b3b; }
.event-color-05 { --edge: #d71618; --tag-color: #d71618; }
.event-color-06 { --edge: #a28a78; --tag-color: #a28a78; }
.event-color-07 { --edge: #ec753c; --tag-color: #ec753c; }
.event-color-08 { --edge: #1c2a54; --tag-color: #1c2a54; }
.event-color-09 { --edge: #129082; --tag-color: #129082; }
.event-color-10 { --edge: #548ac2; --tag-color: #548ac2; }
.event-color-11 { --edge: #8b1c30; --tag-color: #8b1c30; }
.event-color-12 { --edge: #b0448b; --tag-color: #b0448b; }
.event-color-13 { --edge: #8aba28; --tag-color: #8aba28; }
.event-color-14 { --edge: #7e836c; --tag-color: #7e836c; }
.event-color-15 { --edge: #dc473b; --tag-color: #dc473b; }
.event-color-16 { --edge: #239ec5; --tag-color: #239ec5; }
.event-color-17 { --edge: #b79a4d; --tag-color: #b79a4d; }
.menu-group a.event-color-01 { --tag-color: #ecbc49; }
.menu-group a.event-color-02 { --tag-color: #d31176; }
.menu-group a.event-color-03 { --tag-color: #e99411; }
.menu-group a.event-color-04 { --tag-color: #118b3b; }
.menu-group a.event-color-05 { --tag-color: #d71618; }
.menu-group a.event-color-06 { --tag-color: #a28a78; }
.menu-group a.event-color-07 { --tag-color: #ec753c; }
.menu-group a.event-color-08 { --tag-color: #1c2a54; }
.menu-group a.event-color-09 { --tag-color: #129082; }
.menu-group a.event-color-10 { --tag-color: #548ac2; }
.menu-group a.event-color-11 { --tag-color: #8b1c30; }
.menu-group a.event-color-12 { --tag-color: #b0448b; }
.menu-group a.event-color-13 { --tag-color: #8aba28; }
.menu-group a.event-color-14 { --tag-color: #7e836c; }
.menu-group a.event-color-15 { --tag-color: #dc473b; }
.menu-group a.event-color-16 { --tag-color: #239ec5; }
.menu-group a.event-color-17 { --tag-color: #b79a4d; }

@media (max-width: 980px) {
  .nav {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-content: center;
  }

  .menu-brand {
    align-items: center;
    justify-self: center;
  }

  .menu-primary-tags {
    justify-content: center;
  }

  .menu-links {
    justify-content: center;
    justify-self: center;
  }

  .menu-group {
    flex: 1 1 min(420px, 100%);
  }

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

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

@media (max-width: 680px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
    align-items: flex-start;
    flex-direction: row;
    gap: 16px;
    min-height: 76px;
    padding: 0 16px 8px;
  }

  .brand img {
    width: 72px;
  }

  .menu-toggle {
    margin-top: 12px;
    margin-left: auto;
  }

  .nav {
    justify-content: flex-start;
    gap: 22px;
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .nav.is-open {
    max-height: 100vh;
    padding: 54px 15px;
  }

  .nav a {
    padding: 2px 4px;
  }

  .menu-primary-tags {
    gap: 4px;
  }

  .menu-primary-tags a {
    flex: 1 1 0;
    padding: 6px 4px;
    font-size: 10px;
  }

  .menu-group a:not(.menu-news-item):not(.menu-guest-item) {
    padding: 4px 8px;
    font-size: .56rem;
    line-height: 1.25;
  }

  .menu-logo {
    width: min(220px, 54vw);
  }

  .menu-brand {
    width: 100%;
    gap: 16px;
  }

  .menu-links {
    justify-content: flex-start;
    justify-self: stretch;
    gap: 22px;
    width: 100%;
  }

  .menu-group {
    align-items: flex-start;
  }

  .menu-group {
    font-size: .92rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 54px;
  }

  .hero-logo-panel {
    min-height: 0;
    padding: 28px 20px;
  }

  .hero-logo-panel img {
    width: min(280px, 78vw);
  }

  .hero-events-panel {
    width: 100%;
  }

  .hero-pickup-card {
    width: 100%;
  }

  .hero-pickup-inner {
    min-height: 430px;
  }

  .hero-news-grid {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hero-news-card {
    min-width: 0;
  }

  .pickup-track,
  .pickup-slide img {
    aspect-ratio: 2 / 1;
  }

  .pickup-copy {
    max-width: calc(100% - 28px);
  }

  .intro {
    padding-top: 50px;
    padding-bottom: 62px;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .intro-title {
    font-size: clamp(1.38rem, 7.2vw, 2.05rem);
  }

  .intro-lead {
    font-size: clamp(0.8rem, 4.0vw, 1.2rem);
    line-height: 1.85;
  }

  .concept-image {
    width: min(300px, 82vw);
  }

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

  .news-card,
  .event-card,
  .person,
  .place {
    padding-left: 12px;
    padding-right: 12px;
  }

  .place {
    padding-left: 0;
    padding-right: 0;
  }

  .news-card {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

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

  .news-card .card-image {
    grid-row: auto;
    margin-bottom: 4px;
  }

  .event-card {
    min-height: 0;
    padding: 0;
  }

  .place {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding: 0;
  }

  .place .card-image {
    grid-row: auto;
    margin-bottom: 6px;
  }

  .place h3 {
    margin-bottom: 4px;
    font-size: .86rem;
    line-height: 1.25;
  }

  .place address,
  .place p {
    font-size: .62rem;
    line-height: 1.32;
  }

  .place p {
    margin-top: 2px;
    margin-bottom: 5px;
  }

  .sponsor-stack {
    gap: 42px;
  }

  .sponsor-logo {
    width: min(340px, 84vw);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 4px;
    width: 100%;
  }

  .footer-nav a {
    min-height: 26px;
    padding: 0 7px;
    font-size: .68rem;
  }
}
