/*!
 * IRODORI English School Theme
 * Slug: english-school
 * Category: education
 * Preloader: L4:タイピング
 * Hero: C:split
 * Scroll: S6:stagger + S5:scale + S8:counter
 * CSS Prefix: .esch-
 */

/* ==========================================================================
   0. CSS Custom Properties
   ========================================================================== */

:root {
  /* Brand Colors */
  --esch-primary:        #00B050;
  --esch-primary-dk:     #007A38;
  --esch-primary-lt:     #4DCB80;
  --esch-primary-bg:     #E8F5EE;
  --esch-secondary:      #FFB800;
  --esch-secondary-dk:   #E09800;
  --esch-secondary-lt:   #FFF0B0;
  --esch-accent:         #FF6B35;
  --esch-accent-dk:      #E0562A;
  --esch-dark:           #1A2E1A;
  --esch-dark-2:         #2C4A2C;
  --esch-text:           #333333;
  --esch-text-sub:       #666666;
  --esch-text-muted:     #999999;
  --esch-bg:             #FFFFFF;
  --esch-bg-alt:         #F5FAF5;
  --esch-bg-dark:        #1A2E1A;
  --esch-border:         #E0EEE0;
  --esch-border-dk:      #B0D0B0;
  --esch-shadow:         0 4px 20px rgba(0, 176, 80, 0.12);
  --esch-shadow-hover:   0 8px 32px rgba(0, 176, 80, 0.22);
  --esch-shadow-card:    0 2px 12px rgba(0, 0, 0, 0.08);

  /* Typography */
  --esch-font-jp:        'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  --esch-font-en:        'Roboto', 'Segoe UI', system-ui, sans-serif;
  --esch-font-mono:      'Courier New', 'Consolas', monospace;

  /* Spacing */
  --esch-section-pt:     clamp(60px, 8vw, 100px);
  --esch-section-pb:     clamp(60px, 8vw, 100px);
  --esch-container:      1200px;
  --esch-container-wide: 1400px;
  --esch-gutter:         clamp(16px, 4vw, 32px);
  --esch-radius:         12px;
  --esch-radius-sm:      6px;
  --esch-radius-lg:      20px;
  --esch-radius-pill:    999px;

  /* Transitions */
  --esch-ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --esch-ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --esch-duration:       0.3s;
  --esch-duration-slow:  0.6s;

  /* Z-index */
  --esch-z-header:       1000;
  --esch-z-loader:       9999;
  --esch-z-modal:        2000;
  --esch-z-overlay:      500;
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */

.esch-root *,
.esch-root *::before,
.esch-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.esch-root {
  font-family: var(--esch-font-jp);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  color: var(--esch-text);
  background: var(--esch-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.esch-root a {
  color: inherit;
  text-decoration: none;
}

.esch-root ul,
.esch-root ol {
  list-style: none;
}

.esch-root button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   2. Preloader L4: タイピング
   ========================================================================== */

.esch-preloader {
  position: fixed;
  inset: 0;
  background: var(--esch-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: var(--esch-z-loader);
  transition: opacity 0.6s var(--esch-ease), transform 0.6s var(--esch-ease);
}

.esch-preloader.is-exit {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.esch-preloader__logo {
  font-family: var(--esch-font-en);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--esch-primary);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: es-loader-fade-in 0.4s var(--esch-ease) 0.2s forwards;
}

.esch-preloader__typing-wrap {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--esch-font-mono);
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  white-space: pre-wrap;
  max-width: 80vw;
  text-align: center;
  min-height: 1.5em;
}

.esch-preloader__typing-en {
  color: var(--esch-primary-lt);
  font-style: italic;
}

.esch-preloader__typing-jp {
  color: rgba(255, 255, 255, 0.9);
  display: none;
}

.esch-preloader__cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--esch-primary);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: es-loader-blink 0.7s step-end infinite;
}

.esch-preloader__bar-wrap {
  width: min(300px, 70vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  overflow: hidden;
}

.esch-preloader__bar {
  height: 100%;
  background: var(--esch-primary);
  width: 0%;
  animation: es-loader-progress 2.5s var(--esch-ease) forwards;
  border-radius: 1px;
}

@keyframes es-loader-blink {
  50% { opacity: 0; }
}

@keyframes es-loader-fade-in {
  to { opacity: 1; }
}

@keyframes es-loader-progress {
  0%   { width: 0%; }
  60%  { width: 70%; }
  100% { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .esch-preloader__cursor {
    animation: none;
    opacity: 1;
  }
  .esch-preloader__bar {
    animation: none;
    width: 100%;
  }
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */

.esch-container {
  max-width: var(--esch-container);
  margin: 0 auto;
  padding: 0 var(--esch-gutter);
}

.esch-container--wide {
  max-width: var(--esch-container-wide);
  margin: 0 auto;
  padding: 0 var(--esch-gutter);
}

.esch-section {
  padding-top: var(--esch-section-pt);
  padding-bottom: var(--esch-section-pb);
}

.esch-section--alt {
  background: var(--esch-bg-alt);
}

.esch-section--dark {
  background: var(--esch-bg-dark);
  color: #fff;
}

.esch-section--yellow {
  background: var(--esch-secondary-lt);
}

.esch-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.esch-section-eyebrow {
  display: inline-block;
  font-family: var(--esch-font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--esch-primary);
  background: var(--esch-primary-bg);
  padding: 4px 14px;
  border-radius: var(--esch-radius-pill);
  margin-bottom: 12px;
}

.esch-section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--esch-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.esch-section-title--white {
  color: #fff;
}

.esch-section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--esch-text-sub);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.esch-section-desc--white {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.esch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--esch-radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--esch-font-jp);
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--esch-duration) var(--esch-ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.esch-btn--primary {
  background: var(--esch-primary);
  color: #fff;
  border-color: var(--esch-primary);
}

.esch-btn--primary:hover {
  background: var(--esch-primary-dk);
  border-color: var(--esch-primary-dk);
  transform: translateY(-2px);
  box-shadow: var(--esch-shadow-hover);
}

.esch-btn--secondary {
  background: var(--esch-secondary);
  color: var(--esch-dark);
  border-color: var(--esch-secondary);
}

.esch-btn--secondary:hover {
  background: var(--esch-secondary-dk);
  border-color: var(--esch-secondary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
}

.esch-btn--outline {
  background: transparent;
  color: var(--esch-primary);
  border-color: var(--esch-primary);
}

.esch-btn--outline:hover {
  background: var(--esch-primary);
  color: #fff;
  transform: translateY(-2px);
}

.esch-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.esch-btn--outline-white:hover {
  background: #fff;
  color: var(--esch-dark);
}

.esch-btn--lg {
  padding: 18px 40px;
  font-size: 17px;
}

.esch-btn--sm {
  padding: 10px 22px;
  font-size: 13px;
}

.esch-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Scale animation for CTAs (S5) */
.esch-scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s var(--esch-ease), transform 0.5s var(--esch-ease-bounce);
}

.esch-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .esch-scale-in {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   5. Header
   ========================================================================== */

.esch-header-topbar {
  background: var(--esch-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px var(--esch-gutter);
  font-size: 13px;
}

.esch-header-topbar__inner {
  max-width: var(--esch-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.esch-header-topbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff;
}

.esch-header-topbar__phone svg {
  width: 16px;
  height: 16px;
  color: var(--esch-secondary);
}

.esch-header-topbar__hours {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.esch-header-topbar__links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.esch-header-topbar__link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  transition: color var(--esch-duration) var(--esch-ease);
}

.esch-header-topbar__link:hover {
  color: #fff;
}

.esch-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--esch-z-header);
  transition: background var(--esch-duration) var(--esch-ease),
              box-shadow var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
}

.esch-header.has-topbar {
  top: 0;
}

.esch-header__bar {
  background: transparent;
  padding: 16px var(--esch-gutter);
  transition: background var(--esch-duration) var(--esch-ease),
              padding var(--esch-duration) var(--esch-ease);
}

.esch-header.is-scrolled .esch-header__bar {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px var(--esch-gutter);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.esch-header__inner {
  max-width: var(--esch-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.esch-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.esch-header__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--esch-primary);
  border-radius: var(--esch-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--esch-duration) var(--esch-ease-bounce);
}

.esch-header__logo-mark:hover {
  transform: scale(1.1);
}

.esch-header__logo-mark svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.esch-header__logo-text {
  font-family: var(--esch-font-en);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  transition: color var(--esch-duration) var(--esch-ease);
  line-height: 1;
}

.esch-header__logo-sub {
  font-size: 10px;
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--esch-font-jp);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.esch-header.is-scrolled .esch-header__logo-text {
  color: var(--esch-dark);
}

.esch-header.is-scrolled .esch-header__logo-sub {
  color: var(--esch-text-sub);
}

.esch-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.esch-header__nav-item {
  position: relative;
}

.esch-header__nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--esch-radius-sm);
  transition: color var(--esch-duration) var(--esch-ease),
              background var(--esch-duration) var(--esch-ease);
  white-space: nowrap;
}

.esch-header.is-scrolled .esch-header__nav-link {
  color: var(--esch-text);
}

.esch-header__nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.esch-header.is-scrolled .esch-header__nav-link:hover {
  background: var(--esch-primary-bg);
  color: var(--esch-primary);
}

.esch-header__nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--esch-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--esch-duration) var(--esch-ease),
              visibility var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
  transform: translateX(-50%) translateY(8px);
}

.esch-header__nav-item:hover .esch-header__nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.esch-header__nav-dropdown-link {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--esch-text);
  border-radius: var(--esch-radius-sm);
  transition: background var(--esch-duration) var(--esch-ease),
              color var(--esch-duration) var(--esch-ease);
}

.esch-header__nav-dropdown-link:hover {
  background: var(--esch-primary-bg);
  color: var(--esch-primary);
}

.esch-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.esch-header__action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--esch-radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--esch-duration) var(--esch-ease);
  text-decoration: none;
  white-space: nowrap;
}

.esch-header__action-btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.esch-header.is-scrolled .esch-header__action-btn--outline {
  border-color: var(--esch-border-dk);
  color: var(--esch-text);
}

.esch-header__action-btn--primary {
  background: var(--esch-secondary);
  color: var(--esch-dark);
  border: 1.5px solid var(--esch-secondary);
}

.esch-header__action-btn--primary:hover {
  background: var(--esch-secondary-dk);
  transform: translateY(-1px);
}

.esch-header__action-btn svg {
  width: 16px;
  height: 16px;
}

.esch-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.esch-header__hamburger-line {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all var(--esch-duration) var(--esch-ease);
}

.esch-header.is-scrolled .esch-header__hamburger-line {
  background: var(--esch-dark);
}

.esch-header__hamburger.is-open .esch-header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.esch-header__hamburger.is-open .esch-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.esch-header__hamburger.is-open .esch-header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.esch-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--esch-dark);
  z-index: calc(var(--esch-z-header) - 1);
  padding: 80px var(--esch-gutter) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--esch-duration-slow) var(--esch-ease),
              visibility var(--esch-duration-slow) var(--esch-ease);
}

.esch-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.esch-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.esch-mobile-menu__link {
  display: block;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--esch-radius);
  transition: background var(--esch-duration) var(--esch-ease),
              color var(--esch-duration) var(--esch-ease);
}

.esch-mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.esch-mobile-menu__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   6. Hero (C:split)
   ========================================================================== */

.esch-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  padding-top: 100px;
}

.esch-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px) clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, #0A1A0A 0%, #1A2E1A 60%, #243C24 100%);
  position: relative;
  z-index: 1;
}

.esch-hero__content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300B050' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.esch-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--esch-font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--esch-primary-lt);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: es-hero-slide-up 0.7s var(--esch-ease) 0.3s forwards;
}

.esch-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--esch-secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.esch-hero__heading {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: es-hero-slide-up 0.7s var(--esch-ease) 0.5s forwards;
}

.esch-hero__heading-en {
  display: block;
  font-family: var(--esch-font-en);
  font-size: clamp(18px, 2.5vw, 30px);
  color: var(--esch-primary-lt);
  font-style: italic;
  margin-bottom: 8px;
  font-weight: 400;
}

.esch-hero__heading em {
  color: var(--esch-secondary);
  font-style: normal;
}

.esch-hero__sub {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
  opacity: 0;
  transform: translateY(20px);
  animation: es-hero-slide-up 0.7s var(--esch-ease) 0.7s forwards;
}

.esch-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: es-hero-slide-up 0.7s var(--esch-ease) 0.9s forwards;
}

.esch-hero__cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.esch-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: es-hero-slide-up 0.7s var(--esch-ease) 1.1s forwards;
}

.esch-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.esch-hero__stat-num {
  font-family: var(--esch-font-en);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--esch-secondary);
  line-height: 1;
}

.esch-hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.esch-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.esch-hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: es-hero-zoom-out 8s var(--esch-ease) forwards;
}

.esch-hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 176, 80, 0.15) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.esch-hero__visual-badge {
  position: absolute;
  bottom: 40px;
  left: -10px;
  background: #fff;
  border-radius: var(--esch-radius-lg);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 200px;
  animation: es-hero-badge-in 0.8s var(--esch-ease-bounce) 1.2s both;
}

.esch-hero__visual-badge-num {
  font-family: var(--esch-font-en);
  font-size: 32px;
  font-weight: 800;
  color: var(--esch-primary);
  line-height: 1;
}

.esch-hero__visual-badge-text {
  font-size: 12px;
  color: var(--esch-text-sub);
  margin-top: 4px;
  line-height: 1.4;
}

.esch-hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: es-scroll-bounce 2s ease-in-out infinite;
  z-index: 2;
}

.esch-hero__scroll-arrow {
  width: 20px;
  height: 20px;
}

@keyframes es-hero-slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes es-hero-zoom-out {
  to { transform: scale(1); }
}

@keyframes es-hero-badge-in {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes es-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .esch-hero__eyebrow,
  .esch-hero__heading,
  .esch-hero__sub,
  .esch-hero__cta-group,
  .esch-hero__stats {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .esch-hero__visual-img {
    transform: scale(1);
    animation: none;
  }
  .esch-hero__visual-badge {
    animation: none;
  }
  .esch-hero__scroll-hint {
    animation: none;
  }
}

/* ==========================================================================
   7. Achievement Banner (S8:counter)
   ========================================================================== */

.esch-achievement {
  background: linear-gradient(135deg, var(--esch-primary-dk) 0%, var(--esch-primary) 100%);
  padding: clamp(40px, 5vw, 60px) 0;
}

.esch-achievement__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.esch-achievement__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--esch-ease), transform 0.5s var(--esch-ease);
}

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

.esch-achievement__num {
  font-family: var(--esch-font-en);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.esch-achievement__num-suffix {
  font-size: 0.5em;
  opacity: 0.85;
}

.esch-achievement__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.esch-achievement__label strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

/* ==========================================================================
   8. Features / Differentiation (S6:stagger)
   ========================================================================== */

.esch-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.esch-feature-card {
  background: var(--esch-bg);
  border: 1.5px solid var(--esch-border);
  border-radius: var(--esch-radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--esch-duration) var(--esch-ease),
              box-shadow var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
  opacity: 0;
  transform: translateY(30px);
}

.esch-feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.esch-feature-card:hover {
  border-color: var(--esch-primary);
  box-shadow: var(--esch-shadow);
  transform: translateY(-4px);
}

.esch-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--esch-primary) 0%, var(--esch-primary-lt) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--esch-duration) var(--esch-ease);
}

.esch-feature-card:hover::before {
  transform: scaleX(1);
}

.esch-feature-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--esch-primary-bg);
  border-radius: var(--esch-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease-bounce);
}

.esch-feature-card:hover .esch-feature-card__icon-wrap {
  background: var(--esch-primary);
  transform: scale(1.1) rotate(-5deg);
}

.esch-feature-card__icon {
  width: 32px;
  height: 32px;
  color: var(--esch-primary);
  transition: color var(--esch-duration) var(--esch-ease);
}

.esch-feature-card:hover .esch-feature-card__icon {
  color: #fff;
}

.esch-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--esch-dark);
  margin-bottom: 12px;
}

.esch-feature-card__desc {
  font-size: 14px;
  color: var(--esch-text-sub);
  line-height: 1.7;
}

.esch-feature-card__badge {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: var(--esch-secondary-lt);
  color: var(--esch-secondary-dk);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--esch-radius-pill);
}

/* ==========================================================================
   9. Course Cards (S6:stagger)
   ========================================================================== */

.esch-courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.esch-course-card {
  background: var(--esch-bg);
  border-radius: var(--esch-radius-lg);
  overflow: hidden;
  box-shadow: var(--esch-shadow-card);
  transition: box-shadow var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
}

.esch-stagger-item.esch-course-card {
  opacity: 0;
  transform: translateY(30px);
}

.esch-course-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.esch-course-card:hover {
  box-shadow: var(--esch-shadow-hover);
  transform: translateY(-4px);
}

.esch-course-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.esch-course-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--esch-duration-slow) var(--esch-ease);
}

.esch-course-card:hover .esch-course-card__thumb img {
  transform: scale(1.08);
}

.esch-course-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--esch-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--esch-radius-pill);
}

.esch-course-card__body {
  padding: 20px;
}

.esch-course-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--esch-dark);
  margin-bottom: 8px;
}

.esch-course-card__desc {
  font-size: 13px;
  color: var(--esch-text-sub);
  line-height: 1.6;
  margin-bottom: 16px;
}

.esch-course-card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.esch-course-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--esch-text-sub);
}

.esch-course-card__meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--esch-primary);
}

.esch-course-card__link {
  display: block;
  margin-top: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--esch-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--esch-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--esch-duration) var(--esch-ease);
}

.esch-course-card__link:hover {
  gap: 8px;
}

.esch-course-card__link svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   10. Curriculum Timeline
   ========================================================================== */

.esch-curriculum {
  max-width: 900px;
  margin: 0 auto;
}

.esch-curriculum__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.esch-curriculum__track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--esch-border);
  z-index: 0;
}

.esch-curriculum__track::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  height: 2px;
  background: var(--esch-primary);
  z-index: 1;
  animation: es-curriculum-progress 1.5s var(--esch-ease) 0.5s both;
  width: 0%;
}

.esch-curriculum__track.is-visible::after {
  animation: es-curriculum-progress 1.5s var(--esch-ease) forwards;
}

@keyframes es-curriculum-progress {
  to { width: calc(100% - 72px); }
}

.esch-curriculum__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--esch-ease), transform 0.5s var(--esch-ease);
}

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

.esch-curriculum__step {
  width: 72px;
  height: 72px;
  background: var(--esch-bg);
  border: 3px solid var(--esch-border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color var(--esch-duration) var(--esch-ease),
              background var(--esch-duration) var(--esch-ease);
  position: relative;
  z-index: 2;
}

.esch-curriculum__item.is-active .esch-curriculum__step {
  background: var(--esch-primary);
  border-color: var(--esch-primary);
}

.esch-curriculum__step-num {
  font-family: var(--esch-font-en);
  font-size: 12px;
  font-weight: 800;
  color: var(--esch-text-muted);
  line-height: 1;
}

.esch-curriculum__item.is-active .esch-curriculum__step-num {
  color: #fff;
}

.esch-curriculum__step-icon {
  width: 24px;
  height: 24px;
  color: var(--esch-text-muted);
}

.esch-curriculum__item.is-active .esch-curriculum__step-icon {
  color: #fff;
}

.esch-curriculum__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--esch-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.esch-curriculum__desc {
  font-size: 11px;
  color: var(--esch-text-sub);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .esch-curriculum__track::after {
    animation: none;
    width: calc(100% - 72px);
  }
}

/* ==========================================================================
   11. Testimonials
   ========================================================================== */

.esch-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.esch-testimonial-card {
  background: var(--esch-bg);
  border-radius: var(--esch-radius-lg);
  padding: 28px;
  box-shadow: var(--esch-shadow-card);
  position: relative;
  transition: box-shadow var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
}

.esch-stagger-item.esch-testimonial-card {
  opacity: 0;
  transform: translateY(30px);
}

.esch-testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.esch-testimonial-card:hover {
  box-shadow: var(--esch-shadow);
  transform: translateY(-2px);
}

.esch-testimonial-card__quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--esch-font-en);
  font-size: 60px;
  color: var(--esch-primary-bg);
  line-height: 1;
  font-weight: 800;
  pointer-events: none;
  user-select: none;
}

.esch-testimonial-card__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.esch-testimonial-card__star {
  width: 18px;
  height: 18px;
  color: var(--esch-secondary);
}

.esch-testimonial-card__star--empty {
  color: var(--esch-border-dk);
}

.esch-testimonial-card__text {
  font-size: 14px;
  color: var(--esch-text);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.esch-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--esch-border);
}

.esch-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.esch-testimonial-card__author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--esch-dark);
}

.esch-testimonial-card__author-meta {
  font-size: 12px;
  color: var(--esch-text-sub);
  margin-top: 2px;
}

.esch-testimonial-card__result {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--esch-primary-bg);
  color: var(--esch-primary-dk);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--esch-radius-pill);
}

/* ==========================================================================
   12. Teacher Carousel
   ========================================================================== */

.esch-teachers {
  position: relative;
  overflow: hidden;
}

.esch-teachers__track-wrap {
  overflow: hidden;
}

.esch-teachers__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--esch-ease);
}

.esch-teacher-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  background: var(--esch-bg);
  border-radius: var(--esch-radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--esch-shadow-card);
  transition: box-shadow var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
}

.esch-teacher-card:hover {
  box-shadow: var(--esch-shadow);
  transform: translateY(-4px);
}

.esch-teacher-card__photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.esch-teacher-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--esch-border);
  transition: border-color var(--esch-duration) var(--esch-ease);
}

.esch-teacher-card:hover .esch-teacher-card__photo {
  border-color: var(--esch-primary);
}

.esch-teacher-card__flag {
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  box-shadow: var(--esch-shadow-card);
}

.esch-teacher-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esch-teacher-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--esch-dark);
  margin-bottom: 4px;
}

.esch-teacher-card__origin {
  font-size: 12px;
  color: var(--esch-text-sub);
  margin-bottom: 12px;
}

.esch-teacher-card__courses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 12px;
}

.esch-teacher-card__course-tag {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--esch-primary-bg);
  color: var(--esch-primary-dk);
  border-radius: var(--esch-radius-pill);
  font-weight: 600;
}

.esch-teacher-card__qual {
  font-size: 12px;
  color: var(--esch-text-sub);
  font-style: italic;
}

.esch-teachers__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.esch-teachers__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--esch-border-dk);
  background: var(--esch-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--esch-duration) var(--esch-ease);
  color: var(--esch-text);
}

.esch-teachers__nav-btn:hover {
  border-color: var(--esch-primary);
  background: var(--esch-primary);
  color: #fff;
}

.esch-teachers__nav-btn svg {
  width: 20px;
  height: 20px;
}

.esch-teachers__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.esch-teachers__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--esch-border-dk);
  cursor: pointer;
  transition: background var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
}

.esch-teachers__dot.is-active {
  background: var(--esch-primary);
  transform: scale(1.3);
}

/* ==========================================================================
   13. Pricing Plans
   ========================================================================== */

.esch-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.esch-pricing-card {
  background: var(--esch-bg);
  border: 2px solid var(--esch-border);
  border-radius: var(--esch-radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color var(--esch-duration) var(--esch-ease),
              box-shadow var(--esch-duration) var(--esch-ease),
              transform var(--esch-duration) var(--esch-ease);
}

.esch-stagger-item.esch-pricing-card {
  opacity: 0;
  transform: translateY(30px);
}

.esch-pricing-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.esch-pricing-card:hover {
  box-shadow: var(--esch-shadow);
  transform: translateY(-4px);
}

.esch-pricing-card--featured {
  border-color: var(--esch-primary);
  background: linear-gradient(180deg, var(--esch-bg) 0%, var(--esch-primary-bg) 100%);
  transform: scale(1.03);
}

.esch-pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.esch-pricing-card--featured.is-visible {
  transform: scale(1.03);
}

.esch-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--esch-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--esch-radius-pill);
  white-space: nowrap;
}

.esch-pricing-card__plan {
  font-size: 13px;
  font-weight: 600;
  color: var(--esch-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.esch-pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--esch-dark);
  margin-bottom: 20px;
}

.esch-pricing-card__price-wrap {
  margin-bottom: 24px;
}

.esch-pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.esch-pricing-card__price-prefix {
  font-size: 18px;
  font-weight: 700;
  color: var(--esch-dark);
}

.esch-pricing-card__price-num {
  font-family: var(--esch-font-en);
  font-size: clamp(36px, 4vw, 44px);
  font-weight: 800;
  color: var(--esch-primary);
  line-height: 1;
}

.esch-pricing-card__price-suffix {
  font-size: 14px;
  color: var(--esch-text-sub);
}

.esch-pricing-card__price-tax {
  font-size: 11px;
  color: var(--esch-text-muted);
  margin-top: 4px;
}

.esch-pricing-card__divider {
  height: 1px;
  background: var(--esch-border);
  margin: 20px 0;
}

.esch-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.esch-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--esch-text);
}

.esch-pricing-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--esch-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.esch-pricing-card__feature--disabled {
  color: var(--esch-text-muted);
}

.esch-pricing-card__feature--disabled svg {
  color: var(--esch-border-dk);
}

/* ==========================================================================
   14. FAQ Accordion
   ========================================================================== */

.esch-faq {
  max-width: 760px;
  margin: 0 auto;
}

.esch-faq__item {
  border: 1.5px solid var(--esch-border);
  border-radius: var(--esch-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--esch-duration) var(--esch-ease),
              box-shadow var(--esch-duration) var(--esch-ease);
}

.esch-faq__item.is-open {
  border-color: var(--esch-primary);
  box-shadow: var(--esch-shadow);
}

.esch-faq__question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  background: var(--esch-bg);
  transition: background var(--esch-duration) var(--esch-ease);
}

.esch-faq__item.is-open .esch-faq__question {
  background: var(--esch-primary-bg);
}

.esch-faq__question-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--esch-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--esch-font-en);
  font-size: 14px;
  font-weight: 800;
  color: var(--esch-primary);
  transition: background var(--esch-duration) var(--esch-ease),
              color var(--esch-duration) var(--esch-ease);
}

.esch-faq__item.is-open .esch-faq__question-icon {
  background: var(--esch-primary);
  color: #fff;
}

.esch-faq__question-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--esch-dark);
}

.esch-faq__toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  color: var(--esch-text-sub);
  transition: transform var(--esch-duration) var(--esch-ease),
              color var(--esch-duration) var(--esch-ease);
}

.esch-faq__item.is-open .esch-faq__toggle {
  transform: rotate(45deg);
  color: var(--esch-primary);
}

.esch-faq__toggle svg {
  width: 24px;
  height: 24px;
}

.esch-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--esch-ease);
}

.esch-faq__item.is-open .esch-faq__answer {
  max-height: 400px;
}

.esch-faq__answer-inner {
  padding: 0 20px 20px;
  padding-left: calc(20px + 28px + 16px);
  font-size: 14px;
  color: var(--esch-text);
  line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  .esch-faq__answer {
    transition: none;
  }
}

/* ==========================================================================
   15. CTA Section
   ========================================================================== */

.esch-cta {
  background: linear-gradient(135deg, var(--esch-dark) 0%, #0D3D1A 50%, var(--esch-primary-dk) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.esch-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300B050' fill-opacity='0.06'%3E%3Cpath d='M40 40c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20zm-40 0c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.esch-cta__content {
  position: relative;
  z-index: 1;
}

.esch-cta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.esch-cta__title span {
  color: var(--esch-secondary);
}

.esch-cta__desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.esch-cta__form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--esch-radius-lg);
  padding: 32px;
  max-width: 540px;
  margin: 0 auto;
}

.esch-cta__form-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.esch-cta__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.esch-cta__form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.esch-cta__form-field--full {
  grid-column: 1 / -1;
}

.esch-cta__form-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.esch-cta__form-input,
.esch-cta__form-select {
  padding: 10px 14px;
  border-radius: var(--esch-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-family: var(--esch-font-jp);
  transition: border-color var(--esch-duration) var(--esch-ease),
              background var(--esch-duration) var(--esch-ease);
  outline: none;
}

.esch-cta__form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.esch-cta__form-input:focus,
.esch-cta__form-select:focus {
  border-color: var(--esch-primary-lt);
  background: rgba(255, 255, 255, 0.15);
}

.esch-cta__form-select option {
  background: var(--esch-dark);
  color: #fff;
}

.esch-cta__form-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* ==========================================================================
   16. Stagger Animation (S6)
   ========================================================================== */

.esch-stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--esch-ease), transform 0.5s var(--esch-ease);
}

.esch-stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays */
.esch-stagger-item:nth-child(1)  { transition-delay: 0ms; }
.esch-stagger-item:nth-child(2)  { transition-delay: 80ms; }
.esch-stagger-item:nth-child(3)  { transition-delay: 160ms; }
.esch-stagger-item:nth-child(4)  { transition-delay: 240ms; }
.esch-stagger-item:nth-child(5)  { transition-delay: 320ms; }
.esch-stagger-item:nth-child(6)  { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .esch-stagger-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   17. Footer
   ========================================================================== */

.esch-footer {
  background: var(--esch-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(48px, 7vw, 80px) 0 0;
}

.esch-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.esch-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.esch-footer__brand-name {
  font-family: var(--esch-font-en);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.esch-footer__brand-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.esch-footer__sns-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--esch-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--esch-duration) var(--esch-ease);
}

.esch-footer__sns-link:hover {
  background: var(--esch-primary);
}

.esch-footer__sns-link svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.esch-footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.esch-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.esch-footer__nav-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--esch-duration) var(--esch-ease),
              padding-left var(--esch-duration) var(--esch-ease);
}

.esch-footer__nav-link:hover {
  color: var(--esch-primary-lt);
  padding-left: 4px;
}

.esch-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.esch-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.esch-footer__contact-icon {
  width: 18px;
  height: 18px;
  color: var(--esch-primary-lt);
  flex-shrink: 0;
  margin-top: 2px;
}

.esch-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.esch-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.esch-footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.esch-footer__legal-links {
  display: flex;
  gap: 16px;
}

.esch-footer__legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--esch-duration) var(--esch-ease);
}

.esch-footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   18. Presets System
   ========================================================================== */

[data-es-preset="1"] { /* デフォルト: グリーン×イエロー */
  --esch-primary:     #00B050;
  --esch-primary-dk:  #007A38;
  --esch-secondary:   #FFB800;
}

[data-es-preset="2"] { /* ブルー×ゴールド（ビジネス英語向け） */
  --esch-primary:     #0066CC;
  --esch-primary-dk:  #004A99;
  --esch-primary-bg:  #E6F0FF;
  --esch-secondary:   #F5A623;
  --esch-dark:        #0A1A3A;
}

[data-es-preset="3"] { /* オレンジ×ネイビー（アクティブ系） */
  --esch-primary:     #FF6B35;
  --esch-primary-dk:  #D94E1B;
  --esch-primary-bg:  #FFF0EB;
  --esch-secondary:   #1A3A6B;
  --esch-dark:        #0D1B35;
}

[data-es-preset="4"] { /* パープル×ミント（若年層向け） */
  --esch-primary:     #7B2FBE;
  --esch-primary-dk:  #5A1F8E;
  --esch-primary-bg:  #F3E9FF;
  --esch-secondary:   #00C896;
  --esch-dark:        #1A0A2E;
}

[data-es-preset="5"] { /* ティール×コーラル（グローバル系） */
  --esch-primary:     #00897B;
  --esch-primary-dk:  #006064;
  --esch-primary-bg:  #E0F4F3;
  --esch-secondary:   #FF7043;
  --esch-dark:        #0D2020;
}

[data-es-preset="6"] { /* ダークグリーン×ライム（エリート感） */
  --esch-primary:     #2E7D32;
  --esch-primary-dk:  #1B5E20;
  --esch-primary-bg:  #E8F5E9;
  --esch-secondary:   #CDDC39;
  --esch-secondary-dk: #9E9D24;
  --esch-dark:        #0A1A0A;
}

[data-es-preset="7"] { /* スカイブルー×ピーチ（フレンドリー） */
  --esch-primary:     #0288D1;
  --esch-primary-dk:  #01579B;
  --esch-primary-bg:  #E1F5FE;
  --esch-secondary:   #FF8A65;
  --esch-dark:        #0A1F35;
}

[data-es-preset="8"] { /* インディゴ×アンバー（知性重視） */
  --esch-primary:     #3949AB;
  --esch-primary-dk:  #283593;
  --esch-primary-bg:  #E8EAF6;
  --esch-secondary:   #FFB300;
  --esch-dark:        #0D1330;
}

[data-es-preset="9"] { /* ローズ×ミントグリーン（女性向け） */
  --esch-primary:     #D81B60;
  --esch-primary-dk:  #AD1457;
  --esch-primary-bg:  #FCE4EC;
  --esch-secondary:   #00BCD4;
  --esch-dark:        #2D0017;
}

[data-es-preset="10"] { /* ブラック×ゴールド（プレミアム） */
  --esch-primary:     #B8860B;
  --esch-primary-dk:  #8B6914;
  --esch-primary-bg:  #FFFDE7;
  --esch-secondary:   #FFFFFF;
  --esch-dark:        #0A0A0A;
  --esch-bg-dark:     #111111;
}

/* ==========================================================================
   19. Responsive Design
   ========================================================================== */

@media (max-width: 1100px) {
  .esch-hero {
    grid-template-columns: 1fr 1fr;
  }

  .esch-curriculum__track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .esch-curriculum__track::before,
  .esch-curriculum__track::after {
    display: none;
  }

  .esch-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .esch-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .esch-achievement__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .esch-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .esch-hero__content {
    padding: 40px var(--esch-gutter);
    padding-top: 80px;
  }

  .esch-hero__visual {
    min-height: 280px;
    order: -1;
  }

  .esch-hero__stats {
    gap: 20px;
  }

  .esch-header__nav,
  .esch-header__actions {
    display: none;
  }

  .esch-header__hamburger {
    display: flex;
  }

  .esch-features__grid {
    grid-template-columns: 1fr;
  }

  .esch-courses__grid {
    grid-template-columns: 1fr;
  }

  .esch-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .esch-pricing__grid {
    grid-template-columns: 1fr;
  }

  .esch-pricing-card--featured {
    transform: none;
  }

  .esch-pricing-card--featured.is-visible {
    transform: none;
  }

  .esch-curriculum__track {
    grid-template-columns: 1fr;
  }

  .esch-teacher-card {
    flex: 0 0 calc(85% - 12px);
  }

  .esch-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .esch-achievement__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .esch-cta__form-grid {
    grid-template-columns: 1fr;
  }

  .esch-header-topbar__links {
    display: none;
  }
}

@media (max-width: 480px) {
  .esch-hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .esch-hero__stats {
    flex-direction: column;
    gap: 12px;
  }

  .esch-achievement__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .esch-btn--lg {
    padding: 16px 28px;
    font-size: 15px;
  }
}

/* ==========================================================================
   20. Utility Classes
   ========================================================================== */

.esch-text-center { text-align: center; }
.esch-text-left   { text-align: left; }
.esch-text-right  { text-align: right; }

.esch-mt-0  { margin-top: 0; }
.esch-mt-8  { margin-top: 8px; }
.esch-mt-16 { margin-top: 16px; }
.esch-mt-24 { margin-top: 24px; }
.esch-mt-32 { margin-top: 32px; }
.esch-mt-48 { margin-top: 48px; }

.esch-mb-0  { margin-bottom: 0; }
.esch-mb-8  { margin-bottom: 8px; }
.esch-mb-16 { margin-bottom: 16px; }
.esch-mb-24 { margin-bottom: 24px; }
.esch-mb-32 { margin-bottom: 32px; }

.esch-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.esch-highlight {
  color: var(--esch-primary);
}

.esch-highlight--yellow {
  color: var(--esch-secondary);
}

.esch-divider {
  height: 1px;
  background: var(--esch-border);
  margin: var(--esch-section-pt) 0;
}

/* ==========================================================================
   21. Fade In Up Animation (general)
   ========================================================================== */

.esch-fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--esch-ease), transform 0.6s var(--esch-ease);
}

.esch-fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .esch-fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   22. Trust Badges
   ========================================================================== */

.esch-trust-bar {
  background: var(--esch-bg);
  border-top: 1px solid var(--esch-border);
  border-bottom: 1px solid var(--esch-border);
  padding: 20px 0;
  overflow: hidden;
}

.esch-trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.esch-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.esch-trust-badge__icon {
  width: 40px;
  height: 40px;
  background: var(--esch-primary-bg);
  border-radius: var(--esch-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.esch-trust-badge__icon svg {
  width: 22px;
  height: 22px;
  color: var(--esch-primary);
}

.esch-trust-badge__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--esch-dark);
}

.esch-trust-badge__sub {
  font-size: 11px;
  color: var(--esch-text-sub);
  display: block;
  font-weight: 400;
}

/* ==========================================================================
   23. Area Map Section
   ========================================================================== */

.esch-area {
  max-width: 900px;
  margin: 0 auto;
}

.esch-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.esch-area__map {
  background: var(--esch-bg-alt);
  border-radius: var(--esch-radius-lg);
  border: 1.5px solid var(--esch-border);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.esch-area__map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--esch-text-muted);
}

.esch-area__map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--esch-border-dk);
}

.esch-area__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.esch-area__pref {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--esch-radius-sm);
  background: var(--esch-bg);
  border: 1px solid var(--esch-border);
  font-size: 14px;
  color: var(--esch-text);
  transition: background var(--esch-duration) var(--esch-ease),
              border-color var(--esch-duration) var(--esch-ease);
}

.esch-area__pref:hover {
  background: var(--esch-primary-bg);
  border-color: var(--esch-primary);
  color: var(--esch-primary-dk);
}

.esch-area__pref-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--esch-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   24. Comparison Table
   ========================================================================== */

.esch-comparison {
  overflow-x: auto;
}

.esch-comparison__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}

.esch-comparison__table th,
.esch-comparison__table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--esch-border);
}

.esch-comparison__table th {
  background: var(--esch-bg-alt);
  font-weight: 700;
  color: var(--esch-dark);
  font-size: 13px;
}

.esch-comparison__table th:first-child,
.esch-comparison__table td:first-child {
  text-align: left;
  font-weight: 600;
}

.esch-comparison__table .esch-comparison__featured {
  background: var(--esch-primary);
  color: #fff;
}

.esch-comparison__check {
  color: var(--esch-primary);
  font-size: 18px;
}

.esch-comparison__cross {
  color: var(--esch-border-dk);
  font-size: 18px;
}

/* ==========================================================================
   25. Scroll-driven animations fallback / enhancement
   ========================================================================== */

@supports (animation-timeline: scroll()) {
  .esch-parallax-bg {
    animation: es-parallax-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0% 100%;
  }

  @keyframes es-parallax-scroll {
    from { transform: translateY(-30px); }
    to   { transform: translateY(30px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  @supports (animation-timeline: scroll()) {
    .esch-parallax-bg {
      animation: none;
    }
  }
}

/* =====================================================
   サブページ固有スタイル
   ===================================================== */

/* カウンター表示 */
.esch-counter {
  font-family: var(--esch-font-en);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* 価値グリッド */
.esch-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.esch-value-card {
  background: var(--esch-bg-alt);
  border: 1.5px solid var(--esch-border);
  border-radius: var(--esch-radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.esch-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 176, 80, 0.15);
}

.esch-value-card__num {
  font-family: var(--esch-font-en);
  font-size: 40px;
  font-weight: 800;
  color: var(--esch-primary);
  line-height: 1;
}

.esch-value-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--esch-dark);
  margin: 8px 0 6px;
}

.esch-value-card__desc {
  font-size: 13px;
  color: var(--esch-text-sub);
  line-height: 1.6;
}

/* 沿革タイムライン */
.esch-history {
  border-left: 2px solid var(--esch-primary);
  padding-left: 24px;
}

.esch-history__item {
  position: relative;
  margin-bottom: 28px;
}

.esch-history__item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--esch-primary);
  border-radius: 50%;
  border: 2px solid var(--esch-bg);
}

.esch-history__year {
  font-family: var(--esch-font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--esch-primary);
}

.esch-history__event {
  font-size: 15px;
  color: var(--esch-text);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .esch-value-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   26. WP Block FSE Header & Navigation
   -------------------------------------------------------------------------- */

html { overflow-x: hidden; }
.wp-site-blocks { overflow-x: hidden; }

.irodori-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 800;
  background: transparent;
  color: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}
.irodori-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--esch-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--esch-text);
}
.irodori-header__inner {
  height: 72px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.irodori-header__logo .wp-block-site-logo img {
  max-height: 44px;
  width: auto;
}
.irodori-header .wp-block-navigation-item__content {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.irodori-header .wp-block-navigation-item__content:hover { opacity: 0.7; }
.irodori-header .wp-block-navigation .wp-block-navigation-item { list-style: none; }
.irodori-header__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--esch-primary);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.irodori-header__cta-btn:hover { opacity: 0.85; }
.irodori-header .wp-block-navigation__responsive-container-open,
.irodori-header .wp-block-navigation__responsive-container-close { display: none !important; }
.irodori-header .wp-block-navigation__responsive-container {
  display: contents !important;
  background: none !important;
}
.wp-site-blocks > * + * { margin-block-start: 0 !important; }
footer .wp-block-navigation { flex-direction: column !important; }
.wp-block-group.irodori-section.is-layout-constrained > *,
.wp-block-group.irodori-section > * {
  max-width: 100% !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wp-block-post-content > .wp-block-group.irodori-section,
.wp-block-post-content > .wp-block-group.irodori-section + .wp-block-group.irodori-section {
  margin-block: 0;
}
@media (max-width: 1100px) {
  .irodori-header__toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; width: 34px; height: 34px; cursor: pointer; position: relative;
    z-index: 10001; flex-shrink: 0;
  }
  .irodori-header__toggle span {
    display: block; width: 22px; height: 1.8px;
    background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .irodori-header__toggle-input { display: none; }
  .wp-block-group.irodori-header__nav {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,0.98); z-index: 10000;
    flex-direction: column; align-items: center; justify-content: center; padding: 40px;
  }
  #irodori-nav-toggle:checked ~ .wp-block-group.irodori-header__nav { display: flex; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(1) {
    transform: translateY(7.8px) rotate(45deg);
  }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(2) { opacity: 0; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(3) {
    transform: translateY(-7.8px) rotate(-45deg);
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation {
    display: flex !important; flex-direction: column; align-items: center; width: 100%;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container {
    display: flex; flex-direction: column; align-items: center;
    gap: 2rem; list-style: none; margin: 0; padding: 0;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container a {
    font-size: clamp(18px, 4vw, 24px); font-weight: 600; letter-spacing: 0.06em;
    color: var(--esch-text);
  }
  .irodori-header__cta { margin-top: 32px; }
}

/* ===== WP 7.0 Bug Fixes ===== */

/* ---------------------------------------------------------------
   WP 7.0 Fix: ナビゲーション デスクトップ表示強制
   親テーマ .irodori-header--hamburger が position:fixed/opacity:0 を
   全ブレークポイントに適用するため !important で解除
   --------------------------------------------------------------- */
@media (min-width: 1101px) {
  .irodori-header .wp-block-group.irodori-header__nav {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    inset: auto !important;
    background: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 !important;
    z-index: auto !important;
  }
  .irodori-header__toggle {
    display: none !important;
  }
}

/* ---------------------------------------------------------------
   WP 7.0 Fix: ヒーロー背景 全幅解除
   WP is-layout-constrained が max-width:1280px/margin:auto を
   hero bg 要素に適用するため強制解除
   --------------------------------------------------------------- */
.is-layout-constrained > [class*="-hero__bg"],
.is-layout-constrained > [class*="-hero-bg"],
.is-layout-constrained > [class*="-hero__slide"],
.is-layout-constrained > [class*="-hero__image"],
.is-layout-constrained > [class*="-hero__visual"] {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
