/* =========================
療育についてページ
========================= */

.therapy-page{
  padding-bottom:80px;
}

.therapy-hero{
  background:
    linear-gradient(rgba(255,253,248,.84), rgba(255,253,248,.84)),
    url("../../images/photo03.jpg") center/cover no-repeat;
}

.therapy-lead{
  width:min(900px, calc(100% - 60px));
  margin:0 auto 60px;
  text-align:center;
}

.therapy-lead h2{
  margin:0 0 22px;
  font-size:30px;
  line-height:1.7;
}

.therapy-lead p{
  margin:0;
  font-size:15px;
  line-height:2.2;
}

.iine-program{
  width:min(1160px, calc(100% - 60px));
  margin:0 auto 70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.iine-card{
  padding:38px 34px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:0 10px 30px rgba(93,61,27,.05);
}

.program-label{
  display:inline-block;
  margin:0 0 10px;
  padding:6px 18px;
  border-radius:999px;
  background:var(--soft);
  color:var(--green);
  font-size:14px;
  font-weight:800;
}

.iine-card h2{
  margin:0 0 24px;
  font-size:27px;
  color:var(--green);
}

.iine-card ol{
  margin:0;
  padding-left:1.4em;
}

.iine-card li{
  margin-bottom:10px;
  font-size:15px;
  line-height:1.9;
}

.program-result{
  margin:24px 0 0;
  padding:18px 20px;
  background:#fffdf8;
  border:1px solid var(--line);
  border-radius:18px;
  color:var(--brown);
  font-weight:800;
}

.therapy-detail{
  width:min(1160px, calc(100% - 60px));
  margin:0 auto 70px;
  padding:44px 38px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:0 10px 30px rgba(93,61,27,.05);
}

.therapy-detail__head{
  text-align:center;
  margin-bottom:34px;
}

.therapy-detail__head h2{
  margin:0 0 12px;
  font-size:28px;
}

.therapy-detail__head p{
  margin:0;
  font-size:15px;
  line-height:2;
}

.therapy-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.therapy-grid article{
  padding:28px 24px;
  background:var(--soft);
  border-radius:22px;
}

.therapy-grid h3{
  margin:0 0 16px;
  color:var(--green);
  font-size:18px;
}

.therapy-grid ul{
  margin:0;
  padding:0;
  list-style:none;
}

.therapy-grid li{
  position:relative;
  padding-left:22px;
  margin-bottom:10px;
  font-size:14px;
  line-height:1.8;
}

.therapy-grid li:before{
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:8px;
  height:8px;
  background:var(--green);
  border-radius:50%;
}

.therapy-grid p{
  margin:0;
  font-size:14px;
  line-height:2;
  color:#2d2119;
}

/* スマホ */
@media (max-width:1000px){

  .therapy-lead,
  .iine-program,
  .therapy-detail{
    width:calc(100% - 36px);
  }

  .therapy-lead h2{
    font-size:24px;
  }

  .iine-program{
    grid-template-columns:1fr;
    gap:24px;
  }

  .iine-card{
    padding:30px 22px;
  }

  .iine-card h2{
    font-size:23px;
  }

  .therapy-detail{
    padding:34px 22px;
  }

  .therapy-detail__head h2{
    font-size:24px;
  }

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

.therapy-text-block{
  margin:0 0 30px;
  padding:26px 28px;
  background:#fffdf8;
  border:1px solid var(--line);
  border-radius:22px;
}

.therapy-text-block h3{
  margin:0 0 12px;
  color:var(--green);
  font-size:20px;
}

.therapy-text-block p{
  margin:0 0 8px;
  font-size:15px;
  line-height:2;
}

.therapy-grid ol{
  margin:0;
  padding-left:1.4em;
}

.therapy-grid ol li{
  padding-left:0;
}

.therapy-grid ol li:before{
  display:none;
}