/* ===========================================
   てならいワークス LP Styles
   テーマ：オレンジ × 安心感 × ポップ × 女性的
   =========================================== */

:root {
  --orange: #F39200;
  --orange-light: #FFB04C;
  --orange-soft: #FFE8D1;
  --orange-pale: #FFF6EC;
  --yellow: #FFC93C;
  --yellow-light: #FFE08A;
  --pink-soft: #FFD7CC;
  --brown: #5C3A1E;
  --text: #3D2A1A;
  --text-soft: #6E5A48;
  --bg: #FFFCF7;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(243, 146, 0, 0.12);
  --shadow-strong: 0 12px 40px rgba(243, 146, 0, 0.22);
  --radius: 24px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: 0.3s; }
a:hover { opacity: 0.8; }

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

.container { width: 92%; max-width: 1180px; margin: 0 auto; }
.container-narrow { max-width: 880px; }

.marker {
  background: linear-gradient(transparent 60%, var(--yellow-light) 60%);
  font-weight: 700;
  padding: 0 4px;
}

/* ============ ヘッダー ============ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(243, 146, 0, 0.08);
  transition: 0.3s;
}
.header-inner {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.logo-img { height: 44px; width: auto; }
.header-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.header-nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.93rem;
  position: relative;
  padding: 6px 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: 0.3s;
  transform: translateX(-50%);
}
.header-nav a:hover { color: var(--orange); }
.header-nav a:hover::after { width: 100%; }

.header-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(243, 146, 0, 0.35);
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 6px 18px rgba(243, 146, 0, 0.45); }
.header-cta i { margin-right: 6px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--orange);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .header-nav { display: none; }
}
@media (max-width: 768px) {
  .header-cta { display: none; }
  .hamburger { display: block; }
  .logo-img { height: 36px; }
  .header-nav.is-open {
    display: block;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .header-nav.is-open ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .header-nav.is-open li { text-align: center; padding: 14px 0; border-bottom: 1px dashed var(--orange-soft); }
}

/* ============ ボタン ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A33 60%, var(--orange-light) 100%);
  color: #fff !important;
  padding: 22px 38px;
  border-radius: 70px;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 10px 28px rgba(243, 146, 0, 0.45), inset 0 -4px 0 rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: left;
  position: relative;
  letter-spacing: 0.04em;
  border: 3px solid #fff;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  opacity: 1;
  box-shadow: 0 14px 34px rgba(243, 146, 0, 0.55), inset 0 -4px 0 rgba(0,0,0,0.08);
}
.btn-primary span { display: flex; flex-direction: column; line-height: 1.3; }
.btn-primary small { font-size: 0.75rem; font-weight: 700; opacity: 0.95; }
.btn-primary strong { font-size: 1.15rem; }
.btn-primary > i:first-child { font-size: 1.6rem; }
.cta-arrow { font-size: 1.2rem; transition: 0.3s; }
.btn-primary:hover .cta-arrow { transform: translateX(6px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 10% 20%, var(--orange-soft) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, #FFE8D1 0%, transparent 40%),
    linear-gradient(180deg, #FFF6EC 0%, #FFFCF7 100%);
  overflow: hidden;
}
.hero-bg-deco span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}
.deco-1 { width: 220px; height: 220px; background: #FFD27A; top: 8%; left: -60px; animation: float 8s ease-in-out infinite; }
.deco-2 { width: 140px; height: 140px; background: #FFC1A0; top: 22%; right: 8%; animation: float 6s ease-in-out infinite 1s; }
.deco-3 { width: 90px; height: 90px; background: #FFE08A; bottom: 15%; left: 7%; animation: float 7s ease-in-out infinite 2s; }
.deco-4 { width: 60px; height: 60px; background: var(--orange-light); bottom: 30%; right: 4%; animation: float 5s ease-in-out infinite 0.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

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

.hero-badge {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(243, 146, 0, 0.18);
  border: 2px solid var(--orange-soft);
}
.hero-badge i { margin-right: 6px; color: var(--orange); }

.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
}
.hero-title-sub {
  display: block;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 6px;
}
.hero-title-main {
  display: block;
  font-size: 3.2rem;
  color: var(--brown);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 #fff;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--orange); font-size: 1.2em; }

.hero-cta-wrap { display: flex; flex-direction: column; gap: 20px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-trust span {
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  border: 1.5px solid var(--orange-soft);
}
.hero-trust i { color: var(--orange); margin-right: 5px; }

/* HERO 画像 */
.hero-image { position: relative; }
.hero-photo {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(243, 146, 0, 0.25);
  border: 6px solid #fff;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(243, 146, 0, 0.22);
  line-height: 1.4;
}
.hero-float-card i { font-size: 1.7rem; color: var(--orange); }
.hero-float-card strong { color: var(--orange); font-size: 1.05em; }
.hero-float-1 { top: 10%; left: -25px; animation: float 5s ease-in-out infinite; }
.hero-float-2 { bottom: 14%; right: -25px; animation: float 6s ease-in-out infinite 1s; }

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

@media (max-width: 1024px) {
  .hero-title-main { font-size: 2.6rem; }
  .hero-title-sub { font-size: 1.2rem; }
}
@media (max-width: 768px) {
  .hero { padding: 110px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-title-main { font-size: 2rem; }
  .hero-title-sub { font-size: 1.05rem; }
  .hero-lead { font-size: 0.98rem; }
  .hero-photo { aspect-ratio: 4/3; }
  .hero-float-1 { top: 5%; left: -10px; transform: scale(0.85); }
  .hero-float-2 { bottom: 5%; right: -10px; transform: scale(0.85); }
  .btn-primary { padding: 18px 26px; font-size: 1rem; }
  .btn-primary strong { font-size: 1.02rem; }
}

/* ============ セクション共通 ============ */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-mark {
  display: inline-flex;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(243, 146, 0, 0.3);
}
.section-eyebrow {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.3em;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 14px;
}
.title-accent { color: var(--orange); position: relative; }
.title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 8px;
  background: var(--yellow-light);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.6;
}
.section-sub { color: var(--text-soft); font-size: 1rem; }

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 1.55rem; }
  .section-head { margin-bottom: 40px; }
}

/* ============ 共感セクション ============ */
.section-sympathy { background: #FFF6EC; }

.sympathy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 60px;
}
.sympathy-card {
  background: #fff;
  padding: 30px 28px 30px 90px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--orange);
  transition: 0.3s;
}
.sympathy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.sympathy-icon {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 50px; height: 50px;
  background: var(--orange-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
}
.sympathy-card p { font-size: 1rem; line-height: 1.85; color: var(--text); }
.sympathy-card strong { color: var(--orange); font-weight: 800; }

.sympathy-answer {
  text-align: center;
  margin-top: 40px;
}
.answer-arrow {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 14px;
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.answer-text {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.6;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.answer-brand {
  color: var(--orange);
  font-size: 1.3em;
  display: inline-block;
  background: #fff;
  padding: 4px 18px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(243, 146, 0, 0.2);
  margin: 6px 6px;
}

@media (max-width: 768px) {
  .sympathy-grid { grid-template-columns: 1fr; gap: 18px; }
  .sympathy-card { padding: 26px 20px 26px 70px; }
  .sympathy-icon { width: 40px; height: 40px; left: 16px; top: 22px; font-size: 1.1rem; }
  .answer-text { font-size: 1.2rem; }
}

/* ============ 学習スタイル ============ */
.section-style {
  background:
    radial-gradient(circle at 100% 0%, var(--yellow-light) 0%, transparent 35%),
    radial-gradient(circle at 0% 100%, var(--orange-soft) 0%, transparent 40%),
    #fff;
}

.style-hero {
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--orange-pale) 0%, #FFF8EE 100%);
  border-radius: var(--radius);
  padding: 44px 36px;
  border: 3px dashed var(--orange-soft);
  position: relative;
}
.style-catch {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 22px;
}
.style-catch-line {
  display: inline-block;
  background: #fff;
  padding: 6px 22px;
  border-radius: 50px;
  margin: 4px 6px;
  box-shadow: 0 6px 16px rgba(243, 146, 0, 0.18);
  color: var(--orange);
}
.style-hero-desc {
  font-size: 1.02rem;
  line-height: 2;
  color: var(--text);
}
.style-hero-desc strong { color: var(--orange); }

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 60px;
}
.style-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--orange-soft);
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.style-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.style-card-center {
  background: linear-gradient(180deg, #FFF9F0 0%, #fff 100%);
  border-color: var(--orange);
  transform: scale(1.04);
}
.style-card-center:hover { transform: scale(1.04) translateY(-6px); }

.style-num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 14px;
}
.style-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(243, 146, 0, 0.3);
}
.style-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 14px;
}
.style-desc { font-size: 0.95rem; line-height: 1.9; color: var(--text-soft); text-align: left; }
.style-desc strong { color: var(--orange); font-weight: 800; }

.style-badge {
  position: absolute;
  top: -18px; right: -10px;
  background: linear-gradient(135deg, #FF6B35, var(--orange));
  color: #fff;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(255, 107, 53, 0.4);
  transform: rotate(8deg);
}

.style-flow {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 2px solid var(--orange-soft);
}
.style-flow-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brown);
  text-align: center;
  margin-bottom: 30px;
}
.style-flow-title i { color: var(--orange); margin-right: 8px; }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 12%; right: 12%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
  border-radius: 2px;
  z-index: 0;
}
.flow-step {
  background: var(--orange-pale);
  padding: 50px 18px 22px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.flow-step-num {
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(243, 146, 0, 0.3);
}
.flow-step h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 2.8em;
}
.flow-step p { font-size: 0.85rem; line-height: 1.7; color: var(--text-soft); }

@media (max-width: 768px) {
  .style-catch { font-size: 1.2rem; }
  .style-hero { padding: 30px 22px; }
  .style-grid { grid-template-columns: 1fr; gap: 18px; }
  .style-card-center { transform: none; }
  .style-card-center:hover { transform: translateY(-6px); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flow-steps::before { display: none; }
  .flow-step { padding: 44px 14px 18px; }
  .flow-step h4 { font-size: 0.92rem; min-height: auto; }
  .style-flow { padding: 28px 18px; }
}

/* ============ 4つの安心安全 ============ */
.section-features { background: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature-card {
  background: linear-gradient(180deg, #fff 0%, var(--orange-pale) 100%);
  padding: 40px 34px 36px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
  border: 2px solid var(--orange-soft);
  transition: 0.3s;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--yellow-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }

.feature-num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  opacity: 0.25;
  position: absolute;
  top: 20px; right: 24px;
}
.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(243, 146, 0, 0.35);
  position: relative;
}
.feature-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
}
.feature-title .hl {
  color: var(--orange);
  background: linear-gradient(transparent 65%, var(--yellow-light) 65%);
  padding: 0 4px;
}
.feature-desc { font-size: 0.98rem; line-height: 1.95; color: var(--text-soft); position: relative; }
.feature-desc strong { color: var(--orange); font-weight: 800; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 30px 24px; }
  .feature-title { font-size: 1.1rem; }
}

/* ============ カリキュラム ============ */
.section-curriculum {
  background:
    radial-gradient(circle at 0% 0%, var(--orange-pale) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, #FFE8D1 0%, transparent 50%),
    #FFFCF7;
}

.curriculum-list { display: flex; flex-direction: column; gap: 60px; }
.curriculum-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  padding: 36px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.curriculum-card.reverse { direction: rtl; }
.curriculum-card.reverse > * { direction: ltr; }

.curriculum-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(243, 146, 0, 0.2);
}
.curriculum-img img { width: 100%; height: 100%; object-fit: cover; }
.curriculum-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.curriculum-badge.level-1 { background: linear-gradient(135deg, #FFE08A, var(--yellow)); color: #8a5a00; }
.curriculum-badge.level-2 { background: linear-gradient(135deg, #FFB04C, var(--orange)); color: #fff; }
.curriculum-badge.level-3 { background: linear-gradient(135deg, #FF7E50, #E04E20); color: #fff; }

.curriculum-tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.curriculum-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 18px;
}
.curriculum-desc { font-size: 1rem; line-height: 1.95; color: var(--text-soft); margin-bottom: 22px; }
.curriculum-desc strong { color: var(--orange); }

.curriculum-points { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.curriculum-points li {
  background: var(--orange-pale);
  padding: 10px 16px 10px 38px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}
.curriculum-points li i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  background: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .curriculum-card,
  .curriculum-card.reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; padding: 20px; }
  .curriculum-title { font-size: 1.4rem; }
  .curriculum-list { gap: 36px; }
}

/* ============ 使うサービス紹介 ============ */
.section-services {
  background:
    radial-gradient(circle at 0% 0%, var(--orange-soft) 0%, transparent 30%),
    radial-gradient(circle at 100% 100%, var(--yellow-light) 0%, transparent 35%),
    #FFFCF7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 36px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--orange-soft);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }

.service-img {
  background: #f4f4f4;
  position: relative;
  padding-top: 56%;
  overflow: hidden;
}
.service-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-head-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  align-items: center;
}
.service-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.tag-mercari { background: linear-gradient(135deg, #FF6B6B, #E03A3A); }
.tag-coconala { background: linear-gradient(135deg, #FF9B6B, #FF6B35); }
.tag-storeaca { background: linear-gradient(135deg, #FFB04C, #F39200); }
.tag-base { background: linear-gradient(135deg, #FFC93C, #FFA92E); color: #5C3A1E; }

.service-users {
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 700;
  background: var(--orange-pale);
  padding: 4px 12px;
  border-radius: 50px;
}
.service-users i { color: var(--orange); margin-right: 4px; }

.service-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 6px;
}
.service-lead {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.service-lead strong { font-size: 1.05em; }
.service-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 18px;
}
.service-desc strong { color: var(--orange); font-weight: 800; }

.service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.service-points li {
  background: var(--orange-pale);
  padding: 8px 14px 8px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  position: relative;
}
.service-points li i {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  background: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-note {
  text-align: center;
  background: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  border: 2px solid var(--orange-soft);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}
.services-note i { color: var(--orange); margin-right: 6px; }
.services-note strong { color: var(--orange); }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-body { padding: 22px; }
  .service-name { font-size: 1.25rem; }
}

/* ============ 料金プラン ============ */
.section-price { background: #fff; }

.schedule-box {
  background: var(--orange-pale);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.schedule-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 22px;
  text-align: center;
}
.schedule-title i { color: var(--orange); margin-right: 8px; }
.schedule-table-wrap { overflow-x: auto; }
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  font-size: 0.95rem;
}
.schedule-table th {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  padding: 16px;
  font-weight: 800;
}
.schedule-table td {
  padding: 14px 16px;
  border-bottom: 1px dashed var(--orange-soft);
  text-align: center;
}
.schedule-table tr:last-child td { border-bottom: none; }
.period {
  display: inline-block;
  background: var(--yellow-light);
  color: #8a5a00;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.85rem;
}
.class-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
}
.class-tag.level-1 { background: #FFF3D6; color: #8a5a00; }
.class-tag.level-2 { background: var(--orange-soft); color: var(--orange); }
.class-tag.level-3 { background: #FFD7CC; color: #c43c0c; }
.class-tag.tag-free {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
}

.schedule-lead {
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.schedule-days {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brown);
  box-shadow: 0 4px 14px rgba(243, 146, 0, 0.15);
}
.schedule-days i { color: var(--orange); }
.schedule-days strong { color: var(--orange); font-size: 1.1em; }
.schedule-note { font-size: 0.85rem; color: var(--text-soft); font-weight: 700; }

.schedule-bottom-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--text);
  text-align: center;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1.5px dashed var(--orange);
}
.schedule-bottom-note i { color: var(--orange); margin-right: 4px; }
.schedule-bottom-note strong { color: var(--orange); }
.price-month small { font-size: 0.78em; color: var(--orange); display: inline-block; }
.schedule-table tr.lunch td {
  background: #FFFAF0;
  color: var(--text-soft);
  font-style: italic;
}
.schedule-table tr.lunch i { color: var(--orange); margin-right: 6px; }

/* プラン */
.plans-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.plans-wrap.plans-single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.plan-card {
  background: #fff;
  border: 3px solid var(--orange-soft);
  border-radius: 28px;
  padding: 40px 32px 36px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.plan-card.recommend {
  background: linear-gradient(180deg, #fff 0%, var(--orange-pale) 100%);
  border-color: var(--orange);
  transform: scale(1.03);
}
.plan-card.recommend:hover { transform: scale(1.03) translateY(-4px); }

.plan-ribbon {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B35, var(--orange));
  color: #fff;
  padding: 8px 26px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 6px 14px rgba(255, 107, 53, 0.4);
  letter-spacing: 0.08em;
}
.plan-ribbon::before { content: '★ '; }
.plan-ribbon::after { content: ' ★'; }

.plan-icon { font-size: 2.4rem; color: var(--orange); margin-bottom: 8px; }
.plan-tag {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 10px;
}
.plan-cond { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 24px; }

.plan-price {
  background: #fff;
  border-radius: 16px;
  padding: 18px 14px;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 2px var(--orange-soft);
  text-align: center;
}
.price-base {
  display: block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.price-base small {
  font-size: 0.68em;
  font-weight: 700;
  color: var(--text-soft);
  display: inline;
}
.price-base small strong {
  color: var(--orange);
  font-size: 1.05em;
}
.price-month { display: block; font-size: 0.85rem; color: var(--text-soft); margin-top: 4px; }

.plan-note-box {
  background: var(--orange-pale);
  border: 2px solid var(--orange-soft);
  border-radius: var(--radius-sm);
  padding: 18px 28px;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-note-fee {
  border-top: 1px dashed var(--orange-soft);
  padding-top: 10px !important;
  margin-top: 2px;
}

.plan-for {
  background: var(--orange-pale);
  border-radius: 14px;
  padding: 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  text-align: left;
}
.plan-for i { color: var(--orange); margin-right: 4px; }
.plan-for strong { color: var(--orange); }

.plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(243, 146, 0, 0.35);
}
.plan-btn:hover { transform: translateY(-2px); opacity: 1; }

.plan-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.plan-note strong { color: var(--orange); }

@media (max-width: 768px) {
  .plans-wrap { grid-template-columns: 1fr; gap: 24px; }
  .plan-card.recommend { transform: none; }
  .plan-card.recommend:hover { transform: translateY(-4px); }
  .schedule-box { padding: 24px 16px; }
  .schedule-table { font-size: 0.82rem; }
  .schedule-table th, .schedule-table td { padding: 10px 8px; }
  .class-tag { font-size: 0.75rem; padding: 4px 10px; }
}

/* ============ 教室長メッセージ ============ */
.section-message {
  background:
    radial-gradient(circle at 80% 30%, var(--orange-soft) 0%, transparent 50%),
    var(--orange-pale);
}
.message-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.message-photo {
  position: relative;
  text-align: center;
}
.message-photo img {
  width: 100%;
  max-width: 380px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(243, 146, 0, 0.25);
  border: 6px solid #fff;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.message-photo-deco {
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  border-radius: 30px;
  top: 30px; left: 30px;
  z-index: 1;
  opacity: 0.7;
}
.message-name-tag {
  background: #fff;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--orange);
  margin-top: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  position: relative;
  z-index: 3;
}

.message-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 24px;
}
.message-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 18px;
}
.message-text strong { color: var(--orange); font-weight: 800; }
.message-sign {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brown);
  padding-top: 14px;
  border-top: 2px dashed var(--orange-soft);
  margin-top: 20px;
}
.message-sign i { color: var(--orange); margin-right: 6px; }

@media (max-width: 768px) {
  .message-wrap { grid-template-columns: 1fr; gap: 36px; }
  .message-title { font-size: 1.4rem; }
  .message-photo-deco { display: none; }
}

/* ============ FAQ ============ */
.section-faq { background: #fff; }

.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--orange-pale);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(243, 146, 0, 0.08);
  transition: 0.3s;
  border: 2px solid var(--orange-soft);
}
.faq-item[open] { background: #fff; box-shadow: var(--shadow); border-color: var(--orange); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 70px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brown);
  position: relative;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  position: absolute;
  left: 20px; top: 18px;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.faq-arrow {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  transition: 0.3s;
}
.faq-item[open] .faq-arrow { transform: translateY(-50%) rotate(180deg); }

.faq-a-wrap {
  padding: 0 30px 26px 70px;
  position: relative;
  display: block;
}
.faq-a {
  position: absolute;
  left: 20px; top: 0;
  width: 36px; height: 36px;
  background: var(--yellow);
  color: #8a5a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.faq-a-wrap p {
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--text);
}
.faq-a-wrap strong { color: var(--orange); font-weight: 800; }

@media (max-width: 768px) {
  .faq-item summary { padding: 18px 50px 18px 60px; font-size: 0.95rem; }
  .faq-a-wrap { padding: 0 20px 22px 60px; }
  .faq-q, .faq-a { width: 30px; height: 30px; font-size: 0.85rem; }
}

/* ============ CTA ============ */
.section-cta {
  background:
    radial-gradient(circle at 20% 30%, var(--yellow-light) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, var(--orange-soft) 0%, transparent 40%),
    var(--orange-pale);
  padding: 80px 0;
}
.cta-box {
  background: #fff;
  border-radius: 36px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(243, 146, 0, 0.2);
  border: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
}
.cta-deco {
  position: absolute;
  color: var(--yellow);
  opacity: 0.4;
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
}
.cta-deco-1 { top: 20px; left: 30px; }
.cta-deco-2 { top: 30px; right: 40px; color: var(--orange-light); animation-delay: 1s; }
.cta-deco-3 { bottom: 30px; left: 50px; color: var(--orange); animation-delay: 2s; }

.cta-eyebrow {
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.cta-eyebrow i { margin-right: 6px; }
.cta-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 18px;
}
.cta-text {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 36px;
}
.cta-text strong { color: var(--orange); }

.btn-cta { font-size: 1.3rem; padding: 26px 50px; }

.cta-tel {
  margin-top: 24px;
  font-weight: 700;
  color: var(--text-soft);
  font-size: 1rem;
}
.cta-tel a {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  margin-left: 6px;
}
.cta-tel a i { margin-right: 6px; }

@media (max-width: 768px) {
  .cta-box { padding: 40px 22px; }
  .cta-title { font-size: 1.3rem; }
  .btn-cta { font-size: 1rem; padding: 18px 24px; }
  .cta-tel a { font-size: 1.15rem; }
}

/* ============ アクセス ============ */
.section-access { background: var(--orange-pale); }

.access-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.access-info {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.access-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px dotted var(--orange-soft);
}
.access-list { display: flex; flex-direction: column; gap: 20px; }
.access-list > div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; align-items: start; }
.access-list dt {
  font-weight: 800;
  color: var(--orange);
  font-size: 0.95rem;
}
.access-list dt i { margin-right: 4px; }
.access-list dd { font-size: 0.98rem; color: var(--text); line-height: 1.7; }
.access-list dd a { font-weight: 800; }
.access-list dd small { font-size: 0.85em; color: var(--text-soft); }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 24px;
}

.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.access-map iframe { width: 100%; height: 100%; min-height: 380px; border: none; }

@media (max-width: 768px) {
  .access-wrap { grid-template-columns: 1fr; }
  .access-info { padding: 24px; }
  .access-list > div { grid-template-columns: 80px 1fr; gap: 10px; }
}

/* ============ フッター ============ */
.site-footer {
  background: linear-gradient(135deg, #5C3A1E 0%, #3D2A1A 100%);
  color: #fff;
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo {
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  max-width: 240px;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 0.92rem; line-height: 1.7; opacity: 0.85; }
.footer-info p { font-size: 0.92rem; line-height: 1.85; margin-bottom: 6px; }
.footer-info a { color: var(--yellow-light); }
.footer-nav ul { list-style: none; columns: 1; }
.footer-nav li { padding: 6px 0; }
.footer-nav a { color: #fff; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--yellow-light); opacity: 1; }
.footer-copy { text-align: center; padding-top: 24px; font-size: 0.82rem; opacity: 0.7; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-logo { margin: 0 auto 16px; }
}

/* ============ 固定CTA ============ */
.fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff !important;
  padding: 18px 22px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(243, 146, 0, 0.55);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
  border: 3px solid #fff;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(243, 146, 0, 0.55); }
  50% { box-shadow: 0 12px 40px rgba(243, 146, 0, 0.85); }
}
.fixed-cta i { font-size: 1.4rem; }
.fixed-cta:hover { opacity: 1; transform: translateY(-3px); }

@media (max-width: 768px) {
  .fixed-cta {
    bottom: 16px;
    right: 12px;
    left: 12px;
    justify-content: center;
    padding: 14px;
  }
  .fixed-cta span br { display: none; }
  .fixed-cta span { display: inline; }
}

/* ============ アニメーション ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
