.top-section {
  background-image: url(../images/inner-child/inner-child-mv.jpg);
  height: 400px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px;
  display: flex;
  flex-direction: column; /* h2 → p の縦並び */
  justify-content: center; /* ← 縦方向中央寄せ */
  align-items: flex-start; /* ← 横方向左寄せ */
  padding-left: 200px; /* ← 左余白（好みで調整） */
  text-align: left; /* テキストの左揃え */
  gap: 30px;
}
.top-section h2 {
  width: 100%;
  display: block;
  font-size: 3.6rem;
  color: #EE9AA2;
  line-height: 5.4rem;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff,
              1px 1px 0 #fff, 1px -1px 0 #fff,
              1px 0 0 #fff, -1px 0 0 #fff,
              0 1px 0 #fff, 0 -1px 0 #fff;
  letter-spacing: 0.2em;
}
.top-section__lead {
  display: inline-block;
  text-align: left;
  width: 90%;
  max-width: 760px;
  margin: 80px auto;
}
.sp-only {
  display: none;
}
@media(max-width:960px) {
  .header {
    margin-bottom: 0;
  }
  .top-section {
    margin-top: 0;
    padding: 24px;
    background-position: 70% bottom;
    background-size: cover;
    height: 500px;
  }
  .top-section h2 {
    font-size: 2.4rem;
  }
  .top-section p {
    font-size: 2rem;
  }
  .top-section__lead {
    margin: 40px auto;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
  display: block;
}
}
.worry-section {
  background-color: #fae0e2;
  padding: 60px 24px;
  border-radius: 100px 100px 0 0;
}
.title-area {
  margin-bottom: 60px;
}

.overview-section__contents-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.overview-section__worryied-women {
  height: 225px;
  width: auto;
}
.overview-section__contents-wrapper ul {
  margin-bottom: 40px;
}
.overview-section__contents-wrapper ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.overview-section__contents-wrapper ul img {
  height: 27px;
  width: auto;
}
@media(max-width:740px) {
  .overview-section__contents-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
  }
}
@media(max-width:960px) {
  .worry-section {
    border-radius: 50px 50px 0 0;
  }
}
.about-section {
  background-color: #fae0e2;
  padding: 20px 100px 200px;
}
.about-section__lead {
  text-align: left;
  margin: 0 auto 60px;
  width: 90%;
  max-width: 760px;
}
.about-section h4 {
  width: 440px;
  padding: 10px 0;
  color: #EE9AA2;
  background-color: #fff;
  margin-bottom: 40px;
}

.service-section__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 60px;
  padding: 0 0 0 16vw;
}

.service-section__contents li p {
  text-align: left;
  width: 430px;
}
.service-section__contents li p::before {
  content: "●"; /* 丸を表示（文字で指定） */
  display: inline-block; /* インライン要素として扱い、サイズや位置を調整可能にする */
  margin-right: 5px; /* 丸とテキストの間に余白を設ける */
  color: #fff; /* 文字の色を指定 */
}
.about-section__features {
  width: 90%;
  max-width: 700px;
  text-align: left;
  margin: 0 auto;
}
@media(max-width:960px) {
  .service-section__contents {
    max-width: 420px;
    margin: 0 auto 60px;
    gap: 0;
    padding: 0;
    flex-direction: column;
  }
  .service-section__contents li p {
    width: auto;
    text-align: left;
    margin-bottom: 10px;
  }
  .about-section {
    padding: 0 24px 160px;
  }
  .about-section h4 {
    width: 300px;
    padding: 10px;
    margin: 0 auto 40px;
  }
}
.session-section {
  background-color: #fff;
  padding: 60px 24px 100px;
  border-radius: 100px 100px 0 0;
  margin-top: -100px;
}
.session-section .title-area {
  margin-bottom: 80px;
}
.session-section h4 {
  width: 400px;
  background-color: #93C7CC;
  color: #fff;
  padding: 10px 0;
  margin: 0 0 40px 200px;
}
.session-section__flow ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.session-section__flow li img {
  width: 220px;
  height: auto;
}
.arrow {
  width: auto;
  height: 31px;
}
.session-section__voice ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.session-section__voice ul li {
  border: #EE9AA2 2px solid;
  border-radius: 10px;
  padding: 20px;
}
.session-section__voice-name {
  display: flex;
  gap: 20px;
  align-items: center;
}
.session-section__voice ul li img {
  height: 123px;
  width: auto;
}
.session-section__voice-name h5 {
  text-align: left;
}
.session-section__voice ul li p {
  max-width: 460px;
  text-align: left;
}
.session-section__fee-contents {
  background-color: #F5F5F5;
  padding: 20px;
  border: #EE9AA2 2px solid;
  border-radius: 10px;
  display: block; /* ← inline-blockをblockに変更 */
  text-align: left;
  margin: 0 0 60px 300px; /* ← 左寄せ */
  width: fit-content; /* ← コンテンツ幅にしたい場合 */
}

.session-section__fee h6 {
  margin-bottom: 20px;
  color: #EE9AA2;
  font-size: 2.2rem;
  line-height: 3.3rem;
}
.small-character {
  font-size: 1.8rem;
}
.cancel {
  position: relative;
}
.cancel::after {
    content: '';
    transform: rotate(-7deg);
    width: 100%;
    border-top: 2px solid #424242;
    position: absolute;
    top: 50%;
    left: 0;
}
.session-section__information {
  background-color: #fae0e2;
  border-radius: 10px;
  padding: 40px;
  display: inline-block;
  margin-bottom: 60px;
}
.session-section__information h4 {
  color: #424242;
  background-color: transparent;
  margin: 0 auto 20px;
}
.session-section__information p {
  text-align: left;
}
.session-section__greeting {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.session-section__greeting img {
  width: 300px;
  height: auto;
}
.session-section__greeting-text {
  text-align: left;
  width: 90%;
  max-width: 700px;
}
.session-section__greeting h5 {
  margin-bottom: 20px;
}
.session-section__information-messeage {
  width: 90%;
  max-width: 700px;
  display: inline-block;
  text-align: left;
  font-weight: 500;
  margin: 0 auto 60px;
}
.session-section a {
  background-color: #EE9AA2;
  color: #fff;
  padding: 10px 30px;
  border-radius: 25px;
}
.sp-only-arrow {
  display: none;
}
@media(max-width:960px) {
  .session-section {
    border-radius: 50px 50px 0 0;
    padding-bottom: 60px;
  }
  .session-section h4 {
    margin: 0 auto 40px;
    width: 327px;
  }
  .session-section__fee-contents {
    margin: 0 auto 60px;
  }
  .session-section__information {
    padding: 30px 20px;
    width: 100%;
  }
  .session-section .session-section__information h4 {
    margin-bottom: 20px;
    width: auto;
    padding: 0;
    margin: 0 auto 40px;
  }
  .session-section__greeting {
    gap: 20px;
  }
}
@media(max-width:685px) {
  .arrow {
    display: none;
  }
  .sp-only-arrow {
    display: block;
    width: 23px;
    height: auto;
  }
  .session-section__flow ul {
    flex-direction: column;
  }
}