/* =========================
   Reset and Base Styles
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Noto Serif Bengali', sans-serif;
  background-color: #ffffff;
  color: #333;
}

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

.font-inter { font-family: 'Inter', sans-serif; }
.font-noto { font-family: 'Noto Serif Bengali', 'Noto Serif JP', serif; }
.font-zen { font-family: 'Zen Antique', serif; }

/* =========================
   Header
========================= */
header {
  position: fixed;
  z-index: 50;
  width: 100%;
  background-color: rgba(233, 249, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 25px 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-link {
  color: inherit;
  text-decoration: none;
}

.logo-link:hover {
  color: inherit;
  text-decoration: none;
}

.logo-box {
  background-color: #2f3f66;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 600;
  color: #2f3f66;
  font-size: 16px;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(47, 63, 102, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #2f3f66;
}

.cta-button {
  background-color: #2f3f66;
  color: #fff;
  padding: 10px 32px;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #3d5082;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #2f3f66;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   Hero Section
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: rgba(233, 249, 255, 0.95);
}

.hero-container {
  position: relative;
  min-height: 880px;
  isolation: isolate;
}

.hero-map {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.hero-map-bd {
  top: 0;
  left: 150px;
  width: 30%;
}


.hero-map-jp {
  top: 50px;
  right: 190px;
  width: 30%;
}

.hero-headline {
  position: absolute;
  z-index: 10;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 40px));
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-headline p {
  margin: 0;
  color: #6f6a6a;
  position: relative;
}

.from-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  align-self: flex-start;
  margin-left: 10%;
  opacity: 0.7;
}

.main-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 8vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.main-text-left {
  align-self: flex-start;
  margin-left: 15%;
}

.to-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-top: -10px;
  opacity: 0.7;
  right: -4%;
}

.main-text-right {
  align-self: flex-end;
  margin-right: 15%;
}

.subtitle {
  margin-top: 12px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(80, 80, 80, 0.7);
  padding: 0 20px;
  opacity: 0.7;
}

.hero-promo {
  position: absolute;
  z-index: 12;
  top: 290px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 48px));
  padding: 0 28px 24px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-promo__eyebrow {
  margin: 0 0 8px;
  color: #2f3f66;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.85);
}

.hero-promo__opening {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 130px;
  color: #fff;
  background: linear-gradient(135deg, #2f3f66 0%, #5a7bb0 100%);

  /*color: #1d4e89;
  background: transparent;
  border-bottom: 3px solid #77bdd8;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9); */
  border-radius: 0;
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.03em;

}

.hero-promo__course-intro {
  display: grid;
  gap: 12px;
}

.hero-promo__label {
  display: inline-flex;
  justify-content: center;
  color: rgba(47, 63, 102, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-promo__course-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.hero-promo__course-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  color: #2f3f66;
  background: #ffffff;
  border: 1px solid #cfeaf5;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(47, 63, 102, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-promo__course-card--primary {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-color: rgba(47, 63, 102, 0.28);
}

.hero-promo__course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 63, 102, 0.13);
  border-color: #77bdd8;
}

.hero-promo__course-name {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  color: #ffffff;
  background: #2f3f66;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-promo__course-point {
  position: relative;
  padding-left: 18px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-promo__course-point::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77bdd8;
  transform: translateY(-50%);
}

.hero-promo__course-note {
  display: block;
  margin-top: -2px;
  padding-left: 40px;
  color: #d71920;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.one-stop-text {
  position: absolute;
  right: 0;
  bottom: 15%;
  z-index: 2;
}

.one-stop-text p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 150px;
  font-weight: 600;
  line-height: 0.9;
  color: rgba(120, 110, 110, 0.16);
  letter-spacing: 0.03em;
}

/* 3D Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  perspective: 2000px;
  perspective-origin: 50% 60%;
  overflow: hidden;
  margin-top: 4rem;
}

.hero-carousel__viewport {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 500px;
  width: 100%;
  height: 600px;
  transform-style: preserve-3d;
}

.hero-carousel__ring {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-carousel__slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  aspect-ratio: 551 / 730;
  margin-left: -150px;
  margin-top: -200px;
  overflow: hidden;
  background: #fff;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0.98;
  transition: opacity 0.5s ease;
}

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

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

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.78) 78%,
    rgba(255, 255, 255, 1) 100%
  );
}

/* =========================
   Section Common Styles
========================= */
section {
  padding: 80px 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 48px);
  color: #2f3f66;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: clamp(15px, 4vw, 20px);
  color: #797d81;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================
   Concept Section
========================= */
#concept {
  scroll-margin-top: 100px;
}

.concept-section {
  background-color: #ffffff;
  padding: 100px 0 64px;
}

.concept-section .section-container {
  max-width: 1100px;
  padding: 0 24px;
}

.concept-section .section-header {
  margin-bottom: 56px;
}

.concept-intro {
  max-width: 860px;
  margin: 0 auto 48px;
}

.concept-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  text-align: center;
}

/* Challenge -> Solution */
.concept-pairs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.concept-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.concept-card {
  position: relative;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(47, 63, 102, 0.06);
}

.concept-card-challenge {
  background: #f4f7fb;
  border-color: #dbe4f0;
}

.concept-card-solution {
  background: #e9f9ff;
  border-color: #cfeaf5;
}

.concept-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.concept-card-challenge .concept-card-icon {
  background: #2f3f66;
  color: #fff;
}

.concept-card-solution .concept-card-icon {
  background: #5fa8c4;
  color: #fff;
}

.concept-label {
  display: table;
  margin: 0 auto 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.concept-label-challenge {
  background: #e6edf5;
  color: #2f3f66;
}

.concept-label-solution {
  background: #d8f1fa;
  color: #2f3f66;
}

.concept-pair-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #5fa8c4;
}

.concept-card .concept-block-title {
  font-size: 1.45rem;
  line-height: 1.45;
  color: #2f3f66;
  margin: 0 0 16px;
  text-align: center;
}

.concept-card .concept-block-text {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(47, 63, 102, 0.9);
  margin: 0 0 18px;
  text-align: justify;
}

.concept-card .concept-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(47, 63, 102, 0.92);
  font-size: 14px;
}

.concept-card .concept-list li {
  margin-bottom: 5px;
  line-height: 1.8;
}

/* One-Stop section */
#One-Stop {
  padding: 0;
  margin: 0;
  background: transparent;
}

.concept-flow {
  margin: 0;
  text-align: center;
  padding: 120px 24px 100px;
  position: relative;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4f8 100%);
  overflow: hidden;
}

.concept-flow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 50px solid #ffffff;
  z-index: 10;
  filter: drop-shadow(0 15px 15px rgba(47, 63, 102, 0.08));
}

.concept-flow-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d1dce5 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
}

.concept-flow-bg-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(90, 123, 176, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.concept-flow-hub {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 240px minmax(220px, 1fr);
  gap: 20px;
  align-items: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.concept-flow-hub::before,
.concept-flow-hub::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(47, 63, 102, 0.18) 0%,
    rgba(95, 168, 196, 0.45) 50%,
    rgba(47, 63, 102, 0.18) 100%
  );
}

.concept-flow-hub::before {
  left: 24%;
  width: 20%;
}

.concept-flow-hub::after {
  right: 24%;
  width: 20%;
}

.concept-flow-country-card,
.concept-flow-center-wrap {
  position: relative;
  z-index: 1;
}

.concept-flow-country-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(47, 63, 102, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-flow-country-card-bd {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.concept-flow-country-card-jp {
  background: linear-gradient(180deg, #eef9ff 0%, #ffffff 100%);
}

.concept-flow-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 36px 34px;
}

.concept-flow-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.3;
}

.concept-flow-map img {
  width: 52%;
  max-width: 180px;
  object-fit: contain;
}

.concept-flow-country {
  display: inline-block;
  margin-bottom: 12px;
  padding-bottom: 4px;
  color: #2f3f66;
  border-bottom: 1px solid #1d4e89;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concept-flow-country-card h4 {
  font-size: 1.24rem;
  margin: 0 0 12px;
  color: #2f3f66;
  line-height: 1.45;
}

.concept-flow-country-card p {
  margin: 0;
  line-height: 1.8;
  color: rgba(47, 63, 102, 0.9);
  font-size: 0.95rem;
}

.concept-flow-center-wrap,
.concept-flow-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-flow-center-badge {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f3f66 0%, #5a7bb0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 30px rgba(47, 63, 102, 0.18);
  border: 10px solid rgba(233, 249, 255, 0.95);
  position: relative;
  z-index: 2;
}

/* Why this system is needed */
.concept-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.concept-detail-title {
  font-size: 1.5rem;
  margin: 0 0 18px;
  color: #1a1a1a;
}

.concept-detail p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 20px;
}

.concept-cost-visual {
  margin: 32px 0 28px;
}

.concept-cost-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 8px;
}

.concept-cost-visual-item {
  margin: 0;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(47, 63, 102, 0.06);
}

.concept-cost-visual-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


@keyframes classScheduleArrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

/* Responsive */

.concept-cost-copy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  margin: 28px 0 22px;
  padding: 12px 26px 12px 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, #f7fcff 0%, #ffffff 100%);
  border: 1px solid #dbeaf5;
  box-shadow: 0 8px 20px rgba(47, 63, 102, 0.07);
  overflow: hidden;
}

.concept-cost-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(119, 189, 216, 0.08) 0 10px,
      rgba(119, 189, 216, 0.02) 10px 20px
    );
  opacity: 0.55;
  pointer-events: none;
}

.concept-cost-copy__badge {
  position: relative;
  z-index: 1;
  flex: 0 0 150px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, #063f9c 0%, #002d78 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 45, 120, 0.22);
}

.concept-cost-copy__badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.concept-cost-copy__badge-main {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.concept-cost-copy__badge-sub {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.concept-cost-copy__title {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0;
  line-height: 1.15;
  font-family: 'Noto Serif JP', serif;
}

.concept-cost-copy__text {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #333333;
}

.concept-cost-copy__strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #d71920;
  letter-spacing: -0.03em;
}

.concept-cost-copy__accent {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  width: 42px;
  height: 42px;
}

.concept-cost-copy__accent span {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: #e82127;
  transform-origin: bottom center;
}

.concept-cost-copy__accent span:nth-child(1) {
  right: 4px;
  transform: rotate(18deg);
}

.concept-cost-copy__accent span:nth-child(2) {
  right: 18px;
  transform: rotate(42deg);
}

.concept-cost-copy__accent span:nth-child(3) {
  right: 32px;
  top: 5px;
  transform: rotate(66deg);
}

/* =========================
   Key Feature Section
========================= */
.key-feature-section {
  background-color: #e9f9ff;
  padding: 100px 0;
}

.key-feature-section .section-container {
  max-width: 1200px;
  padding: 0 24px;
}

.key-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 40px;
}

.feature-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(47, 63, 102, 0.05);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2f3f66 0%, #77bdd8 100%);
}

.feature-card-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2f3f66;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-card-title {
  font-size: 1.35rem;
  line-height: 1.45;
  color: #2f3f66;
  margin: 0 0 16px;
}

.feature-card-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(47, 63, 102, 0.9);
  margin: 0 0 14px;
}

.feature-card-text:last-child {
  margin-bottom: 0;
}

.method-section {
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 10px 30px rgba(47, 63, 102, 0.05);
  margin-bottom: 32px;
}

.method-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.method-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #dff5fc;
  color: #2f3f66;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.method-title {
  font-size: 2rem;
  color: #2f3f66;
  margin: 0 0 14px;
}

.method-description {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(47, 63, 102, 0.9);
  margin: 0;
}

.method-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.method-point {
  background: #f7fcff;
  border: 1px solid #d5eaf2;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
}

.method-point-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #e9f9ff;
  color: #2f3f66;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid #d5eaf2;
}

.method-point h4 {
  font-size: 1.05rem;
  color: #2f3f66;
  margin: 0 0 12px;
}

.method-point p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(47, 63, 102, 0.9);
  margin: 0;
}

.method-detail {
  max-width: 900px;
  margin: 0 auto;
}

.method-detail p {
  font-size: 0.98rem;
  line-height: 1.95;
  color: rgba(47, 63, 102, 0.9);
  margin: 0 0 16px;
  text-align: center;
}

.method-detail p:last-child {
  margin-bottom: 0;
}

.founder-profile {
  align-items: start;
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(47, 63, 102, 0.05);
}

.founder-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #dff5fc;
  color: #2f3f66;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-title {
  font-size: 1.9rem;
  color: #2f3f66;
  margin: 0 0 14px;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.founder-stat {
  background: #f7fcff;
  border: 1px solid #d5eaf2;
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
}

.founder-stat-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #2f3f66;
  margin-bottom: 6px;
}

.founder-stat-label {
  display: block;
  font-size: 0.84rem;
  color: rgba(47, 63, 102, 0.8);
  line-height: 1.5;
}

.founder-career {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(47, 63, 102, 0.92);
}

.founder-career li {
  margin-bottom: 6px;
  line-height: 1.85;
}

/* =========================
   Courses Section
========================= */
.courses-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.courses-section .section-container {
  max-width: 1100px;
  padding: 0 24px;
}

/* ここからコース */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
  margin-bottom: 40px;
  align-items: stretch;
}

.course-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 32px;
  padding: 34px 32px 30px;
  box-shadow: 0 14px 34px rgba(47, 63, 102, 0.06);
  overflow: hidden;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #cfe0ef 0%, #e9f9ff 100%);
}

.course-card-primary {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-color: #cfe0ef;
  box-shadow: 0 18px 40px rgba(47, 63, 102, 0.09);
}

.course-card-primary::before {
  background: linear-gradient(90deg, #2f3f66 0%, #77bdd8 100%);
}

.course-card-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.course-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.course-card-mark {
  flex-shrink: 0;
  min-width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #f3f7fb;
  border: 1px solid #dbe4f0;
  color: #2f3f66;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.course-card-primary .course-card-mark {
  background: #2f3f66;
  border-color: #2f3f66;
  color: #ffffff;
}

.course-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #2f3f66;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.course-badge-light {
  background: #e9f9ff;
  color: #2f3f66;
}

.course-title {
  font-size: 2rem;
  line-height: 1.25;
  color: #2f3f66;
  margin: 0;
}

.course-lead {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(47, 63, 102, 0.9);
  margin: 0 0 26px;
}

.course-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.course-meta-item {
  background: #f8fbff;
  border: 1px solid #dbe4f0;
  border-radius: 20px;
  padding: 18px 18px;
}

.course-card-primary .course-meta-item {
  background: rgba(255, 255, 255, 0.9);
}

.course-meta-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(47, 63, 102, 0.68);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.course-meta-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2f3f66;
  line-height: 1.4;
}

.course-highlight {
  background: #eef8fc;
  border: 1px solid #d5eaf2;
  border-radius: 20px;
  padding: 20px 18px;
  margin-bottom: 24px;
}

.course-highlight h4 {
  font-size: 0.98rem;
  color: #2f3f66;
  margin: 0 0 10px;
}

.course-highlight p {
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(47, 63, 102, 0.9);
  margin: 0;
}

.course-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.course-points li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
  color: rgba(47, 63, 102, 0.92);
}

.course-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #77bdd8;
  transform: translateY(-50%);
}

.course-card-primary .course-points li::before {
  background: #2f3f66;
}

/* ここからクラス編成 */
.class-schedule-section {
  margin-top: 40px;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 10px 30px rgba(47, 63, 102, 0.05);
}

.class-schedule-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.class-schedule-title {
  font-size: 1.8rem;
  color: #2f3f66;
  margin: 0 0 12px;
}

.class-schedule-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(47, 63, 102, 0.9);
}

.class-schedule-summary {
  margin-bottom: 28px;
}

.class-summary-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: 18px;
  background: #f8fbff;
}

.class-summary-table th,
.class-summary-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #dbe4f0;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.7;
}

.class-summary-table th {
  width: 240px;
  background: #eef6fb;
  color: #2f3f66;
  font-weight: 700;
}

.class-summary-table td {
  color: rgba(47, 63, 102, 0.9);
  background: #ffffff;
}

.class-summary-table tr:last-child th,
.class-summary-table tr:last-child td {
  border-bottom: none;
}

.class-schedule-table-wrap {
  overflow-x: auto;
  margin-bottom: 18px;
  -webkit-overflow-scrolling: touch;
}

.class-schedule-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border: 1px solid #cfdbea;
  background: #ffffff;
  table-layout: fixed;
}

.class-schedule-table th,
.class-schedule-table td {
  border: 1px solid #cfdbea;
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.95rem;
}

.class-schedule-table thead th {
  background: #dfeef7;
  color: #2f3f66;
  font-weight: 700;
}

.class-schedule-table tbody th {
  background: #f3f8fc;
  color: #2f3f66;
  font-weight: 700;
  white-space: nowrap;
}

.class-schedule-table td {
  font-weight: 600;
  color: #2f3f66;
}

.class-schedule-table .group-a {
  background: #bfefff;
}

.class-schedule-table .group-b {
  background: #ffe27a;
}

.class-schedule-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.class-schedule-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(47, 63, 102, 0.82);
}

/* =========================
   About Us Section
========================= */
.about-section {
  background-color: #e9f9ff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.about-mission-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  color: #2f3f66;
  margin-bottom: 16px;
  text-align: center;
}

.about-mission-text {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(47, 63, 102, 0.9);
  margin-bottom: 14px;
}

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

.about-stat {
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 10px 24px rgba(47, 63, 102, 0.05);
}

.about-stat-number {
  font-size: 2rem;
  color: #2f3f66;
  margin-bottom: 8px;
}

.about-stat-label {
  color: rgba(47, 63, 102, 0.82);
  font-size: 0.95rem;
}

.about-block {
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 24px rgba(47, 63, 102, 0.05);
  margin-bottom: 24px;
}

.about-subblock {
  width: 90%;
  margin: 0 auto;
}
.about-subblock + .about-subblock {
  margin-top: 24px;
}

.about-subblock h4 {
  font-size: 1rem;
  color: #2f3f66;
  margin-bottom: 14px;
  padding-left: 8px;
  border-left: 3px solid #2f3f66;
  align-items: center;
}

.about-subblock dl,
.company-card dl {
  margin: 0 auto;
  width: 90%;
}

.about-subblock dt,
.company-card dt {
  font-weight: 700;
  color: #2f3f66;
  margin-bottom: 6px;
}

.about-subblock dd,
.company-card dd {
  margin: 0;
  color: rgba(47, 63, 102, 0.9);
  line-height: 1.8;
}

.about-overview {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.about-overview table {
  width: 90%;
  border-collapse: collapse;
  min-width: 640px;
  margin: 0 auto;
}

.about-overview th,
.about-overview td {
  border: 1px solid #dbe4f0;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-overview th {
  background: #eef6fb;
  color: #2f3f66;
}

.company-card {
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(47, 63, 102, 0.05);
  overflow: hidden;
  margin: 20px auto;
  width: 90%;
}

.company-card h4 {
  background: #f7fcff;
  color: #2f3f66;
  padding: 18px 20px;
  font-size: 1rem;
  border-bottom: 1px solid #d5eaf2;
}

.company-row {
  border-bottom: 1px solid #e7eef5;
}
.company-row a {
  text-decoration: none;
  color:rgba(47, 63, 102, 0.9);
}
.company-row a:hover{
  text-decoration: underline;
  color:rgba(47, 63, 102, 0.9);
}
.company-row:last-child {
  border-bottom: none;
}

.company-card dt {
  padding: 14px 0 0;
  font-size: 14px;
}

.company-card dd {
  padding: 0 0 8px;
  font-size: 15px;
}

/* =========================
   FAQ Section
========================= */
.faq-section {
  background-color: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-list {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-button {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-button:hover {
  background-color: #f9fafb;
}

.faq-question {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  color: #2f3f66;
  padding-right: 32px;
}

.faq-icon {
  color: #2f3f66;
  font-size: 24px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.faq-icon.open {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px;
  display: none;
}

.faq-content.show {
  display: block;
}

.faq-answer {
  font-size: 16px;
  color: #797d81;
  line-height: 1.8;
}

.faq-cta {
  margin-top: 48px;
  text-align: center;
}

.faq-cta-text {
  font-size: 18px;
  color: #797d81;
  margin-bottom: 24px;
}

.faq-cta-button {
  background-color: #2f3f66;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-cta-button:hover {
  background-color: #3d5082;
}

/* =========================
   Footer
========================= */
footer {
  background-color: #2f3f66;
  color: #ffffff;
  padding: 48px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.4;
}

.footer-logo-text span {
  font-size: 20px;
}

.footer-section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact i {
  color: #ffffff;
  font-size: 0.95rem;
  width: 18px;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.footer-contact span {
  display: inline-block;
}
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* =========================
   Responsive
========================= */

/* =========================
   Voices Section
========================= */
#voices {
  scroll-margin-top: 100px;
}

.voices-section {
  background: linear-gradient(135deg, #f8fbff 0%, #e9f9ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.voices-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 63, 102, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.voices-section .section-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 0 24px;
}

.voices-feature-single {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 30px;
  padding: 62px 32px;
  box-shadow: 0 14px 34px rgba(47, 63, 102, 0.08);
}

.voices-feature-video {
  overflow: hidden;
  border-radius: 24px;
  background: #eef6fb;
  border: 1px solid #d5eaf2;
}

.voices-feature-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.voices-feature-content {
  padding: 4px 4px 4px 0;
}

.voice-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #e9f9ff;
  color: #2f3f66;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.voices-feature-title {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.45;
  color: #2f3f66;
  margin: 0 0 16px;
}

.voices-feature-text {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(47, 63, 102, 0.9);
}


.voices-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #2f3f66;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(47, 63, 102, 0.16);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.voices-cta-button:hover {
  background: #3d5082;
  transform: translateY(-2px);
}

/* =========================
   Voices Responsive
========================= */

/* =========================
   Voices Page
========================= */
.voices-page-hero {
  padding: 160px 0 90px;
  background: linear-gradient(135deg, #e9f9ff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

.voices-page-hero::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 63, 102, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.voices-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}


.voices-page-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: clamp(36px, 7vw, 64px);
  color: #2f3f66;
  margin: 0 0 24px;
}

.voices-page-lead {
  margin: 0;
  font-size: clamp(15px, 4vw, 19px);
  line-height: 1.95;
  color: rgba(47, 63, 102, 0.9);
}

.voices-page-section {
  background: #ffffff;
  padding: 90px 0 100px;
}

.voices-page-section .section-container {
  max-width: 1100px;
  padding: 0 24px;
}

.voices-page-grid {
  display: grid;
  gap: 32px;
}

.voice-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(47, 63, 102, 0.06);
  scroll-margin-top: 120px;
}

.voice-video-wrap {
  overflow: hidden;
  border-radius: 22px;
  background: #eef6fb;
  border: 1px solid #d5eaf2;
}

.voice-video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.voice-detail-body {
  padding: 4px 4px 4px 0;
}

.voice-detail-title {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.45;
  color: #2f3f66;
  margin: 0 0 16px;
}

.voice-detail-text {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(47, 63, 102, 0.9);
}

.voice-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.voice-meta-list div {
  background: #f8fbff;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  padding: 14px 16px;
}

.voice-meta-list dt {
  margin: 0 0 6px;
  color: rgba(47, 63, 102, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.voice-meta-list dd {
  margin: 0;
  color: #2f3f66;
  font-size: 0.98rem;
  font-weight: 700;
}

.voices-page-cta {
  margin-top: 54px;
  padding: 36px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #2f3f66 0%, #5a7bb0 100%);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(47, 63, 102, 0.12);
}

.voices-page-cta p {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.voices-page-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #2f3f66;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.voices-page-cta-button:hover {
  transform: translateY(-2px);
  background: #e9f9ff;
}

/* =========================
   Voices Responsive
========================= */

/* =========================
   News Section
========================= */
#news {
  scroll-margin-top: 100px;
}

.news-section {
  background: linear-gradient(135deg, #f8fbff 0%, #e9f9ff 100%);
  padding: 100px 0;
}

.news-section .section-container {
  max-width: 1100px;
  padding: 0 24px;
}

.news-flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-flyer-card {
  background: #ffffff;
  border: 1px solid #d5eaf2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(47, 63, 102, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-flyer-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-flyer-image {
  position: relative;
  background: #eef6fb;
  overflow: hidden;
  aspect-ratio: 210 / 297;
  border-bottom: 1px solid #d5eaf2;
}

.news-flyer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.news-flyer-card:hover .news-flyer-image img {
  transform: scale(1.03);
}

.news-pdf-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(47, 63, 102, 0.9);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.news-flyer-body {
  padding: 24px 22px 26px;
}

.news-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #e9f9ff;
  color: #2f3f66;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-flyer-title {
  font-size: 1.22rem;
  line-height: 1.5;
  color: #2f3f66;
  margin: 0 0 10px;
}

.news-flyer-text {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(47, 63, 102, 0.86);
}

.news-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #2f3f66;
  background: #f8fbff;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.news-view-link i {
  font-size: 0.8rem;
}

/* =========================
   News Responsive
========================= */

.news-flyer-card-wide {
  grid-column: span 2;
}

.news-flyer-combo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #d5eaf2;
  border-bottom: 1px solid #d5eaf2;
}

.news-flyer-combo .news-flyer-image {
  border-bottom: none;
}

.news-flyer-combo .news-flyer-link {
  background: #ffffff;
}

/* contact ページ */
  .contact-section {
      padding: 160px 0 100px;
      background-color: #f8faff;
      min-height: 100vh;
    }
    .contact-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .contact-form-wrapper {
      background: #fff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(47, 63, 102, 0.05);
    }
    .form-group {
      margin-bottom: 24px;
    }
    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: #2f3f66;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #dbe4f0;
      border-radius: 8px;
      font-size: 16px;
      font-family: inherit;
      transition: border-color 0.3s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #5fa8c4;
    }
    .submit-button {
      width: 100%;
      background-color: #2f3f66;
      color: #fff;
      padding: 16px;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .submit-button:hover {
      background-color: #3d5082;
    }

/* =========================
   Comparison Flow Section
========================= */
.route-comparison-section {
  background: #ffffff;
  padding: 100px 0;
}

.route-comparison-section .section-container {
  max-width: 1200px;
  padding: 0 24px;
}

.comparison-flow {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #dbe4f0;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 18px 44px rgba(47, 63, 102, 0.08);
  overflow: hidden;
}

.comparison-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(233, 249, 255, 0.72) 0%, rgba(233, 249, 255, 0.72) 50%, rgba(245, 245, 245, 0.78) 50%, rgba(245, 245, 245, 0.78) 100%);
  z-index: 0;
  pointer-events: none;
}

.comparison-flow > * {
  position: relative;
  z-index: 1;
}

.comparison-flow__head {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.comparison-flow__region {
  text-align: center;
  font-weight: 700;
  color: #2f3f66;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 1rem;
}

.comparison-flow__region--bd {
  background: #cfe7fb;
}

.comparison-flow__region--jp {
  background: #ececec;
}

.comparison-flow__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px 0;
}

.comparison-flow__row + .comparison-flow__row {
  border-top: 1px solid rgba(47, 63, 102, 0.16);
}

.comparison-flow__label {
  background: linear-gradient(180deg, #1d64b8 0%, #064d9f 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 28px 20px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(29, 100, 184, 0.18);
}

.comparison-flow__label strong {
  font-size: 1.35rem;
  line-height: 1.35;
}

.comparison-flow__label--academy strong {
  font-size: 1.15rem;
}

.comparison-flow__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2rem;
}

.comparison-flow__body {
  min-width: 0;
}

.comparison-flow__steps {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) 76px 36px minmax(190px, 1.2fr) 76px 36px 110px;
  gap: 10px;
  align-items: center;
}

.comparison-flow__steps--academy {
  grid-template-columns: minmax(110px, 0.72fr) 34px 76px 34px minmax(150px, 1fr) 34px 76px 34px 110px;
}

.comparison-flow__step {
  min-height: 74px;
  background: #ffffff;
  border: 2px solid #1265bf;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px 18px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 8px 20px rgba(47, 63, 102, 0.06);
}

.comparison-flow__step--jp {
  border-color: #6f7378;
}

.comparison-flow__badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f7cfd2;
  border: 2px solid rgba(47, 63, 102, 0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.18;
  color: #111827;
  box-shadow: 0 8px 18px rgba(47, 63, 102, 0.08);
}

.comparison-flow__badge strong {
  font-size: 1.2rem;
}

.comparison-flow__badge span {
  font-size: 0.95rem;
  font-weight: 700;
}

.comparison-flow__arrow {
  width: 34px;
  height: 18px;
  background: #1265bf;
  clip-path: polygon(0 30%, 62% 30%, 62% 0, 100% 50%, 62% 100%, 62% 70%, 0 70%);
}

.comparison-flow__arrow--dark {
  background: #70747a;
}

.comparison-flow__goal {
  min-height: 92px;
  border-radius: 50%;
  background: #fff0c8;
  border: 2px solid rgba(47, 63, 102, 0.38);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 1.18rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  box-shadow: 0 10px 22px rgba(47, 63, 102, 0.08);
}

.comparison-flow__costs {
  margin: 26px auto 12px;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #9098a3;
  background: #ffffff;
}

.comparison-flow__cost {
  min-height: 76px;
  padding: 14px 12px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 4px;
  color: #111827;
  border-right: 1px solid #9098a3;
}

.comparison-flow__cost:last-child {
  border-right: none;
}

.comparison-flow__cost span {
  font-size: 0.9rem;
  font-weight: 600;
}

.comparison-flow__cost strong {
  font-size: 1.02rem;
}

.comparison-flow__total {
  max-width: 460px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #c8ced6;
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: #4b5563;
}

.comparison-flow__total strong {
  color: #0b61b6;
  font-size: 1.55rem;
}

.comparison-flow__note {
  margin: 12px 0 0;
  text-align: right;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(47, 63, 102, 0.72);
}

.comparison-flow__academy-cost {
  width: min(420px, 100%);
  margin: 24px 0 0 120px;
  background: #ffffff;
  border: 2px solid #1265bf;
  border-radius: 14px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #111827;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(47, 63, 102, 0.06);
}

.comparison-flow__academy-cost strong {
  color: #0b61b6;
  font-size: 1.45rem;
}

.comparison-flow__currency {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e9f9ff;
  color: #1265bf;
  display: grid;
  place-items: center;
}

.comparison-flow__impact {
  margin: 20px 0 0 auto;
  width: fit-content;
  max-width: 100%;
  background: #ffffff;
  border: 4px solid #1265bf;
  border-radius: 20px;
  padding: 18px 30px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #0b61b6;
  box-shadow: 0 14px 28px rgba(18, 101, 191, 0.14);
}

.comparison-flow__impact::before {
  content: "✦";
  color: #f5c542;
  font-size: 0.9em;
}

.comparison-flow__impact em {
  font-style: normal;
  color: #333;
  font-size: 0.72em;
}

.comparison-flow__impact-red {
  color: #e23a3a;
}

.comparison-flow__bdt-note {
  margin: 18px 0 0;
  font-size: 0.86rem;
  color: rgba(47, 63, 102, 0.72);
}

/* Responsive */

.strong-txt {
  font-weight: 700;
  font-size: 20px;
}
/* =========================
   Consolidated Responsive Breakpoints
========================= */

@media (max-width: 1024px) {
.header-container {
    padding: 15px 24px;
  }

  .logo-text {
    font-size: 14px;
  }

  nav {
    gap: 20px;
  }

  .hero-container {
    min-height: 940px;
  }

  .hero-promo {
    top: 270px;
    width: min(900px, calc(100% - 40px));
    padding: 20px 24px;
  }

  .hero-carousel__viewport {
    top: 530px;
    height: 500px;
  }

  .hero-carousel__slide {
    width: 260px;
    margin-left: -130px;
    margin-top: -172px;
  }

  .key-feature-grid,
  .method-points,
  .founder-profile,
  .courses-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .course-meta {
    grid-template-columns: 1fr 1fr;
  }

.comparison-flow {
    padding: 24px;
  }

  .comparison-flow__head {
    grid-template-columns: 150px 1fr 1fr;
  }

  .comparison-flow__row {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
  }

  .comparison-flow__steps,
  .comparison-flow__steps--academy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .comparison-flow__step {
    min-width: 170px;
  }

  .comparison-flow__goal {
    width: 110px;
  }

  .comparison-flow__academy-cost {
    margin-left: 0;
    display: flex;
  }
}

@media (max-width: 980px) {
.courses-grid {
    grid-template-columns: 1fr;
  }

.concept-flow-hub {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .concept-flow-hub::before,
  .concept-flow-hub::after {
    display: none;
  }

  .concept-flow-country-card {
    width: min(320px, 100%);
  }

  .concept-flow-center-badge {
    width: 150px;
    height: 150px;
    font-size: 0.98rem;
  }

  .concept-costs {
    grid-template-columns: 1fr;
  }

  .founder-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

.voices-feature-single {
    grid-template-columns: 1fr;
  }

  .voices-feature-content {
    padding: 0;
  }

.voices-feature-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .voice-detail-card {
    grid-template-columns: 1fr;
  }

  .voice-detail-body {
    padding: 0;
  }

.news-flyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.news-flyer-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
.concept-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .concept-pair-arrow {
    transform: rotate(90deg);
    min-height: 40px;
  }
}

@media (max-width: 768px) {
  #section {
    padding: 40px 0;
  }
.concept-cost-visual {
    margin: 28px 0 24px;
  }
  .concept-cost-visual-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .concept-cost-visual-item {
    border-radius: 16px;
  }

.concept-cost-copy {
    flex-direction: column;
    gap: 12px;
    padding: 16px 14px 18px;
    border-radius: 16px;
  }

  .concept-cost-copy__badge {
    flex-basis: auto;
    width: 160px;
    height: 86px;
  }

  .concept-cost-copy__badge-main {
    font-size: 2rem;
  }

  .concept-cost-copy__badge-sub {
    font-size: 1rem;
  }

  .concept-cost-copy__title {
    gap: 4px 10px;
  }

  .concept-cost-copy__text {
    font-size: 1.1rem;
  }

  .concept-cost-copy__strong {
    font-size: 1.4rem;
  }

  .concept-cost-copy__accent {
    width: 34px;
    height: 34px;
    top: 10px;
    right: 12px;
  }

  .concept-cost-copy__accent span {
    width: 5px;
    height: 19px;
  }
  .concept-detail p {
    font-size: .8rem;
  }
  .strong-txt {
    font-size: 16px;
  }

.hamburger {
    display: flex;
  }

  .logo-text {
    font-size: 12px;
    white-space: normal;
    max-width: 200px;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(233, 249, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 100;
    gap: 32px;
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 20px;
  }

  .cta-button {
    padding: 12px 48px;
    font-size: 18px;
  }

.hero-container {
    min-height: 1060px;
  }

  .hero-headline {
    top: 35px;
    width: 100%;
    padding: 0 15px;
    min-height: 145px;
  }

  .hero-headline p {
    margin: 5px;
  }

  .from-text {
    font-size: 18px;
    margin-left: 10%;
  }

  .main-text {
    font-size: 25px;
  }

  .main-text-left {
    margin-left: 10%;
  }

  .to-text {
    font-size: 16px;
    margin-top: -5px;
  }

  .main-text-right {
    margin-right: 10%;
    text-align: right;
  }

  .subtitle {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    padding: 0 30px;
  }

  .hero-promo {
    top: 205px;
    width: calc(100% - 28px);
    padding: 0 14px 16px;
    border-radius: 0;
  }

  .hero-promo__eyebrow {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .hero-promo__opening {
    margin-bottom: 14px;
    padding: 5px 15px;
    font-size: 12px;
  }

  .hero-promo__course-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-promo__label {
    font-size: 0.78rem;
  }

  .hero-promo__course-card {
    gap: 6px;
    padding: 12px 13px;
    border-radius: 16px;
  }

  .hero-promo__course-name {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  .hero-promo__course-point {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .hero-promo__course-note {
    font-size: 0.72rem;
  }

  .hero-carousel {
    perspective: 1200px;
    margin-top: 0;
  }

  .hero-carousel__viewport {
    top: 705px;
    height: 320px;
  }

  .hero-carousel__slide {
    width: 150px;
    margin-left: -75px;
    margin-top: -100px;
  }

  .one-stop-text p {
    font-size: 50px;
    bottom: 5%;
  }

  .hero-map {
    opacity: 0.2;
  }
  .hero-map-jp {
    width: 44%;
    top: 10%;
    right: 10%;
  }
  .hero-map-bd {
    left: 10%;
    top: 3%;
    width: 44%;
  }
  .concept-lead {
    font-size: .9rem;
  }

.contact-section {
        padding: 120px 0 60px;
      }
      .contact-form-wrapper {
        padding: 24px;
      }

.route-comparison-section {
    padding: 80px 0;
  }

  .comparison-flow {
    border-radius: 24px;
    padding: 20px;
  }

  .comparison-flow::before {
    background: linear-gradient(
      180deg,
      rgba(233, 249, 255, 0.72) 0%,
      rgba(233, 249, 255, 0.72) 50%,
      rgba(245, 245, 245, 0.78) 50%,
      rgba(245, 245, 245, 0.78) 100%
    );
  }

  .comparison-flow__head {
    grid-template-columns: 1fr;
  }

  .comparison-flow__head-spacer {
    display: none;
  }

  .comparison-flow__row {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .comparison-flow__label {
    min-height: auto;
    border-radius: 20px;
    padding: 20px;
  }

  .comparison-flow__steps,
  .comparison-flow__steps--academy {
    flex-direction: column;
    gap: 12px;
  }

  .comparison-flow__arrow {
    transform: rotate(90deg);
  }

  .comparison-flow__step {
    width: 100%;
    min-width: 0;
  }

  .comparison-flow__costs {
    grid-template-columns: 1fr;
  }

  .comparison-flow__cost {
    border-right: none;
    border-bottom: 1px solid #9098a3;
  }

  .comparison-flow__cost:last-child {
    border-bottom: none;
  }

  .comparison-flow__note {
    text-align: left;
  }

  .comparison-flow__impact {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px 18px;
  }
  #footer {
    padding: 36px 0;
  }
  .footer-grid {
    gap: 16px;
  }
  .footer-contact {
    font-size: 14px;
  }
  .footer-copyright {
    font-size: 12px;
  }
  .course-card-secondary {
    padding: 20px;
  }


  .class-schedule-scroll-hint,
  .about-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 8px 14px;
    color: #2f3f66;
    background: #eef8fc;
    border: 1px solid #d5eaf2;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(47, 63, 102, 0.08);
  }

  .class-schedule-scroll-hint__arrow,
  .about-scroll-hint__arrow {
    display: inline-block;
    font-size: 1.1rem;
    animation: classScheduleArrow 1.2s ease-in-out infinite;
  }
  .class-schedule-table-wrap,
  .about-overview {
    overflow-x: scroll;
    padding-bottom: 10px;
    border-radius: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(47, 63, 102, 0.35) #eef6fb;
    box-shadow: inset -18px 0 18px -18px rgba(47, 63, 102, 0.5);
  }

  .class-schedule-table-wrap::-webkit-scrollbar,
  .about-overview::-webkit-scrollbar {
    height: 4px;
  }

  .class-schedule-table-wrap::-webkit-scrollbar-track,
  .about-overview::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 999px;
  }

  .class-schedule-table-wrap::-webkit-scrollbar-thumb,
  .about-overview::-webkit-scrollbar-thumb {
    background: #aaa;
    border: none;
    border-radius: 999px;
  }

  .class-schedule-table-wrap::-webkit-scrollbar-thumb:hover,
  .about-overview::-webkit-scrollbar-thumb:hover {
    background: #999;
  }

}

@media (max-width: 640px) {
.course-card {
    padding: 26px 20px 24px;
    border-radius: 24px;
  }

  .course-card-head {
    gap: 14px;
    margin-bottom: 16px;
  }

  .course-card-mark {
    min-width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .course-title {
    font-size: 1.55rem;
  }

  .course-lead,
  .course-highlight p,
  .course-points li {
    font-size: 0.95rem;
  }

  .course-meta {
    grid-template-columns: 1fr;
  }

  .course-meta-value {
    font-size: 1.08rem;
  }

.concept-section,
  .key-feature-section,
  .courses-section {
    padding: 45px 0;
  }

  .section-container,
  .faq-container,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .concept-card,
  .feature-card,
  .method-section,
  .founder-profile,
  .course-card,
  .class-schedule-section,
  .about-block,
  .company-card {
    padding: 14px 8px;
    border-radius: 10px;
  }

  .concept-card .concept-block-title,
  .feature-card-title,
  .course-title,
  .class-schedule-title,
  .method-title,
  .founder-title,
  .about-mission-title {
    font-size: 1.3rem;
  }

  .concept-card .concept-block-text,
  .concept-card .concept-list li,
  .feature-card-text,
  .method-description,
  .method-point p,
  .method-detail p,
  .founder-text,
  .founder-career li,
  .course-lead,
  .course-highlight p,
  .course-points li,
  .class-schedule-lead,
  .class-summary-table th,
  .class-summary-table td,
  .class-schedule-table th,
  .class-schedule-table td,
  .class-schedule-note p,
  .about-mission-text,
  .about-subblock dd,
  .company-card dd,
  .faq-answer {
    font-size: 0.8rem;
  }

  .concept-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .concept-flow {
    padding: 90px 12px 64px;
  }

  .concept-flow::before {
    border-left-width: 48px;
    border-right-width: 48px;
    border-top-width: 30px;
  }

  .concept-flow-country-card {
    width: min(280px, 100%);
  }

  .concept-flow-card-inner {
    padding: 28px 24px;
  }

  .concept-flow-country-card h4 {
    font-size: 1.08rem;
  }

  .concept-flow-country-card p {
    font-size: 0.9rem;
  }

  .concept-flow-center-badge {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }

  .concept-flow-map img {
    width: 48%;
  }
    .course-card,.method-section,.feature-card {
    padding: 20px;
  }

  .class-summary-table th {
    width: 115px;
  }
  .class-summary-table th, .class-summary-table td {
    padding: 10px 12px;
  }

  .about-overview table {
    width: 100%;
    min-width: 560px;
    margin: 0;
  }

  .faq-button {
    padding: 20px;
  }

  .faq-question {
    font-size: 14px;
    padding-right: 20px;
  }

  .faq-icon {
    font-size: 20px;
  }

  .faq-content {
    padding: 0 20px 20px;
  }

  .footer-logo-text {
    font-size: 20px;
  }

  .footer-logo-text span {
    font-size: 16px;
  }
  .faq-cta-text {
    font-size: 14px;
  }

.voices-section {
    padding: 40px 0;
  }

  .voices-feature-single {
    padding: 18px;
    border-radius: 24px;
    gap: 24px;
  }

  .voices-feature-video {
    border-radius: 18px;
  }

  .voices-feature-meta {
    grid-template-columns: 1fr;
  }

  .voices-cta-button {
    width: 100%;
    min-width: 0;
  }

.voices-intro {
    margin-top: -34px;
  }

  .voice-card-body {
    padding: 22px 20px 24px;
  }

  .voice-play-button {
    width: 50px;
    height: 50px;
  }

  .voices-page-hero {
    padding: 130px 0 70px;
  }

  .voices-page-section {
    padding: 70px 0 80px;
  }

  .voice-detail-card {
    padding: 18px;
    border-radius: 24px;
  }

  .voice-video-wrap {
    border-radius: 18px;
  }

  .voice-meta-list {
    grid-template-columns: 1fr;
  }

  .voices-page-cta {
    padding: 30px 20px;
  }

.news-section {
    padding: 80px 0;
  }

  .news-flyer-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .news-flyer-body {
    padding: 22px 20px 24px;
  }

  .news-flyer-title {
    font-size: 1.12rem;
  }

.news-flyer-card-wide {
    grid-column: span 1;
  }

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

  .news-pdf-links {
    flex-direction: column;
    gap: 10px;
  }

  .news-pdf-links .news-view-link {
    justify-content: center;
  }

.hero-container {
    min-height: 920px;
  }

  .hero-promo {
    top: 195px;
  }

  .hero-promo__eyebrow {
    font-size: 15px;
  }

  .hero-promo__opening {
    font-size: 11px;
  }

  .hero-carousel__viewport {
    top: 560px;
  }
}

/* Language switch button */
.language-switch {
  font-weight: 700;
  color: #2f3f66;
  white-space: nowrap;
}

.language-switch-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(47, 63, 102, 0.35);
  border-radius: 999px;
  background-color: #fff;
  color: #2f3f66;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(47, 63, 102, 0.08);
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.language-switch-button:hover {
  background-color: #eef8fc;
  border-color: #2f3f66;
  color: #2f3f66;
  transform: translateY(-1px);
}

.language-switch__text {
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .language-switch-button {
    padding: 12px 22px;
    font-size: 18px;
  }

  .language-switch__text {
    font-size: 18px;
  }
}
.hero-promo__jobs {
  margin-top: -2px;
}

.hero-promo__job-summary {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  list-style: none;
}

.hero-promo__job-summary::-webkit-details-marker {
  display: none;
}

.hero-promo__job-summary:hover {
  opacity: 0.75;
}

.hero-promo__job-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 12px 10px 40px;
  background: #fff7f7;
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 12px;
}

.hero-promo__job-list a {
  position: relative;
  color: #2f3f66;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  padding-left: 1.1em;
}

.hero-promo__job-list a::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: #d71920;
  font-size: 0.8em;
  line-height: inherit;
}

.hero-promo__job-list a:hover {
  text-decoration: underline;
}