@font-face {
  font-family: "A1 Gothic Std";
  src: url("../fonts/AP-OTF-A1GothicStd-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "A1 Gothic Std";
  src: url("../fonts/AP-OTF-A1GothicStd-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "A1 Gothic Std";
  src: url("../fonts/AP-OTF-A1GothicStd-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "A1 Gothic Std";
  src: url("../fonts/AP-OTF-A1GothicStd-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --page-width: 500px;
  --bg: #ffffff;
  --side-bg: #e6e6e6;
  --ink: #333333;
  --accent: #EB6106;
  --space: 20px;
  --font-serif: "A1 Gothic Std", "Inter", sans-serif;
  --font-sans: "A1 Gothic Std", "Inter", sans-serif;
  --font-sans-display: "Inter", "A1 Gothic Std", sans-serif;
  --fs-display: 40px;
  --fs-xxl: 32px;
  --fs-xl: 36px;
  --fs-lg: 24px;
  --fs-md: 22px;
  --fs-base-lg: 20px;
  --fs-base-md: 18px;
  --fs-body: 16px;
  --fs-body-sm-plus: 15px;
  --fs-body-sm: 14px;
  --fs-body-xs: 13px;
  --fs-body-xxs: 12px;
}

* { box-sizing: border-box; }

html {
  background: var(--side-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  max-width: var(--page-width);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-serif);
  padding-top: 64px;
}

.page {
  margin-top: -64px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--page-width);
  height: 64px;
  z-index: 50;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space);
}

.site-header__brand {
  margin: 0;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-md);
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.site-header__menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
  transform-origin: center;
}

.site-header__menu-icon--open {
  flex-direction: column;
  gap: 6px;
  transform: scale(1) rotate(0deg);
}

.site-header__menu-icon--close {
  position: absolute;
  inset: 0;
  display: inline-flex;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
}

.site-header__menu[aria-expanded="true"] .site-header__menu-icon--open {
  opacity: 0;
  transform: scale(0.7) rotate(90deg);
}

.site-header__menu[aria-expanded="true"] .site-header__menu-icon--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.site-menu {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: var(--page-width);
  height: 100vh;
  padding: 96px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  background: var(--light-yellow, #FEEAAF);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-50%) translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.site-menu__text {
  display: inline-flex;
  align-items: center;
}

.site-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #333333;
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-base-md);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.02em;
}

.site-menu__link:last-child {
  border-bottom: none;
}

.site-menu__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #2f2b23;
}

.menu-is-open .site-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.menu-is-open .site-header {
  background: transparent;
}

.menu-is-open .floating-cta {
  opacity: 0;
  pointer-events: none;
}


.floating-cta {
  position: fixed;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.02em;
}

.floating-cta--line {
  left: max(0px, calc(50% - var(--page-width) / 2));
  bottom: 5%;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
  border-radius: 0 10px 10px 0;
  background: var(--orage, #eb6106);
}

.floating-cta__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.floating-cta__icon--arrow {
  background: #fff;
  border-radius: 999px;
}

.floating-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transform: translateY(2px);
}

.floating-cta__label-line {
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.floating-cta__label-text {
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-base-md);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.floating-cta--consult {
  left: auto;
  right: clamp(0px, calc(50% - var(--page-width) / 2), 9999px);
  top:15%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 10px 10px 10px;
  border-radius: 10px 0 0 10px;
  background: var(--light-yellow, #feeAAF);
}

.floating-cta__icon--consult {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.floating-cta__text--vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  align-self: center;
  color: var(--orage, #eb6106);
  font-family: var(--font-sans);
  font-size: var(--fs-base-md);
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.fv {
  min-height: 600px;
  max-height: 900px;
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
}

.fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 900px;
}

.fv__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  z-index: 0;
}

.fv__image {
  position: absolute;
  inset: 0;
  width: 94%;
  height: 94%;
  object-fit: fill;
  display: block;
  opacity: 0;
  animation: fvFade 15s infinite;
}

.fv__image--1 { animation-delay: 0s; }
.fv__image--2 { animation-delay: 5s; }
.fv__image--3 { animation-delay: 10s; }

@keyframes fvFade {
  0% { opacity: 0; }
  11.11% { opacity: 1; }
  33.33% { opacity: 1; }
  44.44% { opacity: 0; }
  100% { opacity: 0; }
}

.fv__copy {
  position: relative;
  display: block;
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-top: -10%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about {
  padding: 48px var(--space) 48px;
  text-align: center;
}

.about__heading {
  margin-bottom: 16px;
}

.about__title-en {
  margin: 0;
  color: var(--black, #333);
  text-align: center;
  font-family: Inter, var(--font-sans);
  font-size: var(--fs-display);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.08em;
}

.about__title-ja {
  margin: 6px 0 0;
  color: var(--orage, #EB6106);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.about__photo {
  display: block;
  width: calc(100% + var(--space) * 2);
  height: auto;
  margin: 12px calc(var(--space) * -1) 18px;
}

.about__motto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 4px 0 16px;
}

.about__motto-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.about__motto-text {
  margin: 0;
  color: var(--orage, #EB6106);
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  text-align: left;
}

@media (max-width: 400px) {
  .about__motto-text {
    font-size: var(--fs-base-md);
  }
}

.about__text {
  margin: 0 auto 80px;
  text-align: left;
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.about__organizer {
  position: relative;
  text-align: center;
}

.about__organizer-label {
  margin: 0 0 12px;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.about__organizer-figure {
  width: 220px;
  margin: 0 auto 12px;
}

.about__organizer-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 12px;
}

.about__organizer-name {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  width: 100%;
  text-align: center;
}

.about__organizer-name-icon {
  position: absolute;
  left: calc(var(--space) * -1);
  display: block;
  width: 40%;
}

.about__organizer-name-text {
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-body-xs);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.about__organizer-name-text strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.about__organizer-note {
  margin: 0;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.about__card {
  margin: 24px auto 0;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1.5px solid var(--black, #333);
  background: var(--light-yellow, #FEEAAF);
  text-align: center;
}

.about__card-title {
  margin: 0 0 16px;
  color: var(--orage, #EB6106);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.about__card-text {
  margin: 0;
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.features {
  padding: 56px var(--space) 40px;
  text-align: center;
}

.features__heading {
  margin-bottom: 36px;
}

.features__title {
  margin: 0;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.features__title-em {
  color: var(--orage, #EB6106);
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0 2px;
}

.features__title-em-small {
  color: var(--orage, #EB6106);
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.features__lead {
  margin: 16px 0 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.9;
}

.feature {
  margin: 0 0 24px;
}

.feature--left,
.feature--right {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature--right {
  flex-direction: row-reverse;
}

.feature__label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.feature__label--left {
  justify-content: flex-start;
}

.feature__label--right {
  justify-content: flex-end;
}

.feature__number {
  color: var(--orage, #EB6106);
  text-align: center;
  font-family: Inter, var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.feature__label-text {
  color: var(--black, #333);
  text-align: center;
  font-feature-settings: "vert" on;
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.feature__card {
  flex: 1 1 auto;
  border: 2px solid #333;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  text-align: left;
}

.feature__image {
  display: block;
  width: 100%;
  height: auto;
}

.feature__body {
  padding: 16px 18px 22px;
}

.feature__list {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.feature__note {
  margin: 0;
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.floating-cta--consult,
.cta__button--consult {
  display: none !important; /* Temporary: hide consultation CTAs */
}

.features__closing {
  margin: 56px 0 0;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.cta {
  padding: 20px var(--space) 20px;
  text-align: center;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

.cta__button--consult {
  background: var(--light-yellow, #FEEAAF);
  color: var(--orage, #EB6106);
}

.cta__button--line {
  background: var(--orage, #EB6106);
  color: #fff;
}

.cta__text {
  color: var(--orage, #EB6106);
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.cta__text-em {
  font-weight: 600;
}

.cta__button--line .cta__text {
  color: #fff;
}

.cta__icon,
.cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.cta__arrow {
  border-radius: 999px;
  background: #fff;
}

.cta__button--line .cta__arrow {
  background: #fff;
}

.cta__button--consult .cta__arrow {
  background: var(--orage, #EB6106);
}

.events {
  padding: 56px var(--space) 4px;
  position: relative;
}

.events__heading {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 18px;
}

.events__title {
  position: relative;
  margin: 0;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.events__plane {
  position: absolute;
  width: calc(100% + var(--space) * 2);
  height: auto;
  margin-left: calc(var(--space) * -1);
  margin-right: calc(var(--space) * -1);
  top: 0;
  display: block;
}

.events__motif {
  width: 100%;
  height: 32px;
  margin: 0 0 8px;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.events__item {
  position: relative;
}

.events__image {
  display: block;
  width: calc(100% + var(--space) * 2);
  height: auto;
  margin-left: calc(var(--space) * -1);
  margin-right: calc(var(--space) * -1);
  border-radius: 4px;
}

.events__label {
  position: absolute;
  left: -19px;
  bottom: -41px;
  margin: 0;
  padding: 10px 16px;
  border: none;
  border-right: 1.5px solid var(--black, #333);
  border-bottom: 1.5px solid var(--black, #333);
  background: #fff;
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.schedule {
  padding: 56px var(--space) 20px;
}

.schedule__card {
  background: var(--light-yellow, #FEEAAF);
  border-radius: 16px;
  padding: 32px 24px 20px;
  margin-bottom: 20px;
}

.schedule__card--summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.schedule__title {
  margin: 0 0 12px;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.schedule__title--accent {
  color: var(--orage, #EB6106);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.schedule__summary {
  margin: 0;
  color: var(--black, #333);
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.schedule__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.schedule__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #333;
}

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

.schedule__pin {
  width: 24px;
  height: 24px;
}

.schedule__place {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.schedule__place-name {
  display: inline-flex;
  align-items: center;
  transform: translateY(3px);
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-base-md);
  font-weight: 500;
}

.schedule__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  border-radius: 50px;
  border: 1px solid var(--orage, #EB6106);
  background: var(--white, #FFF);
  color: var(--orage, #EB6106);
  font-family: var(--font-sans);
  font-size: var(--fs-body-xxs);
  font-weight: 500;
  white-space: nowrap;
}

.schedule__date {
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.schedule__date--hidden {
  display: none;
}

.schedule.is-expanded .schedule__date--hidden {
  display: block;
}

.schedule__dow {
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.schedule__more {
  position: relative;
  overflow: hidden;
  display: block;
  width: calc(100% + var(--space) * 2 + 48px);
  margin: 0 calc((var(--space) * -1) - 24px) -20px;
  padding: 44px 0 20px;
  color: #fff;
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-base-md);
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
}

.schedule__more-wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}

.schedule__more-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.schedule__more-wave-svg--narrow {
  display: none;
}

@media (max-width: 480px) {
  .schedule__more {
    padding-top: 45px;
    padding-bottom: 15px;
  }

  .schedule__more-wave-svg--wide {
    display: none;
  }

  .schedule__more-wave-svg--narrow {
    display: block;
  }
}

.schedule__more-text {
  position: relative;
  z-index: 1;
}

.schedule__more-panel {
  max-height: 0;
  overflow: hidden;
  border-top: 1.5px solid #333;
  transition: max-height 0.4s ease;
}

.schedule__more-panel.is-open {
  max-height: 800px;
}

.schedule__more-panel-inner {
  padding-top: 16px;
}

.voices {
  padding: 20px var(--space) 80px;
  text-align: center;
}

.voices__lead {
  margin: 0 0 80px;
  color: var(--black, #333);
  font-family: var(--font-sans);
  font-size: var(--fs-base-lg);
  font-weight: 500;
  line-height: 1.8;
}

.voices__heading {
  margin-bottom: 24px;
}

.voices__title-en {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 700;
  border-top: 1.5px solid var(--black, #333);
  border-bottom: 1.5px solid var(--black, #333);
  background: var(--white, #FFF);
  padding: 24px;
  width: calc(100% + var(--space) * 2);
  margin-left: calc(var(--space) * -1);
  margin-right: calc(var(--space) * -1);
  overflow: hidden;
  white-space: nowrap;
}

.voices__title-track {
  display: inline-flex;
  gap: 40px;
  animation: voicesMarquee 18s linear infinite;
  color: var(--black, #333);
  font-family: Inter, var(--font-sans);
  font-size: var(--fs-xxl);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.voices__title-track span {
  display: inline-block;
}

.voices__title-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.voices__title-ja {
  margin: 8px 0 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 600;
}

@keyframes voicesMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.voices__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.voice-card {
  border: 1.5px solid #333;
  border-radius: 12px;
  padding: 20px 18px;
  background: #fff;
}

.voice-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.voice-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #e5e5e5;
  flex: 0 0 auto;
}

.voice-card__name {
  margin: 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm-plus);
  font-weight: 600;
}

.voice-card__age {
  font-size: var(--fs-body-xxs);
  font-weight: 500;
  margin-left: 6px;
}

.voice-card__role {
  margin: 4px 0 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body-xs);
  font-weight: 500;
  line-height: 1.5;
}

.voice-card__body {
  position: relative;
  background: var(--light-yellow, #FEEAAF);
  border-radius: 12px;
  padding: 14px 14px;
  margin: 0 0 12px;
}

.voice-card__body::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  border-width: 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent var(--light-yellow, #FEEAAF);
}

.voice-card__body p {
  margin: 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  line-height: 1.8;
}

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

.voice-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--orage, #EB6106);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-body-xxs);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.voice-card__count {
  margin: 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body-xxs);
  line-height: 1.6;
}

.voices__closing {
  margin: 32px 0 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.process {
  background: #333333;
  color: #fff;
  padding: 64px var(--space) 80px;
}

.process__inner {
  text-align: center;
}

.process__title {
  margin: 0 0 40px;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 600;
}

.process__text {
  margin: 0 auto 40px;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  line-height: 1.9;
  text-align: left;
}

.process__section {
  margin-bottom: 40px;
}

.process__section-title {
  display: inline-block;
  margin: 0 0 40px;
  padding: 10px 24px;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 600;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.process__step {
  text-align: center;
}

.process__step-label {
  margin: 0;
  font-family: var(--font-sans);
  color: #fff;
  text-align: center;
  font-size: var(--fs-body-sm);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.process__step-number {
  margin: 4px 0;
  font-family: var(--font-sans);
  color: #fff;
  text-align: center;
  font-size: var(--fs-xxl);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.process__step-text {
  margin: 0;
  font-family: var(--font-sans);
  color: #fff;
  text-align: center;
  font-size: var(--fs-base-md);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.process__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process__arrow svg {
  display: block;
}

.cta__buttons--dark .cta__button {
  box-shadow: none;
}

.faq {
  padding: 56px var(--space) 40px;
}

.faq__heading {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.faq__title-en {
  margin: 0;
  color: var(--black, #333);
  text-align: center;
  font-family: Inter, var(--font-sans);
  font-size: var(--fs-display);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.faq__title-ja {
  margin: 8px 0 0;
  color: var(--orage, #EB6106);
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.faq__plane {
  position: absolute;
  right: calc(var(--space) * -1);
  top: -38px;
  width: 50%;
  height: auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}

.faq__item[open] .faq__question {
  border-bottom: 1px dashed #c9c9c9;
}

.faq__item:not([open]) .faq__question {
  border-bottom: 1px solid #c9c9c9;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q,
.faq__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1.5px solid var(--orage, #EB6106);
  color: var(--orage, #EB6106);
  font-family: var(--font-sans);
  font-size: var(--fs-body-xs);
  font-weight: 700;
  flex: 0 0 auto;
}

.faq__a {
  border-color: #333;
  color: #333;
}

.faq__question-text {
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm-plus);
  font-weight: 600;
  flex: 1 1 auto;
}

.faq__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--orage, #EB6106);
  border-bottom: 2px solid var(--orage, #EB6106);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__chevron {
  transform: rotate(-135deg);
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  border-bottom: 1px solid #c9c9c9;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq__item[open] .faq__answer {
  opacity: 1;
}

.faq__answer p {
  margin: 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  line-height: 1.8;
}

.footer-cta {
  padding: 56px var(--space) 64px;
  background: #fff url("../images/footer-bg.webp") center / cover no-repeat;
}

.footer-cta__panel {
  border: 2px solid #f1d48a;
  padding: 28px 20px;
  text-align: center;
}

.footer-cta__title {
  margin: 0 0 20px;
  color: var(--black, #333);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.footer-cta__buttons {
  gap: 14px;
}

.site-footer {
  background: var(--orage, #EB6106);
  color: #fff;
  padding: 72px var(--space) 16px;

}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__brand {
  margin: 0;
  color: var(--white, #FFF);
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.site-footer__socials {
  display: flex;
  gap: 14px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.site-footer__icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.site-footer__company {
  margin: 8px 0 0;
  color: var(--white, #FFF);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.site-footer__copy {
  margin: 0;
  color: #CACACA;
  font-family: var(--font-sans);
  font-size: var(--fs-body-xs);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

