@charset "UTF-8";
/***********************共通設定************************/
/* ==========================================================================//
//
//　うつと不安のデイケアプログラム案内  一覧
//
// ========================================================================== */
.sec_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 40px;
}
.sec_title h1 {
  font-size: 18px;
  position: relative;
  text-align: center;
  color: #007E3D;
  padding: 0 120px;
  white-space: nowrap;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_title h1 {
    font-size: 24px;
  }
}
.sec_title h1::before, .sec_title h1::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  margin: 0 auto;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 15px;
}
.sec_title h1::before {
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, #62CC93), color-stop(100%, #62CC93), to(transparent));
  background-image: linear-gradient(to right, transparent, #62CC93 50%, #62CC93 100%, transparent);
}
.sec_title h1::after {
  right: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(50%, #62CC93), color-stop(100%, #62CC93), to(transparent));
  background-image: linear-gradient(to left, transparent, #62CC93 50%, #62CC93 100%, transparent);
}

.depression_guidance {
  text-align: left;
}
.depression_guidance .sec_title {
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .depression_guidance .sec_title h1 {
    padding: 0 70px;
  }
  .depression_guidance .sec_title h1::before, .depression_guidance .sec_title h1::after {
    width: 50px;
  }
}
.depression_guidance li {
  margin: 0 0 70px;
}
.depression_guidance li h2 {
  margin: 0 0 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .depression_guidance li h2 {
    font-size: 20px;
  }
}

.orange_btn {
  margin: 30px auto 0;
  background: #FFA103;
  border: 1px solid #FFA103;
  color: #fff;
  width: 240px;
  padding: 10px;
  border-radius: 100px;
  display: block;
  cursor: pointer;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .orange_btn {
    margin: 50px auto 0;
  }
}
@media (hover: hover) {
  .orange_btn:hover {
    background: #fff;
    color: #FFA103;
  }
}

/* ==========================================================================//
//
//　うつと不安のデイケアプログラム案内  詳細
//
// ========================================================================== */
#daycare_program .sec_title h2 {
  font-size: 18px;
  position: relative;
  text-align: center;
  color: #007E3D;
  padding: 0 120px;
  white-space: nowrap;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #daycare_program .sec_title h2 {
    font-size: 24px;
  }
}
#daycare_program .sec_title h2::before, #daycare_program .sec_title h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  margin: 0 auto;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 15px;
}
#daycare_program .sec_title h2::before {
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, #62CC93), color-stop(100%, #62CC93), to(transparent));
  background-image: linear-gradient(to right, transparent, #62CC93 50%, #62CC93 100%, transparent);
}
#daycare_program .sec_title h2::after {
  right: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(50%, #62CC93), color-stop(100%, #62CC93), to(transparent));
  background-image: linear-gradient(to left, transparent, #62CC93 50%, #62CC93 100%, transparent);
}
#daycare_program .daycare_program_block {
  text-align: left;
}
#daycare_program .daycare_program_block h1, #daycare_program .daycare_program_block h2 {
  color: #2BB06B;
  margin: 0 0 10px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #daycare_program .daycare_program_block h1, #daycare_program .daycare_program_block h2 {
    font-size: 20px;
  }
}
#daycare_program .daycare_program_block p {
  line-height: 2.18;
  margin: 0 0 30px;
}
#daycare_program .daycare_program_block .back_link a {
  font-size: 16px;
  color: #007E3D;
  border: 1px solid #007E3D;
  cursor: pointer;
  width: 300px;
  height: 50px;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  #daycare_program .daycare_program_block .back_link a {
    margin: 120px auto 0;
    font-size: 24px;
    height: 70px;
  }
}
#daycare_program .daycare_program_block .back_link a:hover {
  color: #fff;
  background: #007E3D;
}