@charset "UTF-8";
/***********************共通設定************************/
h1 {
  color: #007E3D;
  font-size: 24px;
}

/* ==========================================================================//
//
//　タイトル
//
// ========================================================================== */
.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 -70px;
}
.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) {
  .sec_title h2 {
    font-size: 24px;
  }
}
.sec_title h2::before, .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;
}
.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);
}
.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);
}

/* ==========================================================================//
//
//　プログラム一覧
//
// ========================================================================== */
.sec_title {
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .sec_title {
    margin-bottom: 10px;
  }
}

.program_list_wrap {
  background: #F6FFEE;
  padding: 20px 0;
  margin: 40px 0 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .program_list_wrap {
    margin: 100px 0 0;
  }
}
.program_list_wrap section {
  margin: 0 0 0px;
  padding: 60px 0 0px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .program_list_wrap section {
    margin: -120px 0 0px;
    padding: 170px 0 0px;
  }
}
.program_list_wrap h3 {
  font-size: 18px;
  color: #007E3D;
  margin: 0 0 20px;
  position: relative;
  padding: 0 0 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .program_list_wrap h3 {
    font-size: 30px;
  }
}
.program_list_wrap h3::after {
  background: radial-gradient(circle farthest-side, #FFA103, #FFA103 60%, transparent 60%, transparent);
  background-size: 10px;
  content: "";
  display: inline-block;
  height: 10px;
  width: 100px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin: 0 0 0 -50px;
}
.program_list_wrap .program_list li {
  background: #fff;
  margin: 30px 0;
  text-align: left;
  color: #303030;
  padding: 15px;
  display: block;
  border-radius: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .program_list_wrap .program_list li {
    padding: 30px;
  }
}
.program_list_wrap .program_list li a {
  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;
  margin: 30px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.program_list_wrap .program_list li a:hover {
  background: #fff;
  color: #FFA103;
}
.program_list_wrap .program_list li h4 {
  font-size: 16px;
  margin: 0 0 30px 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .program_list_wrap .program_list li h4 {
    font-size: 20px;
  }
}
/*# sourceMappingURL=program.css.map */