@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: "Noto Serif JP", serif;
  color: #222222;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  background-color: #fff;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 80px;
  }
}

.section__content {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 64px;
  }
}

.section--soft-bg {
  background-color: #faf8f5;
}

.heading {
  font-size: 30px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}
.button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 16px 32px;
    font-size: 16px;
  }
}

.button--primary {
  background-color: #b74233;
  color: #fff;
}
.button--primary:hover {
  background-color: rgb(151.0923076923, 54.4923076923, 42.1076923077);
  opacity: 1;
}

.button--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 26px;
}
@media screen and (min-width: 768px) {
  .button--secondary {
    padding: 14px 30px;
  }
}
.button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid #fff;
  padding: 11px 25px;
}
@media screen and (min-width: 768px) {
  .button--secondary:hover {
    padding: 13px 29px;
  }
}

.button--accent {
  border-color: #b74233;
  color: #fff;
  background-color: #b74233;
}
.button--accent:hover {
  filter: brightness(0.9);
}

.button--small {
  padding: 6px 14px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .button--small {
    padding: 7px 16px;
    font-size: 13px;
  }
}

.button--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.c-section-header {
  text-align: center;
  margin-bottom: 36px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-section-header {
    margin-bottom: 48px;
  }
}

.c-section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #102544;
  margin-bottom: 12px;
}
.c-section-header__eyebrow::before, .c-section-header__eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #102544;
  opacity: 0.4;
}

.c-section-header__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #102544;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .c-section-header__title {
    font-size: 28px;
  }
}

.c-section-header__lead {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.7;
}

.c-section-header--dark .c-section-header__eyebrow {
  color: #c9a96e;
}

.c-section-header--dark .c-section-header__eyebrow::before,
.c-section-header--dark .c-section-header__eyebrow::after {
  background: #c9a96e;
  opacity: 0.7;
}

.c-section-header--dark .c-section-header__title {
  color: #fff;
}

.c-section-header--dark .c-section-header__lead {
  color: rgba(255, 255, 255, 0.7);
}

.c-section-header--sub {
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .c-section-header--sub {
    margin-bottom: 36px;
  }
}

.c-section-header--sub .c-section-header__title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-section-header--sub .c-section-header__title {
    font-size: 22px;
  }
}

.c-section-header--sub .c-section-header__lead {
  font-size: 12px;
}

.topic__header {
  position: relative;
  display: block;
}

.topic__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .topic__nav {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

@media screen and (min-width: 783px) {
  .admin-bar .header {
    top: 32px;
  }
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 12px 24px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-img {
  height: 38px;
  width: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo-img {
    height: 46px;
  }
}

.header__logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #102544;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header__logo-text {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header__logo-text {
    font-size: 20px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    gap: 34px;
  }
}

.header__nav-list a {
  font-size: 15px;
  font-weight: 500;
  color: #222222;
  transition: opacity 0.3s;
}
.header__nav-list a:hover {
  opacity: 0.7;
}

.header__drawer-toggle {
  display: block;
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header__drawer-toggle {
    display: none;
  }
}
.header__drawer-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #102544;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.header__drawer-toggle span:nth-child(1) {
  top: 0;
}
.header__drawer-toggle span:nth-child(2) {
  top: 11px;
}
.header__drawer-toggle span:nth-child(3) {
  top: 22px;
}
.header__drawer-toggle.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header__drawer-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__drawer-toggle.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer__nav {
  padding: 80px 24px 40px;
}
.drawer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer__nav li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
  color: #222222;
  transition: color 0.3s ease;
}
.drawer__nav li a:hover {
  color: #b74233;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}
.mask.is-open {
  opacity: 1;
  visibility: visible;
}

body.is-drawer-open {
  overflow: hidden;
}

.footer {
  background: #102544;
  color: #fff;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 24px;
  }
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 0 40px;
}
@media screen and (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 56px 0 48px;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer__nav {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    text-align: left;
  }
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    justify-content: flex-start;
    gap: 8px 24px;
  }
}

.footer__nav-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.footer__nav-link:hover {
  color: #fff;
}

.footer__sns {
  display: flex;
  gap: 12px;
}

.footer__sns-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer__sns-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer__copyright {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.breadcrumb {
  padding: 24px 0;
  background: #faf8f5;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 28px 0;
    margin-top: 70px;
  }
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .breadcrumb__inner {
    font-size: 14px;
  }
}

.breadcrumb__link {
  color: #102544;
  transition: color 0.3s ease;
}
.breadcrumb__link:hover {
  color: #b74233;
}

.breadcrumb__separator {
  color: #555555;
}

.breadcrumb__current {
  color: #222222;
  font-weight: 500;
}

.page-hero + .breadcrumb {
  margin-top: 0;
}

.info-hero + .breadcrumb {
  margin-top: 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #222222;
}
.breadcrumb__item::after {
  content: "›";
  margin: 0 0.5em;
  color: #555555;
}
.breadcrumb__item:last-child::after {
  content: none;
}

.breadcrumb__item--current {
  color: #555555;
}

body.is-menu-open {
  overflow: hidden;
}

.header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.info-hero {
  background: #102544;
  padding: 100px 16px 48px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info-hero {
    padding: 110px 24px 56px;
  }
}

.info-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-hero__eyebrow {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.info-hero__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .info-hero__title {
    font-size: 36px;
  }
}

.info-hero__lead {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .info-hero__lead {
    font-size: 14px;
  }
}

.page-hero {
  position: relative;
  padding-top: 60px;
  min-height: calc(22vh + 60px);
  min-height: max(22vh + 60px, 200px + 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(170deg, #0a1a33 0%, #122a4d 40%, #0a1a33 100%);
}
@media screen and (min-width: 768px) {
  .page-hero {
    padding-top: 70px;
  }
}

.page-hero--about-kendo {
  background: linear-gradient(170deg, #0a1a33 0%, #14305a 40%, #0a1a33 100%);
}

.page-hero--parents {
  background: linear-gradient(170deg, #0a1a33 0%, #1a2a45 40%, #0e1e38 100%);
}

.page-hero--experience {
  background: linear-gradient(170deg, #0e1e38 0%, #182e52 40%, #0a1a33 100%);
}

.page-hero--dojo {
  background: linear-gradient(170deg, #0a1a33 0%, #102544 40%, #0a1a33 100%);
}

.page-hero__noise {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
  animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-5%, -5%);
  }
  40% {
    transform: translate(3%, -3%);
  }
  60% {
    transform: translate(-3%, 5%);
  }
  80% {
    transform: translate(5%, 2%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.page-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 2;
}

.page-hero__beam {
  position: absolute;
  top: -30%;
  right: 10%;
  width: 280px;
  height: 160%;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.06) 0%, rgba(201, 169, 110, 0.02) 40%, transparent 70%);
  transform: rotate(-15deg);
  filter: blur(40px);
  pointer-events: none;
  z-index: 2;
  animation: heroBeamPulse 8s ease-in-out infinite;
}

.page-hero__beam-2 {
  position: absolute;
  top: -20%;
  right: 30%;
  width: 180px;
  height: 140%;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.035) 0%, transparent 60%);
  transform: rotate(-8deg);
  filter: blur(60px);
  pointer-events: none;
  z-index: 2;
  animation: heroBeamPulse 12s ease-in-out infinite reverse;
}

@keyframes heroBeamPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.page-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.page-hero__particles::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow: 120px 480px 0 1px rgba(201, 169, 110, 0.35), 45px 600px 0 1px rgba(201, 169, 110, 0.22), 200px 720px 0 2px rgba(201, 169, 110, 0.18), 80px 440px 0 1px rgba(232, 213, 168, 0.28), 170px 800px 0 2px rgba(201, 169, 110, 0.14), 380px 500px 0 1px rgba(232, 213, 168, 0.3), 450px 650px 0 2px rgba(201, 169, 110, 0.16), 520px 780px 0 1px rgba(201, 169, 110, 0.25), 340px 550px 0 1px rgba(232, 213, 168, 0.2), 600px 700px 0 2px rgba(201, 169, 110, 0.14), 750px 460px 0 1px rgba(201, 169, 110, 0.28), 820px 620px 0 2px rgba(232, 213, 168, 0.18), 900px 750px 0 1px rgba(201, 169, 110, 0.22), 680px 530px 0 1px rgba(232, 213, 168, 0.16), 1000px 680px 0 2px rgba(201, 169, 110, 0.12), 1100px 580px 0 1px rgba(201, 169, 110, 0.2), 260px 760px 0 2px rgba(232, 213, 168, 0.16), 550px 500px 0 1px rgba(201, 169, 110, 0.25), 30px 640px 0 1px rgba(232, 213, 168, 0.18), 1200px 710px 0 2px rgba(201, 169, 110, 0.12);
  animation: particleDrift1 14s linear infinite;
}

.page-hero__particles::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow: 300px 520px 0 2px rgba(201, 169, 110, 0.24), 150px 680px 0 3px rgba(232, 213, 168, 0.1), 500px 450px 0 2px rgba(201, 169, 110, 0.2), 700px 740px 0 3px rgba(232, 213, 168, 0.08), 950px 550px 0 2px rgba(201, 169, 110, 0.18), 100px 620px 0 3px rgba(232, 213, 168, 0.07), 850px 780px 0 2px rgba(201, 169, 110, 0.16), 420px 500px 0 3px rgba(232, 213, 168, 0.1), 1050px 660px 0 2px rgba(201, 169, 110, 0.14), 620px 800px 0 3px rgba(232, 213, 168, 0.08);
  animation: particleDrift2 20s linear infinite;
}

@keyframes particleDrift1 {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: translateY(-800px);
    opacity: 0;
  }
}
@keyframes particleDrift2 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: translate(15px, -800px);
    opacity: 0;
  }
}
.page-hero__watermark {
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(90px, 14vw, 180px);
  line-height: 1;
  color: rgba(201, 169, 110, 0.025);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 2;
}

.page-hero__issen {
  position: absolute;
  left: 0;
  top: 52%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #b74233, #c9a96e, transparent);
  z-index: 5;
  animation: issenSlash 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes issenSlash {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 0.8;
  }
  100% {
    width: 70%;
    opacity: 0;
  }
}
.page-hero__shooting-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.page-hero__star {
  position: absolute;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), rgba(201, 169, 110, 0));
  opacity: 0;
}

.page-hero__star--1 {
  top: 18%;
  right: 5%;
  transform: rotate(165deg);
  transform-origin: right center;
  animation: shoot1 12s cubic-bezier(0.2, 0.8, 0.3, 1) 2s infinite;
}

.page-hero__star--2 {
  top: 35%;
  left: 10%;
  transform: rotate(25deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), rgba(201, 169, 110, 0));
  animation: shoot2 18s cubic-bezier(0.2, 0.8, 0.3, 1) 5s infinite;
}

.page-hero__star--3 {
  top: 55%;
  right: 8%;
  height: 0.5px;
  transform: rotate(172deg);
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(232, 213, 168, 0.45), rgba(232, 213, 168, 0));
  animation: shoot3 15s cubic-bezier(0.2, 0.8, 0.3, 1) 8s infinite;
}

.page-hero__star--4 {
  top: 28%;
  left: 20%;
  transform: rotate(18deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(183, 66, 51, 0.35), rgba(201, 169, 110, 0.4), rgba(201, 169, 110, 0));
  animation: shoot4 22s cubic-bezier(0.2, 0.8, 0.3, 1) 0s infinite;
}

.page-hero__star--5 {
  top: 42%;
  right: 15%;
  height: 0.5px;
  transform: rotate(158deg);
  transform-origin: right center;
  animation: shoot5 20s cubic-bezier(0.2, 0.8, 0.3, 1) 11s infinite;
}

@keyframes shoot1 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(165deg) translateX(0);
  }
  2% {
    opacity: 0.9;
  }
  4% {
    width: 120px;
  }
  6% {
    width: 0;
    opacity: 0;
    transform: rotate(165deg) translateX(-300px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes shoot2 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(25deg) translateX(0);
  }
  1.5% {
    opacity: 0.7;
  }
  3% {
    width: 90px;
  }
  4.5% {
    width: 0;
    opacity: 0;
    transform: rotate(25deg) translateX(260px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes shoot3 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(172deg) translateX(0);
  }
  2% {
    opacity: 0.6;
  }
  3.5% {
    width: 160px;
  }
  5.5% {
    width: 0;
    opacity: 0;
    transform: rotate(172deg) translateX(-380px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes shoot4 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(18deg) translateX(0);
  }
  1% {
    opacity: 0.8;
  }
  2% {
    width: 65px;
  }
  2.8% {
    width: 0;
    opacity: 0;
    transform: rotate(18deg) translateX(200px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes shoot5 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(158deg) translateX(0);
  }
  1.5% {
    opacity: 0.5;
  }
  3% {
    width: 190px;
  }
  5% {
    width: 0;
    opacity: 0;
    transform: rotate(158deg) translateX(-420px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
.page-hero__flash {
  position: absolute;
  inset: 0;
  background: #c9a96e;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  animation: entryFlash 0.7s ease 0.15s forwards;
}

@keyframes entryFlash {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
  }
}
.page-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.page-hero__glow::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 0;
  left: 0;
  filter: blur(4px);
  box-shadow: 200px 120px 0 3px rgba(201, 169, 110, 0.08), 600px 220px 0 4px rgba(201, 169, 110, 0.06), 900px 160px 0 5px rgba(232, 213, 168, 0.05), 350px 350px 0 4px rgba(201, 169, 110, 0.07), 1050px 100px 0 3px rgba(232, 213, 168, 0.05), 100px 280px 0 5px rgba(201, 169, 110, 0.06), 750px 380px 0 4px rgba(232, 213, 168, 0.04);
  animation: glowDrift 24s ease-in-out infinite;
}

.page-hero__glow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 0;
  left: 0;
  filter: blur(6px);
  box-shadow: 450px 80px 0 5px rgba(201, 169, 110, 0.05), 150px 200px 0 6px rgba(232, 213, 168, 0.04), 800px 300px 0 7px rgba(201, 169, 110, 0.04), 500px 400px 0 5px rgba(232, 213, 168, 0.03);
  animation: glowDrift 30s ease-in-out infinite reverse;
}

@keyframes glowDrift {
  0% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(-10px, -40px);
    opacity: 0.6;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(5px, -20px);
    opacity: 0.5;
  }
}
.page-hero__fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(10, 26, 51, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.page-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 40px;
  text-align: center;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d5a8;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #c9a96e;
  opacity: 0.4;
}

.page-hero__title {
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 3px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 0 40px rgba(201, 169, 110, 0.15), 0 0 80px rgba(201, 169, 110, 0.05);
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

.page-hero__lead {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

.page-hero__bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
  z-index: 5;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero__beam,
  .page-hero__beam-2 {
    animation: none;
    opacity: 0.6;
  }
  .page-hero__noise {
    animation: none;
  }
  .page-hero__particles::before,
  .page-hero__particles::after {
    animation: none;
  }
  .page-hero__glow::before,
  .page-hero__glow::after {
    animation: none;
  }
  .page-hero__issen {
    animation: none;
    opacity: 0;
  }
  .page-hero__flash {
    animation: none;
    opacity: 0;
  }
  .page-hero__star {
    animation: none;
  }
  .page-hero__eyebrow,
  .page-hero__title,
  .page-hero__lead {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .page-hero {
    min-height: calc(20vh + 60px);
    min-height: max(20vh + 60px, 160px + 60px);
  }
  .page-hero__content {
    padding: 36px 20px 36px;
  }
  .page-hero__beam,
  .page-hero__beam-2 {
    filter: blur(30px);
  }
  .page-hero__watermark {
    font-size: 90px;
    right: -6%;
    bottom: -5%;
  }
}
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.badge-new {
  display: inline-block;
  position: relative;
  margin-right: 6px;
  padding: 2px 6px;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #fff;
  background: #b74233;
  border-radius: 3px;
  vertical-align: middle;
  z-index: 1;
}

.badge-new::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: #b74233;
  z-index: -1;
  animation: badge-new-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes badge-new-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .badge-new::after {
    animation: none;
  }
}
.breadcrumb:has(+ .info-tabs) {
  background: #fff;
  border-bottom: none;
}

.info-tabs {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.info-tabs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .info-tabs__inner {
    padding: 0 24px;
  }
}

.info-tabs__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.info-tabs__item {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .info-tabs__item {
    flex: 0 0 auto;
  }
}

.info-tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  color: #555555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
@media screen and (min-width: 768px) {
  .info-tabs__link {
    padding: 16px 32px;
    font-size: 14px;
  }
}
.info-tabs__link:hover {
  color: #102544;
  background: rgba(250, 248, 245, 0.5);
}
.info-tabs__link.is-active {
  color: #102544;
  border-bottom-color: #102544;
  font-weight: 600;
  background: #faf8f5;
}

.info-tabs__icon {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .info-tabs__text {
    font-size: 12px;
  }
}

.breadcrumb:has(+ .gateway-tabs) {
  background: #fff;
  border-bottom: none;
}

.gateway-tabs {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.gateway-tabs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.gateway-tabs__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.gateway-tabs__item {
  flex: 1;
}

.gateway-tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  color: #555555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.gateway-tabs__link:hover {
  color: #102544;
  background: rgba(250, 248, 245, 0.5);
}

.gateway-tabs__link.is-active {
  color: #102544;
  border-bottom-color: #102544;
  font-weight: 600;
  background: #faf8f5;
}

.gateway-tabs__icon {
  font-size: 14px;
}

.gateway-tabs__text--full {
  display: none;
}

.gateway-tabs__text--short {
  display: inline;
}

@media screen and (min-width: 768px) {
  .gateway-tabs__inner {
    padding: 0 24px;
  }
  .gateway-tabs__link {
    padding: 16px 24px;
    font-size: 14px;
  }
  .gateway-tabs__text--full {
    display: inline;
  }
  .gateway-tabs__text--short {
    display: none;
  }
}
.local-tabs {
  background: #0a1a33;
  border-bottom: 1px solid #14305a;
  position: sticky;
  top: 60px;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .local-tabs {
    top: 70px;
  }
}

@media screen and (min-width: 783px) {
  .admin-bar .local-tabs {
    top: calc(70px + 32px);
  }
}
.local-tabs__inner {
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .local-tabs__inner {
    padding: 0 24px;
  }
}

.local-tabs__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.local-tabs__list::-webkit-scrollbar {
  display: none;
}

.local-tabs__item {
  flex: 1;
}

.local-tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
@media screen and (min-width: 768px) {
  .local-tabs__link {
    padding: 16px 12px;
    font-size: 14px;
  }
}

.local-tabs__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.local-tabs__link.is-active,
.local-tabs__link[aria-current=location] {
  color: #c9a96e;
  border-bottom-color: #c9a96e;
  font-weight: 600;
}

.local-tabs__icon {
  display: none;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .local-tabs__icon {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .local-tabs__link {
    transition: none;
  }
}
.local-tabs__text--full {
  display: none;
}
@media screen and (min-width: 768px) {
  .local-tabs__text--full {
    display: inline;
  }
}

.local-tabs__text--short {
  display: inline;
}
@media screen and (min-width: 768px) {
  .local-tabs__text--short {
    display: none;
  }
}

.lightbox-trigger {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.lightbox-trigger picture,
.lightbox-trigger img {
  display: block;
  width: 100%;
  height: 100%;
}
.lightbox-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.lightbox-trigger:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s;
}
.lightbox[hidden] {
  display: none;
}
.lightbox.is-open {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .lightbox {
    padding: 40px;
  }
}

.lightbox__content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
  .lightbox__image {
    max-height: calc(100vh - 180px);
  }
}

.lightbox__caption {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .lightbox__caption {
    font-size: 16px;
  }
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.5px;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox__close:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .lightbox__close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}
.lightbox__prev[disabled],
.lightbox__next[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
@media screen and (min-width: 768px) {
  .lightbox__prev,
  .lightbox__next {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

.lightbox__prev {
  left: 12px;
}
@media screen and (min-width: 768px) {
  .lightbox__prev {
    left: 32px;
  }
}

.lightbox__next {
  right: 12px;
}
@media screen and (min-width: 768px) {
  .lightbox__next {
    right: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-trigger,
  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    transition: none;
  }
  .lightbox-trigger:hover {
    transform: none;
  }
}
.is-lightbox-open {
  overflow: hidden;
}

.event-article__hero {
  padding: 40px 16px 32px;
  background-color: #faf8f5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .event-article__hero {
    padding: 56px 16px 48px;
  }
}

.event-article__hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.event-article__hero-date {
  display: inline-block;
  background-color: #b74233;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 24px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .event-article__hero-date {
    font-size: 22px;
    padding: 14px 32px;
    margin-bottom: 28px;
  }
}

.event-article__hero-title {
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .event-article__hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.event-article__hero-catch {
  font-size: 15px;
  font-weight: 600;
  color: #b74233;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .event-article__hero-catch {
    font-size: 18px;
    margin-bottom: 36px;
  }
}

.event-article__hero-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .event-article__hero-lead {
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }
}

.event-article__video {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 16px 0;
}
@media screen and (min-width: 768px) {
  .event-article__video {
    padding: 48px 16px 0;
  }
}

.event-article__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background-color: #222222;
}

.event-article__video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.event-article__media {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 16px 0;
}
@media screen and (min-width: 768px) {
  .event-article__media {
    padding: 48px 16px 0;
  }
}

.event-article__media-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.event-article__media-caption {
  margin-top: 12px;
  font-size: 13px;
  color: #555555;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .event-article__media-caption {
    margin-top: 16px;
    font-size: 14px;
  }
}

.event-article__section {
  padding: 40px 16px;
}
@media screen and (min-width: 768px) {
  .event-article__section {
    padding: 56px 16px;
  }
}

.event-article__section--bg {
  background-color: #faf8f5;
}

.event-article__section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.event-article__section-title {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #b74233;
}
@media screen and (min-width: 768px) {
  .event-article__section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.event-article__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .event-article__table {
    font-size: 15px;
  }
}

.event-article__table th,
.event-article__table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
}

.event-article__table th {
  font-weight: 600;
  color: #b74233;
  width: 100px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .event-article__table th {
    width: 140px;
    padding: 16px;
  }
}

.event-article__table td {
  color: #222222;
}
@media screen and (min-width: 768px) {
  .event-article__table td {
    padding: 16px;
  }
}

.event-article__table tr:last-child th,
.event-article__table tr:last-child td {
  border-bottom: none;
}

.event-article__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .event-article__list {
    font-size: 15px;
  }
}

.event-article__list-item {
  position: relative;
  padding: 8px 0 8px 20px;
}

.event-article__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b74233;
  font-weight: 700;
}

.event-article__list-note {
  margin-top: 16px;
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .event-article__list-note {
    font-size: 14px;
  }
}

.event-article__notes-block {
  margin-bottom: 32px;
}

.event-article__notes-block:last-child {
  margin-bottom: 0;
}

.event-article__notes-heading {
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  padding-left: 12px;
  border-left: 4px solid #b74233;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .event-article__notes-heading {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.event-article__notes-text {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .event-article__notes-text {
    font-size: 15px;
  }
}

.event-article__cta {
  background-color: #faf8f5;
  padding: 40px 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .event-article__cta {
    padding: 56px 16px;
  }
}

.event-article__cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.event-article__cta-deadline {
  font-size: 15px;
  font-weight: 600;
  color: #b74233;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .event-article__cta-deadline {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.event-article__cta-button {
  display: inline-block;
  background-color: #b74233;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  min-width: 280px;
}

.event-article__cta-button:hover {
  background-color: rgb(151.0923076923, 54.4923076923, 42.1076923077);
}

@media screen and (min-width: 768px) {
  .event-article__cta-button {
    font-size: 20px;
    padding: 24px 64px;
    min-width: 320px;
  }
}
.event-article__cta-button-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 6px;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .event-article__cta-button-sub {
    font-size: 13px;
    margin-top: 8px;
  }
}

.event-article__cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .event-article__cta-note {
    font-size: 14px;
    margin-top: 20px;
  }
}

.event-article__contact {
  padding: 40px 16px;
}
@media screen and (min-width: 768px) {
  .event-article__contact {
    padding: 56px 16px;
  }
}

.event-article__contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.event-article__contact-title {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .event-article__contact-title {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

.event-article__contact-box {
  background-color: #faf8f5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px 24px;
}
@media screen and (min-width: 768px) {
  .event-article__contact-box {
    padding: 28px 32px;
  }
}

.event-article__contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .event-article__contact-row {
    font-size: 15px;
    padding: 8px 0;
  }
}

.event-article__contact-label {
  font-weight: 600;
  color: #b74233;
  min-width: 60px;
}

.event-article__contact-value {
  color: #222222;
}

.event-article__body {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .event-article__body {
    font-size: 15px;
  }
}

.event-article__body h2,
.event-article__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #b74233;
}
@media screen and (min-width: 768px) {
  .event-article__body h2,
  .event-article__body h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.event-article__body h2:not(:first-child),
.event-article__body h3:not(:first-child) {
  margin-top: 48px;
}

.event-article__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-article__body li {
  position: relative;
  padding: 8px 0 8px 20px;
}

.event-article__body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b74233;
  font-weight: 700;
}

.event-article__body p {
  margin: 12px 0;
}

.event-article__body strong {
  font-weight: 700;
}

.event-article__body a {
  color: #b74233;
  text-decoration: underline;
}

.event-article__cta-button--disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.page-main {
  background: #fff;
}

.privacy {
  padding: 60px 0 80px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding: 80px 0 100px;
  }
}

.privacy__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .privacy__inner {
    padding: 0 40px;
  }
}

.privacy__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .privacy__content {
    margin-top: 48px;
  }
}

.privacy__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .privacy__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.privacy__lead {
  font-size: 16px;
  line-height: 2;
  color: #222222;
  padding: 24px;
  background: #faf8f5;
  border-radius: 8px;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .privacy__lead {
    font-size: 17px;
    line-height: 2.1;
    padding: 32px 40px;
    margin-bottom: 48px;
  }
}

.privacy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: privacy-counter;
}

.privacy__item {
  background: #fff;
  padding: 28px 24px;
  margin-bottom: 24px;
  border: 2px solid rgba(16, 37, 68, 0.1);
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.privacy__item:last-child {
  margin-bottom: 0;
}
.privacy__item:hover {
  border-color: rgba(16, 37, 68, 0.2);
}
@media screen and (min-width: 768px) {
  .privacy__item {
    padding: 36px 40px;
    margin-bottom: 28px;
    border-radius: 10px;
  }
}

.privacy__subheading {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 2px solid #102544;
}
@media screen and (min-width: 768px) {
  .privacy__subheading {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
}

.privacy__text {
  font-size: 15px;
  line-height: 2;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .privacy__text {
    font-size: 16px;
    line-height: 2.1;
  }
}

@media screen and (max-width: 767px) {
  .privacy__lead {
    font-size: 15px;
    line-height: 1.9;
    padding: 20px;
  }
  .privacy__item {
    padding: 24px 20px;
  }
  .privacy__subheading {
    font-size: 17px;
  }
  .privacy__text {
    font-size: 14px;
    line-height: 1.9;
  }
}
@media print {
  .privacy {
    background: #fff;
  }
  .privacy__note {
    border-left-color: #999;
  }
  .privacy__lead {
    background: #f5f5f5;
  }
  .privacy__item {
    border: 1px solid #333;
    page-break-inside: avoid;
    margin-bottom: 20px;
  }
  .privacy__subheading {
    border-bottom-color: #333;
  }
}
.privacy__item:focus-within {
  outline: 2px solid #102544;
  outline-offset: 2px;
}

.contact {
  padding: 80px 0;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 120px 0;
  }
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 0 40px;
  }
}

.contact__heading {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .contact__heading {
    margin-bottom: 64px;
  }
}

.contact__title {
  font-size: 28px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 24px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
}

.contact__lead {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact__lead {
    font-size: 16px;
    line-height: 1.9;
  }
}

.contact__note {
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
  padding: 16px;
  background: #fff;
  border-left: 3px solid #b74233;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .contact__note {
    font-size: 14px;
    padding: 20px;
  }
}

.contact-form {
  background: #fff;
  padding: 32px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: 48px 56px;
    border-radius: 16px;
  }
}

.contact-form__block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
.contact-form__block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__block {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}

.contact-form__block--confirm {
  background: rgba(16, 37, 68, 0.03);
  padding: 24px;
  border-radius: 8px;
  border-bottom: none;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .contact-form__block--confirm {
    padding: 32px;
    margin-bottom: 40px;
  }
}

.contact-form__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact-form__label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.contact-form__required {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #b74233;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .contact-form__required {
    font-size: 12px;
    padding: 4px 10px;
  }
}

.contact-form__sub-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .contact-form__sub-label {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.contact-form__help {
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .contact-form__help {
    font-size: 14px;
  }
}

.contact-form__radios {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .contact-form__radios {
    gap: 14px;
  }
}

.contact-form__radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222222;
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid rgba(16, 37, 68, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #fff;
}
.contact-form__radio:hover {
  background: rgba(16, 37, 68, 0.02);
  border-color: rgba(16, 37, 68, 0.2);
}
@media screen and (min-width: 768px) {
  .contact-form__radio {
    font-size: 16px;
    padding: 14px 18px;
  }
}

.contact-form__radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

.contact-form__radio::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #102544;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form__radio:has(input[type=radio]:checked) {
  background: rgba(16, 37, 68, 0.1);
  border-color: #102544;
  font-weight: 600;
}

.contact-form__radio:has(input[type=radio]:checked)::before {
  opacity: 1;
  transform: scale(1);
}

.contact-form__radio:has(input[type=radio]:focus-visible) {
  outline: 2px solid #102544;
  outline-offset: 2px;
}

.contact-form__textarea {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #222222;
  border: 2px solid rgba(16, 37, 68, 0.15);
  border-radius: 6px;
  resize: vertical;
  transition: border-color 0.3s ease;
  font-family: inherit;
  background: #fff;
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 3px rgba(16, 37, 68, 0.1);
}
.contact-form__textarea::-moz-placeholder {
  color: #555555;
}
.contact-form__textarea::placeholder {
  color: #555555;
}
@media screen and (min-width: 768px) {
  .contact-form__textarea {
    padding: 18px;
    font-size: 16px;
  }
}

.contact-form__field {
  margin-bottom: 24px;
}
.contact-form__field:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__field {
    margin-bottom: 28px;
  }
}

.contact-form__field--checkbox {
  margin-bottom: 0;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact-form__row {
    flex-direction: row;
    gap: 32px;
  }
}
.contact-form__row .contact-form__field {
  flex: 1;
  margin-bottom: 0;
}

.contact-form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #222222;
  border: 2px solid rgba(16, 37, 68, 0.15);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23102544' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.contact-form__select:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 3px rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .contact-form__select {
    padding: 14px 18px;
    font-size: 16px;
  }
}

.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #222222;
  border: 2px solid rgba(16, 37, 68, 0.15);
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.contact-form__input:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 3px rgba(16, 37, 68, 0.1);
}
.contact-form__input::-moz-placeholder {
  color: #555555;
}
.contact-form__input::placeholder {
  color: #555555;
}
@media screen and (min-width: 768px) {
  .contact-form__input {
    padding: 14px 18px;
    font-size: 16px;
  }
}

.contact-form__input--mt {
  margin-top: 12px;
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #222222;
  cursor: pointer;
  line-height: 1.7;
}
.contact-form__checkbox a {
  color: #102544;
  text-decoration: underline;
}
.contact-form__checkbox a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .contact-form__checkbox {
    font-size: 15px;
  }
}

.contact-form__checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #c0c0c0;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}

.contact-form__checkbox input[type=checkbox]:hover {
  border-color: #102544;
}

.contact-form__checkbox input[type=checkbox]:checked {
  background-color: #102544;
  border-color: #102544;
}

.contact-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form__checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid #102544;
  outline-offset: 2px;
}

.contact-form__actions {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact-form__actions {
    margin-top: 48px;
  }
}
.contact-form__actions .button {
  min-width: 280px;
  padding: 18px 40px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .contact-form__actions .button {
    min-width: 320px;
    padding: 20px 48px;
    font-size: 17px;
  }
}

.contact__tel {
  margin-top: 32px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .contact__tel {
    margin-top: 40px;
    padding: 32px;
  }
}

.contact__tel-text {
  font-size: 14px;
  line-height: 1.8;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .contact__tel-text {
    font-size: 15px;
  }
}

.contact__success {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .contact__success {
    padding: 120px 40px;
  }
}

.contact__success-icon {
  font-size: 80px;
  color: #b74233;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .contact__success-icon {
    font-size: 100px;
    margin-bottom: 40px;
  }
}

.contact__success-title {
  font-size: 24px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact__success-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.contact__success-text {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .contact__success-text {
    font-size: 16px;
    margin-bottom: 48px;
  }
}

.contact-form__input.is-error,
.contact-form__select.is-error,
.contact-form__textarea.is-error {
  border-color: #b74233;
}

.contact-form__error-message {
  display: block;
  font-size: 13px;
  color: #b74233;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .contact-form__error-message {
    font-size: 14px;
  }
}

.contact {
  position: relative;
  background: #faf8f5;
  padding: 56px 0 64px;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0ddd7, transparent);
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 80px 0 96px;
  }
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 0 24px;
  }
}

.contact__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__grid {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.contact__block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .contact__block {
    padding: 0 40px;
  }
}

.contact__divider {
  width: 80px;
  height: 1px;
  background: #e0ddd7;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .contact__divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    background: #e0ddd7;
  }
}

.contact__block-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 178px;
  margin: 0 auto 12px;
}
@media screen and (min-width: 768px) {
  .contact__block-head {
    flex-direction: column;
    justify-content: center;
    width: auto;
    gap: 0;
    margin-bottom: 0;
  }
}

.contact__block-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #102544;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact__block-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.contact__block-title {
  font-size: 17px;
  font-weight: 700;
  color: #102544;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact__block-title {
    margin-bottom: 12px;
  }
}

.contact__block-text {
  font-size: 13px;
  line-height: 1.8;
  color: #6b6b6b;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact__block-text {
    font-size: 14px;
  }
}

.contact__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #b74233;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__button i {
  font-size: 11px;
  transition: transform 0.3s;
}
.contact__button:hover {
  background: rgb(151.0923076923, 54.4923076923, 42.1076923077);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(183, 66, 51, 0.25);
}
.contact__button:hover i {
  transform: translateX(3px);
}

.contact__sns-links {
  display: flex;
  gap: 12px;
}

.contact__sns-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #e0ddd7;
  border-radius: 100px;
  text-decoration: none;
  color: #102544;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__sns-link i {
  font-size: 16px;
}
.contact__sns-link:hover {
  border-color: #102544;
  background: #102544;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wpcf7-form-control-wrap {
  display: block;
}

.contact-form__radios .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .contact-form__radios .wpcf7-radio {
    gap: 14px;
  }
}

.contact-form__radios .wpcf7-list-item {
  margin: 0;
}

.contact-form__radios .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222222;
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid rgba(16, 37, 68, 0.1);
  border-radius: 6px;
  background: #fff;
  transition: all 0.3s ease;
}
.contact-form__radios .wpcf7-list-item label:hover {
  background: rgba(16, 37, 68, 0.02);
  border-color: rgba(16, 37, 68, 0.2);
}
@media screen and (min-width: 768px) {
  .contact-form__radios .wpcf7-list-item label {
    font-size: 16px;
    padding: 14px 18px;
  }
}

.contact-form__radios .wpcf7-list-item label input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

.contact-form__radios .wpcf7-list-item label::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #102544;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form__radios .wpcf7-list-item label:has(input[type=radio]:checked) {
  background: rgba(16, 37, 68, 0.1);
  border-color: #102544;
  font-weight: 600;
}

.contact-form__radios .wpcf7-list-item label:has(input[type=radio]:checked)::before {
  opacity: 1;
  transform: scale(1);
}

.contact-form__radios .wpcf7-list-item label:has(input[type=radio]:focus-visible) {
  outline: 2px solid #102544;
  outline-offset: 2px;
}

.contact-form__field--checkbox .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.contact-form__field--checkbox .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #222222;
  cursor: pointer;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .contact-form__field--checkbox .wpcf7-list-item label {
    font-size: 15px;
  }
}

.contact-form__field--checkbox .wpcf7-list-item-label a {
  color: #102544;
  text-decoration: underline;
}
.contact-form__field--checkbox .wpcf7-list-item-label a:hover {
  text-decoration: none;
}

.contact-form__field--checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #c0c0c0;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}
.contact-form__field--checkbox input[type=checkbox]:hover {
  border-color: #102544;
}
.contact-form__field--checkbox input[type=checkbox]:checked {
  background-color: #102544;
  border-color: #102544;
}
.contact-form__field--checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-form__field--checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid #102544;
  outline-offset: 2px;
}

.contact-form .wpcf7-not-valid {
  border-color: #b74233;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #b74233;
}
@media screen and (min-width: 768px) {
  .contact-form .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}

.contact-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.7;
}

.page-main {
  background: #fff;
}

.federation-intro {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .federation-intro {
    padding: 80px 0;
  }
}

.federation-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-intro__inner {
    padding: 0 40px;
  }
}

.federation-intro__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-intro__content {
    margin-top: 48px;
  }
}

.federation-intro__lead {
  font-size: 16px;
  line-height: 2;
  color: #222222;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-intro__lead {
    font-size: 17px;
    line-height: 2.1;
    margin-bottom: 40px;
  }
}

.federation-intro__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-intro__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-intro__note--demo {
  border-left-color: #b74233;
}

.federation-intro__list {
  border-top: 2px solid #102544;
}

.federation-intro__item {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-intro__item {
    flex-direction: row;
    padding: 28px 0;
  }
}

.federation-intro__term {
  font-size: 15px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 12px;
  min-width: 140px;
}
@media screen and (min-width: 768px) {
  .federation-intro__term {
    font-size: 16px;
    margin-bottom: 0;
    min-width: 160px;
  }
}

.federation-intro__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .federation-intro__desc {
    font-size: 16px;
    line-height: 2;
    flex: 1;
  }
}

.federation-outline {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .federation-outline {
    padding: 80px 0;
  }
}

.federation-outline__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-outline__inner {
    padding: 0 40px;
  }
}

.federation-outline__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-outline__content {
    margin-top: 48px;
  }
}

.federation-outline__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-outline__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-outline__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.federation-outline__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 2px solid #102544;
}
.federation-outline__table th,
.federation-outline__table td {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-outline__table th,
  .federation-outline__table td {
    padding: 20px 24px;
    font-size: 16px;
    line-height: 1.9;
  }
}
.federation-outline__table th {
  font-weight: 700;
  color: #fff;
  background: #102544;
  width: 140px;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .federation-outline__table th {
    width: 180px;
  }
}
.federation-outline__table td {
  color: #222222;
  background: #fff;
}
.federation-outline__table tr:last-child th,
.federation-outline__table tr:last-child td {
  border-bottom: none;
}

.federation-outline__activities {
  list-style-position: inside;
  padding-left: 0;
}
.federation-outline__activities li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.federation-outline__activities li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .federation-outline__activities li {
    line-height: 1.9;
  }
}

.federation-officers {
  padding: 60px 0;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .federation-officers {
    padding: 80px 0;
  }
}

.federation-officers__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-officers__inner {
    padding: 0 40px;
  }
}

.federation-officers__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-officers__content {
    margin-top: 48px;
  }
}

.federation-officers__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-officers__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-officers__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.federation-officers__scroll-hint {
  display: none;
}
@media screen and (max-width: 767px) {
  .federation-officers__scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
    color: #555555;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .federation-officers__scroll-hint-icon {
    display: inline-block;
    animation: scrollHintSwipe 2.5s ease-in-out infinite;
  }
}

.federation-officers__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
}
.federation-officers__table thead {
  background: #102544;
  color: #fff;
}
.federation-officers__table thead th {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid rgb(11.1428571429, 25.7678571429, 47.3571428571);
}
@media screen and (min-width: 768px) {
  .federation-officers__table thead th {
    padding: 18px 24px;
    font-size: 16px;
  }
}
.federation-officers__table tbody tr {
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
.federation-officers__table tbody tr:last-child {
  border-bottom: none;
}
.federation-officers__table tbody tr:nth-child(even) {
  background: rgba(16, 37, 68, 0.02);
}
.federation-officers__table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .federation-officers__table tbody td {
    padding: 18px 24px;
    font-size: 16px;
  }
}
.federation-officers__table tbody td:first-child {
  font-weight: 600;
  color: #102544;
}

.federation-officers__hint {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  margin-top: 24px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .federation-officers__hint {
    font-size: 15px;
    margin-top: 28px;
    padding: 20px 24px;
  }
}

.federation-office {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .federation-office {
    padding: 80px 0;
  }
}

.federation-office__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-office__inner {
    padding: 0 40px;
  }
}

.federation-office__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-office__content {
    margin-top: 48px;
  }
}

.federation-office__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-office__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-office__list {
  border-top: 2px solid #102544;
}

.federation-office__item {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-office__item {
    flex-direction: row;
    padding: 28px 0;
  }
}

.federation-office__term {
  font-size: 15px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 12px;
  min-width: 140px;
}
@media screen and (min-width: 768px) {
  .federation-office__term {
    font-size: 16px;
    margin-bottom: 0;
    min-width: 160px;
  }
}

.federation-office__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .federation-office__desc {
    font-size: 16px;
    line-height: 2;
    flex: 1;
  }
}

.section__head {
  font-size: 24px;
  font-weight: 700;
  color: #102544;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .section__head {
    font-size: 28px;
    padding-bottom: 20px;
  }
}

@media print {
  .header,
  .drawer,
  .mask,
  .breadcrumb,
  .footer {
    display: none;
  }
  .federation-intro__note--demo,
  .federation-greeting__note,
  .federation-outline__note,
  .federation-officers__note,
  .federation-office__note {
    border-left-color: #999;
  }
  .federation-outline__table,
  .federation-officers__table {
    border: 1px solid #333;
  }
  .page-main {
    background: #fff;
  }
}
.federation-greeting {
  padding: 60px 0;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .federation-greeting {
    padding: 80px 0;
  }
}

.federation-greeting__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__inner {
    padding: 0 40px;
  }
}

.federation-greeting__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__content {
    margin-top: 48px;
  }
}

.federation-greeting__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-greeting__body {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .federation-greeting__body {
    display: flex;
    gap: 40px;
    padding: 48px 56px;
    border-radius: 12px;
  }
}
@media screen and (min-width: 768px) {
  .federation-greeting__body {
    gap: 48px;
  }
}

.federation-greeting__photo {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__photo {
    flex-shrink: 0;
    width: 200px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .federation-greeting__photo {
    width: 240px;
  }
}

.federation-greeting__figure {
  margin: 0;
}

.federation-greeting__image {
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .federation-greeting__image {
    max-width: 100%;
  }
}

.federation-greeting__caption {
  font-size: 12px;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__caption {
    font-size: 13px;
    margin-top: 14px;
  }
}

.federation-greeting__text-area {
  flex: 1;
}

.federation-greeting__text {
  font-size: 15px;
  line-height: 2;
  color: #222222;
  margin-bottom: 24px;
  text-indent: 1em;
}
.federation-greeting__text:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .federation-greeting__text {
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 28px;
  }
}

.federation-greeting__signature {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
  text-align: right;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-greeting__signature {
    font-size: 16px;
    margin-top: 48px;
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .federation-greeting__photo {
    width: 180px;
    margin: 0 auto 32px;
  }
  .federation-greeting__image {
    max-width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .federation-greeting__body {
    padding: 24px 20px;
  }
  .federation-greeting__photo {
    margin-bottom: 24px;
  }
  .federation-greeting__image {
    max-width: 200px;
  }
  .federation-greeting__text {
    font-size: 14px;
    line-height: 1.9;
  }
}
@media print {
  .federation-greeting__image {
    border-color: #333;
    max-width: 180px;
  }
  .federation-greeting__caption {
    display: none;
  }
  .federation-greeting__body {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
.federation-outline__lead {
  font-size: 16px;
  line-height: 2;
  color: #222222;
  margin-bottom: 32px;
  padding: 24px;
  background: #faf8f5;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .federation-outline__lead {
    font-size: 17px;
    line-height: 2.1;
    margin-bottom: 40px;
    padding: 32px 40px;
  }
}

.archive-page {
  background: #fff;
}

.archive-page__hero {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .archive-page__hero {
    margin-bottom: 50px;
  }
}

.archive-page__lead {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .archive-page__lead {
    margin-top: 24px;
    font-size: 15px;
  }
}

.archive-page__local-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .archive-page__local-nav {
    margin-bottom: 44px;
  }
}

@media screen and (min-width: 768px) {
  .archive-page__local-nav--events {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media screen and (min-width: 768px) {
  .archive-page__local-nav--district {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.archive-page__nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  background: #fff;
  border: 2px solid #102544;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .archive-page__nav-button {
    padding: 18px 12px;
  }
}
.archive-page__nav-button:hover {
  background: #102544;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(16, 37, 68, 0.2);
}

.archive-page__nav-button--active {
  background: #102544;
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 37, 68, 0.25);
}

.archive-page__nav-label {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .archive-page__nav-label {
    font-size: 15px;
  }
}

.archive-page__nav-sub {
  font-size: 11px;
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
  .archive-page__nav-sub {
    font-size: 12px;
  }
}

.archive-page__filter {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #faf8f5;
  border-radius: 6px;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .archive-page__filter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    margin-bottom: 44px;
  }
}

.archive-page__filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.archive-page__filter-label {
  font-size: 13px;
  font-weight: 600;
  color: #102544;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-label {
    font-size: 14px;
  }
}

.archive-page__filter-tabs {
  display: none;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-tabs {
    display: flex;
    gap: 6px;
  }
}

.archive-page__filter-tab {
  padding: 6px 12px;
  font-size: 13px;
  background: #fff;
  border: 1px solid #102544;
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}
.archive-page__filter-tab:hover {
  background: rgb(116.5714285714, 159.3214285714, 222.4285714286);
}

.archive-page__filter-tab--active {
  background: #102544;
  color: #fff;
}

.archive-page__filter-select {
  display: block;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #102544;
  border-radius: 4px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-select {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .archive-page__filter-select--always {
    display: block;
    min-width: 140px;
  }
}

.archive-page__filter-count {
  font-size: 13px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-count {
    font-size: 14px;
  }
}
.archive-page__filter-count strong {
  color: #102544;
  font-weight: 600;
}

.archive-page__table {
  display: none;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .archive-page__table {
    display: table;
  }
}

.archive-page__table-head {
  background: #102544;
  color: #fff;
}

.archive-page__table-th {
  padding: 11px 9px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.archive-page__table-th--date {
  width: 75px;
}

.archive-page__table-th--type {
  width: 75px;
}

.archive-page__table-th--venue {
  width: 130px;
}

.archive-page__table-th--target {
  width: 85px;
}

.archive-page__table-th--detail {
  width: 75px;
  text-align: center;
}

.archive-page__table-row {
  border-bottom: 1px solid #e5e5e5;
}
.archive-page__table-row:hover {
  background: #fafafa;
}

.archive-page__table-td {
  padding: 13px 9px;
  font-size: 14px;
  vertical-align: middle;
}

.archive-page__day {
  font-size: 11px;
  color: #555555;
}

.archive-page__badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
}

.archive-page__badge--taikai {
  background: #e3f2fd;
  color: #1976d2;
}

.archive-page__badge--shinsa {
  background: #fff3e0;
  color: #f57c00;
}

.archive-page__badge--koshukai {
  background: #e8f5e9;
  color: #388e3c;
}

.archive-page__badge--taikai-result {
  background: #e3f2fd;
  color: #1976d2;
}

.archive-page__badge--shinsa-result {
  background: #fff3e0;
  color: #f57c00;
}

.archive-page__badge--notice {
  background: #f3e5f5;
  color: #7b1fa2;
}

.archive-page__badge--important {
  background: #ffebee;
  color: #c62828;
}

.archive-page__badge--district {
  background-color: #102544;
  color: #fff;
}

.archive-page__badge--matsue,
.archive-page__badge--izumo,
.archive-page__badge--hamada,
.archive-page__badge--masuda,
.archive-page__badge--oda,
.archive-page__badge--oki {
  background: rgb(116.5714285714, 159.3214285714, 222.4285714286);
  color: #102544;
}

.archive-page__link {
  color: #222222;
  font-weight: 500;
  transition: color 0.3s;
}
.archive-page__link:hover {
  color: #102544;
}

.archive-page__cards--events {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .archive-page__cards--events {
    display: none;
  }
}

.archive-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .archive-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.archive-page__card {
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.archive-page__card:hover {
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
@media screen and (min-width: 768px) {
  .archive-page__card {
    padding: 20px;
  }
}

.archive-page__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
}

.archive-page__card-date {
  font-size: 14px;
  font-weight: 600;
  color: #102544;
}

.archive-page__card-day {
  font-size: 12px;
  font-weight: 400;
  margin-left: 3px;
}

.archive-page__card-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}

.archive-page__card--news .archive-page__card-date,
.archive-page__card--district .archive-page__card-date {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}

.archive-page__card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 11px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .archive-page__card-title {
    font-size: 16px;
  }
}

.archive-page__card-link {
  color: #222222;
  transition: color 0.3s;
}
.archive-page__card-link:hover {
  color: #102544;
}

.archive-page__card-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
  font-size: 13px;
  color: #555555;
}

.archive-page__card-item {
  display: flex;
  align-items: center;
}
.archive-page__card-item i {
  color: #102544;
  margin-right: 5px;
  width: 14px;
}

.archive-page__card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #222222;
  margin-bottom: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .archive-page__card-excerpt {
    font-size: 14px;
  }
}

.archive-page__card-button {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive-page__card-button {
    width: auto;
    min-width: 130px;
  }
}

.archive-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .archive-page__pagination {
    gap: 10px;
    margin-top: 54px;
  }
}

.archive-page__pagination-prev,
.archive-page__pagination-next {
  padding: 7px 14px;
  font-size: 13px;
  color: #102544;
  border: 1px solid #102544;
  border-radius: 4px;
  transition: all 0.3s;
}
.archive-page__pagination-prev:hover,
.archive-page__pagination-next:hover {
  background: #102544;
  color: #fff;
}

.archive-page__pagination-numbers {
  display: flex;
  gap: 5px;
}

.archive-page__pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 13px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  transition: all 0.3s;
}
.archive-page__pagination-number:hover {
  background: rgb(116.5714285714, 159.3214285714, 222.4285714286);
  border-color: #102544;
}

.archive-page__pagination-number--active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}

.archive-page__pagination-ellipsis {
  display: flex;
  align-items: center;
  padding: 0 3px;
  color: #555555;
}

.archive-page__fallback {
  padding: 44px 18px;
  text-align: center;
  background: #faf8f5;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .archive-page__fallback {
    padding: 54px 18px;
  }
}

.archive-page__fallback-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .archive-page__fallback-text {
    font-size: 15px;
  }
}

.archive-page__fallback-buttons {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .archive-page__fallback-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }
}

.archive-page__year-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.archive-page__year-label {
  font-size: 14px;
  font-weight: 600;
  color: #102544;
}

.archive-page__year-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s;
}
.archive-page__year-btn:hover {
  border-color: #102544;
  color: #102544;
}
.archive-page__year-btn.is-active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}

.archive-page__month-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.archive-page__month-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s;
}
.archive-page__month-btn:hover {
  border-color: #102544;
  color: #102544;
}
.archive-page__month-btn.is-active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}

.archive-page__legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: #faf8f5;
  border-radius: 8px;
  font-size: 12px;
  color: #555555;
}

.archive-page__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.archive-page__year-content[hidden] {
  display: none !important;
}

.archive-page__month-block {
  margin-bottom: 40px;
}
.archive-page__month-block:last-child {
  margin-bottom: 0;
}

.archive-page__month-title {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #102544;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .archive-page__month-title {
    font-size: 20px;
  }
}

.archive-page__month-num {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .archive-page__month-num {
    font-size: 32px;
  }
}

.archive-page__empty {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: #555555;
  background: #faf8f5;
  border-radius: 10px;
}

.archive-page__table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 767px) {
  .archive-page__table-wrap {
    display: none;
  }
}

.archive-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
@media screen and (max-width: 767px) {
  .archive-page__table {
    font-size: 13px;
  }
}

.archive-page__table thead {
  background: #faf8f5;
}

.archive-page__table th {
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #555555;
  text-align: left;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e5e5e5;
}

.archive-page__table td {
  padding: 14px;
  color: #222222;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  vertical-align: middle;
  line-height: 1.6;
}

.archive-page__table tbody tr {
  cursor: pointer;
  transition: background 0.15s;
}
.archive-page__table tbody tr:hover {
  background: #faf8f5;
}
.archive-page__table tbody tr:last-child td {
  border-bottom: none;
}

.archive-page__table-link {
  color: #222222;
  text-decoration: none;
}
.archive-page__table-link:hover {
  color: #b74233;
  text-decoration: underline;
}

.archive-page__table-arrow-col {
  width: 60px;
  text-align: center;
}

.archive-page__table-arrow {
  display: inline-block;
  color: #555555;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.2s, color 0.2s;
}
.archive-page__table-arrow:hover {
  color: #b74233;
  transform: translateX(4px);
}

.single-news {
  padding-block: 40px 72px;
}
@media screen and (min-width: 768px) {
  .single-news {
    padding-block: 56px 96px;
  }
}

.single-news__inner {
  max-width: 760px;
}

.single-news__head {
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .single-news__head {
    padding-bottom: 28px;
    margin-bottom: 40px;
  }
}

.single-news__title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #222222;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .single-news__title {
    font-size: 30px;
    line-height: 1.55;
    margin-top: 16px;
  }
}

.single-news__date {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #9a958d;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .single-news__date {
    font-size: 14px;
  }
}

.single-news__thumb {
  margin-bottom: 32px;
}
.single-news__thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.single-news__content {
  font-size: 16px;
  line-height: 1.95;
  color: #222222;
}
.single-news__content > * + * {
  margin-top: 1.4em;
}
.single-news__content h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2em;
  padding-left: 12px;
  border-left: 4px solid #102544;
}
@media screen and (min-width: 768px) {
  .single-news__content h2 {
    font-size: 22px;
  }
}
.single-news__content h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.8em;
}
@media screen and (min-width: 768px) {
  .single-news__content h3 {
    font-size: 19px;
  }
}
.single-news__content a {
  color: #b74233;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single-news__content a:hover {
  opacity: 0.8;
}
.single-news__content ul,
.single-news__content ol {
  padding-left: 1.4em;
}
.single-news__content ul {
  list-style: disc;
}
.single-news__content ol {
  list-style: decimal;
}
.single-news__content li + li {
  margin-top: 0.4em;
}
.single-news__content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.single-news__content blockquote {
  padding: 12px 18px;
  border-left: 4px solid #e5e5e5;
  color: #555555;
  background: #faf8f5;
}
.single-news__content strong {
  font-weight: 700;
}

.single-news__back {
  margin-top: 48px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .single-news__back {
    margin-top: 64px;
  }
}

.single-news__content .news-result {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.7;
}

.single-news__content .news-result th[colspan] {
  padding: 11px 16px;
  background: #102544;
  color: #fff;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.04em;
}

.single-news__content .news-result th:not([colspan]) {
  width: 96px;
  padding: 12px;
  background: #faf8f5;
  color: #102544;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .single-news__content .news-result th:not([colspan]) {
    width: 120px;
    padding: 13px 16px;
  }
}

.single-news__content .news-result td {
  padding: 12px 16px;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .single-news__content .news-result td {
    padding: 13px 18px;
  }
}

.single-news__content .news-result tr:not(:first-child) th,
.single-news__content .news-result tr:not(:first-child) td {
  border-top: 1px solid #e5e5e5;
}

.single-news__content .news-photos {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .single-news__content .news-photos {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

.single-news__content .news-photos__item {
  margin: 0;
}

.single-news__content .news-photos__caption {
  margin-bottom: 10px;
  font-weight: 700;
  color: #222222;
}

.single-news__content .news-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  border-radius: 6px;
  display: block;
}

@media screen and (min-width: 768px) {
  .single-news__content .news-photos__item:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc(50% - 12px);
  }
}

.single-news__content .news-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.single-news__content .news-matrix {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .single-news__content .news-matrix {
    font-size: 15px;
  }
}

.single-news__content .news-matrix th,
.single-news__content .news-matrix td {
  padding: 9px 12px;
  border: 1px solid #e5e5e5;
  text-align: center;
  vertical-align: middle;
}

.single-news__content .news-matrix thead th {
  background: #102544;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.single-news__content .news-matrix tbody th {
  background: #faf8f5;
  color: #102544;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes expFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-18px);
    opacity: 1;
  }
}
@keyframes expSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.exp-events {
  background-color: #fff;
}

.exp-events__inner {
  padding-block: 60px 0;
}
@media screen and (min-width: 768px) {
  .exp-events__inner {
    padding-block: 80px 0;
  }
}

.exp-events__archive {
  padding-block: 56px 64px;
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .exp-events__archive {
    padding-block: 72px 80px;
    margin-top: 72px;
  }
}

.exp-events__agenda {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.exp-events__agenda-header {
  display: grid;
  grid-template-columns: 88px 1fr 120px 40px;
  padding: 10px 24px;
  background: #faf8f5;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #555555;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .exp-events__agenda-header {
    grid-template-columns: 72px 1fr 40px;
  }
  .exp-events__agenda-header span:nth-child(3) {
    display: none;
  }
}

.exp-events__agenda-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.exp-events__agenda-summary {
  display: grid;
  grid-template-columns: 88px 1fr 120px 40px;
  align-items: center;
  padding: 15px 24px;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .exp-events__agenda-summary {
    grid-template-columns: 72px 1fr 40px;
    padding: 12px 16px;
  }
}
.exp-events__agenda-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #b74233;
  border-radius: 2px 0 0 2px;
  transition: width 0.3s;
}
.exp-events__agenda-summary:hover {
  background: rgba(16, 37, 68, 0.02);
  transform: translateX(4px);
}
.exp-events__agenda-summary:hover::before {
  width: 3px;
}
.exp-events__agenda-summary[aria-expanded=true] {
  background: rgba(16, 37, 68, 0.015);
}

.exp-events__agenda-date {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #102544;
}

.exp-events__agenda-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.exp-events__agenda-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(16, 37, 68, 0.04);
  color: #102544;
  font-family: "Outfit", sans-serif;
}

.exp-events__agenda-name {
  font-size: 14px;
  font-weight: 600;
  color: #102544;
}

.exp-events__agenda-place {
  font-size: 12px;
  color: #555555;
}
@media screen and (max-width: 767px) {
  .exp-events__agenda-place {
    display: none;
  }
}

.exp-events__agenda-chevron {
  font-size: 13px;
  color: #555555;
  text-align: center;
  transition: transform 0.3s;
}
[aria-expanded=true] .exp-events__agenda-chevron {
  transform: rotate(180deg);
}

.exp-events__agenda-detail {
  padding: 20px 24px 20px 112px;
  background: #faf8f5;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  animation: expSlideUp 0.3s ease both;
}
@media screen and (max-width: 767px) {
  .exp-events__agenda-detail {
    padding: 16px;
  }
}

.exp-events__agenda-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 16px;
}
.exp-events__agenda-meta div {
  display: flex;
  gap: 4px;
}
.exp-events__agenda-meta dt {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .exp-events__agenda-meta {
    flex-direction: column;
    gap: 6px;
  }
}

.exp-blend {
  height: 120px;
}

.exp-blend--to-dark {
  background: linear-gradient(to bottom, #fff, #0a1a33);
}

.exp-blend--to-light {
  height: 100px;
  background: linear-gradient(to bottom, #102544, #faf8f5);
}

.exp-cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.exp-cta__card {
  text-align: center;
  padding: 52px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #102544 0%, #0a1a33 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 26, 51, 0.3);
}
@media screen and (max-width: 767px) {
  .exp-cta__card {
    padding: 40px 20px;
  }
}

.exp-cta__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.exp-cta__particles::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.5), transparent 50%), radial-gradient(circle at 80% 30%, rgba(201, 169, 110, 0.3), transparent 40%);
}
.exp-cta__particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: expFloat var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.exp-cta__particles span:nth-child(1) {
  left: 15%;
  top: 20%;
  background: rgba(201, 169, 110, 0.15);
  --dur: 3s;
  --delay: 0s;
}
.exp-cta__particles span:nth-child(2) {
  left: 37%;
  top: 45%;
  background: rgba(201, 169, 110, 0.2);
  --dur: 4s;
  --delay: 0.5s;
}
.exp-cta__particles span:nth-child(3) {
  left: 59%;
  top: 70%;
  background: rgba(201, 169, 110, 0.25);
  --dur: 5s;
  --delay: 1s;
}
.exp-cta__particles span:nth-child(4) {
  left: 81%;
  top: 20%;
  background: rgba(201, 169, 110, 0.3);
  --dur: 6s;
  --delay: 1.5s;
}

.exp-cta__content {
  position: relative;
}

.exp-cta__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 10px;
}

.exp-cta__title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 14px;
}

.exp-cta__lead {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 30px;
}

.exp-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.exp-archive__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-archive__card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}
.exp-archive__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.exp-archive__card-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  transition: background 0.2s;
}
.exp-archive__card-summary:hover {
  background: rgba(16, 37, 68, 0.015);
}
.exp-archive__card-summary[aria-expanded=true] {
  background: rgba(16, 37, 68, 0.01);
}
@media screen and (min-width: 768px) {
  .exp-archive__card-summary {
    padding: 14px 24px;
    gap: 20px;
  }
}

.exp-archive__card-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
}
.exp-archive__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .exp-archive__card-thumb {
    width: 96px;
    height: 64px;
  }
}

.exp-archive__card-info {
  flex: 1;
  min-width: 0;
}

.exp-archive__card-date {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #555555;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.exp-archive__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #102544;
  line-height: 1.4;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .exp-archive__card-title {
    font-size: 16px;
    white-space: normal;
  }
}

.exp-archive__card-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.exp-archive__card-tags span {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(16, 37, 68, 0.04);
  color: #102544;
  letter-spacing: 0.3px;
}

.exp-archive__card-chevron {
  flex-shrink: 0;
  font-size: 14px;
  color: #555555;
  transition: transform 0.3s;
}
[aria-expanded=true] .exp-archive__card-chevron {
  transform: rotate(180deg);
}

.exp-archive__card-detail[hidden] {
  display: none !important;
}
.exp-archive__card-detail {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 16px;
  animation: expSlideUp 0.3s ease both;
}
@media screen and (min-width: 768px) {
  .exp-archive__card-detail {
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
}

.exp-archive__card-photos {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.exp-archive__card-photos::-webkit-scrollbar {
  display: none;
}
.exp-archive__card-photos img {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: start;
}
@media screen and (min-width: 768px) {
  .exp-archive__card-photos {
    margin-bottom: 0;
    flex-direction: column;
    width: 260px;
  }
  .exp-archive__card-photos img {
    width: 260px;
    height: 170px;
  }
}

.exp-archive__card-content {
  min-width: 0;
}

.exp-archive__card-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 14px;
}

.exp-archive__card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 16px;
}
.exp-archive__card-meta div {
  display: flex;
  gap: 4px;
}
.exp-archive__card-meta dt {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .exp-archive__card-meta {
    flex-direction: column;
    gap: 4px;
  }
}

.exp-archive__card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #b74233;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(183, 66, 51, 0.05);
  border: 1px solid rgba(183, 66, 51, 0.12);
  transition: all 0.3s;
}
.exp-archive__card-more:hover {
  background: rgba(183, 66, 51, 0.1);
  border-color: rgba(183, 66, 51, 0.25);
  transform: translateX(4px);
}
.exp-archive__card-more i {
  font-size: 12px;
  transition: transform 0.3s;
}
.exp-archive__card-more:hover i {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .exp-cta__particles span {
    animation: none;
  }
}
.exp-events__empty {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: #555555;
  background: #faf8f5;
  border-radius: 10px;
  line-height: 1.9;
}

.exp-events__empty a {
  color: #102544;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.exp-events__empty a:hover {
  opacity: 0.75;
}

@keyframes fes-petal-fall {
  0% {
    transform: translateY(-60px) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(660px) translateX(40px) rotate(360deg);
    opacity: 0;
  }
}
.fes-hero {
  position: relative;
  min-height: 60vh;
  margin-top: 60px;
  overflow: hidden;
  background: #0a1a33;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  .fes-hero {
    min-height: 90vh;
    margin-top: 70px;
  }
}

.fes-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fes-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .fes-hero__bg img {
    -o-object-position: 64% center;
       object-position: 64% center;
  }
}

.fes-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 26, 51, 0.6) 0%, rgba(10, 26, 51, 0.4) 100%);
}
@media screen and (max-width: 767px) {
  .fes-hero__overlay {
    background: linear-gradient(270deg, rgba(10, 26, 51, 0.62) 0%, rgba(10, 26, 51, 0.14) 52%, rgba(10, 26, 51, 0) 74%), linear-gradient(180deg, rgba(10, 26, 51, 0.42) 0%, rgba(10, 26, 51, 0.34) 100%);
  }
}
@media screen and (min-width: 768px) {
  .fes-hero__overlay {
    background: linear-gradient(90deg, rgba(10, 26, 51, 0) 0%, rgba(10, 26, 51, 0.3) 45%, rgba(10, 26, 51, 0.85) 70%, rgba(10, 26, 51, 0.95) 100%);
  }
}

.fes-hero__sakura {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  color: #c9a96e;
}

.fes-hero__petals use {
  transform-box: fill-box;
  transform-origin: center;
  animation: fes-petal-fall linear infinite;
}

.fes-hero__petals use:nth-child(1) {
  animation-duration: 22s;
  animation-delay: -3s;
}

.fes-hero__petals use:nth-child(2) {
  animation-duration: 35s;
  animation-delay: -8s;
}

.fes-hero__petals use:nth-child(3) {
  animation-duration: 28s;
  animation-delay: -15s;
}

.fes-hero__petals use:nth-child(4) {
  animation-duration: 40s;
  animation-delay: -2s;
}

.fes-hero__petals use:nth-child(5) {
  animation-duration: 25s;
  animation-delay: -20s;
}

.fes-hero__petals use:nth-child(6) {
  animation-duration: 32s;
  animation-delay: -10s;
}

.fes-hero__petals use:nth-child(7) {
  animation-duration: 38s;
  animation-delay: -5s;
}

.fes-hero__petals use:nth-child(8) {
  animation-duration: 24s;
  animation-delay: -18s;
}

.fes-hero__petals use:nth-child(9) {
  animation-duration: 30s;
  animation-delay: -12s;
}

.fes-hero__petals use:nth-child(10) {
  animation-duration: 36s;
  animation-delay: -7s;
}

.fes-hero__petals use:nth-child(11) {
  animation-duration: 26s;
  animation-delay: -22s;
}

.fes-hero__petals use:nth-child(12) {
  animation-duration: 33s;
  animation-delay: -4s;
}

.fes-hero__petals use:nth-child(13) {
  animation-duration: 29s;
  animation-delay: -16s;
}

.fes-hero__petals use:nth-child(14) {
  animation-duration: 37s;
  animation-delay: -9s;
}

.fes-hero__petals use:nth-child(15) {
  animation-duration: 23s;
  animation-delay: -14s;
}

.fes-hero__content {
  position: relative;
  z-index: 3;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 100px;
}
@media screen and (max-width: 767px) {
  .fes-hero__content {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .fes-hero__content {
    min-height: 90vh;
    justify-content: flex-end;
    padding: 100px 60px 120px 40px;
  }
}

.fes-hero__inner {
  width: 100%;
  max-width: 520px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fes-hero__inner {
    max-width: 288px;
    margin-left: auto;
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .fes-hero__inner {
    text-align: left;
  }
}

.fes-hero__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #c9a96e;
  margin: 0 0 14px;
}
@media screen and (min-width: 768px) {
  .fes-hero__eyebrow {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

.fes-hero__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fes-hero__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .fes-hero__title {
    font-size: 56px;
    margin-bottom: 14px;
  }
}

.fes-hero__title-year {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  margin-left: 8px;
}

.fes-hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}
@media screen and (min-width: 768px) {
  .fes-hero__subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }
}

.fes-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 169, 110, 0.4);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 767px) {
  .fes-hero__meta {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .fes-hero__meta {
    gap: 20px;
    padding-top: 20px;
  }
}

.fes-hero__meta-date {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}
.fes-hero__meta-date i {
  color: #c9a96e;
  margin-right: 6px;
}

.fes-hero__meta-divider {
  color: rgba(255, 255, 255, 0.3);
}

.article__body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .article__body-inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .article__body-inner {
    padding: 0 60px;
  }
}

.article__section {
  margin-bottom: 48px;
}

.article__section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #102544;
  border-bottom: 3px solid #b74233;
}

.article__section-title i {
  color: #b74233;
}

.article__section-lead {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .article__section-lead {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

.timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #b74233 0%, #102544 100%);
  border-radius: 3px;
}

.fes-timeline {
  margin-top: 8px;
}

.fes-timeline__item {
  position: relative;
  border-left: 2px solid #e0ddd7;
  padding-left: 28px;
  padding-bottom: 4px;
}
.fes-timeline__item:last-child {
  border-left-color: transparent;
}

.fes-timeline__dot {
  position: absolute;
  left: -7px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #b74233;
}

.fes-timeline__item--program .fes-timeline__dot {
  width: 14px;
  height: 14px;
  left: -8px;
  background: #b74233;
}

.fes-timeline__item--highlight .fes-timeline__dot {
  background: #c9a96e;
  border-color: #c9a96e;
}

.fes-timeline__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  width: 100%;
  text-align: left;
}

.fes-timeline__head--toggle {
  padding: 10px 14px;
  margin: 0 -14px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.fes-timeline__head--toggle:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

.fes-timeline__head--toggle[aria-expanded=false] {
  background: #faf8f5;
  border-color: #e0ddd7;
}

.fes-timeline__head--toggle[aria-expanded=false]:hover {
  border-color: #c9a96e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.fes-timeline__head--toggle[aria-expanded=true] {
  background: transparent;
  border-color: transparent;
}

.fes-timeline__time {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #b74233;
  font-size: 14px;
  min-width: 48px;
  flex-shrink: 0;
}

.fes-timeline__title {
  font-weight: 700;
  font-size: 15px;
  color: #102544;
  flex: 1;
}
.fes-timeline__title i {
  color: #c9a96e;
  margin-right: 4px;
}

.fes-timeline__badge {
  display: inline-block;
  background: #102544;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 8px;
  vertical-align: middle;
}

.fes-timeline__duration {
  font-weight: 400;
  font-size: 12px;
  color: #555555;
  margin-left: 6px;
}

.fes-timeline__note {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  margin-top: 2px;
}

.fes-timeline__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 37, 68, 0.06);
  color: #6b6b6b;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}

.fes-timeline__head--toggle:hover .fes-timeline__chevron {
  background: rgba(183, 66, 51, 0.12);
  color: #b74233;
}

.fes-timeline__head--toggle[aria-expanded=true] .fes-timeline__chevron {
  transform: rotate(180deg);
  background: rgba(183, 66, 51, 0.12);
  color: #b74233;
}

.fes-timeline__detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.fes-timeline__detail.is-open {
  max-height: 2000px;
}

.fes-timeline__detail-inner {
  padding: 4px 0 20px;
}

.fes-timeline__desc {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .fes-timeline__desc {
    font-size: 15px;
  }
}

.fes-timeline__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .fes-timeline__gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.fes-timeline__gallery .lightbox-trigger img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.fes-timeline__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fes-timeline__tags li {
  background: #faf8f5;
  color: #b74233;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #e0ddd7;
}
.fes-timeline__tags li i {
  margin-right: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .fes-timeline__detail,
  .fes-timeline__chevron,
  .fes-timeline__head--toggle {
    transition: none;
  }
}
.article__table-wrap {
  overflow-x: auto;
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.article__table th,
.article__table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
}

.article__table th {
  background-color: #faf8f5;
  font-weight: 600;
  color: #102544;
  width: 140px;
}

.article__table thead th {
  background-color: #102544;
  color: #fff;
  width: auto;
}

.article__table td a {
  color: #b74233;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
  transition: color 0.2s;
}

.article__table td a:hover,
.article__table td a:focus-visible {
  color: #102544;
}

.fes-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .fes-team {
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
  }
}

.venue-map {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.venue-map__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #faf8f5;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
  font-weight: 600;
  color: #102544;
}

.venue-map__image {
  padding: 12px;
}

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

.article__feedback {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .article__feedback {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.article__feedback-good {
  padding: 18px;
  border-radius: 12px;
  background-color: #faf8f5;
  border: 1px solid #e0ddd7;
}

.article__feedback-improve {
  padding: 18px;
  border-radius: 12px;
  background-color: rgba(183, 66, 51, 0.06);
  border: 1px solid rgba(183, 66, 51, 0.18);
}

.article__feedback h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.article__feedback-good h3 {
  color: #102544;
}

.article__feedback-improve h3 {
  color: #b74233;
}

.article__feedback ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article__feedback li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14px;
  line-height: 1.6;
}
.article__feedback li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 6px;
}

.article__quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.article__quote {
  position: relative;
  margin: 0;
  background-color: #faf8f5;
  padding: 18px 18px 18px 44px;
  border-radius: 12px;
}
.article__quote::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  font-size: 48px;
  color: #b74233;
  font-family: Georgia, serif;
  line-height: 1;
}
.article__quote p {
  margin: 0 0 8px;
  font-size: 16px;
  font-style: italic;
  color: #222222;
}
.article__quote cite {
  font-size: 13px;
  color: #888;
  font-style: normal;
}

/* ============================================
   Step1：剣道祭の目的・狙い・成果（Hero直下）
   - Feedback/Quotesのトーンに揃える（角丸12px）
============================================ */
.article__section--intro {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .article__section--intro {
    margin-top: 34px;
  }
}

/* 3ブロック：SPは縦、PCは2列＋下1列で見やすく */
.article__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .article__intro {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* 目的・仕組み：上段2つ */
.article__intro-block {
  padding: 18px;
  border-radius: 12px;
  background-color: #faf8f5;
  border: 1px solid #e0ddd7;
}

/* 小見出し */
.article__intro-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: #102544;
}
.article__intro-title i {
  color: #b74233;
  font-size: 15px;
}

/* 本文 */
.article__intro-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #222222;
}
.article__intro-text strong {
  font-weight: 700;
}

/* ============================================
   剣道祭：その後（開催3ヶ月後の反響）
============================================ */
.article__followup-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #555555;
  margin-top: 10px;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .article__followup-lead {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

/* サマリー（上の淡い箱） */
.article__followup-summary {
  background: #faf8f5;
  border: 1px solid #e0ddd7;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .article__followup-summary {
    padding: 18px;
    margin-bottom: 18px;
  }
}
.article__followup-summary h3 {
  font-size: 14px;
  font-weight: 700;
  color: #102544;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.article__followup-summary h3 i {
  color: #b74233;
}
.article__followup-summary ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .article__followup-summary ul {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
}
.article__followup-summary li {
  font-size: 14px;
  line-height: 1.8;
  color: #222222;
}
.article__followup-summary li strong {
  color: #102544;
  font-weight: 700;
}

/* 地区カード（グリッド） */
.article__followup-cards {
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .article__followup-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.article__followup-card {
  background: #faf8f5;
  border-radius: 10px;
  padding: 14px;
}
@media screen and (min-width: 768px) {
  .article__followup-card {
    padding: 16px;
  }
}

/* 地区ラベル：既存のタグ風に */
.article__followup-district {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #102544;
  background: #faf8f5;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.article__followup-text {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  margin: 0;
}
.article__followup-text strong {
  color: #102544;
  font-weight: 700;
}

.article__followup-note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.9;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .article__followup-note {
    margin-top: 16px;
    font-size: 14px;
  }
}

/* 反響タグ */
.article__followup-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.article__followup-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid;
  line-height: 1;
}

.article__followup-tag--success {
  color: #b74233;
  background: rgba(183, 66, 51, 0.08);
  border-color: rgba(183, 66, 51, 0.2);
}

.article__followup-tag--continue {
  color: #555555;
  background: #faf8f5;
  border-color: #e0ddd7;
}

.article__followup-tag--promo {
  color: #102544;
  background: rgba(16, 37, 68, 0.06);
  border-color: rgba(16, 37, 68, 0.15);
}

.article__footer {
  background-color: #faf8f5;
  padding: 24px 0;
}

.article__footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .article__footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.article__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #102544;
  text-decoration: none;
  font-weight: 600;
}
.article__nav-link:hover {
  color: #b74233;
}

.article__share {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555555;
}

.article__share-btn {
  width: 40px;
  height: 40px;
  background-color: #102544;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.article__share-btn:hover {
  background-color: #b74233;
}

.planning-concept {
  padding: 36px 0;
  background-color: #faf8f5;
}

.planning-concept__box {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .planning-concept__box {
    padding: 28px;
  }
}

.planning-concept__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  color: #102544;
}
@media screen and (min-width: 768px) {
  .planning-concept__title {
    font-size: 24px;
  }
}

.planning-concept__title i {
  margin-right: 8px;
  color: #b74233;
}

.planning-concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .planning-concept__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.planning-concept__item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.planning-concept__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .planning-concept__item {
    display: block;
    text-align: center;
    padding: 24px;
  }
}

.planning-concept__item-icon {
  font-size: 28px;
  color: #102544;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .planning-concept__item-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
}

.planning-concept__item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .planning-concept__item-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.planning-concept__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.planning-form {
  padding: 36px 0;
  background-color: #fff;
}

.planning-form__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: #102544;
}
@media screen and (min-width: 768px) {
  .planning-form__title {
    font-size: 28px;
  }
}

.planning-form__title i {
  margin-right: 8px;
  color: #b74233;
}

.planning-form__desc {
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .form {
    max-width: 900px;
  }
}

.planning-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .planning-form__fields {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.planning-form__fields .form__group {
  margin-bottom: 0;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222222;
}

.form__label i {
  margin-right: 8px;
  color: #102544;
}

.form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.form__select:focus {
  outline: none;
  border-color: #102544;
}

.form__button {
  width: 100%;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
}

.form__button i {
  margin-right: 8px;
}

.planning-result {
  padding: 36px 0;
  background-color: #faf8f5;
}

.planning-result__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .planning-result__header {
    flex-wrap: nowrap;
  }
}

.planning-result__title {
  font-size: 22px;
  font-weight: 700;
  color: #102544;
}
@media screen and (min-width: 768px) {
  .planning-result__title {
    font-size: 28px;
  }
}

.planning-result__title i {
  margin-right: 8px;
  color: #b74233;
}

.planning-result__actions {
  display: flex;
  gap: 12px;
}

.planning-summary {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .planning-summary {
    padding: 32px;
  }
}

.planning-summary__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222222;
}

.planning-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .planning-summary__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.planning-summary__item {
  text-align: center;
  padding: 16px;
  background-color: #faf8f5;
  border-radius: 4px;
}

.planning-summary__label {
  display: block;
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
}

.planning-summary__value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #102544;
}

.staff-check-box {
  margin-top: 32px;
}

.staff-check {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .staff-check {
    padding: 24px;
  }
}

.staff-check__status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .staff-check__status {
    font-size: 18px;
  }
}

.staff-check__status i {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .staff-check__status i {
    font-size: 28px;
  }
}

.staff-check__status--ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.staff-check__status--ok i {
  color: #28a745;
}

.staff-check__status--warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.staff-check__status--warning i {
  color: #ffc107;
}

.staff-check__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.staff-check__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .staff-check__row {
    font-size: 16px;
  }
}
.staff-check__row:last-child {
  border-bottom: none;
}

.staff-check__row--sub {
  padding-left: 16px;
  font-size: 13px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .staff-check__row--sub {
    font-size: 14px;
    padding-left: 20px;
  }
}

.staff-check__row--result {
  font-weight: 700;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid #102544;
}

.staff-check__surplus {
  color: #28a745;
  font-weight: 700;
}

.staff-check__shortage {
  color: #dc3545;
  font-weight: 700;
}

.staff-check__note {
  margin-top: 16px;
  padding: 12px;
  background-color: #faf8f5;
  border-left: 4px solid #b74233;
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .staff-check__note {
    font-size: 14px;
  }
}

.staff-check__note i {
  margin-top: 2px;
  color: #b74233;
  flex-shrink: 0;
}

.planning-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .planning-section {
    padding: 32px;
  }
}

.planning-section__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #102544;
  padding-bottom: 12px;
  border-bottom: 2px solid #102544;
}
@media screen and (min-width: 768px) {
  .planning-section__title {
    font-size: 22px;
  }
}

.planning-section__title i {
  margin-right: 8px;
  color: #b74233;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item__time {
  flex-shrink: 0;
  width: 80px;
  font-size: 16px;
  font-weight: 700;
  color: #102544;
}

.timeline-item__content {
  flex: 1;
  font-size: 16px;
  color: #222222;
}

.process-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.process-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-card__header {
  background-color: #102544;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .process-card__header {
    flex-wrap: nowrap;
  }
}

.process-card__phase {
  display: inline-block;
  background-color: #b74233;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

.process-card__title {
  font-size: 18px;
  font-weight: 700;
  flex: 1;
}

.process-card__body {
  padding: 20px;
  background-color: #fff;
}

.process-card__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.process-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555555;
}

.process-card__meta-item i {
  color: #102544;
}

.process-card__tasks {
  margin-bottom: 16px;
}

.process-card__tasks strong {
  display: block;
  margin-bottom: 8px;
  color: #222222;
}

.process-card__tasks ul {
  list-style: disc;
  padding-left: 20px;
}

.process-card__tasks li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.process-card__notes {
  background-color: #fff3cd;
  border-left: 4px solid #b74233;
  padding: 12px;
  font-size: 14px;
  color: #856404;
}

.process-card__notes i {
  margin-right: 6px;
}

.supplies-category {
  margin-bottom: 32px;
}
.supplies-category:last-child {
  margin-bottom: 0;
}

.supplies-category__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #102544;
  padding-left: 12px;
  border-left: 4px solid #102544;
}

.supplies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .supplies-table {
    font-size: 14px;
  }
}

.supplies-table thead {
  background-color: #faf8f5;
}

.supplies-table th {
  padding: 8px;
  text-align: left;
  font-weight: 700;
  color: #222222;
  border-bottom: 2px solid #ddd;
}
@media screen and (min-width: 768px) {
  .supplies-table th {
    padding: 12px;
  }
}

.supplies-table td {
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .supplies-table td {
    padding: 12px;
  }
}

.supplies-table tbody tr:hover {
  background-color: #faf8f5;
}

.roles-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .roles-table {
    font-size: 14px;
  }
}

.roles-table thead {
  background-color: #102544;
  color: #fff;
}

.roles-table th {
  padding: 8px;
  text-align: left;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .roles-table th {
    padding: 12px;
  }
}

.roles-table td {
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .roles-table td {
    padding: 12px;
  }
}

.roles-table tbody tr:hover {
  background-color: #faf8f5;
}

.planning-reference {
  padding: 36px 0;
  background-color: #fff;
}

.planning-reference__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: #102544;
}
@media screen and (min-width: 768px) {
  .planning-reference__title {
    font-size: 24px;
  }
}

.planning-reference__title i {
  margin-right: 8px;
  color: #b74233;
}

.planning-reference__note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .planning-reference__note {
    font-size: 15px;
  }
}

.planning-reference__content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .planning-reference__content {
    padding: 32px;
  }
}

.planning-reference__item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .planning-reference__item {
    flex-direction: row;
  }
}
.planning-reference__item:last-child {
  border-bottom: none;
}

.planning-reference__label {
  flex-shrink: 0;
  width: auto;
  font-weight: 700;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .planning-reference__label {
    width: 120px;
  }
}

.planning-reference__value {
  flex: 1;
  color: #555555;
}

@media print {
  .header,
  .drawer,
  .mask,
  .breadcrumb,
  .planning-concept,
  .planning-form,
  .planning-result__actions,
  .planning-reference,
  .footer {
    display: none;
  }
  .planning-result {
    padding: 0;
    background-color: #fff;
  }
  .planning-section {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  .process-card {
    page-break-inside: avoid;
  }
}
/* ============================================
   剣道祭ページ 資料ダウンロード統合
   ─ ブースマニュアルグリッド
============================================= */
/* --- ブースマニュアル ダウンロードグリッド --- */
.article__download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .article__download-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article__download-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #102544;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.article__download-card:hover {
  border-color: #102544;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.article__download-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 37, 68, 0.08);
  border-radius: 6px;
  font-size: 16px;
  color: #102544;
}

.article__download-card-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.article__download-card-format {
  flex-shrink: 0;
  font-size: 12px;
  color: #b74233;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .fes-hero__petals use {
    animation: none;
  }
}
/* 締め：また来年 */
.article__outro {
  text-align: center;
}

.article__outro-message {
  font-size: 17px;
  line-height: 1.9;
  color: #102544;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .article__outro-message {
    font-size: 19px;
    margin-bottom: 32px;
  }
}

.article__outro-figure {
  margin: 0;
}

.article__outro-img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

/* 開催準備ツール：折りたたみ */
.planning-toggle {
  margin-top: 8px;
}

.planning-toggle__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  list-style: none;
  background: #faf8f5;
  border: 1px solid #e0ddd7;
  border-radius: 10px;
  font-weight: 700;
  color: #102544;
  cursor: pointer;
}

.planning-toggle__summary::-webkit-details-marker {
  display: none;
}

.planning-toggle__summary:hover {
  border-color: #102544;
}

.planning-toggle__summary:focus-visible {
  outline: 2px solid #b74233;
  outline-offset: 2px;
}

.planning-toggle__chevron {
  color: #b74233;
  transition: transform 0.2s ease;
}

.planning-toggle[open] .planning-toggle__chevron {
  transform: rotate(180deg);
}

.planning-toggle__body {
  margin-top: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .planning-toggle__chevron {
    transition: none;
  }
}
.article__section--band,
.fes-band-group {
  position: relative;
  margin-block: 0;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: 64px;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .article__section--band,
  .fes-band-group {
    padding-block: 88px;
  }
}

.fes-band-group > .article__section:last-child {
  margin-bottom: 0;
}

.fes-band__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 32px;
  display: block;
  fill: #fff;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .fes-band__wave {
    height: 56px;
  }
}

.fes-band__wave--top {
  top: -1px;
  transform: scaleY(-1);
}

.fes-band__wave--bottom {
  bottom: -1px;
}

.exp-festival {
  position: relative;
  background: #0a1a33;
  color: #fff;
  overflow: hidden;
}

.exp-festival__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #c9a96e;
  pointer-events: none;
}

.exp-festival__inner {
  padding-block: 60px 40px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .exp-festival__inner {
    padding-block: 80px 56px;
  }
}

.exp-festival__featured {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #14305a;
  background: #122a4d;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.exp-festival__featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #b74233;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .exp-festival__featured-badge {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) {
  .exp-festival__featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.exp-festival__featured-image {
  overflow: hidden;
}
.exp-festival__featured-image img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .exp-festival__featured-image img {
    height: 340px;
  }
}

.exp-festival__featured-body {
  padding: 28px 24px;
}
@media screen and (min-width: 768px) {
  .exp-festival__featured-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.exp-festival__featured-date {
  font-size: 14px;
  color: #c9a96e;
  margin-bottom: 10px;
}
.exp-festival__featured-date i {
  margin-right: 6px;
}

.exp-festival__featured-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .exp-festival__featured-title {
    font-size: 26px;
  }
}

.exp-festival__featured-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .exp-festival__featured-desc {
    font-size: 15px;
  }
}

.exp-festival__featured-meta {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-festival__featured-meta div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.exp-festival__featured-meta dt {
  flex-shrink: 0;
  color: #c9a96e;
  width: 16px;
  text-align: center;
}

.exp-festival__archive {
  border-top: 1px solid #14305a;
  padding-block: 56px 64px;
}
@media screen and (min-width: 768px) {
  .exp-festival__archive {
    padding-block: 72px 80px;
  }
}

.exp-festival__archive-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #14305a;
  background: #122a4d;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.exp-festival__archive-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.exp-festival__archive-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #3a4d6c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .exp-festival__archive-card-badge {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) {
  .exp-festival__archive-card-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.exp-festival__archive-card-image {
  overflow: hidden;
}
.exp-festival__archive-card-image img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
@media screen and (min-width: 768px) {
  .exp-festival__archive-card-image img {
    height: 340px;
  }
}

.exp-festival__archive-card:hover .exp-festival__archive-card-image img {
  transform: scale(1.03);
}

.exp-festival__archive-card-body {
  padding: 28px 24px;
}
@media screen and (min-width: 768px) {
  .exp-festival__archive-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.exp-festival__archive-card-date {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c9a96e;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.exp-festival__archive-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .exp-festival__archive-card-title {
    font-size: 26px;
  }
}

.exp-festival__archive-card-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .exp-festival__archive-card-subtitle {
    font-size: 15px;
  }
}

.exp-festival__archive-card-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .exp-festival__archive-card-desc {
    font-size: 15px;
  }
}

.exp-festival__archive-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.exp-festival__archive-card-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

.exp-festival__archive-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a96e;
  color: #0a1a33;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: background 0.3s;
}
.exp-festival__archive-card-cta i {
  font-size: 11px;
  transition: transform 0.3s;
}

.exp-festival__archive-card:hover .exp-festival__archive-card-cta {
  background: #e8d5a8;
}

.exp-festival__archive-card:hover .exp-festival__archive-card-cta i {
  transform: translateX(4px);
}

.fes-poster {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .fes-poster {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.fes-poster__media {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fes-poster__media {
    flex-shrink: 0;
    width: 280px;
    margin-inline: 0;
  }
}

.fes-poster__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fes-poster__thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.fes-poster__thumb:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: 3px;
}

.fes-poster__img {
  display: block;
  width: 100%;
  height: auto;
}

.fes-poster__hint {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .fes-poster__info {
    flex: 1;
  }
}

.fes-poster__desc {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .fes-poster__desc {
    font-size: 15px;
  }
}

.fes-poster__resources-title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid #e5e5e5;
}

.fes-poster__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fes-poster__list li {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px solid #e5e5e5;
}

.fes-poster__list small {
  margin-left: 6px;
  color: #6b6b6b;
  font-size: 12px;
}

.voices__heading {
  text-align: center;
  margin-bottom: 8px;
}

.voices__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #102544;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.voices__eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #102544;
}

.voices__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .voices__lead {
    font-size: 15px;
    margin-bottom: 48px;
  }
}

.voices__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .voices__cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.voices__card {
  background-color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.voices__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.voices__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.voices__card--child .voices__card-icon {
  background-color: #e8f4fd;
  color: #3b82c4;
}

.voices__card--parent .voices__card-icon {
  background-color: #fdf2e8;
  color: #c4793b;
}

.voices__card-label {
  font-size: 12px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 8px;
}

.voices__card-highlight {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #102544;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .voices__card-highlight {
    font-size: 17px;
  }
}

.voices__card-text {
  font-size: 14px;
  line-height: 1.8;
  color: #222222;
}

.voices-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.voices-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.voices-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 29, 58, 0.62);
}

.voices-hero__inner {
  position: relative;
  padding-top: 80px;
  padding-bottom: 20px;
  box-sizing: border-box;
  min-height: 500px;
}

.voices-hero__quote {
  max-width: 100%;
  margin: 0 0 28px;
}

.voices-hero__quote--right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  max-width: 100%;
}

.voices-hero__quote--end {
  margin-bottom: 0;
}

.voices-hero__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.voices-hero__quote--lead .voices-hero__text {
  font-size: 20px;
  line-height: 1.5;
}

.voices-hero__sig {
  display: block;
  font-size: 12px;
  color: #e8d4a8;
  letter-spacing: 1.5px;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .voices-hero__inner {
    padding-top: 120px;
    padding-bottom: 30px;
    min-height: 560px;
  }
  .voices-hero__quote {
    max-width: 72%;
  }
  .voices-hero__quote--right {
    max-width: 68%;
  }
  .voices-hero__text {
    font-size: 24px;
  }
  .voices-hero__quote--lead .voices-hero__text {
    font-size: 34px;
  }
  .voices-hero__sig {
    font-size: 13px;
  }
}
.parents-faq__heading {
  text-align: center;
  margin-bottom: 8px;
}

.parents-faq__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b74233;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.parents-faq__eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #b74233;
}

.parents-faq__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .parents-faq__lead {
    font-size: 15px;
    margin-bottom: 48px;
  }
}

.parents-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.parents-faq__item {
  border-bottom: 1px solid #e8e4df;
}

.parents-faq__item:first-child {
  border-top: 1px solid #e8e4df;
}

.parents-faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.parents-faq__question:hover {
  color: #b74233;
}

.parents-faq__question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #102544;
  font-size: 16px;
}

.parents-faq__question-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .parents-faq__question-text {
    font-size: 16px;
  }
}

.parents-faq__question-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  font-size: 14px;
  color: #555555;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.parents-faq__question.is-open .parents-faq__question-toggle {
  transform: rotate(180deg);
}

.parents-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.parents-faq__answer p {
  padding: 0 0 24px 56px;
  font-size: 14px;
  line-height: 1.8;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .parents-faq__answer p {
    font-size: 15px;
  }
}

.parents-cta__inner {
  text-align: center;
}

.parents-cta__lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #222222;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .parents-cta__lead {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

.parents-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .parents-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

@keyframes expShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes expGrain {
  0%, 100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-5%, -10%);
  }
  40% {
    transform: translate(3%, -15%);
  }
  60% {
    transform: translate(12%, 9%);
  }
  80% {
    transform: translate(-1%, 7%);
  }
}
@keyframes expFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expDotRing {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes expYearGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.2);
  }
  50% {
    text-shadow: 0 0 40px rgba(201, 169, 110, 0.5);
  }
}
@keyframes expCharReveal {
  from {
    opacity: 0;
    transform: translateY(18px) rotateX(-35deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
.exp-anime {
  background: #122a4d;
  padding: 40px 0 88px;
  position: relative;
  overflow: hidden;
}

.exp-anime__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.exp-anime__particles span {
  position: absolute;
  border-radius: 50%;
  animation: expFloat var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.exp-anime__particles span:nth-child(1) {
  left: 3%;
  top: 5%;
  width: 2px;
  height: 2px;
  background: rgba(201, 169, 110, 0.1);
  --dur: 4s;
  --delay: 0s;
}
.exp-anime__particles span:nth-child(2) {
  left: 10%;
  top: 11%;
  width: 3px;
  height: 3px;
  background: rgba(201, 169, 110, 0.16);
  --dur: 4.4s;
  --delay: 0.25s;
}
.exp-anime__particles span:nth-child(3) {
  left: 17%;
  top: 17%;
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 110, 0.22);
  --dur: 4.8s;
  --delay: 0.5s;
}
.exp-anime__particles span:nth-child(4) {
  left: 25%;
  top: 23%;
  width: 2px;
  height: 2px;
  background: rgba(201, 169, 110, 0.28);
  --dur: 5.2s;
  --delay: 0.75s;
}
.exp-anime__particles span:nth-child(5) {
  left: 32%;
  top: 29%;
  width: 3px;
  height: 3px;
  background: rgba(201, 169, 110, 0.1);
  --dur: 5.6s;
  --delay: 1s;
}
.exp-anime__particles span:nth-child(6) {
  left: 39%;
  top: 35%;
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 110, 0.16);
  --dur: 6s;
  --delay: 1.25s;
}
.exp-anime__particles span:nth-child(7) {
  left: 47%;
  top: 41%;
  width: 2px;
  height: 2px;
  background: rgba(201, 169, 110, 0.22);
  --dur: 6.4s;
  --delay: 1.5s;
}
.exp-anime__particles span:nth-child(8) {
  left: 54%;
  top: 47%;
  width: 3px;
  height: 3px;
  background: rgba(201, 169, 110, 0.28);
  --dur: 6.8s;
  --delay: 1.75s;
}
.exp-anime__particles span:nth-child(9) {
  left: 61%;
  top: 53%;
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 110, 0.1);
  --dur: 7.2s;
  --delay: 2s;
}
.exp-anime__particles span:nth-child(10) {
  left: 69%;
  top: 59%;
  width: 2px;
  height: 2px;
  background: rgba(201, 169, 110, 0.16);
  --dur: 7.6s;
  --delay: 2.25s;
}
.exp-anime__particles span:nth-child(11) {
  left: 76%;
  top: 65%;
  width: 3px;
  height: 3px;
  background: rgba(201, 169, 110, 0.22);
  --dur: 4.2s;
  --delay: 2.5s;
}
.exp-anime__particles span:nth-child(12) {
  left: 83%;
  top: 71%;
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 110, 0.28);
  --dur: 4.6s;
  --delay: 2.75s;
}
.exp-anime__particles span:nth-child(13) {
  left: 91%;
  top: 77%;
  width: 2px;
  height: 2px;
  background: rgba(201, 169, 110, 0.1);
  --dur: 5s;
  --delay: 3s;
}
.exp-anime__particles span:nth-child(14) {
  left: 20%;
  top: 83%;
  width: 3px;
  height: 3px;
  background: rgba(201, 169, 110, 0.16);
  --dur: 5.4s;
  --delay: 3.25s;
}
.exp-anime__particles span:nth-child(15) {
  left: 50%;
  top: 89%;
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 110, 0.22);
  --dur: 5.8s;
  --delay: 3.5s;
}
.exp-anime__particles span:nth-child(16) {
  left: 80%;
  top: 95%;
  width: 2px;
  height: 2px;
  background: rgba(201, 169, 110, 0.28);
  --dur: 6.2s;
  --delay: 3.75s;
}

.exp-anime__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.02;
  pointer-events: none;
  animation: expGrain 6s steps(8) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.exp-anime__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.exp-anime__glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 15%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}
.exp-anime__glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 85%, rgba(183, 66, 51, 0.03) 0%, transparent 50%);
}

.exp-anime__vline {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  pointer-events: none;
}

.exp-anime__vline--left {
  left: 12%;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.06), transparent 25%, transparent 75%, rgba(201, 169, 110, 0.04));
}

.exp-anime__vline--right {
  right: 12%;
  background: linear-gradient(to bottom, transparent 20%, rgba(201, 169, 110, 0.05), transparent 80%);
}

.exp-anime__progress {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  padding: 0 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.exp-anime__progress.is-visible {
  opacity: 1;
}

.exp-anime__progress-track {
  width: 2px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  position: relative;
}

.exp-anime__progress-fill {
  width: 2px;
  height: 0%;
  background: #c9a96e;
  border-radius: 1px;
  transition: height 0.4s ease;
}

.exp-anime__progress-year {
  position: absolute;
  left: 18px;
  top: 0;
  transform: translateY(-50%);
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #c9a96e;
  white-space: nowrap;
  letter-spacing: 1px;
  transition: top 0.4s ease;
}

.exp-anime__header {
  text-align: center;
  margin-bottom: 60px;
}

.exp-anime__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #c9a96e, #e8d5a8, #c9a96e);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: expShimmer 5s linear infinite;
}

.exp-anime__eyebrow-line {
  width: 32px;
  height: 1px;
  background: #c9a96e;
  opacity: 0.5;
  display: block;
  -webkit-text-fill-color: initial;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.exp-anime__title {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.exp-anime__lead {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 540px;
  margin: 0 auto;
}

.exp-anime__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.exp-anime__timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #c9a96e, rgba(201, 169, 110, 0.15) 40%, rgba(201, 169, 110, 0.3) 80%, #c9a96e);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .exp-anime__timeline-line {
    left: 16px;
  }
}

.exp-anime__entry {
  position: relative;
  padding-left: 76px;
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(30px) translateX(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-anime__entry:nth-child(odd) {
  transform: translateY(30px) translateX(20px);
}
.exp-anime__entry.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.exp-anime__entry:nth-child(2) {
  transition-delay: 0s;
}
.exp-anime__entry:nth-child(3) {
  transition-delay: 0.08s;
}
.exp-anime__entry:nth-child(4) {
  transition-delay: 0.16s;
}
.exp-anime__entry:nth-child(5) {
  transition-delay: 0.24s;
}
.exp-anime__entry:nth-child(6) {
  transition-delay: 0.32s;
}
.exp-anime__entry:nth-child(7) {
  transition-delay: 0.4s;
}
.exp-anime__entry:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .exp-anime__entry {
    padding-left: 48px;
  }
}

.exp-anime__year-bg {
  position: absolute;
  left: 60px;
  top: -8px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(70px, 12vw, 110px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  letter-spacing: -4px;
  transition: -webkit-text-stroke 0.5s;
}
.exp-anime__entry.is-active .exp-anime__year-bg {
  -webkit-text-stroke-color: rgba(201, 169, 110, 0.12);
}
@media screen and (max-width: 767px) {
  .exp-anime__year-bg {
    left: 36px;
    font-size: clamp(50px, 15vw, 70px);
  }
}

.exp-anime__dot {
  position: absolute;
  left: 12px;
  top: 24px;
}
@media screen and (max-width: 767px) {
  .exp-anime__dot {
    left: 0;
  }
}
.exp-anime__dot span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(201, 169, 110, 0.25);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}
.exp-anime__dot span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a96e;
  transition: all 0.3s;
}
.exp-anime__entry.is-active .exp-anime__dot span {
  background: var(--card-color);
  border-color: var(--card-color);
  box-shadow: 0 0 24px rgba(var(--card-color), 0.3);
}
.exp-anime__entry.is-active .exp-anime__dot span::before {
  background: #fff;
}
.exp-anime__dot span::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--card-color, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.exp-anime__entry.is-active .exp-anime__dot span::after {
  animation: expDotRing 2s ease-in-out infinite;
}

.exp-anime__card {
  perspective: 800px;
  cursor: pointer;
}

.exp-anime__card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
}
.exp-anime__card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.exp-anime__entry.is-active .exp-anime__card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(var(--card-color-rgb, 255, 255, 255), 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.exp-anime__card-highlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  transition: background 0.1s;
}

.exp-anime__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 26px;
  position: relative;
  z-index: 2;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .exp-anime__card-header {
    padding: 16px;
    flex-wrap: wrap;
  }
}

.exp-anime__card-titleblock {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.exp-anime__card-year {
  font-family: "Outfit", sans-serif;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 900;
  color: var(--card-color);
  line-height: 1;
  letter-spacing: -1px;
  transition: all 0.4s;
}
.exp-anime__entry.is-active .exp-anime__card-year {
  animation: expYearGlow 3s ease-in-out infinite;
}

.exp-anime__card-name {
  font-size: clamp(17px, 3vw, 23px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.exp-anime__card-en {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.exp-anime__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.exp-anime__card-gen {
  font-size: 10px;
  font-weight: 700;
  color: var(--card-color);
  background: rgba(var(--card-color-rgb, 255, 255, 255), 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(var(--card-color-rgb, 255, 255, 255), 0.15);
  white-space: nowrap;
}

.exp-anime__card-chevron {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
[aria-expanded=true] .exp-anime__card-chevron {
  transform: rotate(180deg);
}

.exp-anime__card-body {
  padding: 0 26px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: expFadeUp 0.4s ease both;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .exp-anime__card-body {
    padding: 0 16px 20px;
  }
}

.exp-anime__card-genre {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.exp-anime__card-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.exp-anime__quote {
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--card-color-rgb, 255, 255, 255), 0.05), rgba(var(--card-color-rgb, 255, 255, 255), 0.02));
  border-left: 3px solid var(--card-color);
  position: relative;
}
.exp-anime__quote p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  padding-left: 8px;
}
.exp-anime__quote cite {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
  padding-left: 8px;
}

.exp-anime__quote-mark {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 36px;
  color: var(--card-color);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.exp-anime__youtube {
  margin-top: 22px;
}

.exp-anime__youtube-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.exp-anime__youtube-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(var(--card-color-rgb, 0, 0, 0), 0.12);
  border: 1px solid rgba(var(--card-color-rgb, 255, 255, 255), 0.08);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.exp-anime__youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.exp-anime__closing {
  margin-top: 64px;
  text-align: center;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  backdrop-filter: blur(4px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.exp-anime__closing-main {
  font-size: clamp(19px, 3.5vw, 26px);
  font-weight: 700;
  line-height: 1.7;
  min-height: 70px;
  perspective: 600px;
}

.exp-anime__char {
  display: inline-block;
  opacity: 0;
  background: linear-gradient(135deg, #fff, #e8d5a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exp-anime__closing.is-revealed .exp-anime__char {
  animation: expCharReveal 0.6s ease both;
}

.exp-anime__closing-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 12px;
  opacity: 0;
}
.exp-anime__closing.is-revealed .exp-anime__closing-sub {
  animation: expFadeUp 0.8s ease 2s both;
}

@media (prefers-reduced-motion: reduce) {
  .exp-anime__particles span {
    animation: none;
  }
  .exp-anime__grain {
    animation: none;
  }
  .exp-anime__eyebrow {
    animation: none;
  }
  .exp-anime__entry {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .exp-anime__card {
    transition: none;
  }
  .exp-anime__char {
    opacity: 1;
    animation: none !important;
  }
  .exp-anime__closing-sub {
    opacity: 1;
    animation: none !important;
  }
}
.merits-nav {
  padding: 0 0 8px;
}

.merits-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .merits-nav__inner {
    padding: 0 24px;
  }
}

.merits-nav__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .merits-nav__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.merits-nav__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: #2a2a2a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.merits-nav__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .merits-nav__card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px 24px;
  }
}

.merits-nav__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #102544;
  color: #fff;
  font-size: 18px;
}

.merits-nav__card-body {
  flex: 1;
  min-width: 0;
}

.merits-nav__card-number {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #b74233;
  margin-bottom: 4px;
}

.merits-nav__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 4px;
}

.merits-nav__card-text {
  font-size: 12px;
  line-height: 1.6;
  color: #6b6b6b;
}
@media screen and (min-width: 768px) {
  .merits-nav__card-text {
    font-size: 13px;
  }
}

.merits-nav__card-arrow {
  flex-shrink: 0;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s;
}
.merits-nav__card:hover .merits-nav__card-arrow {
  color: #b74233;
  transform: translateY(3px);
}
@media screen and (min-width: 768px) {
  .merits-nav__card-arrow {
    display: none;
  }
}

.merits-detail {
  background: #faf8f5;
  padding: 60px 0 100px;
}
@media screen and (min-width: 768px) {
  .merits-detail {
    padding: 80px 0 120px;
  }
}

.merits-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .merits-detail__inner {
    padding: 0 40px;
  }
}

.merits-detail__item {
  padding-block: 60px;
  border-bottom: 1px solid rgba(16, 37, 68, 0.06);
}
.merits-detail__item:first-child {
  padding-top: 0;
}
.merits-detail__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .merits-detail__item {
    padding-block: 100px;
  }
}

.merits-detail__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .merits-detail__header {
    flex-direction: row;
    gap: 60px;
    margin-bottom: 64px;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .merits-detail__header {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .merits-detail__header--reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 767px) {
  .merits-detail__header:not(.merits-detail__header--reverse) {
    flex-direction: column-reverse;
  }
}
.merits-detail__header-figure {
  flex: 1;
  min-width: 0;
}

.merits-detail__header-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}
.merits-detail__header-image:hover {
  transform: scale(1.02);
}

.merits-detail__header-caption {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: #555555;
  text-align: left;
  font-style: normal;
  line-height: 1.7;
  background: rgba(247, 242, 232, 0.6);
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .merits-detail__header-caption {
    font-size: 13px;
    padding: 12px 16px;
  }
}

.merits-detail__header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.merits-detail__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #b74233;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(200, 74, 61, 0.25);
}
@media screen and (min-width: 768px) {
  .merits-detail__badge {
    width: 72px;
    height: 72px;
    font-size: 28px;
    margin-bottom: 28px;
  }
}

.merits-detail__title {
  font-size: 22px;
  font-weight: 700;
  color: #102544;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .merits-detail__title {
    font-size: 26px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .merits-detail__title {
    font-size: 28px;
  }
}

.merits-detail__lead {
  font-size: 15px;
  line-height: 2;
  color: #222222;
  padding: 18px 18px 18px 20px;
  border-left: 5px solid #b74233;
  background: #fff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 768px) {
  .merits-detail__lead br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .merits-detail__lead {
    font-size: 16px;
    padding: 20px 24px 20px 28px;
  }
}

.merits-detail__body {
  font-size: 15px;
  line-height: 2.2;
  color: #222222;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .merits-detail__body {
    font-size: 16px;
    line-height: 2.3;
  }
}
@media screen and (min-width: 768px) {
  .merits-detail__body {
    font-size: 17px;
  }
}

.merits-detail__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 16px 0 16px 20px;
  border-left: 5px solid #b74233;
  line-height: 1.6;
  background: rgba(247, 242, 232, 0.4);
  border-radius: 0 4px 4px 0;
}
.merits-detail__subtitle:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .merits-detail__subtitle {
    font-size: 20px;
    margin-top: 56px;
    margin-bottom: 24px;
    padding: 18px 0 18px 24px;
  }
}
@media screen and (min-width: 768px) {
  .merits-detail__subtitle {
    font-size: 22px;
  }
}

.merits-detail__text {
  margin-bottom: 28px;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .merits-detail__text {
    line-height: 2.3;
    margin-bottom: 32px;
  }
}
.merits-detail__text:last-child {
  margin-bottom: 0;
}

.merits-detail.section--soft-bg {
  background: #fff;
}

.merits-detail__video {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .merits-detail__video {
    margin-top: 56px;
  }
}
.merits-detail__video-inner {
  padding: 24px 16px;
  border-radius: 16px;
  background-color: #faf8f5;
}

@media screen and (min-width: 768px) {
  .merits-detail__video-inner {
    padding: 32px 40px;
  }
}
.merits-detail__video-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000000;
}

.merits-detail__video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.merits-detail__video-note {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}

.about-kendo-cta {
  text-align: center;
}

.about-kendo-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 16px 72px;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__inner {
    padding: 72px 16px 88px;
  }
}

.about-kendo-cta__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 32px;
}
.about-kendo-cta__lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__lead br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.about-kendo-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.about-kendo-cta__buttons .button {
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__buttons .button {
    width: auto;
    min-width: 240px;
  }
}

.dojo-map {
  max-width: 540px;
  margin: 4px auto 26px;
}

.dojo-map__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.dojo-map__land path[data-district] {
  fill: #efe7d8;
  stroke: #102544;
  stroke-width: 0.8;
  cursor: pointer;
  transition: fill 0.18s ease;
}
.dojo-map__land path[data-district].is-prep {
  fill: #e4e1da;
}
.dojo-map__land path[data-district].is-hot, .dojo-map__land path[data-district].is-current {
  fill: #102544;
}
.dojo-map__land path[data-district]:focus-visible {
  outline: none;
  fill: #b74233;
}

.dojo-map__labels text {
  font-size: 18px;
  fill: #102544;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(255, 253, 249, 0.7);
  stroke-width: 2.4px;
}
.dojo-map__labels text.is-prep {
  fill: #9a958d;
}
.dojo-map__labels text.is-hot, .dojo-map__labels text.is-current {
  fill: #efe7d8;
  stroke: rgba(10, 24, 48, 0.5);
}

.dojo-map__inset {
  cursor: pointer;
}

.dojo-map__inset-title {
  font-size: 22px;
  fill: #102544;
  font-weight: 700;
  text-anchor: middle;
}

.dojo-map__inset-en {
  font-family: "Outfit", sans-serif;
  font-size: 8.5px;
  fill: #9a958d;
  text-anchor: middle;
  letter-spacing: 0.14em;
}

.dojo-map__oki-isl {
  fill: #efe7d8;
  stroke: #102544;
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
  transition: fill 0.18s ease;
}

.dojo-map__inset:hover .dojo-map__oki-isl,
.dojo-map__inset:focus-visible .dojo-map__oki-isl {
  fill: #102544;
}

.dojo-map__legend {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 12px;
  font-size: 12px;
  color: #555555;
}

.dojo-map__legend-swatch {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #102544;
  border-radius: 3px;
  vertical-align: -2px;
  margin-right: 5px;
}

.dojo-map__legend-swatch--on {
  background: #efe7d8;
}

.dojo-map__legend-swatch--prep {
  background: #e4e1da;
}

.dojo__district-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .dojo__district-nav {
    gap: 8px;
  }
}

.dojo__district-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  background: #fff;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s;
}
.dojo__district-btn:hover {
  border-color: #102544;
  color: #102544;
}
.dojo__district-btn.is-active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}

.dojo__count {
  text-align: center;
  font-size: 13px;
  color: #555555;
  margin-bottom: 32px;
}
.dojo__count strong {
  color: #102544;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}

.dojo__district {
  margin-bottom: 48px;
  scroll-margin-top: 20px;
}
.dojo__district:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 783px) {
  .admin-bar .dojo__district {
    scroll-margin-top: 52px;
  }
}
.dojo__district-title {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #102544;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .dojo__district-title {
    font-size: 20px;
  }
}

.dojo__district-count {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  background: #faf8f5;
  padding: 2px 10px;
  border-radius: 100px;
}

.dojo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .dojo__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .dojo__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dojo__card {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.dojo__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.dojo__card-name {
  font-size: 15px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .dojo__card-name {
    font-size: 16px;
  }
}

.dojo__card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dojo__card-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}

.dojo__card-icon {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  color: #102544;
  font-size: 12px;
}

.dojo__card-sns {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #102544;
  text-decoration: none;
  transition: opacity 0.3s;
}
.dojo__card-sns:hover {
  opacity: 0.7;
}

.dojo__card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.dojo__note {
  margin-top: 48px;
  padding: 28px 24px;
  background: #faf8f5;
  border-radius: 12px;
  text-align: center;
}

.dojo__note-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.dojo__note-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #0a1830;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
  animation: heroFade 30s infinite;
}

.hero__slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: heroZoom 30s infinite;
}

.hero__slide--01 {
  animation-delay: 0s;
}

.hero__slide--01 .hero__slide-img {
  background-image: url("../img/hero-01.jpg");
  background-image: -webkit-image-set(url("../img/hero-01.webp") type("image/webp"), url("../img/hero-01.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/hero-01.webp") type("image/webp"), url("../img/hero-01.jpg") type("image/jpeg"));
  background-position: center 42%;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .hero__slide--01 .hero__slide-img {
    background-image: url("../img/hero-01-sp.jpg");
    background-image: -webkit-image-set(url("../img/hero-01-sp.webp") type("image/webp"), url("../img/hero-01-sp.jpg") type("image/jpeg"));
    background-image: image-set(url("../img/hero-01-sp.webp") type("image/webp"), url("../img/hero-01-sp.jpg") type("image/jpeg"));
    background-position: 40% center;
  }
}

.hero__slide--02 {
  animation-delay: 10s;
}

.hero__slide--02 .hero__slide-img {
  background-image: url("../img/hero-02.jpg");
  background-image: -webkit-image-set(url("../img/hero-02.webp") type("image/webp"), url("../img/hero-02.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/hero-02.webp") type("image/webp"), url("../img/hero-02.jpg") type("image/jpeg"));
  background-position: 42% 38%;
  animation-delay: 10s;
}
@media screen and (max-width: 767px) {
  .hero__slide--02 .hero__slide-img {
    background-image: url("../img/hero-02-sp.jpg");
    background-image: -webkit-image-set(url("../img/hero-02-sp.webp") type("image/webp"), url("../img/hero-02-sp.jpg") type("image/jpeg"));
    background-image: image-set(url("../img/hero-02-sp.webp") type("image/webp"), url("../img/hero-02-sp.jpg") type("image/jpeg"));
    background-position: center center;
  }
}

.hero__slide--03 {
  animation-delay: 20s;
}

.hero__slide--03 .hero__slide-img {
  background-image: url("../img/hero-03.jpg");
  background-image: -webkit-image-set(url("../img/hero-03.webp") type("image/webp"), url("../img/hero-03.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/hero-03.webp") type("image/webp"), url("../img/hero-03.jpg") type("image/jpeg"));
  background-position: center 30%;
  animation-delay: 20s;
}
@media screen and (max-width: 767px) {
  .hero__slide--03 .hero__slide-img {
    background-image: url("../img/hero-03-sp.jpg");
    background-image: -webkit-image-set(url("../img/hero-03-sp.webp") type("image/webp"), url("../img/hero-03-sp.jpg") type("image/jpeg"));
    background-image: image-set(url("../img/hero-03-sp.webp") type("image/webp"), url("../img/hero-03-sp.jpg") type("image/jpeg"));
    background-position: center center;
  }
}

.hero__veil-right {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(10, 24, 48, 0.74) 0%, rgba(10, 24, 48, 0.6) 14%, rgba(10, 24, 48, 0.3) 34%, rgba(10, 24, 48, 0.06) 52%, rgba(10, 24, 48, 0) 66%);
}
@media screen and (max-width: 767px) {
  .hero__veil-right {
    background: linear-gradient(90deg, rgba(10, 24, 48, 0) calc(min(100%, 390px) * 0.4), rgba(10, 24, 48, 0.16) calc(min(100%, 390px) * 0.5), rgba(10, 24, 48, 0.38) calc(min(100%, 390px) * 0.62), rgba(10, 24, 48, 0.56) calc(min(100%, 390px) * 0.8), rgba(10, 24, 48, 0.62) calc(min(100%, 390px) * 0.95));
  }
}

.hero__veil-bottom {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 24, 48, 0.72) 0%, rgba(10, 24, 48, 0.42) 16%, rgba(10, 24, 48, 0.16) 32%, rgba(10, 24, 48, 0.02) 46%, rgba(10, 24, 48, 0) 56%);
}
@media screen and (max-width: 767px) {
  .hero__veil-bottom {
    display: none;
  }
}

.hero__glow {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: 50%;
  right: 7.5vw;
  transform: translateY(-50%);
  width: min(46vw, 540px);
  height: 78%;
  background: radial-gradient(55% 50% at 60% 50%, rgba(10, 24, 48, 0.5) 0%, rgba(10, 24, 48, 0.22) 48%, rgba(10, 24, 48, 0) 78%);
  filter: blur(2px);
}
@media screen and (max-width: 767px) {
  .hero__glow {
    top: 42%;
    right: auto;
    left: calc(min(100%, 390px) * 0.77);
    transform: translate(-50%, -50%);
    width: calc(min(100%, 390px) * 0.56);
    height: 62%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(10, 24, 48, 0.36) 0%, rgba(10, 24, 48, 0.15) 55%, rgba(10, 24, 48, 0) 80%);
  }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10, 24, 48, 0.34) 0%, rgba(10, 24, 48, 0) 22%), radial-gradient(120% 120% at 50% 46%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.3) 100%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .hero__inner {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 20px 26px;
  }
}

.hero__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .hero__sp {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
  }
}

.hero__vertical {
  position: absolute;
  top: 50%;
  right: clamp(50px, 6.7vw, 94px);
  transform: translateY(-50%);
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 2.8vw, 40px);
  height: auto;
  max-height: 80%;
}
@media screen and (max-width: 767px) {
  .hero__vertical {
    display: none;
  }
}

.hero__seal-line {
  width: 3px;
  align-self: stretch;
  margin-top: 6px;
  border-radius: 3px;
  background: linear-gradient(to bottom, rgba(183, 66, 51, 0) 0%, #b74233 16%, #b74233 84%, rgba(183, 66, 51, 0) 100%);
  box-shadow: 0 0 10px rgba(183, 66, 51, 0.45);
}

.hero__title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(32px, min(4.65vw, 6.9svh), 61px);
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 0 1px rgba(8, 20, 40, 0.95), 0 1px 3px rgba(8, 20, 40, 0.85), 0 2px 12px rgba(8, 20, 40, 0.8), 0 0 26px rgba(8, 20, 40, 0.62), 0 0 46px rgba(8, 20, 40, 0.45);
}

.hero__title-accent {
  color: #e98a7d;
}

.hero__en {
  position: absolute;
  top: calc(70px + clamp(26px, 4vh, 52px));
  right: clamp(30px, 3.6vw, 52px);
  writing-mode: vertical-rl;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 8px rgba(8, 20, 40, 0.7);
}
@media screen and (max-width: 767px) {
  .hero__en {
    display: none;
  }
}

.hero__lead {
  position: absolute;
  left: clamp(28px, 5.5vw, 76px);
  bottom: clamp(40px, 7.5vh, 72px);
  max-width: min(60vw, 600px);
}
@media screen and (max-width: 767px) {
  .hero__lead {
    position: static;
    left: auto;
    bottom: auto;
    max-width: none;
    width: 100%;
    margin: 0;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Outfit", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(8, 20, 40, 0.92), 0 0 14px rgba(8, 20, 40, 0.6);
}
.hero__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #b74233;
  box-shadow: 0 0 6px rgba(183, 66, 51, 0.6);
}
@media screen and (max-width: 767px) {
  .hero__eyebrow {
    display: none;
  }
}

.hero__sub {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 32px;
  text-shadow: 0 0 1px rgba(8, 20, 40, 0.9), 0 1px 4px rgba(8, 20, 40, 0.92), 0 2px 14px rgba(8, 20, 40, 0.72), 0 0 28px rgba(8, 20, 40, 0.5);
}
@media screen and (max-width: 767px) {
  .hero__sub {
    display: none;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .hero__cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
}

.btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    min-height: 60px;
    align-items: flex-start;
    padding: 11px 22px;
  }
}

.btn__small {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.82;
  margin-bottom: 3px;
}
.btn__small i {
  font-size: 16px;
}

.btn__main {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.btn--primary {
  background: #b74233;
  color: #fff;
  box-shadow: 0 8px 22px rgba(183, 66, 51, 0.4), 0 2px 6px rgba(0, 0, 0, 0.18);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(183, 66, 51, 0.5), 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn--secondary {
  background: rgba(16, 37, 68, 0.42);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
@media screen and (max-width: 767px) {
  .btn--secondary {
    background: rgba(16, 37, 68, 0.55);
  }
}
.btn--secondary:hover {
  transform: translateY(-3px);
  background: #102544;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.hero__sp-en {
  position: absolute;
  top: calc(60px + 16px);
  left: calc(min(100%, 390px) * 0.565);
  writing-mode: vertical-rl;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 6px rgba(8, 20, 40, 0.55);
}

.hero__sp-vertical {
  position: absolute;
  top: calc(60px + 6.5svh);
  left: calc(min(100%, 390px) * 0.79);
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: flex-start;
}

.hero__sp-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(24px, 5.2svh, 40px);
  width: 2.96em;
  line-height: 1.48;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(8, 20, 40, 0.65), 0 2px 10px rgba(8, 20, 40, 0.5), 0 0 24px rgba(8, 20, 40, 0.35);
}

.hero__sp-sub {
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 18px;
  text-shadow: 0 0 1px rgba(8, 20, 40, 0.98), 0 1px 4px rgba(8, 20, 40, 0.99), 0 2px 12px rgba(8, 20, 40, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide-img {
    animation: none !important;
  }
  .hero__slide--01 {
    opacity: 1;
  }
  .hero__slide--02,
  .hero__slide--03 {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero__slide,
  .hero__slide-img {
    will-change: auto;
  }
  .hero {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
  .hero__glow {
    filter: none;
  }
  .btn--secondary {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@keyframes heroFade {
  0% {
    opacity: 0;
  }
  3.33% {
    opacity: 1;
  }
  36.66% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  36.66% {
    transform: scale(1.045);
  }
  100% {
    transform: scale(1.045);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes supplementFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  3.33% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  33.33% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.info-blocks {
  position: relative;
  background: #faf8f5;
  padding: 36px 0 44px;
}
.info-blocks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0ddd7, transparent);
}
@media screen and (min-width: 768px) {
  .info-blocks {
    padding: 80px 0 96px;
  }
}

.info-blocks__cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta {
    padding: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .info-blocks .c-section-header {
    margin-bottom: 22px;
  }
}

.info-blocks__panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .info-blocks__panel {
    display: none;
  }
}

.info-blocks__card {
  display: block;
  background: #fff;
  border: 1px solid rgba(16, 37, 68, 0.08);
  border-radius: 12px;
  box-shadow: 0 6px 18px -14px rgba(16, 37, 68, 0.22);
  padding: 13px 15px 12px;
  color: #2a2a2a;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.info-blocks__card:hover, .info-blocks__card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -16px rgba(16, 37, 68, 0.22);
  border-color: rgba(16, 37, 68, 0.1);
  outline: none;
}

.info-blocks__card-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 9px;
  padding-bottom: 9px;
  margin-bottom: 9px;
  border-bottom: 1px solid rgba(16, 37, 68, 0.06);
}

.info-blocks__card-icon {
  font-size: 13px;
  color: #102544;
  opacity: 0.7;
  transform: translateY(1px);
}

.info-blocks__card-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #102544;
}

.info-blocks__card-desc {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #6b6b6b;
}

.info-blocks__card-list {
  list-style: none;
}

.info-blocks__card-item + .info-blocks__card-item {
  margin-top: 10px;
}

.info-blocks__card-date {
  display: block;
  margin-bottom: 3px;
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #9a958d;
}

.info-blocks__card-titlerow {
  display: flex;
  align-items: center;
  gap: 7px;
}

.info-blocks__card-title {
  flex: 1;
  min-width: 0;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.45;
  color: #2a2a2a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-blocks__card-item--lead .info-blocks__card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #102544;
}

.info-blocks__flag {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 6px 3px;
  font-family: "Outfit", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #fff;
  background: #b74233;
  border-radius: 3px;
  z-index: 0;
}
.info-blocks__flag::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: #b74233;
  z-index: -1;
  animation: info-badge-pulse 2.4s ease-out infinite;
}

@keyframes info-badge-pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.info-blocks__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.info-blocks__card-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #102544;
  background: rgba(16, 37, 68, 0.04);
  border: 1px solid rgba(16, 37, 68, 0.1);
  border-radius: 7px;
}

.info-blocks__card-tag--lead {
  color: #fff;
  background: #102544;
  border-color: #102544;
}

.info-blocks__card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #b74233;
}

.info-blocks__arrow {
  font-family: "Outfit", sans-serif;
  transition: transform 0.3s ease;
}
.info-blocks__card:hover .info-blocks__arrow, .info-blocks__card:focus-visible .info-blocks__arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .info-blocks__flag::after {
    animation: none;
  }
  .info-blocks__arrow,
  .info-blocks__card {
    transition: none;
  }
}
.info-blocks__cta-cards {
  display: none;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.info-blocks__cta-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #2a2a2a;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-blocks__cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.info-blocks__cta-card-header {
  position: relative;
  padding: 24px 24px 20px;
  background: #102544;
  color: #fff;
}

.info-blocks__cta-card-icon {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.info-blocks__cta-card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.info-blocks__cta-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.info-blocks__cta-list {
  list-style: none;
  margin: 0;
  padding: 20px 24px 0;
  flex: 1;
}

.info-blocks__cta-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0ede8;
  line-height: 1.5;
}
.info-blocks__cta-item:last-child {
  border-bottom: none;
}

.info-blocks__cta-item-date {
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.5px;
  min-width: 80px;
}

.info-blocks__cta-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.info-blocks__cta-more {
  display: block;
  padding: 16px 24px 24px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b74233;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.info-blocks__cta-card:hover .info-blocks__cta-more {
  color: rgb(143.1153846154, 51.6153846154, 39.8846153846);
}

.info-blocks__cta-scene {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
.info-blocks__cta-scene:last-child {
  border-bottom: none;
}

.info-blocks__cta-scene-icon {
  color: #102544;
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.info-blocks__cta-scene-text {
  font-size: 14px;
  color: #222222;
}

.info-blocks__cta-note {
  margin-top: 16px;
  padding: 0 24px;
  font-size: 12px;
  color: #555555;
  line-height: 1.6;
}

.topic {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}
.topic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0ddd7, transparent);
}
.topic::after {
  content: "TOPICS";
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: "Outfit", sans-serif;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #102544;
  opacity: 0.025;
  pointer-events: none;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .topic::after {
    font-size: 160px;
    top: 60px;
    letter-spacing: -4px;
  }
}
@media screen and (min-width: 768px) {
  .topic {
    padding: 80px 0 100px;
  }
}

.topic__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .topic__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
  }
}

.topic__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topic__nav-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid #e0ddd7;
  border-radius: 50%;
  background: #fff;
  color: #102544;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.topic__nav-btn:hover {
  background: #102544;
  border-color: #102544;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .topic__nav-btn {
    width: 48px;
    height: 48px;
  }
}

.topic__slider {
  position: relative;
  width: 100%;
}

.topic__track-wrapper {
  overflow: hidden;
  padding: 8px 0 24px;
}

.topic__track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 20px;
  padding-right: 20px;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .topic__track {
    gap: 24px;
    padding-left: max(24px, (100vw - 1100px) / 2 + 24px);
    padding-right: 24px;
  }
}

.topic__card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #2a2a2a;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.topic__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .topic__card {
    flex: 0 0 340px;
  }
}

.topic__card-visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.topic__card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.topic__card:hover .topic__card-image {
  transform: scale(1.05);
}

.topic__card-label {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.topic__card-label--recruiting {
  background: rgba(58, 138, 79, 0.88);
  color: #fff;
}

.topic__card-label--report {
  background: rgba(58, 77, 108, 0.88);
  color: #fff;
}

.topic__card-label--instagram {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.88), rgba(253, 29, 29, 0.88), rgba(252, 176, 69, 0.88));
  color: #fff;
}

.topic__card-play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #b74233;
  backdrop-filter: blur(4px);
}

.topic__card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .topic__card-body {
    padding: 20px 22px 24px;
  }
}

.topic__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #6b6b6b;
}

.topic__card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e0ddd7;
}

.topic__card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .topic__card-title {
    font-size: 17px;
  }
}

.topic__card-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: #6b6b6b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.topic__card-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b74233;
  letter-spacing: 0.5px;
}
.topic__card-arrow i {
  font-size: 10px;
  transition: transform 0.3s;
}
.topic__card:hover .topic__card-arrow i {
  transform: translateX(4px);
}

.topic__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.topic__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0ddd7;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.topic__dot--active {
  background: #102544;
  width: 28px;
  border-radius: 4px;
}

.topic__progress {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 24px;
  height: 2px;
  position: relative;
}

.gateway {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gateway__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gateway__bg-image {
  position: absolute;
  inset: 0;
  background: url("../img/gateway-sp-2.jpg") center center/cover no-repeat;
  background-image: -webkit-image-set(url("../img/gateway-sp-2.webp") type("image/webp"), url("../img/gateway-sp-2.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/gateway-sp-2.webp") type("image/webp"), url("../img/gateway-sp-2.jpg") type("image/jpeg"));
}
@media screen and (min-width: 768px) {
  .gateway__bg-image {
    inset: -10%;
    background-image: url("../img/qa-pic.jpg");
    background-image: -webkit-image-set(url("../img/qa-pic.webp") type("image/webp"), url("../img/qa-pic.jpg") type("image/jpeg"));
    background-image: image-set(url("../img/qa-pic.webp") type("image/webp"), url("../img/qa-pic.jpg") type("image/jpeg"));
    background-position: center 40%;
    transform: scale(0.85);
  }
}

.gateway__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 51, 0.95) 0%, rgba(10, 26, 51, 0.93) 22%, rgba(10, 26, 51, 0.45) 36%, rgba(10, 26, 51, 0.12) 50%, rgba(10, 26, 51, 0.3) 75%, rgba(10, 26, 51, 0.45) 100%);
}
@media screen and (min-width: 768px) {
  .gateway__bg-overlay {
    background: linear-gradient(180deg, rgba(10, 26, 51, 0.75) 0%, rgba(10, 26, 51, 0.55) 40%, rgba(10, 26, 51, 0.85) 75%, rgba(10, 26, 51, 0.97) 100%);
  }
}

.gateway__bg-noise {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-5%, -5%);
  }
  40% {
    transform: translate(3%, -3%);
  }
  60% {
    transform: translate(-3%, 5%);
  }
  80% {
    transform: translate(5%, 2%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.gateway__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, transparent 25%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.gateway__beam {
  position: absolute;
  top: -30%;
  right: 12%;
  width: 300px;
  height: 160%;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.05) 0%, rgba(201, 169, 110, 0.02) 40%, transparent 70%);
  transform: rotate(-12deg);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: beamPulse 8s ease-in-out infinite;
}

.gateway__beam-2 {
  position: absolute;
  top: -20%;
  right: 35%;
  width: 200px;
  height: 140%;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
  transform: rotate(-6deg);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: beamPulse 12s ease-in-out infinite reverse;
}

@keyframes beamPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.gateway__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gateway__particles::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow: 120px 750px 0 1px rgba(201, 169, 110, 0.35), 45px 920px 0 1px rgba(201, 169, 110, 0.22), 200px 1100px 0 2px rgba(201, 169, 110, 0.18), 80px 680px 0 1px rgba(232, 213, 168, 0.28), 170px 1250px 0 2px rgba(201, 169, 110, 0.14), 380px 600px 0 1px rgba(232, 213, 168, 0.3), 450px 850px 0 2px rgba(201, 169, 110, 0.16), 520px 1050px 0 1px rgba(201, 169, 110, 0.25), 340px 1300px 0 1px rgba(232, 213, 168, 0.2), 600px 700px 0 2px rgba(201, 169, 110, 0.14), 750px 950px 0 1px rgba(201, 169, 110, 0.28), 820px 1150px 0 2px rgba(232, 213, 168, 0.18), 900px 620px 0 1px rgba(201, 169, 110, 0.22), 680px 1200px 0 1px rgba(232, 213, 168, 0.16), 1000px 800px 0 2px rgba(201, 169, 110, 0.12), 1100px 1000px 0 1px rgba(201, 169, 110, 0.2), 260px 1150px 0 2px rgba(232, 213, 168, 0.16), 550px 750px 0 1px rgba(201, 169, 110, 0.25), 30px 900px 0 1px rgba(232, 213, 168, 0.18), 1200px 1100px 0 2px rgba(201, 169, 110, 0.12);
  animation: particleDrift1 18s linear infinite;
}

.gateway__particles::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow: 300px 820px 0 2px rgba(201, 169, 110, 0.24), 150px 1080px 0 3px rgba(232, 213, 168, 0.1), 500px 680px 0 2px rgba(201, 169, 110, 0.2), 700px 1240px 0 3px rgba(232, 213, 168, 0.08), 950px 750px 0 2px rgba(201, 169, 110, 0.18), 100px 980px 0 3px rgba(232, 213, 168, 0.07), 850px 1120px 0 2px rgba(201, 169, 110, 0.16), 420px 650px 0 3px rgba(232, 213, 168, 0.1), 1050px 900px 0 2px rgba(201, 169, 110, 0.14), 620px 1300px 0 3px rgba(232, 213, 168, 0.08);
  animation: particleDrift2 24s linear infinite;
}

@keyframes particleDrift1 {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: translateY(-1300px);
    opacity: 0;
  }
}
@keyframes particleDrift2 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: translate(15px, -1300px);
    opacity: 0;
  }
}
.gateway__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gateway__glow::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 0;
  left: 0;
  filter: blur(4px);
  box-shadow: 200px 120px 0 3px rgba(201, 169, 110, 0.08), 600px 320px 0 4px rgba(201, 169, 110, 0.06), 900px 160px 0 5px rgba(232, 213, 168, 0.05), 350px 550px 0 4px rgba(201, 169, 110, 0.07), 1050px 400px 0 3px rgba(232, 213, 168, 0.05), 100px 680px 0 5px rgba(201, 169, 110, 0.06), 750px 780px 0 4px rgba(232, 213, 168, 0.04);
  animation: glowDrift 24s ease-in-out infinite;
}

.gateway__glow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 0;
  left: 0;
  filter: blur(6px);
  box-shadow: 450px 200px 0 5px rgba(201, 169, 110, 0.05), 150px 500px 0 6px rgba(232, 213, 168, 0.04), 800px 600px 0 7px rgba(201, 169, 110, 0.04), 500px 800px 0 5px rgba(232, 213, 168, 0.03);
  animation: glowDrift 30s ease-in-out infinite reverse;
}

@keyframes glowDrift {
  0% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(-10px, -40px);
    opacity: 0.6;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(5px, -20px);
    opacity: 0.5;
  }
}
.gateway__shooting-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gateway__star {
  position: absolute;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), rgba(201, 169, 110, 0));
  opacity: 0;
}

.gateway__star--1 {
  top: 12%;
  right: 5%;
  transform: rotate(165deg);
  transform-origin: right center;
  animation: gatewayShoot1 12s cubic-bezier(0.2, 0.8, 0.3, 1) 2s infinite;
}

.gateway__star--2 {
  top: 30%;
  left: 8%;
  transform: rotate(22deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), rgba(201, 169, 110, 0));
  animation: gatewayShoot2 18s cubic-bezier(0.2, 0.8, 0.3, 1) 6s infinite;
}

.gateway__star--3 {
  top: 50%;
  right: 10%;
  height: 0.5px;
  transform: rotate(172deg);
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(232, 213, 168, 0.45), rgba(232, 213, 168, 0));
  animation: gatewayShoot3 15s cubic-bezier(0.2, 0.8, 0.3, 1) 9s infinite;
}

.gateway__star--4 {
  top: 22%;
  left: 20%;
  transform: rotate(18deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(183, 66, 51, 0.3), rgba(201, 169, 110, 0.4), rgba(201, 169, 110, 0));
  animation: gatewayShoot4 22s cubic-bezier(0.2, 0.8, 0.3, 1) 0s infinite;
}

.gateway__star--5 {
  top: 65%;
  right: 15%;
  height: 0.5px;
  transform: rotate(158deg);
  transform-origin: right center;
  animation: gatewayShoot5 20s cubic-bezier(0.2, 0.8, 0.3, 1) 12s infinite;
}

@keyframes gatewayShoot1 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(165deg) translateX(0);
  }
  2% {
    opacity: 0.9;
  }
  4% {
    width: 120px;
  }
  6% {
    width: 0;
    opacity: 0;
    transform: rotate(165deg) translateX(-300px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes gatewayShoot2 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(22deg) translateX(0);
  }
  1.5% {
    opacity: 0.7;
  }
  3% {
    width: 90px;
  }
  4.5% {
    width: 0;
    opacity: 0;
    transform: rotate(22deg) translateX(260px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes gatewayShoot3 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(172deg) translateX(0);
  }
  2% {
    opacity: 0.6;
  }
  3.5% {
    width: 160px;
  }
  5.5% {
    width: 0;
    opacity: 0;
    transform: rotate(172deg) translateX(-380px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes gatewayShoot4 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(18deg) translateX(0);
  }
  1% {
    opacity: 0.8;
  }
  2% {
    width: 65px;
  }
  2.8% {
    width: 0;
    opacity: 0;
    transform: rotate(18deg) translateX(200px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes gatewayShoot5 {
  0% {
    width: 0;
    opacity: 0;
    transform: rotate(158deg) translateX(0);
  }
  1.5% {
    opacity: 0.5;
  }
  3% {
    width: 190px;
  }
  5% {
    width: 0;
    opacity: 0;
    transform: rotate(158deg) translateX(-420px);
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
.gateway__accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #c9a96e);
  opacity: 0.4;
  z-index: 2;
  display: none;
}
@media screen and (min-width: 768px) {
  .gateway__accent-line {
    display: block;
  }
}

.gateway__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 100px 20px 40px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .gateway__content {
    justify-content: center;
    padding: 120px 24px 60px;
  }
}

.gateway__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d5a8;
  margin-bottom: 28px;
  opacity: 0;
  animation: gatewayFadeUp 0.8s 0.2s forwards;
}
.gateway__eyebrow::before, .gateway__eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #c9a96e;
  opacity: 0.5;
}

.gateway__headline {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(201, 169, 110, 0.15), 0 0 80px rgba(201, 169, 110, 0.05);
  opacity: 0;
  animation: gatewayFadeUp 0.8s 0.4s forwards;
}
@media screen and (min-width: 768px) {
  .gateway__headline {
    font-size: 52px;
    letter-spacing: 3px;
  }
}

.gateway__headline-accent {
  color: #e8d5a8;
}

.gateway__lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(10, 26, 51, 0.6);
  max-width: 540px;
  margin-bottom: 36px;
  opacity: 0;
  animation: gatewayFadeUp 0.8s 0.6s forwards;
}
@media screen and (min-width: 768px) {
  .gateway__lead {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: none;
  }
}

.gateway__gates {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 480px;
  gap: 10px;
  opacity: 0;
  animation: gatewayFadeUp 0.8s 0.8s forwards;
}
@media screen and (min-width: 768px) {
  .gateway__gates {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    gap: 16px;
    padding: 0 24px 80px;
  }
}

.gateway__gate {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  background: rgba(10, 26, 51, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}
.gateway__gate::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gateway__gate:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}
.gateway__gate:hover::before {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .gateway__gate {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 36px 20px 32px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.gateway__gate-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(201, 169, 110, 0.05);
  flex-shrink: 0;
}
.gateway__gate:hover .gateway__gate-icon {
  transform: scale(1.1);
  color: #e8d5a8;
}
@media screen and (min-width: 768px) {
  .gateway__gate-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin-bottom: 20px;
    border-radius: 14px;
  }
}

.gateway__gate-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .gateway__gate-title {
    font-size: 15px;
    margin-bottom: 8px;
    text-align: center;
  }
}

.gateway__gate-desc {
  display: none;
}
@media screen and (min-width: 768px) {
  .gateway__gate-desc {
    display: block;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.3px;
  }
}

.gateway__gate-arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .gateway__gate-arrow {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #c9a96e;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gateway__gate-arrow i {
    font-size: 9px;
  }
  .gateway__gate:hover .gateway__gate-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}

.gateway__stats {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #0a1a33;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gateway__stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .gateway__stats-inner {
    padding: 32px 24px;
    gap: 48px;
    flex-wrap: nowrap;
  }
}

.gateway__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.gateway__stat--word .gateway__stat-number {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .gateway__stat--word .gateway__stat-number {
    font-size: 18px;
  }
}

.gateway__stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #e8d5a8;
  letter-spacing: -0.5px;
}
.gateway__stat-number small {
  font-size: 14px;
  font-weight: 400;
  margin-left: 2px;
}
@media screen and (min-width: 768px) {
  .gateway__stat-number {
    font-size: 28px;
  }
}

.gateway__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.gateway__stats-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes gatewayFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.3);
    transform-origin: top;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gateway__bg-noise {
    animation: none;
  }
  .gateway__beam,
  .gateway__beam-2 {
    animation: none;
    opacity: 0.6;
  }
  .gateway__particles::before,
  .gateway__particles::after {
    animation: none;
  }
  .gateway__glow::before,
  .gateway__glow::after {
    animation: none;
  }
  .gateway__star {
    animation: none;
  }
  .gateway__eyebrow,
  .gateway__headline,
  .gateway__lead,
  .gateway__gates {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .gateway__bg-noise {
    animation: none;
  }
  .gateway__beam,
  .gateway__beam-2 {
    animation: none;
  }
  .gateway__glow,
  .gateway__shooting-stars {
    display: none;
  }
  .gateway__gate {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .gateway {
    content-visibility: auto;
    contain-intrinsic-size: auto 880px;
  }
}
.sch-hero {
  background: #102544;
  padding: 100px 0 48px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .sch-hero {
    padding: 110px 0 56px;
    margin-top: 70px;
  }
}

.sch-hero__inner {
  text-align: center;
}

.sch-hero__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.sch-hero__title {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.sch-hero__lead {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto;
}

.sch-hero + .breadcrumb {
  margin-top: 0;
}

.sch__year-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sch__year-label {
  font-size: 14px;
  font-weight: 600;
  color: #102544;
}

.sch__year-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sch__year-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s;
}
.sch__year-btn:hover {
  border-color: #102544;
  color: #102544;
}
.sch__year-btn.is-active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}

.sch__month-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.sch__month-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s;
}
.sch__month-btn:hover {
  border-color: #102544;
  color: #102544;
}
.sch__month-btn.is-active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}

.sch__legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: #faf8f5;
  border-radius: 8px;
  font-size: 12px;
  color: #555555;
}

.sch__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sch__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
}

.sch__badge--taikai {
  background: rgba(16, 37, 68, 0.08);
  color: #102544;
}

.sch__badge--shinsa {
  background: rgba(183, 66, 51, 0.08);
  color: #b74233;
}

.sch__badge--koushu {
  background: rgba(201, 169, 110, 0.12);
  color: #8a6d2b;
}

.sch__badge--kaigi {
  background: rgba(107, 74, 124, 0.1);
  color: #6b4a7c;
}

.sch__badge--taiken {
  background: rgba(74, 124, 89, 0.1);
  color: #4a7c59;
}

.sch__year[hidden] {
  display: none !important;
}

.sch__month {
  margin-bottom: 40px;
  scroll-margin-top: 20px;
}
.sch__month:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 783px) {
  .admin-bar .sch__month {
    scroll-margin-top: 52px;
  }
}
.sch__month-title {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #102544;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .sch__month-title {
    font-size: 20px;
  }
}

.sch__month-num {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .sch__month-num {
    font-size: 32px;
  }
}

.sch__table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sch__scroll-hint {
  display: none;
}
@media screen and (max-width: 767px) {
  .sch__scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
    color: #555555;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .sch__scroll-hint-icon {
    display: inline-block;
    animation: scrollHintSwipe 2.5s ease-in-out infinite;
  }
}

@keyframes scrollHintSwipe {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}
.sch__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.sch__table thead {
  background: #faf8f5;
}
.sch__table th {
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #555555;
  text-align: left;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e5e5e5;
}
.sch__table td {
  padding: 14px;
  color: #222222;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  vertical-align: middle;
  line-height: 1.6;
}
.sch__table tbody tr {
  transition: background 0.2s;
}
.sch__table tbody tr:hover {
  background: rgba(16, 37, 68, 0.015);
}
.sch__table tbody tr:last-child td {
  border-bottom: none;
}

.sch__th-date {
  width: 130px;
}

.sch__th-cat {
  width: 60px;
}

.sch__th-name {
  /* flex */
}

.sch__th-place {
  width: 160px;
}

.sch__empty {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: #555555;
  background: #faf8f5;
  border-radius: 10px;
}

.sch__placeholder {
  padding: 60px 24px;
  text-align: center;
  font-size: 15px;
  color: #555555;
  background: #faf8f5;
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .sch__table {
    font-size: 13px;
  }
  .sch__th-place {
    width: 100px;
  }
  .sch__th-date {
    width: 100px;
  }
}
.members-section {
  background: #fff;
}

.members-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.members-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #102544;
}
@media screen and (min-width: 768px) {
  .members-section__header {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }
}

.members-section__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #102544;
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .members-section__icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

.members-section__title {
  font-size: 20px;
  font-weight: 700;
  color: #102544;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .members-section__title {
    font-size: 22px;
  }
}

.members-section__sub {
  font-size: 12px;
  color: #555555;
  margin-top: 2px;
  letter-spacing: 0.3px;
}
@media screen and (min-width: 768px) {
  .members-section__sub {
    font-size: 13px;
  }
}

.members-section__note {
  margin-top: 32px;
  padding: 14px 18px;
  background: #faf8f5;
  border-radius: 8px;
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
}
.members-section__note i {
  color: #102544;
  margin-right: 6px;
}
@media screen and (min-width: 768px) {
  .members-section__note {
    font-size: 14px;
  }
}

.members-dl {
  margin-bottom: 28px;
}
.members-dl:last-of-type {
  margin-bottom: 0;
}

.members-dl__category {
  font-size: 14px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.members-dl__category i {
  font-size: 13px;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .members-dl__category {
    font-size: 15px;
  }
}

.members-dl__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.members-dl__item {
  border-bottom: 1px solid #e5e5e5;
}
.members-dl__item:first-child {
  border-top: 1px solid #e5e5e5;
}

.members-dl__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  text-decoration: none;
  color: #222222;
  transition: background-color 0.3s;
}
.members-dl__link:hover {
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .members-dl__link {
    padding: 18px 16px;
  }
}

.members-dl__file-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffebee;
  color: #c62828;
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0;
}

.members-dl__file-icon--link {
  background: #e3f2fd;
  color: #1976d2;
}

.members-dl__file-icon--format {
  background: #e8f5e9;
  color: #2e7d32;
}

.members-dl__info {
  flex: 1;
  min-width: 0;
}

.members-dl__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .members-dl__name {
    font-size: 15px;
  }
}

.members-dl__meta {
  display: block;
  font-size: 11px;
  color: #555555;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .members-dl__meta {
    font-size: 12px;
  }
}

.members-dl__action {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.members-dl__link:hover .members-dl__action {
  color: #102544;
}

.members-back {
  padding: 32px 16px;
  text-align: center;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .members-back {
    padding: 40px 24px;
  }
}

.members-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #102544;
  transition: opacity 0.3s;
}
.members-back__link:hover {
  opacity: 0.7;
}
.members-back__link i {
  font-size: 12px;
}
