.page-consultation .section-title {
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-align: center;
}
/*--------------------------------------------------------------
# 発達や、学習・進路に関する相談支援を行っています
--------------------------------------------------------------*/
#consultation-top {
  padding-bottom: 0;
}
#consultation-top .container {
  width: min(95%, 110rem);
}
#consultation-top p {
  width: fit-content;
  margin: 0 auto;
}
#consultation-top .consultation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6% auto;
  gap: 3%;
}
#consultation-top .consultation-list li {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
  margin-bottom: 3rem;
  padding: 2em;
  background: #FFF;
  border: 5px solid #FF786F;
  border-radius: 50%;
}
#consultation-top .consultation-list .block-title {
  color: #FF786F;
  font-family: var(--font-maru-gothic);
}
#consultation-top .consultation-list .block-title::before {
  display: block;
  content: "";
  width: 100px;
  height: 104px;
  margin: 0 auto 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#consultation-top .consultation-list li:nth-child(1) .block-title::before {
  background-image: url(/assets/img/consul-top-img1.png);
}
#consultation-top .consultation-list li:nth-child(2) .block-title::before {
  background-image: url(/assets/img/consul-top-img2.png);
}
#consultation-top .consultation-list li:nth-child(3) .block-title::before {
  background-image: url(/assets/img/consul-top-img3.png);
}
#consultation-top .bg-cream {
  padding: 7rem 0;
  background: var(--cream);
}
#consultation-top .lead {
  font-size: var(--font-size-middle);
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
#consultation-top .lead mark {
  font-size: 150%;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
}
@media (min-width:768px) {
  #consultation-top .bg-cream {
    padding: 10rem 0;
  }
}
/*--------------------------------------------------------------
# ご相談の流れ
--------------------------------------------------------------*/
#consultation-flow {
  counter-reset: count 0;
  background: var(--pale-blue);
}
#consultation-flow .consul-flow-list li {
  counter-increment: count 1;
  margin-bottom: 3rem;
  background: #FFF;
  border: 3px solid #AAA;
  border-radius: 2rem;
  overflow: hidden;
}
#consultation-flow .consul-flow-list .text-wrap {
  padding: 1em;
}
#consultation-flow .consul-flow-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  bottom: -1rem;
}
#consultation-flow .consul-flow-list .block-title {
  margin-bottom: 0.5em;
}
#consultation-flow .consul-flow-list .block-title::before {
  content: counter(count)"．";
}
@media (min-width: 768px) {
  #consultation-flow .consul-flow-list li {
    display: flex;
    justify-content: space-between;
    border-radius: 5rem;
  }
  #consultation-flow .consul-flow-list .text-wrap {
    width: 65%;
    padding: 2em;
  }
  #consultation-flow .consul-flow-list .img-wrap {
    width: 30%;
  }
  #consultation-flow .consul-flow-list img {
    bottom: 0;
    right: -0.2rem;
  }
}
