/* ==========================================================================
   キッズビジネスアカデミー - Landing Page Styles
   ========================================================================== */

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic UI', sans-serif;
  font-weight: 500;
  color: #2d3142;
  background: #fffaf3;
  line-height: 1.85;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all .25s ease; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Color Tokens ===== */
:root {
  --c-orange: #ff8a3d;
  --c-orange-deep: #f76b1c;
  --c-yellow: #ffd233;
  --c-yellow-light: #fff3b0;
  --c-pink: #ff7eb6;
  --c-blue: #38b6c9;
  --c-blue-deep: #1f8aa0;
  --c-navy: #2d3142;
  --c-cream: #fffaf3;
  --c-cream-deep: #fdf3e1;
  --c-text: #2d3142;
  --c-text-soft: #5b6376;
  --c-border: #ffe2c1;
  --shadow-soft: 0 10px 30px rgba(247,107,28,.08);
  --shadow-pop: 0 14px 0 #ffd6a8;
  --shadow-hover: 0 18px 40px rgba(247,107,28,.18);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 110px 0; position: relative; }

/* ===== Section Heading ===== */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  background: var(--c-blue);
  color: #fff;
  padding: 7px 22px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 6px 0 var(--c-blue-deep);
}
.section-tag.tag-orange { background: var(--c-orange); box-shadow: 0 6px 0 var(--c-orange-deep); }
.section-tag.tag-pink   { background: var(--c-pink); box-shadow: 0 6px 0 #d95a92; }
.section-tag.tag-blue   { background: var(--c-blue); box-shadow: 0 6px 0 var(--c-blue-deep); }

.section-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.55;
  margin: 0 0 24px;
  color: var(--c-navy);
}
.section-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.95;
}

/* ===== Highlight Utils ===== */
.hl {
  background: linear-gradient(transparent 62%, var(--c-yellow) 62%, var(--c-yellow) 92%, transparent 92%);
  padding: 0 4px;
}
.hl-yellow {
  background: linear-gradient(transparent 65%, var(--c-yellow-light) 65%, var(--c-yellow-light) 95%, transparent 95%);
  padding: 0 6px;
  color: var(--c-orange-deep);
}
.hl-pop {
  color: var(--c-orange-deep);
  font-weight: 900;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,250,243,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: all .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--c-border);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-en {
  font-weight: 900; font-size: 13px; letter-spacing: 0.08em;
  color: var(--c-orange-deep);
}
.logo-jp { font-weight: 900; font-size: 17px; letter-spacing: 0.05em; color: var(--c-navy); }

.global-nav ul {
  display: flex; gap: 28px;
}
.global-nav a {
  font-weight: 700; font-size: 14px;
  color: var(--c-navy);
  position: relative;
  padding: 4px 0;
}
.global-nav a:hover { color: var(--c-orange-deep); }
.global-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: -4px;
  width: 0; height: 3px; background: var(--c-orange);
  border-radius: 3px;
  transition: all .3s; transform: translateX(-50%);
}
.global-nav a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-orange);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 5px 0 var(--c-orange-deep);
  transition: all .2s;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--c-orange-deep);
}
.header-cta:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--c-orange-deep);
}

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
  display: block; width: 24px; height: 3px; background: var(--c-navy);
  border-radius: 3px; transition: all .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  text-align: center;
  border-radius: 999px;
  padding: 18px 38px;
  font-size: 16px;
  position: relative;
  transition: all .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff !important;
  box-shadow: 0 8px 0 #c5500e, 0 16px 30px rgba(247,107,28,.3);
  flex-direction: column;
  padding: 18px 44px;
  gap: 2px;
}
.btn-primary .btn-label { font-size: 19px; }
.btn-primary .btn-sub { font-size: 11px; opacity: .9; font-weight: 600; letter-spacing: .05em; }
.btn-primary .btn-arrow {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  transition: transform .2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 0 #c5500e, 0 20px 36px rgba(247,107,28,.4);
}
.btn-primary:hover .btn-arrow { transform: translateY(-50%) translateX(4px); }
.btn-primary:active {
  transform: translateY(5px);
  box-shadow: 0 3px 0 #c5500e, 0 8px 15px rgba(247,107,28,.3);
}

.btn-large { padding: 22px 60px; }
.btn-large .btn-label { font-size: 22px; }
.btn-large .btn-sub { font-size: 12px; }

.btn-ghost {
  background: #fff;
  color: var(--c-navy) !important;
  border: 2px solid var(--c-border);
  font-size: 14px;
  padding: 14px 28px;
}
.btn-ghost:hover {
  border-color: var(--c-orange);
  color: var(--c-orange-deep) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 140px 0 100px;
  background:
    radial-gradient(circle at 15% 20%, #fff3b0 0%, transparent 35%),
    radial-gradient(circle at 85% 15%, #ffd9c4 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, #d6f5fa 0%, transparent 45%),
    linear-gradient(180deg, #fffaf3 0%, #fff5e6 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%; opacity: .5;
  filter: blur(2px);
}
.shape-1 { width: 90px; height: 90px; background: var(--c-yellow); top: 18%; left: 6%; animation: float 6s ease-in-out infinite; }
.shape-2 { width: 60px; height: 60px; background: var(--c-pink); top: 65%; left: 10%; animation: float 8s ease-in-out infinite reverse; }
.shape-3 { width: 110px; height: 110px; background: var(--c-blue); opacity: .3; top: 25%; right: 8%; animation: float 7s ease-in-out infinite; }
.shape-4 { width: 50px; height: 50px; background: var(--c-orange); top: 75%; right: 12%; animation: float 9s ease-in-out infinite reverse; }
.shape-5 { width: 70px; height: 70px; background: #b8e8ef; top: 50%; left: 48%; animation: float 10s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(8deg); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--c-orange-deep);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  margin: 0 0 24px;
  box-shadow: 0 4px 12px rgba(247,107,28,.15);
  border: 2px solid #ffd9b3;
}
.hero-tag i { color: var(--c-yellow); }

.hero-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.35;
  margin: 0 0 28px;
  color: var(--c-navy);
}

/* ブランド名（大きく強調表示） */
.hero-title-brand {
  display: block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 45%, var(--c-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 4px 0 rgba(247,107,28,.08);
  position: relative;
  filter: drop-shadow(0 6px 16px rgba(247,107,28,.18));
  animation: brandPop .8s cubic-bezier(.34,1.56,.64,1) both;
}
.hero-title-brand .brand-kids,
.hero-title-brand .brand-biz,
.hero-title-brand .brand-academy {
  display: inline-block;
}
.hero-title-brand .brand-academy {
  /* "アカデミー" を少し小さめでバランスを取る */
  font-size: 0.86em;
  letter-spacing: .02em;
}
@keyframes brandPop {
  0%   { opacity: 0; transform: translateY(20px) scale(.92); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-title-sub {
  display: block;
  font-size: 0.52em;
  color: var(--c-text-soft);
  margin-bottom: 8px;
  font-weight: 800;
}
.hero-title-main {
  display: block;
  font-size: 0.78em;
}

.hero-lead {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 2;
  color: var(--c-text-soft);
  margin: 0 0 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 36px;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
  border: 1.5px dashed var(--c-border);
}
.hero-meta i { color: var(--c-orange); }
.hero-meta strong { color: var(--c-orange-deep); font-size: 15px; margin: 0 2px; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Hero Visual (Photo-based) */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 36px;
  overflow: visible;
  background: #fff;
  padding: 14px;
  box-shadow: 0 24px 50px rgba(247,107,28,.18);
  transform: rotate(-2deg);
  animation: heroPhotoFloat 6s ease-in-out infinite;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 42px;
  background: linear-gradient(135deg, var(--c-yellow), var(--c-orange) 50%, var(--c-pink));
  z-index: -1;
  opacity: .25;
  filter: blur(20px);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}
@keyframes heroPhotoFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-14px); }
}

/* Stickers on hero photo */
.photo-sticker {
  position: absolute;
  background: #fff;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  white-space: nowrap;
  z-index: 4;
}
.photo-sticker.sticker-yellow {
  top: 8%; left: -8%;
  background: var(--c-yellow);
  color: var(--c-navy);
  transform: rotate(-6deg);
  animation: stickerFloat 5s ease-in-out infinite;
}
.photo-sticker.sticker-orange {
  bottom: 22%; right: -12%;
  background: var(--c-orange);
  color: #fff;
  transform: rotate(5deg);
  animation: stickerFloat 6s ease-in-out infinite .8s;
}
.photo-sticker.sticker-pink {
  bottom: 4%; left: -6%;
  background: var(--c-pink);
  color: #fff;
  transform: rotate(-4deg);
  animation: stickerFloat 5.5s ease-in-out infinite 1.4s;
}
@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
.photo-sticker.sticker-yellow { --r: -6deg; }
.photo-sticker.sticker-orange { --r: 5deg; }
.photo-sticker.sticker-pink { --r: -4deg; }

.floating {
  position: absolute;
  font-size: 32px;
  animation: floatStar 4s ease-in-out infinite;
  z-index: 1;
}
.floating-1 { top: 4%; right: 8%; animation-delay: .2s; }
.floating-2 { bottom: 8%; right: 4%; font-size: 28px; animation-delay: 1.2s; }
@keyframes floatStar {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.15); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--c-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
}
.scroll-indicator i { animation: bounce 1.6s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==========================================================================
   Worry Section
   ========================================================================== */
.worry-section {
  background: #fff;
  position: relative;
}
.worry-section::before, .worry-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  background: var(--c-cream);
}
.worry-section::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}
.worry-section::after {
  bottom: -1px;
  background: var(--c-cream-deep);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.worry-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 2px solid #f0e6d6;
  box-shadow: 0 8px 24px rgba(45,49,66,.05);
  transition: all .3s;
}
.worry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(45,49,66,.1);
  border-color: var(--c-orange);
}
.worry-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dashed #f0e6d6;
}
.worry-icon {
  font-size: 42px;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #fff3b0, #ffd9c4);
  border-radius: 18px;
}
.worry-card h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 19px;
  margin: 0;
  color: var(--c-navy);
}
.worry-voice {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 16px;
}
.worry-voice i {
  position: absolute;
  left: 0; top: 4px;
  color: var(--c-orange);
  font-size: 14px;
}
.worry-reality {
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.9;
  margin: 0;
  padding: 14px 16px;
  background: #fffaf0;
  border-radius: 12px;
  border-left: 4px solid var(--c-orange);
}

.worry-conclusion {
  text-align: center;
  background: linear-gradient(135deg, #2d3142 0%, #1f2335 100%);
  color: #fff;
  padding: 56px 32px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.worry-conclusion::before, .worry-conclusion::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .3;
}
.worry-conclusion::before { background: var(--c-orange); top: -50px; left: -50px; }
.worry-conclusion::after { background: var(--c-yellow); bottom: -50px; right: -50px; }
.worry-conclusion-sub {
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--c-yellow);
  margin: 0 0 18px;
  font-weight: 700;
  position: relative;
}
.worry-conclusion-main {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.8;
  margin: 0;
  position: relative;
}
.worry-conclusion-main .hl-pop { color: var(--c-yellow); }

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept-section {
  background: var(--c-cream-deep);
  position: relative;
}

/* Concept hero photo (wide) */
.concept-hero-photo {
  position: relative;
  margin: 0 auto 70px;
  max-width: 980px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45,49,66,.12);
  border: 6px solid #fff;
}
.concept-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.concept-hero-photo figcaption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px 24px;
  border-radius: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--c-navy);
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.caption-emoji { font-size: 22px; margin-right: 6px; }

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.concept-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 0 #ffe2c1;
  transition: all .3s;
}
.concept-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 0 #ffe2c1, 0 18px 36px rgba(0,0,0,.06);
}
.concept-num {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-orange);
  color: #fff;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--c-orange-deep);
  letter-spacing: .05em;
}
.concept-icon-wrap {
  width: 88px; height: 88px;
  margin: 16px auto 20px;
  background: linear-gradient(135deg, #fff3b0, #ffd9c4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  color: var(--c-orange-deep);
}
.concept-item h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--c-navy);
}
.concept-item p {
  font-size: 14.5px;
  color: var(--c-text-soft);
  line-height: 1.95;
  margin: 0;
  text-align: left;
}
.concept-item strong { color: var(--c-orange-deep); }

/* ==========================================================================
   Program Section (4 frames)
   ========================================================================== */
.program-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.program-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3b0 0%, transparent 70%);
  top: -200px; right: -200px;
  opacity: .4;
}
.program-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #d6f5fa 0%, transparent 70%);
  bottom: -150px; left: -150px;
  opacity: .5;
}

.frames-cycle {
  display: none; /* decorative, hidden by default */
}

.frame-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}
.frame-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .35s;
}

/* Frame card photo (top-right circular) */
.frame-photo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  z-index: 2;
  transition: transform .3s;
}
.frame-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame-card:hover .frame-photo {
  transform: scale(1.08) rotate(-4deg);
}
.frame-card .frame-card-top {
  padding-right: 100px;
}

.frame-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.frame-1::before { background: linear-gradient(90deg, var(--c-orange), var(--c-yellow)); }
.frame-2::before { background: linear-gradient(90deg, var(--c-pink), #ffb8d1); }
.frame-3::before { background: linear-gradient(90deg, #4cc97a, #95e1a8); }
.frame-4::before { background: linear-gradient(90deg, var(--c-blue), #6ad4e5); }

.frame-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.frame-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.frame-num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .15em;
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
}
.frame-1 .frame-num { background: var(--c-orange); }
.frame-2 .frame-num { background: var(--c-pink); }
.frame-3 .frame-num { background: #4cc97a; }
.frame-4 .frame-num { background: var(--c-blue); }

.frame-emoji {
  font-size: 56px;
  display: inline-block;
  transition: transform .3s;
}
.frame-card:hover .frame-emoji { transform: scale(1.15) rotate(-8deg); }

.frame-title {
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.frame-en {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .03em;
}
.frame-1 .frame-en { color: var(--c-orange-deep); }
.frame-2 .frame-en { color: #d95a92; }
.frame-3 .frame-en { color: #2ea155; }
.frame-4 .frame-en { color: var(--c-blue-deep); }

.frame-jp {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text-soft);
}
.frame-catch {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--c-navy);
}
.frame-desc {
  font-size: 14.5px;
  color: var(--c-text-soft);
  line-height: 1.95;
  margin: 0 0 20px;
}
.frame-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 2px dashed #f0e6d6;
}
.frame-skills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  background: #fffaf0;
  color: var(--c-navy);
  padding: 6px 12px;
  border-radius: 999px;
}
.frame-skills i {
  font-size: 10px;
  color: var(--c-orange);
}

/* ==========================================================================
   Features Section (3 specialized blocks)
   ========================================================================== */
.features-section {
  background: linear-gradient(180deg, var(--c-cream-deep) 0%, #fff5e6 100%);
}

.feature-block {
  background: #fff;
  border-radius: 32px;
  padding: 44px 44px 40px;
  margin: 0 0 36px;
  box-shadow: 0 14px 36px rgba(45,49,66,.07);
  position: relative;
  overflow: hidden;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.feature-block-1::before { background: linear-gradient(90deg, var(--c-orange), var(--c-yellow)); }
.feature-block-2::before { background: linear-gradient(90deg, var(--c-pink), var(--c-orange)); }
.feature-block-3::before { background: linear-gradient(90deg, var(--c-blue), var(--c-orange)); }

.feature-block-head {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 30px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 2px dashed #f0e6d6;
}
.feature-block-3 .feature-block-head {
  grid-template-columns: 1fr;
}
.feature-block-head-text { display: flex; flex-direction: column; gap: 12px; }

.feature-block-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .1em;
  color: #fff;
  background: var(--c-orange);
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--c-orange-deep);
}
.feature-block-2 .feature-block-badge { background: var(--c-pink); box-shadow: 0 4px 0 #d95a92; }
.feature-block-3 .feature-block-badge { background: var(--c-blue); box-shadow: 0 4px 0 var(--c-blue-deep); }

.feature-block-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.55;
  color: var(--c-navy);
  margin: 0;
}
.feature-block-lead {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--c-text-soft);
  margin: 6px 0 0;
}
.feature-block-photo {
  width: 200px;
  height: 200px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 12px 30px rgba(255,138,61,.18);
  justify-self: end;
}
.feature-block-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fffaf0;
  border-radius: 20px;
  padding: 24px 22px;
  border-top: 5px solid var(--c-orange);
  transition: all .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(45,49,66,.08);
  background: #fff;
}
.feature-card-orange { border-top-color: var(--c-orange); }
.feature-card-yellow { border-top-color: var(--c-yellow); background: #fff8e1; }
.feature-card-yellow:hover { background: #fff; }
.feature-card-blue   { border-top-color: var(--c-blue); background: #eff9fb; }
.feature-card-blue:hover { background: #fff; }

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px dashed rgba(0,0,0,.06);
}
.feature-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--c-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.feature-card-yellow .feature-card-icon { background: var(--c-yellow); color: #8a6800; }
.feature-card-blue .feature-card-icon { background: var(--c-blue); }
.feature-card-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--c-navy);
  line-height: 1.4;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.card-num {
  color: var(--c-orange-deep);
  font-size: 18px;
}
.feature-card-yellow .card-num { color: #c08a00; }
.feature-card-blue .card-num   { color: var(--c-blue-deep); }
.feature-card p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text-soft);
  margin: 0;
}
.feature-card strong {
  color: var(--c-navy);
  background: linear-gradient(transparent 65%, var(--c-yellow-light) 65%);
  padding: 0 2px;
}

/* 役職階段 (Feature 3) */
.role-ladder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.role-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
}
.role-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 0 #d8b020;
}
.role-1 .role-icon { background: #ffe08a; color: #8a6800; }
.role-2 .role-icon { background: #ffd233; color: #6b4f00; }
.role-3 .role-icon { background: #ffa84c; color: #fff; box-shadow: 0 6px 0 #d97e1e; }
.role-4 .role-icon { background: #ff8a3d; color: #fff; box-shadow: 0 6px 0 var(--c-orange-deep); }
.role-5 .role-icon { background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%); color: #fff; width: 88px; height: 88px; font-size: 32px; box-shadow: 0 6px 0 #c5500e; }
.role-label {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--c-navy);
  text-align: center;
  line-height: 1.3;
}
.role-label-sub { display: block; font-size: 11px; font-weight: 700; color: var(--c-text-soft); margin-top: 2px; }
.role-arrow {
  color: var(--c-orange);
  font-size: 14px;
  display: flex;
  align-items: center;
  padding-bottom: 26px;
}

.feature-block-note {
  margin: 24px 0 0;
  padding: 14px 20px;
  background: #eff9fb;
  border-left: 4px solid var(--c-blue);
  border-radius: 10px;
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.8;
}
.feature-block-note i { color: var(--c-blue); margin-right: 6px; }

/* ==========================================================================
   Yearly Menu Section (1年48回)
   ========================================================================== */
.menu-section {
  background: #fff;
}
.menu-table-wrap {
  max-width: 1140px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(45,49,66,.08);
  background: #fff;
  border: 1px solid #f0e6d6;
}
.menu-table {
  width: 100%;
  min-width: 880px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 13.5px;
}
.menu-table th, .menu-table td {
  padding: 18px 14px;
  vertical-align: top;
  text-align: center;
  border-bottom: 1px solid #f5e9d3;
  border-right: 1px solid #f5e9d3;
}
.menu-table tr:last-child td,
.menu-table tr:last-child th { border-bottom: none; }
.menu-table th:last-child, .menu-table td:last-child { border-right: none; }

.menu-th-empty {
  background: #fffaf0;
  width: 18%;
  text-align: center;
}
.menu-th-empty-main {
  display: block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--c-navy);
  line-height: 1.5;
  margin-bottom: 8px;
}
.menu-th-empty-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: var(--c-orange);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
}

.menu-th {
  width: 20.5%;
  background: #fff;
  border-top: 5px solid var(--c-orange);
}
.menu-th-spring { border-top-color: var(--c-pink); }
.menu-th-summer { border-top-color: var(--c-blue); }
.menu-th-autumn { border-top-color: var(--c-orange); }
.menu-th-winter { border-top-color: #a47bd1; }

.menu-season {
  display: block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 4px;
}
.menu-th-spring .menu-season { color: var(--c-pink); }
.menu-th-summer .menu-season { color: var(--c-blue-deep); }
.menu-th-autumn .menu-season { color: var(--c-orange-deep); }
.menu-th-winter .menu-season { color: #7a4fb5; }

.menu-theme {
  display: block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.menu-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}
.menu-topics li {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-text-soft);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.55;
}
.menu-topics li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
}

.menu-frame {
  text-align: left;
  background: #fffaf0;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--c-navy);
}
.menu-frame i {
  margin-right: 8px;
  width: 22px;
  text-align: center;
}
.menu-frame-1 i { color: var(--c-orange); }
.menu-frame-2 i { color: var(--c-pink); }
.menu-frame-3 i { color: #c08a00; }
.menu-frame-4 i { color: #4cc97a; }

.menu-cell { background: #fff; }
.menu-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  background: var(--c-orange);
  box-shadow: 0 3px 0 var(--c-orange-deep);
}
.menu-check-spring { background: var(--c-pink); box-shadow: 0 3px 0 #d95a92; }
.menu-check-summer { background: var(--c-blue); box-shadow: 0 3px 0 var(--c-blue-deep); }
.menu-check-autumn { background: var(--c-orange); box-shadow: 0 3px 0 var(--c-orange-deep); }
.menu-check-winter { background: #a47bd1; box-shadow: 0 3px 0 #7a4fb5; }

.menu-footer {
  margin: 28px auto 0;
  max-width: 760px;
  text-align: center;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-deep));
  color: #fff;
  padding: 18px 24px;
  border-radius: 999px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(247,107,28,.25);
}
.menu-footer i { margin-right: 8px; }

/* ==========================================================================
   Info Section
   ========================================================================== */
.info-section {
  background: #fff;
  padding-bottom: 80px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.info-card {
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  padding: 32px 20px;
  border-radius: 24px;
  text-align: center;
  border: 2px solid #f0e6d6;
  transition: all .3s;
}
.info-card:hover {
  border-color: var(--c-orange);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(247,107,28,.12);
}
.info-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-deep));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 26px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 0 #c5500e;
}
.info-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-soft);
  letter-spacing: .15em;
  margin-bottom: 8px;
}
.info-value {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--c-navy);
  line-height: 1.5;
}
.info-value strong {
  font-size: 22px;
  color: var(--c-orange-deep);
}

/* ==========================================================================
   Pricing & Schedule Section
   ========================================================================== */
.pricing-section {
  background: linear-gradient(180deg, #fff5e6 0%, var(--c-cream-deep) 100%);
}

/* 2-column layout: 料金体系 | タイムスケジュール */
.price-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.price-block,
.schedule-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.block-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--c-navy);
  margin: 0 0 8px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--c-navy);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.4;
}
.block-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--c-orange);
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  flex-shrink: 0;
}
.schedule-block .block-title i { background: var(--c-blue); }
.block-title-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-soft);
  letter-spacing: 0;
  margin-left: 4px;
}

/* 料金体系：カード */
.price-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 8px 22px rgba(45,49,66,.06);
  border-left: 6px solid var(--c-orange);
  transition: all .3s;
}
.price-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(247,107,28,.15);
}
.price-item-1 { border-left-color: var(--c-orange); }
.price-item-2 { border-left-color: var(--c-yellow); }
.price-item-3 { border-left-color: var(--c-blue); }

.price-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff3b0, #ffd9c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--c-orange-deep);
}
.price-item-2 .price-item-icon { background: linear-gradient(135deg, #fff3b0, #ffe28a); color: #c08a00; }
.price-item-3 .price-item-icon { background: linear-gradient(135deg, #d6f5fa, #b8e8ef); color: var(--c-blue-deep); }

.price-item-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  align-items: end;
}
.price-item-label {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--c-navy);
  grid-column: 1;
  grid-row: 1;
}
.price-item-amount {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--c-navy);
  line-height: 1.1;
  letter-spacing: .01em;
  grid-column: 1;
  grid-row: 2;
}
.price-item-amount .unit {
  font-size: 14px;
  font-weight: 800;
  margin-left: 2px;
  color: var(--c-text-soft);
}
.price-item-amount .price-item-tax {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-orange-deep);
  margin-top: 4px;
  letter-spacing: .02em;
}
.price-item-note {
  font-size: 11.5px;
  color: var(--c-text-soft);
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
  text-align: right;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

/* タイムスケジュール：カード */
.schedule-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 8px 22px rgba(45,49,66,.06);
  border-top: 5px solid var(--c-orange);
  transition: all .3s;
}
.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(56,182,201,.18);
}
.schedule-elementary { border-top-color: var(--c-orange); }
.schedule-junior     { border-top-color: var(--c-blue); }

.schedule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px dashed #f0e6d6;
  flex-wrap: wrap;
}
.schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--c-orange);
  box-shadow: 0 4px 0 var(--c-orange-deep);
  letter-spacing: .03em;
}
.schedule-junior .schedule-badge {
  background: var(--c-blue);
  box-shadow: 0 4px 0 var(--c-blue-deep);
}
.schedule-target {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-soft);
}
.schedule-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.schedule-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.time-main {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--c-navy);
  letter-spacing: .01em;
  line-height: 1.15;
}
.schedule-elementary .time-main { color: var(--c-orange-deep); }
.schedule-junior     .time-main { color: var(--c-blue-deep); }
.time-sub {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-text-soft);
}
.schedule-capacity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fffaf0;
  padding: 10px 18px;
  border-radius: 14px;
  border: 2px dashed var(--c-border);
  min-width: 78px;
}
.schedule-junior .schedule-capacity {
  background: #eff9fb;
  border-color: #b8e8ef;
}
.capacity-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--c-text-soft);
  letter-spacing: .12em;
  margin-bottom: 2px;
}
.capacity-num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--c-orange-deep);
  line-height: 1;
}
.schedule-junior .capacity-num { color: var(--c-blue-deep); }
.capacity-unit {
  font-size: 13px;
  font-weight: 800;
  margin-left: 2px;
  color: var(--c-text-soft);
}

.pricing-note {
  margin: 40px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 2;
  background: #fff;
  padding: 22px 28px;
  border-radius: 18px;
  border: 2px dashed var(--c-border);
  font-weight: 600;
}
.pricing-note i {
  color: var(--c-orange);
  margin-right: 6px;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.flow-section {
  background: #fff;
  position: relative;
}
.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%; right: 16%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--c-orange) 0 12px, transparent 12px 22px);
  z-index: 0;
}
.flow-item {
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  border-radius: 26px;
  padding: 36px 28px 32px;
  text-align: center;
  border: 2px solid var(--c-border);
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.flow-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(247,107,28,.12);
  border-color: var(--c-orange);
}
.flow-step {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--c-orange);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 5px 0 var(--c-orange-deep);
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.flow-step-label {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2em;
}
.flow-step-num {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .02em;
}
.flow-icon-wrap {
  width: 90px; height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #fff3b0, #ffd9c4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  color: var(--c-orange-deep);
  box-shadow: inset 0 -6px 0 rgba(247,107,28,.1);
}
.flow-content h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--c-navy);
  margin: 0 0 14px;
  line-height: 1.5;
}
.flow-content p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text-soft);
  margin: 0 0 18px;
  text-align: left;
}
.flow-content p:last-child { margin-bottom: 0; }
.flow-content strong { color: var(--c-orange-deep); }
.flow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--c-orange-deep) !important;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  padding: 8px 0;
  border-bottom: 2px solid var(--c-orange);
  transition: all .2s;
}
.flow-link:hover {
  color: var(--c-navy) !important;
  border-color: var(--c-navy);
}
.flow-link i { font-size: 11px; }

/* Flow Contact Card (事務局＋CTA) */
.flow-contact-card {
  margin: 48px auto 0;
  max-width: 980px;
  background: #fff;
  border-radius: 24px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 12px 30px rgba(45,49,66,.08);
  border: 2px solid var(--c-border);
}
.flow-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 240px;
}
.flow-contact-name {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.flow-contact-label {
  display: inline-block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--c-text-soft);
  background: #fffaf0;
  border: 1.5px dashed var(--c-border);
  padding: 6px 14px;
  border-radius: 10px;
}
.flow-contact-school {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--c-navy);
}
.flow-contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-soft);
  flex-wrap: wrap;
}
.flow-contact-tel i {
  color: var(--c-orange);
  font-size: 14px;
}
.flow-contact-tel a {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: var(--c-orange-deep);
  letter-spacing: .03em;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.flow-contact-tel a:hover {
  border-bottom-color: var(--c-orange-deep);
}
.flow-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-deep));
  color: #fff !important;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 16px;
  border-radius: 999px;
  box-shadow: 0 6px 0 #c5500e, 0 12px 24px rgba(247,107,28,.25);
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.flow-contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #c5500e, 0 16px 28px rgba(247,107,28,.35);
  color: #fff !important;
}
.flow-contact-cta:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #c5500e, 0 6px 12px rgba(247,107,28,.2);
}
.flow-contact-cta i { transition: transform .2s; }
.flow-contact-cta:hover i { transform: translateX(4px); }

/* ==========================================================================
   Access Section
   ========================================================================== */
.access-section {
  background: linear-gradient(180deg, var(--c-cream-deep) 0%, #fff5e6 100%);
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: stretch;
}
.access-info {
  background: #fff;
  padding: 40px 36px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(45,49,66,.06);
}
.access-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 3px dashed var(--c-border);
}
.access-name-sub {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-orange-deep);
  letter-spacing: .05em;
}
.access-name-main {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--c-navy);
  letter-spacing: .02em;
}
.access-list {
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.access-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}
.access-row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--c-text-soft);
  letter-spacing: .08em;
  padding-top: 3px;
}
.access-row dt i {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-deep));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.access-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.85;
}
.access-note {
  display: inline-block;
  margin-left: 6px;
  font-size: 12.5px;
  color: var(--c-orange-deep);
  font-weight: 700;
  background: #fffaf0;
  padding: 2px 10px;
  border-radius: 999px;
}
.access-tel {
  display: inline-block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--c-orange-deep) !important;
  letter-spacing: .03em;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.access-tel:hover {
  border-bottom-color: var(--c-orange-deep);
}
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-deep));
  color: #fff !important;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 14px;
  border-radius: 999px;
  box-shadow: 0 5px 0 #c5500e;
  transition: all .2s;
  flex: 1 1 auto;
}
.access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #c5500e;
}
.access-btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #c5500e;
}
.access-btn-ghost {
  background: #fff;
  color: var(--c-orange-deep) !important;
  border: 2px solid var(--c-orange);
  box-shadow: 0 5px 0 #ffd9b3;
}
.access-btn-ghost:hover {
  box-shadow: 0 7px 0 #ffd9b3;
}
.access-btn-ghost:active {
  box-shadow: 0 2px 0 #ffd9b3;
}
.access-map {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(45,49,66,.08);
  border: 6px solid #fff;
  min-height: 420px;
  position: relative;
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: var(--c-cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  border: 2px solid #f0e6d6;
  overflow: hidden;
  transition: all .3s;
}
.faq-item[open] {
  border-color: var(--c-orange);
  box-shadow: 0 8px 24px rgba(247,107,28,.1);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  position: relative;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #fffaf0; }

.faq-q, .faq-a {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.faq-q { background: var(--c-orange); }
.faq-a { background: var(--c-blue); }

.faq-question { flex: 1; line-height: 1.6; }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fffaf0;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-orange);
  transition: all .3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle {
  background: var(--c-orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: flex;
  gap: 16px;
  padding: 4px 26px 26px;
  align-items: flex-start;
}
.faq-answer p {
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 2;
  color: var(--c-text-soft);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6b9d 60%, #ffc83d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.cta-deco {
  position: absolute;
  font-size: 60px;
  opacity: .5;
  animation: floatStar 5s ease-in-out infinite;
}
.cta-deco-1 { top: 10%; left: 8%; }
.cta-deco-2 { top: 60%; left: 5%; font-size: 80px; animation-delay: .5s; }
.cta-deco-3 { top: 20%; right: 10%; font-size: 50px; animation-delay: 1s; }
.cta-deco-4 { bottom: 15%; right: 8%; font-size: 70px; animation-delay: 1.5s; }
.cta-deco-5 { top: 50%; right: 25%; font-size: 55px; animation-delay: 2s; }

/* CTA photo (wide banner) */
.cta-photo {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto -50px;
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  aspect-ratio: 16 / 7;
}
.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 64px 40px;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
}
.cta-overline {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--c-orange-deep);
  font-size: 16px;
  margin: 0 0 16px;
  letter-spacing: .05em;
}
.cta-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.55;
  margin: 0 0 24px;
  color: var(--c-navy);
}
.cta-lead {
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 2;
  margin: 0 0 36px;
}
.cta-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 360px;
  text-align: left;
}
.cta-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-soft);
}
.cta-notes i { color: #4cc97a; font-size: 16px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-navy);
  color: #fff;
  padding: 60px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.site-footer .logo-jp { color: #fff; }
.site-footer .logo-en { color: var(--c-yellow); }
.footer-tag {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 12px 0 0;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
.footer-nav a:hover { color: var(--c-yellow); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; }

/* ==========================================================================
   Sticky CTA (mobile)
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-deep));
  color: #fff !important;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(247,107,28,.4);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.sticky-cta:active { transform: scale(.97); }

/* ==========================================================================
   Utility / Animations
   ========================================================================== */
.pc-only { display: inline; }
.sp-only { display: none; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .hero { padding: 120px 0 80px; }

  .global-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .global-nav.open {
    display: block;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  .global-nav.open ul {
    flex-direction: column;
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-tag, .hero-cta, .hero-meta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual {
    height: auto;
    max-width: 340px;
    margin: 0 auto;
    padding: 30px 20px;
  }
  .hero-photo-frame {
    max-width: 300px;
  }
  .photo-sticker {
    font-size: 12px;
    padding: 8px 14px;
  }
  .photo-sticker.sticker-yellow { left: -4%; top: 4%; }
  .photo-sticker.sticker-orange { right: -6%; }
  .photo-sticker.sticker-pink { left: -4%; }

  .concept-hero-photo figcaption {
    position: static;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    font-size: 14px;
    padding: 18px 20px;
  }
  .concept-hero-photo {
    border-radius: 24px;
  }
  .concept-hero-photo img { border-radius: 0; }

  .frame-photo {
    width: 72px; height: 72px;
    top: 18px; right: 18px;
  }
  .frame-card .frame-card-top { padding-right: 84px; }

  .features-photo {
    max-width: 280px;
    transform: rotate(0);
    margin-bottom: 80px;
  }
  .features-photo-badge {
    width: 110px; height: 110px;
    top: -16px; right: -14px;
  }
  .features-photo-badge .badge-main { font-size: 17px; }

  .cta-photo {
    margin-bottom: -30px;
    border-width: 6px;
  }

  /* Pricing & Schedule responsive */
  .price-schedule-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .block-title { font-size: 19px; }
  .price-item { padding: 18px 20px; gap: 14px; grid-template-columns: 52px 1fr; }
  .price-item-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 12px; }
  .price-item-body { grid-template-columns: 1fr; gap: 2px; }
  .price-item-amount { font-size: 26px; grid-column: 1; grid-row: 2; }
  .price-item-note { grid-column: 1; grid-row: 3; text-align: left; margin-top: 4px; }
  .schedule-card { padding: 20px 22px; }
  .schedule-head { gap: 8px; }
  .schedule-body { gap: 12px; }
  .time-main { font-size: 26px; }
  .capacity-num { font-size: 22px; }
  .schedule-capacity { min-width: 70px; padding: 8px 14px; }

  /* Flow responsive */
  .flow-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flow-list::before { display: none; }
  .flow-item { padding: 32px 24px; }

  /* Flow contact card responsive */
  .flow-contact-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
  .flow-contact-info { align-items: center; }
  .flow-contact-name { justify-content: center; }
  .flow-contact-tel { justify-content: center; }
  .flow-contact-cta { width: 100%; padding: 18px 24px; }

  /* Access responsive */
  .access-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .access-info { padding: 32px 24px; }
  .access-name-main { font-size: 22px; }
  .access-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .access-row dt { padding-top: 0; }
  .access-tel { font-size: 22px; }
  .access-map { min-height: 320px; }

  .worry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .frame-grid {
    grid-template-columns: 1fr;
  }
  /* Feature blocks responsive */
  .feature-block { padding: 32px 24px 28px; }
  .feature-block-head {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .feature-block-head-text { align-items: center; }
  .feature-block-photo {
    width: 140px;
    height: 140px;
    justify-self: center;
  }
  .feature-cards { grid-template-columns: 1fr; gap: 14px; }

  /* 役職階段 */
  .role-ladder { gap: 6px; }
  .role-step { min-width: 64px; }
  .role-icon { width: 56px; height: 56px; font-size: 20px; box-shadow: 0 5px 0 #d8b020; }
  .role-5 .role-icon { width: 68px; height: 68px; font-size: 24px; }
  .role-label { font-size: 12px; }
  .role-label-sub { font-size: 10px; }
  .role-arrow { font-size: 11px; padding-bottom: 22px; }

  /* メニュー表 */
  .menu-table-wrap { border-radius: 16px; }
  .menu-table { font-size: 12.5px; }
  .menu-table th, .menu-table td { padding: 12px 8px; }
  .menu-th-empty-main { font-size: 12px; }
  .menu-season { font-size: 13px; }
  .menu-theme { font-size: 14px; }
  .menu-topics li { font-size: 11px; }
  .menu-frame { font-size: 12.5px; }
  .menu-check { width: 26px; height: 26px; font-size: 11px; }
  .menu-footer { font-size: 13px; padding: 14px 18px; }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-nav ul { justify-content: center; }

  .pc-only { display: none; }
  .sp-only { display: inline; }

  body { padding-bottom: 80px; }
  .sticky-cta { display: flex; }

  .scroll-indicator { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .header-inner { padding: 12px 18px; }
  .logo-jp { font-size: 15px; }
  .logo-en { font-size: 10px; }

  .hero-title { font-size: 30px; }
  .hero-title-brand { font-size: 38px; margin-bottom: 14px; line-height: 1.15; }
  .hero-title-brand .brand-academy { font-size: 0.82em; }
  .hero-lead { font-size: 14.5px; }
  .hero-meta li { font-size: 12px; padding: 6px 12px; }
  .hero-meta strong { font-size: 13px; }
  .btn-primary { padding: 16px 30px; padding-right: 50px; }
  .btn-primary .btn-label { font-size: 16px; }
  .btn-large { padding: 18px 36px; padding-right: 56px; }
  .btn-large .btn-label { font-size: 18px; }

  .hero-visual { height: 320px; }
  .hero-card-main { width: 220px; padding: 20px; }
  .hero-card-main .card-emoji { font-size: 44px; }
  .hero-card-sub1, .hero-card-sub2, .hero-card-sub3 { width: 110px; padding: 16px; }

  .section-title { font-size: 24px; }
  .worry-card { padding: 28px 22px; }
  .worry-conclusion { padding: 40px 24px; border-radius: 24px; }
  .worry-conclusion-main { font-size: 19px; }

  .concept-item { padding: 36px 22px; }
  .frame-card { padding: 28px 22px; }
  .frame-en { font-size: 22px; }
  .frame-emoji { font-size: 46px; }

  .cta-inner { padding: 44px 24px; border-radius: 28px; }
  .cta-title { font-size: 22px; }

  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-value strong { font-size: 18px; }

  .price-item-amount { font-size: 24px; }
  .price-item-amount .price-item-tax { font-size: 11px; }
  .time-main { font-size: 22px; }
  .flow-contact-school { font-size: 17px; }
  .flow-contact-tel a { font-size: 17px; }
  .flow-contact-cta { font-size: 14.5px; padding: 16px 20px; }
}
