/* ===================================================
   てならいワークス キッズAIデザインクラスLP
   Color: Orange Theme
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --orange-primary: #F39800;
  --orange-deep:    #ED6C00;
  --orange-light:   #FFB84D;
  --orange-pale:    #FFF1DC;
  --orange-bg:      #FFF8EC;
  --yellow:         #FFD54A;
  --yellow-light:   #FFF6C9;
  --text-dark:      #3A2A1A;
  --text-body:      #4A3826;
  --text-soft:      #6B5B4C;
  --white:          #FFFFFF;
  --gray-bg:        #FAF7F2;
  --shadow-sm:      0 2px 8px rgba(243, 152, 0, 0.10);
  --shadow-md:      0 6px 20px rgba(243, 152, 0, 0.15);
  --shadow-lg:      0 12px 36px rgba(243, 152, 0, 0.20);
  --radius-sm:      8px;
  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Yu Gothic UI', sans-serif;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.8;
  background: var(--white);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-deep); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* ---------- Section Common ---------- */
section { padding: 90px 0; position: relative; }
@media (max-width: 768px) { section { padding: 60px 0; } }

.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--orange-deep);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-eyebrow i { margin-right: 6px; }
.section-title {
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.5;
  letter-spacing: .02em;
}
.section-title .orange { color: var(--orange-deep); }
.section-title .marker {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}
.small-title { font-size: 18px; color: var(--text-soft); font-weight: 700; }
.section-desc { margin-top: 16px; color: var(--text-soft); font-size: 16px; }

/* ===================================================
   ヘッダー
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .3s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; }
.logo-text { font-weight: 900; color: var(--orange-deep); font-size: 22px; }
.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange-primary);
  transition: width .3s;
}
.header-nav a:hover::after { width: 100%; }
.header-cta {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-deep));
  color: var(--white) !important;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(237, 108, 0, 0.3);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(237, 108, 0, 0.4);
  opacity: 1;
}
.header-cta i { margin-right: 6px; }
.hamburger {
  display: none;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 28px; height: 3px;
  background: var(--orange-deep);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-120%);
  transition: transform .35s;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a {
  padding: 14px 12px;
  color: var(--text-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--orange-pale);
}
.mobile-cta {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-deep));
  color: var(--white) !important;
  text-align: center;
  border-radius: 999px;
  margin-top: 12px;
  border-bottom: none !important;
}
.mobile-cta i { margin-right: 8px; }

/* ===================================================
   ヒーロー（メインビジュアル）
   =================================================== */
.hero {
  position: relative;
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #FFE9C6 0%, #FFF6E0 50%, #FFE3B5 100%);
  overflow: hidden;
}
.hero-bg-decoration {
  position: absolute; inset: 0;
  pointer-events: none;
}
.float-icon {
  position: absolute;
  font-size: 42px;
  opacity: .35;
  animation: float 6s ease-in-out infinite;
}
.icon1 { top: 8%;  left: 5%;  animation-delay: 0s; }
.icon2 { top: 20%; right: 8%; animation-delay: 1s; font-size: 56px; }
.icon3 { top: 55%; left: 7%;  animation-delay: 2s; font-size: 48px; }
.icon4 { top: 70%; right: 15%; animation-delay: .5s; font-size: 50px; }
.icon5 { top: 35%; left: 45%; animation-delay: 1.5s; }
.icon6 { top: 80%; left: 30%; animation-delay: 2.5s; font-size: 46px; }
.icon7 { top: 15%; left: 35%; animation-delay: 3s; }
.icon8 { top: 60%; right: 35%; animation-delay: 1.2s; }

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 86px 0 50px; }
}

.hero-badge {
  display: inline-block;
  background: var(--orange-deep);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(237,108,0,.3);
  animation: badgeShake 3s ease-in-out infinite;
}
.hero-badge i { margin-right: 6px; }
@keyframes badgeShake {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-3deg); }
  94% { transform: rotate(3deg); }
  96% { transform: rotate(-2deg); }
  98% { transform: rotate(2deg); }
}

.hero-title {
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.hero-title-sub {
  display: block;
  font-size: clamp(17px, 2.5vw, 24px);
  color: var(--orange-deep);
  margin-bottom: 6px;
}
.hero-title-main {
  display: block;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.3;
}
.highlight {
  background: linear-gradient(transparent 65%, var(--yellow) 65%);
  padding: 0 6px;
  color: var(--orange-deep);
}
.hero-lead {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}
.hero-lead strong { color: var(--orange-deep); font-weight: 900; }

.hero-points {
  margin-bottom: 20px;
}
.hero-points li {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
  padding: 4px 0;
}
.hero-points i {
  color: var(--orange-primary);
  margin-right: 10px;
  font-size: 18px;
}

/* CTAボタン */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFA42B 0%, #FF7A00 100%);
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  padding: 20px 36px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4), 0 0 0 4px rgba(255,255,255,.6) inset;
  transition: all .3s;
  letter-spacing: .03em;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.5), 0 0 0 4px rgba(255,255,255,.6) inset;
  opacity: 1;
}
.btn-primary .btn-arrow {
  display: inline-block;
  transition: transform .3s;
}
.btn-primary:hover .btn-arrow { transform: translateX(6px); }
.btn-balloon {
  position: absolute;
  top: -16px; right: -8px;
  background: #E53935;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  animation: pop 1.5s ease-in-out infinite;
}
@keyframes pop {
  0%, 100% { transform: rotate(8deg) scale(1); }
  50%      { transform: rotate(8deg) scale(1.1); }
}

.hero-btn { font-size: 17px; padding: 18px 34px; }
.hero-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-soft);
}

/* ヒーロー画像 */
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  transform: rotate(-2deg);
  transition: transform .4s;
}
.hero-image:hover img { transform: rotate(0deg) scale(1.02); }
.hero-image-bubble {
  position: absolute;
  background: var(--white);
  color: var(--orange-deep);
  padding: 12px 20px;
  border-radius: 24px 24px 24px 6px;
  font-weight: 900;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--orange-light);
}
.bubble1 {
  top: -12px; left: -16px;
  transform: rotate(-8deg);
  animation: float 4s ease-in-out infinite;
}
.bubble2 {
  bottom: 16px; right: -20px;
  border-radius: 24px 24px 6px 24px;
  transform: rotate(6deg);
  animation: float 5s ease-in-out infinite .8s;
}
@media (max-width: 900px) {
  .hero-image-bubble { font-size: 13px; padding: 8px 14px; }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ===================================================
   2. お悩み
   =================================================== */
.worries { background: var(--white); }
.worry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .worry-list { grid-template-columns: 1fr; } }

.worry-item {
  background: var(--orange-bg);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 88px;
  position: relative;
  border: 2px solid transparent;
  transition: all .3s;
}
.worry-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange-light);
  box-shadow: var(--shadow-md);
}
.worry-highlight {
  background: linear-gradient(135deg, #FFF1DC, #FFE3B5);
  border: 2px dashed var(--orange-primary);
}
.worry-icon {
  position: absolute;
  top: 24px; left: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-deep);
  font-size: 24px;
  box-shadow: var(--shadow-sm);
}
.worry-item p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.8;
}
.worry-item strong { color: var(--orange-deep); font-weight: 900; }

.worry-answer {
  text-align: center;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-deep));
  color: var(--white);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}
.answer-arrow {
  font-size: 32px;
  margin-bottom: 8px;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
.answer-text {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.answer-highlight {
  color: var(--yellow);
  background: rgba(255,255,255,.1);
  padding: 2px 10px;
  border-radius: 8px;
}

/* ===================================================
   3. 特徴比較表
   =================================================== */
.feature { background: var(--orange-bg); }
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 22px 18px;
  text-align: center;
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--orange-pale);
  font-weight: 900;
  color: var(--text-dark);
  font-size: 16px;
  border-bottom: 2px solid var(--orange-light);
}
.th-ours {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-deep)) !important;
  color: var(--white) !important;
  position: relative;
}
.th-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
  font-weight: 900;
}
.compare-table tbody tr { border-bottom: 1px solid var(--orange-pale); }
.compare-table tbody tr:last-child { border-bottom: none; }
.td-label {
  background: var(--orange-bg);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 15px;
  width: 22%;
}
.td-label i {
  color: var(--orange-deep);
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}
.td-ours {
  background: #FFF8EC;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  width: 42%;
}
.td-ours strong { color: var(--orange-deep); font-weight: 900; }
.td-others {
  font-size: 14px;
  color: var(--text-soft);
  width: 36%;
}
.check-icon { color: #27AE60; font-size: 22px; margin-bottom: 6px; display: block; }
.tri-icon { color: #BDB8B0; font-size: 22px; margin-bottom: 6px; display: block; }

/* ===================================================
   4. カリキュラム
   =================================================== */
.curriculum { background: var(--white); }
.step-list {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.step-list::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 40px;
  bottom: 40px;
  width: 4px;
  background: repeating-linear-gradient(to bottom, var(--orange-light) 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 768px) { .step-list::before { left: 30px; } }

.step-item {
  display: grid;
  grid-template-columns: 120px 72px 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  margin-bottom: 28px;
  background: var(--orange-bg);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  border: 2px solid var(--orange-pale);
  transition: all .3s;
}
.step-item:hover {
  transform: translateX(6px);
  border-color: var(--orange-light);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .step-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .step-item .step-icon { display: none; }
}

.step-num {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-deep));
  color: var(--white);
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(237,108,0,.3);
  flex-shrink: 0;
}
.step-num span { font-size: 11px; letter-spacing: .1em; margin-bottom: 4px; opacity: .9; }
@media (max-width: 768px) {
  .step-num { width: 54px; height: 54px; font-size: 18px; }
  .step-num span { font-size: 9px; margin-bottom: 2px; }
}

.step-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-deep);
  font-size: 28px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.step-body { flex: 1; position: relative; }
.step-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--orange-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}
.step-body p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}
.step-body strong { color: var(--orange-deep); font-weight: 900; }

.step-goal {
  background: linear-gradient(135deg, #FFF6C9, #FFE3B5);
  border: 3px solid var(--orange-primary);
}
.step-goal .step-num {
  background: linear-gradient(135deg, #FFD54A, #FF9A00);
}
.step-badge {
  display: inline-block;
  background: #E53935;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
  letter-spacing: .1em;
}

/* ===================================================
   5. 作品例
   =================================================== */
.works {
  background: linear-gradient(180deg, var(--orange-bg) 0%, #FFF6E0 100%);
  position: relative;
}
.work-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border: 4px solid var(--orange-light);
}
@media (max-width: 768px) { .work-card { padding: 24px; } }

.work-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--orange-light);
}
.work-tag {
  display: inline-block;
  background: var(--orange-primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.work-title {
  font-family: 'Kaisei Decol', 'Zen Maru Gothic', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .04em;
}
.work-title::before { content: "『"; color: var(--orange-deep); }
.work-title::after  { content: "』"; color: var(--orange-deep); }

.work-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
@media (max-width: 800px) { .work-content { grid-template-columns: 1fr; } }

.work-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--orange-pale);
  aspect-ratio: 3 / 4;
}
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-pale), var(--yellow-light));
  color: var(--orange-deep);
  text-align: center;
  padding: 20px;
}
.img-fallback p:first-child { font-size: 72px; margin-bottom: 16px; }
.img-fallback p:last-child  { font-size: 16px; font-weight: 800; line-height: 1.6; }
.work-image.img-error img { display: none; }
.work-image.img-error .img-fallback { display: flex; }

.work-panels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel {
  background: var(--orange-bg);
  border-radius: var(--radius);
  padding: 14px 18px;
  border-left: 4px solid var(--orange-primary);
}
.panel-num {
  display: inline-block;
  background: var(--orange-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  padding: 2px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.panel-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 6px;
}
.panel-desc i { color: var(--orange-primary); margin-right: 4px; }
.panel-serif {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.6;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
  position: relative;
}

.teacher-comment {
  background: linear-gradient(135deg, #FFF6C9, #FFE3B5);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.teacher-avatar {
  width: 56px; height: 56px;
  background: var(--orange-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.teacher-label {
  font-weight: 900;
  color: var(--orange-deep);
  margin-bottom: 4px;
  font-size: 15px;
}
.teacher-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ===================================================
   5.5 子どもたちの笑顔フォトセクション
   =================================================== */
.kids-photo {
  background: var(--white);
  padding: 80px 0;
}
.kids-photo-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--orange-light);
}
.kids-photo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 520px;
  transition: transform .6s ease;
}
.kids-photo-wrap:hover .kids-photo-img {
  transform: scale(1.03);
}
.kids-photo-badges {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.kp-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--orange-deep);
  font-weight: 900;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  border: 2px solid var(--orange-light);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.kp-badge i { color: var(--orange-primary); }
@media (max-width: 768px) {
  .kp-badge { font-size: 13px; padding: 8px 14px; }
}

/* ===================================================
   6. スケジュール
   =================================================== */
.schedule { background: var(--white); }
.schedule-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--orange-bg), var(--orange-pale));
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 3px dashed var(--orange-primary);
  text-align: center;
}
@media (max-width: 768px) { .schedule-card { padding: 28px 20px; } }

.schedule-day {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px dotted var(--orange-light);
}
.day-label {
  display: block;
  font-size: 14px;
  color: var(--orange-deep);
  font-weight: 800;
  letter-spacing: .15em;
  margin-bottom: 8px;
}
.day-value {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  color: var(--text-dark);
  font-family: 'Zen Maru Gothic', sans-serif;
}
.day-value small { font-size: 60%; color: var(--orange-deep); margin-left: 8px; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 700px) { .time-slots { grid-template-columns: 1fr; } }

.time-slot {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.time-slot:hover { transform: translateY(-3px); }
.slot-num {
  display: block;
  font-size: 12px;
  background: var(--orange-deep);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 800;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.slot-time {
  display: block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.slot-duration { font-size: 12px; color: var(--text-soft); }

.schedule-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.meta-item {
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
}
.meta-item i {
  color: var(--orange-deep);
  margin-right: 10px;
  font-size: 18px;
}
.meta-item strong { color: var(--orange-deep); font-weight: 900; }
.meta-limit em {
  font-style: normal;
  background: var(--yellow);
  padding: 0 8px;
  border-radius: 4px;
  font-weight: 900;
  color: var(--text-dark);
}

/* ===================================================
   7. 料金
   =================================================== */
.price { background: var(--orange-bg); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) { .price-cards { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  border: 3px solid transparent;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.price-card-main {
  border-color: var(--orange-primary);
  background: linear-gradient(180deg, #FFF8EC 0%, var(--white) 100%);
  transform: scale(1.04);
}
@media (max-width: 768px) { .price-card-main { transform: none; } }

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E53935, #C62828);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: .1em;
}
.price-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.price-sub {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.price-value {
  margin: 12px 0 6px;
  color: var(--orange-deep);
}
.price-num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.price-unit { font-size: 18px; font-weight: 800; margin-left: 4px; }
.price-note { font-size: 12px; color: var(--text-soft); }

/* ===================================================
   8. 入会の流れ
   =================================================== */
.flow { background: var(--white); }
.flow-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.flow-item {
  flex: 1 1 260px;
  max-width: 300px;
  background: var(--orange-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  border: 2px solid var(--orange-pale);
  transition: all .3s;
}
.flow-item:hover {
  transform: translateY(-6px);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-md);
}
.flow-num {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-deep));
  color: var(--white);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: -56px auto 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 6px 14px rgba(237,108,0,.3);
  line-height: 1.1;
}
.flow-num span { font-size: 26px; font-weight: 900; }
.flow-icon {
  font-size: 40px;
  color: var(--orange-primary);
  margin-bottom: 12px;
}
.flow-item h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}
.flow-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}
.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--orange-primary);
  font-size: 32px;
}
@media (max-width: 800px) {
  .flow-arrow { transform: rotate(90deg); }
}

/* ===================================================
   9. Q&A
   =================================================== */
.faq { background: var(--orange-bg); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 64px;
  position: relative;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--orange-bg); }
.faq-q {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--orange-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}
.faq-arrow {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange-deep);
  transition: transform .3s;
}
.faq-item[open] .faq-arrow { transform: translateY(-50%) rotate(180deg); }
.faq-answer {
  padding: 8px 24px 24px 64px;
  position: relative;
  background: #FFFBF3;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
}
.faq-a {
  position: absolute;
  left: 20px; top: 14px;
  width: 32px; height: 32px;
  background: var(--yellow);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}
.faq-answer strong { color: var(--orange-deep); font-weight: 900; }

/* ===================================================
   10. アクセス
   =================================================== */
.access { background: var(--white); }
.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) { .access-content { grid-template-columns: 1fr; } }

.access-info {
  background: var(--orange-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.access-list { margin: 0; }
.access-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--orange-light);
  align-items: start;
}
.access-row:last-child { border-bottom: none; }
.access-row dt {
  font-weight: 800;
  color: var(--orange-deep);
  font-size: 14px;
}
.access-row dd {
  margin: 0;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
}
.address-note {
  display: inline-block;
  background: var(--yellow);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 6px;
}
.tel-link {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange-deep);
}
.tel-link i { margin-right: 6px; }

.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  background: var(--orange-pale);
}
.access-map iframe { display: block; width: 100%; height: 100%; min-height: 380px; }

/* ===================================================
   11. CVエリア
   =================================================== */
.cv {
  background: linear-gradient(135deg, #FF9A00 0%, #FF6B00 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cv-decoration { position: absolute; inset: 0; pointer-events: none; }
.cv-icon {
  position: absolute;
  font-size: 50px;
  opacity: .25;
  animation: float 6s ease-in-out infinite;
}
.cv-decoration .i1 { top: 12%; left: 8%; }
.cv-decoration .i2 { top: 70%; left: 12%; animation-delay: 1s; }
.cv-decoration .i3 { top: 20%; right: 10%; animation-delay: 2s; }
.cv-decoration .i4 { top: 75%; right: 8%; animation-delay: .5s; }
.cv-decoration .i5 { top: 45%; left: 5%; animation-delay: 1.5s; }
.cv-decoration .i6 { top: 50%; right: 5%; animation-delay: 2.5s; }

.cv-content { position: relative; z-index: 2; }
.cv-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  padding: 6px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 24px;
}
.cv-eyebrow i { margin-right: 6px; }
.cv-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.cv-desc {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 36px;
}
.cv-desc strong {
  background: var(--white);
  color: var(--orange-deep);
  padding: 2px 12px;
  border-radius: 8px;
  font-weight: 900;
}

.cv-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-large {
  min-width: 320px;
  padding: 22px 32px;
  font-size: 18px;
}
.btn-large strong { font-size: 22px; }
.btn-secondary {
  background: var(--white);
  color: var(--orange-deep);
  font-weight: 800;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: all .3s;
  line-height: 1.4;
  text-align: center;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  opacity: 1;
}
.btn-secondary i { font-size: 22px; }
.cv-note { font-size: 14px; opacity: .9; }

/* ===================================================
   フッター
   =================================================== */
.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 24px 30px;
  text-align: center;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img {
  height: 56px;
  margin: 0 auto;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 12px;
}
.footer-logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--orange-light);
}
.footer-school {
  font-weight: 800;
  font-size: 18px;
  color: var(--orange-light);
  margin-bottom: 12px;
}
.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: .9;
}
.footer-address a { color: var(--orange-light); }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 20px;
}
.footer-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  opacity: .85;
}
.footer-nav a:hover { color: var(--orange-light); opacity: 1; }
.footer-copy {
  font-size: 12px;
  opacity: .7;
}

/* ===================================================
   浮遊CTA
   =================================================== */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 998;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-deep));
  color: var(--white);
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1.3;
  box-shadow: 0 6px 18px rgba(237,108,0,.5), 0 0 0 6px rgba(255,255,255,.4);
  text-align: center;
  opacity: 0;
  transform: scale(0);
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-cta.show {
  opacity: 1;
  transform: scale(1);
  animation: pulse 2s ease-in-out infinite;
}
.floating-cta:hover {
  transform: scale(1.08);
  opacity: 1;
}
.floating-cta i { font-size: 24px; margin-bottom: 4px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(237,108,0,.5), 0 0 0 6px rgba(255,255,255,.4); }
  50%      { box-shadow: 0 6px 18px rgba(237,108,0,.6), 0 0 0 12px rgba(255,255,255,.1); }
}
@media (max-width: 768px) {
  .floating-cta { width: 72px; height: 72px; font-size: 11px; right: 12px; bottom: 12px; }
  .floating-cta i { font-size: 20px; }
}

/* ===================================================
   フェードインアニメ
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
