/* ------------------------------------
   基本設定
------------------------------------ */
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--primary2 {
  background: #8080ff;
  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--primary2 {
  background: #8080ff;
}

.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;
  }

}

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

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

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

}


/* ------------------------------------
   洗練された所在地フッター
------------------------------------ */
.pdd-footer {
  margin-top: 58px;
  background: linear-gradient(135deg, #2b1838 0%, #51325f 52%, #8c5d76 100%);
  color: #fff;
  padding: 70px 18px 34px;
}

.pdd-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.pdd-footer__brand {
  margin: 0 0 8px;
  color: #e7c9dc;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .18em;
  font-size: 13px;
}

.pdd-footer h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: .08em;
}

.pdd-footer__lead {
  margin: 0 0 32px;
  color: rgba(255,255,255,.82);
}

.pdd-studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 34px;
}

.pdd-studio-card {
  position: relative;
  padding: 28px 22px 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  text-align: left;
  box-shadow: 0 16px 35px rgba(19, 9, 28, .22);
  backdrop-filter: blur(6px);
}

.pdd-studio-card--active {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,231,240,.45);
}

.pdd-studio-card__area {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #ffe7f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .14em;
}

.pdd-studio-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
}

.pdd-studio-card h3 a {
  color: #fff;
  text-decoration: none;
}

.pdd-studio-card h3 a:hover {
  text-decoration: underline;
}

.pdd-studio-card p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
  line-height: 1.75;
}

.pdd-studio-card .pdd-tel {
  margin-bottom: 0;
  color: #ffe7f0;
  font-weight: 700;
}

.pdd-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 28px 0 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.pdd-footer__links a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-size: 14px;
}

.pdd-footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}

.pdd-footer address {
  color: rgba(255,255,255,.62);
  font-style: normal;
  font-size: 12px;
}

@media screen and (max-width: 900px) {
  .pdd-studio-grid {
    grid-template-columns: 1fr;
  }

  .pdd-studio-card {
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .pdd-footer {
    margin-top: 36px;
    padding: 52px 14px 28px;
  }

  .pdd-footer__links {
    gap: 8px 14px;
  }
}

