:root {
  --color-accent: #d4845a;
  --color-accent-dark: #b86e48;
  --color-accent-light: #e0a07a;
  --color-dark: #2a2a2a;
  --color-dark-deep: #1e1e1e;
  --color-navy: #2a2a2a;
  --color-sand: #f4f1ec;
  --color-sand-light: #f9f7f3;
  --color-sand-dark: #e4ddd0;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-gold: #d4a44c;
  --color-gold-light: #e0b95c;
  --color-teal: #7ea88a;
  --color-purple: #9b8bb8;
  --color-green: #7ea88a;
  --color-pink: #c9a0b0;
  --color-lavender: #b8a8cc;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  line-height: 1.8;
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
.sp-only { display: none; }
.pc-only { display: inline; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
a:hover { opacity: 0.8; }

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-logo {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  background: #ffffff;
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.header-logo-img {
  width: 80px;
  height: auto;
  margin-bottom: 4px;
}

.header-nav-wrapper {
  display: flex;
  justify-content: flex-end;
}

.header-nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-top-links {
  display: flex;
  gap: 22px;
  padding: 10px 28px 8px 0;
  font-size: 12px;
  justify-content: flex-end;
}

.header-top-links a { color: var(--color-dark); font-size: 12px; }

.header-main-nav {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 15px 0 15px 28px;
  border-radius: 0 0 0 14px;
}

.header-main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
  padding: 0 15px;
  position: relative;
}

.header-main-nav a:not(:last-child)::after {
  content: '/';
  position: absolute;
  right: -3px;
  color: #ccc;
  font-weight: 300;
}

.header-main-nav a:hover { opacity: 1; color: var(--color-accent); }
.header-main-nav a.header-reserve { color: white; font-weight: 800; }
.header-main-nav a.header-reserve:hover { color: white; }

.header-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e88060 100%);
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 13px 26px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-left: 14px;
  min-height: 66px;
  border-radius: 6px;
}

.header-reserve::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.header-reserve:hover {
  opacity: 1 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(224, 112, 80, 0.5);
}

.header-reserve:hover::before {
  left: 120%;
}

.header-reserve small {
  font-family: var(--font-ja);
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 24px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1100;
  background: #ffffff;
  padding: 14px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  box-sizing: content-box;
}

.hamburger span { display: block; width: 100%; height: 2px; background: var(--color-dark); transition: all 0.3s; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: block;
  background: var(--color-sand-light);
}

/* Hero Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

/* Hero Title Overlay */
.hero-title-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-title-wrap {
  position: relative;
  height: 65%;
  aspect-ratio: 763 / 1299;
  max-width: 50vw;
}

.hero-title-svg picture {
  display: block;
}

.hero-title-svg picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-title-wrap .hero-title-main {
  width: 100%;
  height: 100%;
}

.hero-title-wrap .hero-title-sub {
  position: absolute;
  top: -5%;
  left: calc(100% + 1.2vh);
  height: 63%;
  aspect-ratio: 141 / 816;
}

/* Hero Content Overlay */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 40px 60px;
}


.hero-title {
  position: absolute;
  z-index: 3;
  bottom: clamp(230px, 22vh, 270px);
  left: 40px;
}

.hero-title-sub {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.9);
  margin-top: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-title-main {
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.hero-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  color: white;
}

.hero-date {
  position: absolute;
  left: 40px;
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  color: var(--color-dark);
  text-shadow: 0 1px 12px rgba(255,255,255,0.5);
}

.hero-date-year {
  font-family: var(--font-en);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-right: 8px;
}

.hero-date-num {
  font-family: var(--font-en);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-date-day {
  font-family: var(--font-en);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-right: 10px;
}

.hero-date-dash {
  font-family: var(--font-en);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 300;
  margin: 0 10px;
}

.hero-side {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
}

.hero-scroll-line {
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: white;
  animation: scrollDown 2.2s infinite;
}

@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }

/* ==================== WAVE DIVIDER ==================== */
.wave-divider { position: relative; height: 75px; overflow: hidden; }
.wave-divider svg { position: absolute; bottom: 0; width: 100%; height: 100%; }
.wave-to-sand { background: var(--color-white); }
.wave-to-sand svg { fill: var(--color-sand); }
.wave-to-white { background: var(--color-sand); }
.wave-to-white svg { fill: var(--color-white); }

/* ==================== COMMON ==================== */
.section-header { text-align: center; margin-bottom: 56px; }

.section-header .sub {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.section-header .en {
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--color-dark);
}

.section-header .ja {
  font-size: 14px;
  letter-spacing: 0.22em;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--color-text-light);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ==================== TOPICS / NEWS ==================== */
.topics {
  background: var(--color-sand);
  padding: 100px 0;
}

.topics-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.topics-slider-area { position: relative; overflow: hidden; margin-top: 48px; }
@media (min-width: 1025px) {
  .topics-slider .swiper-wrapper { justify-content: center; }
}
.topics-slider .swiper-slide { width: 290px; }

@media (max-width: 768px) {
  .topics-slider .swiper-slide { width: 76%; }
  .topics-slider-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(244,241,236,0) 0%, var(--color-sand) 100%);
    z-index: 2;
  }
}

.topics-card {
  display: block;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.topics-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,0.1); opacity: 1; }

.topics-card-img { aspect-ratio: 4/3; overflow: hidden; }
.topics-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.topics-card:hover .topics-card-img img { transform: scale(1.06); }

.topics-card-label {
  display: inline-block;
  background: var(--color-teal);
  color: white;
  font-size: 10px;
  padding: 3px 18px;
  letter-spacing: 0.08em;
}

.topics-card-body { padding: 16px 20px 24px; }
.topics-card-date { font-family: var(--font-en); font-size: 12px; color: #aaa; }

.topics-card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topics-card-excerpt { font-size: 12px; color: #999; line-height: 1.7; margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.topics-nav { display: flex; gap: 14px; margin-top: 26px; padding-left: 10px; }

.topics-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bbb;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #888;
  transition: all 0.3s;
}

.topics-nav-btn:hover { background: var(--color-accent); color: white; border-color: var(--color-accent); }

/* ==================== CONCEPT ==================== */
.concept {
  background: var(--color-white);
  padding: 120px 0 80px;
}

.concept-heading { margin-bottom: 46px; }

.concept-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.35em;
  line-height: 1.9;
  color: var(--color-dark);
}

.concept-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-teal);
  margin-top: 16px;
}

.concept-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 65px;
  align-items: start;
}

.concept-text p {
  font-size: 15px;
  line-height: 2.4;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 20px;
}

.concept-images { display: flex; flex-direction: column; gap: 14px; }
.concept-images img { border-radius: 18px; object-fit: cover; width: 100%; height: 100%; max-height: 560px; }

/* ==================== RESEARCH BANNER ==================== */
.research-banner {
  position: relative;
  padding: 0;
  background: #1a2230;
  overflow: hidden;
}

.research-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.research-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.research-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,22,35,0.55) 0%, rgba(15,22,35,0.7) 100%);
}

.research-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 110px 40px;
  max-width: 880px;
  margin: 0 auto;
  color: white;
}

.research-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: white;
  margin-bottom: 22px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}

.research-title strong {
  color: var(--color-accent);
  position: relative;
}

.research-lead {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.1;
  color: rgba(255,255,255,0.94);
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

.research-lead strong {
  font-weight: 700;
  color: white;
}

.research-cta {
  margin-top: 36px;
}

.research-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.research-card {
  background: var(--color-sand-light);
  border-radius: 18px;
  padding: 32px 20px 28px;
  transition: all 0.3s;
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.research-card-num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-sand-dark);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.research-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.research-card-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-light);
  font-weight: 300;
}

@media (max-width: 768px) {
  .research-title { font-size: 22px; }
  .research-banner-inner { padding: 70px 22px; }
}

/* ==================== FEATURES (PROGRAM) ==================== */
.features {
  padding: 90px 0 0;
  background: var(--color-sand);
}

.feature-item {
  display: grid;
  grid-template-columns: 55% 45%;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.feature-item.reverse { grid-template-columns: 45% 55%; }
.feature-item.reverse .feature-img { order: 2; }
.feature-item.reverse .feature-body { order: 1; }

.feature-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.feature-img img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; transition: transform 0.8s; }
.feature-item:hover .feature-img img { transform: scale(1.03); }

.feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 46px;
}

.feature-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.feature-num-label { font-family: var(--font-en); font-size: 12px; font-weight: 500; color: var(--color-gold); }
.feature-num-number { font-family: var(--font-en); font-size: 90px; font-weight: 300; color: var(--color-gold-light); line-height: 0.8; opacity: 0.5; }
.feature-num-sub { font-family: var(--font-en); font-size: 9px; letter-spacing: 0.16em; color: var(--color-gold); display: block; margin-top: -8px; }

/* Program multi-color accents */
.feature-item:nth-child(2) .feature-num-label,
.feature-item:nth-child(2) .feature-num-sub { color: var(--color-purple); }
.feature-item:nth-child(2) .feature-num-number { color: var(--color-purple); }

.feature-item:nth-child(3) .feature-num-label,
.feature-item:nth-child(3) .feature-num-sub { color: var(--color-teal); }
.feature-item:nth-child(3) .feature-num-number { color: var(--color-teal); }

.feature-item:nth-child(4) .feature-num-label,
.feature-item:nth-child(4) .feature-num-sub { color: var(--color-green); }
.feature-item:nth-child(4) .feature-num-number { color: var(--color-green); }

.feature-item:nth-child(5) .feature-num-label,
.feature-item:nth-child(5) .feature-num-sub { color: var(--color-accent); }
.feature-item:nth-child(5) .feature-num-number { color: var(--color-accent); }

.feature-title-en {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-dark);
  background: white;
  display: inline-block;
  padding: 7px 14px;
  margin-bottom: 8px;
}

.feature-title-ja {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  background: white;
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 22px;
}

.feature-desc {
  font-size: 14px;
  line-height: 2.2;
  font-weight: 300;
  color: var(--color-text);
}

.feature-growth {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.feature-growth-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  border: 1.5px solid var(--color-teal);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.feature-growth-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-sand);
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.feature-link { margin-top: 26px; }

.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-accent);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-detail:hover { opacity: 1; background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(224,112,80,0.3); }

/* ==================== GROWTH ==================== */
.growth-section {
  padding: 100px 0;
  background: var(--color-white);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.growth-card {
  background: var(--color-sand-light);
  border-radius: 20px;
  padding: 40px 24px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.growth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.growth-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-icon-confidence { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light)); }
.growth-icon-empathy { background: linear-gradient(135deg, var(--color-purple), var(--color-lavender)); }
.growth-icon-teamwork { background: linear-gradient(135deg, var(--color-teal), var(--color-green)); }
.growth-icon-vision { background: linear-gradient(135deg, var(--color-pink), var(--color-lavender)); }

.growth-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.growth-card-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-light);
  font-weight: 300;
}

@media (max-width: 1024px) {
  .growth-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .growth-grid { grid-template-columns: 1fr; max-width: 360px; }
  .growth-section { padding: 70px 0; }
}

/* ==================== SCHEDULE ==================== */
.schedule-section {
  padding: 120px 0 90px;
  background: var(--color-white);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.schedule-tab {
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--color-teal);
  color: var(--color-teal);
  background: transparent;
  transition: all 0.3s;
  line-height: 1.4;
  text-align: center;
}

.schedule-tab.active, .schedule-tab:hover { background: var(--color-teal); color: white; }

.schedule-content { max-width: 780px; margin: 0 auto; }
.schedule-panel { display: none; }
.schedule-panel.active { display: block; }

.schedule-day-label { text-align: center; margin-bottom: 28px; }
.schedule-day-label .date { font-family: var(--font-en); font-size: 14px; font-weight: 700; letter-spacing: 0.15em; color: var(--color-teal); }
.schedule-day-label .subtitle { font-size: 18px; font-weight: 700; color: var(--color-dark); margin-top: 4px; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 13px; top: 8px; bottom: 8px; width: 2px; background: var(--color-teal); opacity: 0.2; border-radius: 2px; }

.timeline-item { position: relative; padding: 0 0 26px 28px; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--color-sand-dark); border: 3px solid var(--color-white); }
.timeline-item.highlight::before { background: var(--color-teal); box-shadow: 0 0 0 4px rgba(58,173,173,0.15); }

.timeline-time { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--color-teal); }
.timeline-title { font-size: 15px; font-weight: 700; color: var(--color-dark); margin-top: 2px; }
.timeline-desc { font-size: 13px; color: var(--color-text-light); line-height: 1.8; margin-top: 3px; }

/* ==================== RECRUIT ==================== */
.recruit {
  padding: 100px 0;
  background: var(--color-sand);
}

.recruit-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 22px;
  padding: 48px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.recruit-table { width: 100%; border-collapse: collapse; }
.recruit-table tr { border-bottom: 1px solid rgba(0,0,0,0.05); }

.recruit-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  padding: 16px 20px 16px 0;
  vertical-align: top;
  width: 130px;
  white-space: nowrap;
}

.recruit-table td { font-size: 14px; color: var(--color-text); padding: 16px 0; line-height: 1.8; }
.recruit-table strong { color: var(--color-accent); }

.recruit-cta { text-align: center; margin-top: 34px; }

/* ==================== VOICES ==================== */
.voices-section {
  padding: 80px 0;
  background: var(--color-sand);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.voice-card {
  background: white;
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.voice-card-text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 400;
}

.voice-card-text::before { content: "「"; }
.voice-card-text::after { content: "」"; }

.voice-card-credit {
  margin-top: 18px;
  font-size: 12px;
  color: var(--color-text-light, #888);
  text-align: right;
  letter-spacing: 0.05em;
}

.voices-year {
  margin-bottom: 48px;
}

.voices-year:last-child {
  margin-bottom: 0;
}

.voices-year-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-sand-dark);
}

.voices-year-num {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.voices-year-place {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.voices-year-theme {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.voices-year-theme:hover {
  opacity: 1;
  color: var(--color-accent-dark);
}

@media (max-width: 768px) {
  .voices-grid { grid-template-columns: 1fr; }
  .voices-section { padding: 60px 0; }
  .voices-year-num { font-size: 32px; }
  .voices-year-header { gap: 14px; }
}

/* ==================== MESSAGE ==================== */
.message {
  padding: 100px 0;
  background: var(--color-dark-deep);
  color: white;
}

.message .section-header .en { color: rgba(255,255,255,0.25); }
.message .section-header .ja { color: rgba(255,255,255,0.4); }
.message .section-header .sub { color: var(--color-teal); }

.message-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.message-text {
  font-size: 16px;
  line-height: 2.5;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
}

.message-text strong {
  color: #a8d8c8;
  font-weight: 600;
}

.message-text .message-highlight {
  color: #e8c87a;
  font-size: 1.1em;
}

.message-org { margin-top: 40px; font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }

/* ==================== FAQ ==================== */
.faq { padding: 100px 0; background: var(--color-sand); }

.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item { background: white; border-radius: 16px; overflow: hidden; }

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
}

.faq-q:hover { background: #fafafa; }

.faq-q-badge { background: var(--color-teal); color: white; width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.faq-q-arrow { margin-left: auto; font-size: 16px; color: #ccc; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q-arrow { transform: rotate(180deg); }

.faq-a { padding: 0 24px 0 66px; max-height: 0; overflow: hidden; transition: all 0.3s; }
.faq-item.open .faq-a { padding-bottom: 20px; max-height: 300px; }
.faq-a p { font-size: 14px; line-height: 1.9; color: var(--color-text-light); }

/* ==================== CTA ==================== */
.cta-section {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  color: white;
  overflow: hidden;
  background: #1b2a3a;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(10,20,35,0.55) 75%),
    linear-gradient(180deg, rgba(15,25,40,0.35) 0%, rgba(15,25,40,0.55) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h3 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.cta-section p {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 2;
  margin-bottom: 36px;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--color-accent);
  padding: 20px 58px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  transition: all 0.3s;
}

.btn-cta-white:hover { opacity: 1; transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,0.3); }

.cta-meta {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-en);
}

/* ==================== ORGANIZER ==================== */
.organizer {
  padding: 100px 0;
  background: var(--color-sand);
}

.organizer-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.organizer-logo {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.organizer-logo img {
  width: 120px;
  height: auto;
}

.organizer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.organizer-en-name {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 18px;
}

.organizer-desc {
  font-size: 14px;
  line-height: 2.2;
  color: var(--color-text);
  font-weight: 300;
  margin-bottom: 20px;
}

.organizer-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.organizer-activity {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-light);
  background: white;
  padding: 6px 16px;
  border-radius: 50px;
}

.organizer-fee {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-text-light);
}

.organizer-fee strong {
  color: var(--color-dark);
  font-weight: 700;
}

.organizer-links {
  display: flex;
  gap: 20px;
}

.organizer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.organizer-link:hover {
  opacity: 1;
  border-bottom-color: var(--color-accent);
}

@media (max-width: 768px) {
  .organizer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .organizer-logo { width: 140px; margin: 0 auto; }
  .organizer-activities { justify-content: center; }
  .organizer-fee { justify-content: center; }
  .organizer-links { justify-content: center; flex-wrap: wrap; }
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--color-dark-deep);
  color: white;
}

/* Footer Top — ブランド + CTA */
/* Footer Main — ロゴ + ナビ */
.footer-main {
  padding: 48px 0;
}
.footer-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 6px;
}
.footer-org-name {
  font-size: 13px;
  font-weight: 600;
}
.footer-org-en {
  font-size: 10px;
  font-weight: 300;
  color: #5a6a7a;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.footer-nav {
  display: flex;
  gap: 48px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-teal);
  margin-bottom: 4px;
}
.footer-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  transition: color 0.3s;
}
.footer-nav a:hover { color: white; opacity: 1; }

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-bottom small {
  font-family: var(--font-en);
  font-size: 10px;
  color: #3a4a5a;
}
.footer-bottom .footer-disclaimer {
  font-family: var(--font-jp);
  font-size: 11px;
  color: #4a5a6a;
}

.page-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  z-index: 999;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(224,112,80,0.3);
}

.page-top.visible { opacity: 1; }


/* ==================== FLOATING DECORATIONS ==================== */
.float-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.float-circle-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(58,173,173,0.06) 0%, transparent 70%);
  top: 20%;
  right: -40px;
  animation: floatUp 8s ease-in-out infinite;
}

.float-circle-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139,123,174,0.08) 0%, transparent 70%);
  bottom: 30%;
  left: -30px;
  animation: floatUp 6s ease-in-out infinite reverse;
}

.float-circle-3 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(107,175,141,0.08) 0%, transparent 70%);
  top: 60%;
  right: 10%;
  animation: floatUp 10s ease-in-out infinite 2s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ==================== ANIMATED WAVE ==================== */
.wave-divider svg path {
  animation: waveMove 6s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { d: path("M0,38 C360,0 720,75 1080,38 C1260,18 1380,28 1440,38 L1440,75 L0,75 Z"); }
  50% { d: path("M0,28 C360,65 720,10 1080,48 C1260,58 1380,18 1440,28 L1440,75 L0,75 Z"); }
}

/* ==================== HERO TEXT ANIMATION ==================== */

.hero-bg img {
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-title-svg .hero-title-main img {
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-title-svg .hero-title-sub img {
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

/* ==================== PROGRAM NUMBER COUNTER ==================== */
.feature-num-number {
  display: inline-block;
  transition: transform 0.3s;
}

.feature-num-number.counting {
  animation: countPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes countPop {
  0% { transform: scale(0.3) rotateY(90deg); opacity: 0; }
  60% { transform: scale(1.15) rotateY(-10deg); opacity: 1; }
  100% { transform: scale(1) rotateY(0); opacity: 1; }
}

/* ==================== CTA PULSE ==================== */
.btn-cta-white,
.btn-detail,
.header-reserve {
  position: relative;
}

.cta-section .btn-cta-white {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

/* ==================== SECTION HEADER LINE DRAW ==================== */
.section-header .en {
  position: relative;
}

.section-header .en::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible .en::after,
.section-header.animate-line .en::after {
  width: 40px;
  left: calc(50% - 20px);
}

/* ==================== FEATURE CARD HOVER TILT ==================== */
.feature-item {
  transition: transform 0.3s ease;
}

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

.feature-growth-tag {
  transition: all 0.3s ease;
}

.feature-growth-tag:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

/* ==================== FAQ SMOOTH EXPAND ==================== */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(4px);
}

.faq-item.open {
  transform: translateX(0);
}

/* ==================== ANIMATIONS ==================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* スライドイン（左から） */
.slide-in-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }

/* スライドイン（右から） */
.slide-in-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ポップアップ（弾むように） */
.pop-up { opacity: 0; transform: scale(0.8) translateY(20px); transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.pop-up.visible { opacity: 1; transform: scale(1) translateY(0); }

/* ズームイン */
.zoom-in { opacity: 0; transform: scale(0.85); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.zoom-in.visible { opacity: 1; transform: scale(1); }

/* 回転しながら登場 */
.spin-in { opacity: 0; transform: rotate(-8deg) scale(0.9); transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.spin-in.visible { opacity: 1; transform: rotate(0) scale(1); }

/* 子要素の連続アニメーション */
.stagger-children > * { opacity: 0; transform: translateY(24px); transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .header-main-nav, .header-top-links, .header-reserve { display: none; }
  .hamburger { display: flex; }
  .feature-item, .feature-item.reverse { grid-template-columns: 1fr; }
  .feature-item.reverse .feature-img { order: 1; }
  .feature-item.reverse .feature-body { order: 2; }
  .concept-body { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .header-logo { top: 10px; left: 10px; padding: 10px 12px 14px; border-radius: 12px; }
  .hero-side { right: 14px; bottom: 24px; }
  .hero-date { left: 18px; bottom: 24px; gap: 2px; }
  .hero-date-num { font-size: 36px; }
  .hero-date-dash { font-size: 22px; margin: 0 6px; }
  .hero-date-year, .hero-date-day { font-size: 12px; }
  .hero-date-year { margin-right: 6px; }
  .hero-date-day { margin-right: 6px; }
  .hero-title-wrap { height: 76%; aspect-ratio: 564 / 1232; max-width: 50vw; }
  .hero-title-wrap .hero-title-sub { left: 100%; margin-left: -3vw; height: 60%; aspect-ratio: 127 / 735; }
  .section-header .en { font-size: 34px; }
  .topics-side { display: none; }
  .feature-body { padding: 26px 18px; }
  .feature-title-en { font-size: 32px; }
  .feature-num-number { font-size: 64px; }
  .concept-title { font-size: 18px; letter-spacing: 0.08em; }
  .container { padding: 0 18px; }
  .footer-main-inner { flex-direction: column; gap: 36px; align-items: center; }
  .footer-info { flex-direction: column; text-align: center; align-items: center; }
  .footer-nav { gap: 32px; justify-content: center; }
  .recruit-box { padding: 28px 18px; }
  .recruit-table th { display: block; width: 100%; padding-bottom: 2px; }
  .recruit-table td { display: block; padding-top: 2px; }
  .schedule-tabs { gap: 6px; flex-wrap: nowrap; }
  .schedule-tab { padding: 8px 12px; font-size: 11px; flex: 1; min-width: 0; }
  .message-inner { text-align: left; }
}

.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px; height: 100vh;
  background: white; z-index: 1050; padding: 80px 28px 40px; transition: right 0.4s; overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1040; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 15px; border-bottom: 1px solid #eee; }
.mobile-nav .btn-reserve-mobile { display: block; background: var(--color-accent); color: white; text-align: center; padding: 16px; border-radius: 50px; margin-top: 20px; font-weight: 700; }

/* 申込開始日(2026/6/6)まで参加申し込みボタンを無効化 */
.entry-locked {
  cursor: not-allowed !important;
  filter: grayscale(0.4);
  opacity: 0.7;
}
.entry-locked:hover { transform: none !important; box-shadow: none !important; }
.header-reserve.entry-locked { letter-spacing: 0.04em; }
.header-reserve.entry-locked small { font-size: 9px; }
