/* ------------------------------------
   基本設定
------------------------------------ */
body {
  margin: 0;
  padding: 0;
  font-family:
 "Zen Maru Gothic",
"Noto Sans JP",
sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff7fa;
}

h1, h2, h3 {
  font-family:
"Zen Maru Gothic",
"Noto Sans JP",
sans-serif;
  font-weight: 600;
  color: #2b2b2b;
}

.section {
  padding: 80px 20px;
}

.section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

/* ------------------------------------
   ファーストビュー
------------------------------------ */
.hero {
  position: relative;
  height: 90vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("hero.jpg") center/cover no-repeat;
  filter: brightness(60%);
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 3rem;
  margin: 10px 0;
}

.hero__subtitle {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.hero__copy {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero__note {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ------------------------------------
   ボタン
------------------------------------ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.btn--primary {
  background: #f4b6c2;
  color: #fff;
}

.btn--primary:hover {
  background: #b48f6c;
}

/* ------------------------------------
   悩みセクション
------------------------------------ */
.problem-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.problem-list__item {
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 20px;
  border-left: 4px solid #c8a27e;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ------------------------------------
   About（3つの柱）
------------------------------------ */
.about__image {
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.pillars {
  display: grid;
  gap: 30px;
}

.pillar__title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ------------------------------------
   Before / After
------------------------------------ */
.before-after {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.before-after__item {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.before-after__label {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #c8a27e;
}

/* ------------------------------------
   特徴
------------------------------------ */
.section--features {
  background: #ffeef4;
}

.feature-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.feature-list__item {
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 20px;
  border-left: 4px solid #f4b6c2;
}

/* ------------------------------------
   Flow（体験の流れ）
------------------------------------ */
.flow {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto 40px;
}

.flow__step {
  background: #fff;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 10px;
  border-left: 4px solid #c8a27e;
}

/* ------------------------------------
   料金プラン
------------------------------------ */
.pricing-cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.pricing-card--recommended {
  border: 2px solid #c8a27e;
}

.pricing-card__title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pricing-card__price {
  font-size: 1.2rem;
  margin: 6px 0;
  color: #c8a27e;
}

/* ------------------------------------
   FAQ
------------------------------------ */
.faq__item {
  background: #fff;
  padding: 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  cursor: pointer;
}

.faq__question {
  font-weight: 600;
}

.faq__answer {
  margin-top: 10px;
}

/* ------------------------------------
   最後のCTA
------------------------------------ */
.section--cta {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 120px 20px;
}

.section--cta .section__bg {
  position: absolute;
  inset: 0;
  background: url("cta.jpg") center/cover no-repeat;
  filter: brightness(50%);
}

.section--cta .section__inner {
  position: relative;
  z-index: 2;
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

/* ------------------------------------
   フッター
------------------------------------ */
.footer {
  background: #2b2b2b;
  color: #ddd;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* ------------------------------------
   スマホ最適化（幅768px以下）
------------------------------------ */
@media screen and (max-width: 768px) {

  /* 全体の余白と文字サイズ */
  body {
    font-size: 16px;
    line-height: 1.9;
  }

  .section {
    padding: 60px 16px;
  }

  .section__title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  /* ファーストビュー */
  .hero {
    height: 70vh;
    padding: 0 20px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .hero__copy {
    font-size: 1rem;
  }

  /* ボタン */
  .btn {
    padding: 12px 26px;
    font-size: 1rem;
  }

  .btn--large {
    padding: 14px 30px;
    font-size: 1.1rem;
  }

  /* About（3つの柱） */
  .about__image {
    height: 200px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  /* Before / After */
  .before-after {
    flex-direction: column;
    gap: 20px;
  }

  .before-after__item {
    width: 100%;
  }

  /* 特徴 */
  .feature-list__item {
    font-size: 1rem;
    padding: 14px 16px;
  }

  /* Flow（体験の流れ） */
  .flow__step {
    padding: 16px;
  }

  /* 料金プラン */
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 24px;
  }

  /* FAQ */
  .faq__item {
    padding: 16px;
  }

  /* CTA（最後のセクション） */
  .section--cta {
    padding: 80px 20px;
  }

  .section--cta .section__title {
    font-size: 1.8rem;
  }

  .section--cta .section__lead {
    font-size: 1rem;
  }
}
/* -----------------------------
   子ども向けデザイン追加
----------------------------- */

body {
  background: #fff7fa;
  font-family:
  "Zen Maru Gothic",
  "Noto Sans JP",
  sans-serif;
}

.section--features {
  background: #ffeef4;
}

.btn--primary {
  background: #f4b6c2;
}

.btn--primary:hover {
  background: #ea9fb0;
}

.problem-list__item,
.feature-list__item,
.flow__step {
  border-left: 4px solid #f4b6c2;
  border-radius: 20px;
}

.section__title {
  color: #e48aa0;
}

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

.btn {
  width: 100%;
  max-width: 320px;
}

.junior__mainimg img{
  width:100%;
  max-width:600px;
  border-radius:20px;
}

.junior__headbox,
.junior__box,
.junior__access{
  background:#fff;
  padding:24px;
  border-radius:20px;
  margin-bottom:24px;
  box-shadow:0 4px 12px rgba(244,182,194,0.15);
}

.junior__headbox{
  text-align:center;
}

.junior__catch{
  font-size:1.3rem;
  color:#e48aa0;
  font-weight:bold;
}

.schedule-table{
  overflow-x:auto;
  margin-bottom:24px;
}

.schedule-table table{
    min-width:500px;
}

.schedule-table table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

.schedule-table th,
.schedule-table td{
  border:1px solid #f4b6c2;
  padding:14px;
  text-align:center;
}

.schedule-table th{
  background:#ffe4ec;
}

.junior__box h3{
  color:#e48aa0;
  margin-top:0;
}

.junior__box ul{
  padding-left:20px;
}

.junior__cta{
  text-align:center;
  margin:40px 0;
}

.junior__access{
  text-align:center;
}


/* ==========================
   ジュニアページ スマホ最適化
========================== */

@media screen and (max-width:768px){

  .junior__headbox,
  .junior__box,
  .junior__access{
    padding:18px;
    margin-bottom:16px;
  }

  .junior__catch{
    font-size:1.15rem;
    line-height:1.6;
  }

  .junior__headbox h2{
    font-size:1.5rem;
    line-height:1.4;
  }

  .junior__box h3{
    font-size:1.2rem;
    line-height:1.4;
  }

  .schedule-table{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .schedule-table table{
    min-width:500px;
  }

  .schedule-table th,
  .schedule-table td{
    padding:10px 6px;
    font-size:13px;
  }

  .btn--primary{
    width:100%;
    max-width:none;
    box-sizing:border-box;
  }

  .junior__access{
    font-size:14px;
    line-height:1.8;
  }

}