.staying {}
.daytrip {}
/*mv*/
.course_mv {
  position: relative;
  margin: 80px auto 0;
}
.course_mv::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  content: '';
  background: #F3EBE4;
  border-radius: 30px 30px 0 0;
}
.course_mv > img {
  position: relative;
  z-index: 1;
  width: 95% !important;
  margin: -2em 0 0 5%;
  height: 250px !important;
  object-fit: cover;
  border-radius: 30px 0 0 30px;
}
.course_mv_txt {
  position: relative;
  width: 80%;
  margin: -2em auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  box-sizing: border-box;
  text-align: left;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  box-shadow: 4px 4px 0px 0px rgba(62, 179, 205, 1);
}
.course_mv_txt::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px dotted #3EB3CD;
  border-radius: 10px;
  pointer-events: none;
}
.course_mv_txt::after {
  position: absolute;
  z-index: 1;
  top: -2em;
  left: -2em;
  width: 60px;
  height: 60px;
  content: '';
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.staying .course_mv_txt::after {
  background-image: url("/course/img/common/staying.webp");
}
.daytrip .course_mv_txt::after {
  background-image: url("/course/img/common/daytrip.webp");
}
.course_mv_txt h2 {
  font-weight: 600;
  margin: 0 auto 0.5em;
}
.course_mv_txt h2 span {
  display: block;
  color: #3EB3CD;
  font-size: 2.3rem;
  line-height: 1.4;
  margin: 0.2em auto 0;
}
.course_mv_txt p {
  display: inline-block;
  border: 1px solid #3EB3CD;
  border-radius: 30px;
  font-weight: 400;
  font-size: 1.2rem;
  padding: 0px 15px 0px 0;
}
.course_mv_txt p span {
  display: inline-block;
  font-weight: 600;
  padding: 4px 10px;
  margin: 0 10px 0 0;
  background: #3EB3CD;
  color: #fff;
  border-radius: 30px;
}
/* top*/
.course_top {
  width: 80%;
  margin: auto;
}
.course_top p {
  text-align: left;
}
.course_top div {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 1em auto 0em;
  justify-content: center;
}
.course_top div img {
  margin: 0.5em 3px 0em;
  width: calc(100% / 2 - 6px) !important;
  border-radius: 10px;
  border: 2px solid #fff !important;
  box-sizing: border-box !important;
}
/* schedule*/
.schedule_bg {
  width: 90%;
  margin: 4em auto 0;
  position: relative;
}
.schedule_bg::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 150px;
  box-sizing: border-box;
  padding: 6px 0 0 15px;
  font-family: arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  content: 'SCHEDULE';
  color: #3EB3CD;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 4px 4px 0px 0px rgba(62, 179, 205, 1);
}
.schedule_bg::after {
  position: absolute;
  content: '';
  bottom: calc(100% + 5px);
  left: 15px;
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("/course/img/common/icon_schedule.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.schedule_inner {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: #fff;
  border-radius: 0 10px 10px 10px;
  box-shadow: 4px 4px 0px 0px rgba(62, 179, 205, 1);
}
/*tabの形状*/
.schedule_tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #F77AA5;
}
.schedule_tab li a {
  display: block;
  background: #D5D5D5;
  font-weight: 600;
  color: #fff !important;
  margin: 0 4px;
  padding: 6px 20px;
  border-radius: 5px 5px 0 0;
}
/*liにactiveクラスがついた時の形状*/
.schedule_tab li.active a {
  background: #F77AA5;
}
.daytrip .schedule_tab {
  border-bottom: 1px solid #01BA1E;
}
.daytrip .schedule_tab li.active a {
  background: #01BA1E;
}
/*エリアの表示非表示と形状*/
.schedule_area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
}
/*areaにis-activeというクラスがついた時の形状*/
.schedule_area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.schedule_slider {
  position: relative;
}
.schedule_slider li {
  position: relative;
  background: #F3EBE4;
  border-radius: 5px;
  padding: 15px 8px 0px;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
}
.schedule_slider li::before {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90px;
  content: attr(data-spot); /* ★ JSから渡す */
  font-family: arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: #F77AA5;
  clip-path: polygon(0 0, 100% 0, 96% 50%, 100% 100%, 0 100%, 4% 49%);
  font-size: 1.1rem;
}
.daytrip .schedule_slider li::before {
  background: #01BA1E;
}
.schedule_slider li img {
  border-radius: 5px;
  height: 80px !important;
  object-fit: cover;
}
.schedule_slider li p {
  height: 50px;
  line-height: 1.4;
  display: grid;
  place-items: center;
  place-content: center;
}
.schedule_slider .slick-list {
  padding: 2em 0 0;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.schedule_slider .slick-slide {
  margin: 0 5px;
}
/*矢印の設定*/
.schedule_slider .slick-prev, .schedule_slider .slick-next {
  position: absolute;
  top: calc(60% - 10px) !important;
  border-top: 2px solid #3EB3CD !important;
  border-right: 2px solid #3EB3CD !important;
  height: 10px;
  width: 10px;
}
.schedule_slider .slick-prev {
  left: -10px;
}
.schedule_slider .slick-next {
  right: -10px;
}
/*day*/
.day1_bg {
  background: #F3EBE4;
}
.day1_inner {
  background: #F2F8F8;
  position: relative;
  border-radius: 30px 30px 0 0;
  padding: 8em 0 3em;
}
.day2_bg {
  background: #F2F8F8;
}
.day2_inner {
  background: #fff;
  position: relative;
  border-radius: 30px 30px 0 0;
  padding: 8em 0 3em;
}
.day_ttl {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90%;
}
.day_ttl::before {
  position: absolute;
  content: '';
  top: calc(100% + 5px);
  left: 50%;
  transform: translate(-50%, 0%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/course/img/common/arrow_down.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.day_ttl img {
  display: block;
  width: 30px !important;
  margin: auto;
  padding: 0 0 0 8px;
}
.day_ttl div {
  position: relative;
  display: inline-block;
  margin: 0em 0 1.5rem;
  padding: 5px 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  background: #F77AA5;
  border-radius: 30px;
}
.day_ttl div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #F77AA5;
}
.daytrip .day_ttl div {
  background: #01BA1E;
}
.daytrip .day_ttl div::before {
  border-top: 10px solid #01BA1E;
}
.day_ttl div p {
  margin: 0;
  padding: 0;
}
.day_ttl > p {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
/*course*/
.course_list {
  position: relative;
  counter-reset: spot;
}
.course_list::before {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -0%);
  width: 1px;
  height: 100%;
  content: '';
  background: #3EB3CD;
}
.course_list > li {
  margin: 4em auto 0;
  width: 90%;
  counter-increment: spot;
}
.course_list_move {
  position: relative;
  background: #fff;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  border: 1px solid #3EB3CD;
  border-radius: 60px;
  padding: 10px 15px;
}
.course_list_move div {
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 35px;
}
.course_spot {
  margin: 2em auto 0;
  background: #F3EBE4;
  padding: 25px 25px 25px;
  position: relative;
  border-radius: 10px;
  box-shadow: 4px 4px 0px 0px rgba(62, 179, 205, 1);
}
.course_spot::before {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90px;
  padding: 3px 0;
  content: 'SPOT 'counter(spot);
  font-family: arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: #F77AA5;
  clip-path: polygon(0 0, 100% 0, 96% 50%, 100% 100%, 0 100%, 4% 49%);
  font-size: 1.2rem;
}
.daytrip .course_spot::before {
  background: #01BA1E;
}
.course_spot h2 {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600 !important;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.course_spot_txt {
  text-align: left;
}
.course_gallery {
  position: relative;
  margin: 0.5em 0 0.7em 0;
}
.course_gallery img {
  vertical-align: bottom;
  border-radius: 10px;
  height: 200px !important;
  object-fit: cover;
}
.course_gallery li {
  list-style: none;
}
/*矢印の設定*/
.course_gallery .slick-prev, .course_gallery .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: calc(50% - 10px);
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: none !important;
  border-right: none !important;
  height: 20px !important;
  width: 20px !important;
  display: block;
  background-image: url("/course/img/common/arrow_slide.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.course_gallery .slick-prev { /*戻る矢印の位置と形状*/
  left: -23px;
  transform: none !important;
}
.course_gallery .slick-next { /*次へ矢印の位置と形状*/
  right: -23px;
  transform: scale(-1, 1) !important;
}
.course_gallery.marutto::before {
  position: absolute;
  z-index: 3;
  content: '';
  bottom: 10px;
  right: 10px;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("/course/img/common/maruttopass.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
/*選択するサムネイル画像の設定*/
.course_choice-btn {
  margin: 0 auto 1em;
}
.course_choice-btn li {
  cursor: pointer;
  outline: none;
  list-style: none;
  width: auto !important;
}
.course_choice-btn .slick-slide {
  padding: 0 2px;
  box-sizing: border-box;
}
.course_choice-btn .slick-track {
  display: flex !important;
}
.course_choice-btn li img {
  vertical-align: bottom;
  border-radius: 3px;
  opacity: 0.6;
}
.course_choice-btn li.slick-current img {
  opacity: 1;
}
.course_detail {
  margin: 1.5em auto 0;
}
.course_detail summary {
  width: 200px;
  margin: auto;
  position: relative;
  padding: 1em 0;
  background-color: #3EB3CD;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
  list-style: none;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
}
.course_detail summary::-webkit-details-marker {
  display: none;
}
.course_detail summary::marker {
  display: none;
}
.course_detail summary::before, .course_detail summary::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #fff;
  transition: all .3s;
}
.course_detail summary::before {
  top: 48%;
  right: 25px;
  transform: rotate(0deg);
}
.course_detail summary::after {
  top: 48%;
  right: 25px;
  transform: rotate(90deg);
}
.course_detail[open] summary::after {
  transform: rotate(0deg);
}
.course_detail > div {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  transition: transform .5s, opacity .5s;
  animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.course_detail[open] > div {
  transform: none;
  opacity: 1;
}
.course_detail > div ul {
  margin: 2em auto;
  border-top: 1.5px solid #3EB3CD;
  border-bottom: 1.5px solid #3EB3CD;
  position: relative;
}
.course_detail > div ul::before {
  position: absolute;
  content: '';
  top: -2em;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 1.5px;
  height: 2em;
  background: #3EB3CD;
}
.course_detail > div ul.noborder::before {
  display: none;
}
.course_detail > div ul li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  text-align: left;
  background-image: linear-gradient(to right, rgb(62, 179, 205), rgb(62, 179, 205) 6px, transparent 2px, transparent 5px);
  background-size: 10px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
}
.course_detail > div ul li:last-child {
  background-image: none;
}
.course_detail > div ul dt {
  width: 60px;
  font-weight: 600;
  background: #3EB3CD;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  font-size: 1.2rem;
  padding: 2px 0;
}
.course_detail > div ul dd {
  width: calc(100% - 70px);
  padding: 2px 0 0;
  overflow-wrap: anywhere;
}
.course_facility_bg {
  margin: 4em auto 0;
  position: relative;
}
.course_facility_bg::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 130px;
  box-sizing: border-box;
  padding: 6px 0 0 15px;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  content: '周辺ガイド';
  color: #3EB3CD;
  background: #fff;
  border-radius: 10px 10px 0 0;
}
.course_facility_bg::after {
  position: absolute;
  content: '';
  bottom: calc(100% + 5px);
  left: 15px;
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("/course/img/common/icon_spot.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.course_facility_inner {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: #fff;
  border-radius: 0 10px 10px 10px;
}
.course_facility {}
.course_facility > li {
  border-bottom: 1px solid #3EB3CD;
  margin: 2em auto 0;
  padding: 0 0 1em;
}
.course_facility > li:first-child {
  margin: 0em auto 0;
}
.course_facility > li:last-child {
  border-bottom: none;
  padding: 0;
}
.course_facility_img {}
.course_facility_img img {
  border-radius: 10px;
  height: 180px !important;
  object-fit: cover;
}
.course_facility_txt {
  margin: 1em auto 0;
  text-align: left;
}
.course_facility_txt div {
  position: relative;
  color: #3EB3CD;
  font-weight: 600;
  margin: 0 auto 0.2em;
  padding: 0 0 0 25px;
}
.course_facility_txt div::before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translate(0%, -50%);
  left: 0px;
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("/course/img/common/icon_facility.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.course_facility_txt p {
  padding: 0 0 1em;
  background-image: linear-gradient(to right, rgb(62, 179, 205), rgb(62, 179, 205) 6px, transparent 2px, transparent 5px);
  background-size: 10px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
}
.course_facility_txt p span {
  display: block;
  margin: 0 auto 0.2em;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}
.course_facility_txt ul {
  margin: 0.7em auto 0;
  position: relative;
}
.course_facility_txt li {
  font-size: 1.2rem;
  padding: 5px 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: space-between;
  align-items: flex-start;
}
.course_facility_txt dt {
  width: 70px;
  font-weight: 600;
  background: #3EB3CD;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  padding: 2px 0;
}
.course_facility_txt dd {
  width: calc(100% - 80px);
  overflow-wrap: anywhere;
  padding: 2px 0 0;
}
.course_list_close {
  position: relative;
  background: #F77AA5;
  color: #fff;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  border-radius: 60px;
  padding: 10px 15px;
  margin: 2em auto 0;
}
.daytrip .course_list_close {
  background: #01BA1E;
}
.close_txt {
  margin: 1em auto 0;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  color: #F77AA5;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.daytrip .close_txt {
  color: #01BA1E;
}
.course_btn {
  display: inline-block;
  padding: 10px 30px; /*文字と線の間の余白*/
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #3EB3CD;
  border: 1px solid #3EB3CD;
  color: #fff;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 10px;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  transition: ease .2s;
}
.course_btn:hover {
  background: #fff;
  color: #3EB3CD;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  /*mv*/
  .course_mv {
    margin: 120px auto 0;
    padding: 0 0 8em;
  }
  .course_mv::before {
    height: 80%;
    border-radius: 80px 80px 0 0;
  }
  .course_mv > img {
    position: absolute;
    top: 0;
    right: 0;
    width: 70% !important;
    margin: 0;
    height: 600px !important;
    border-radius: 0 0 0 80px;
  }
  .course_mv_txt {
    position: relative;
    width: 500px;
    margin: 4em auto 0 60px;
    border-radius: 30px;
    padding: 40px 40px;
  }
  .course_mv_txt::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2.5px dotted #3EB3CD;
    border-radius: 30px;
  }
  .course_mv_txt::after {
    top: -2em;
    left: -2em;
    width: 80px;
    height: 80px;
  }
  .course_mv_txt h2 {
    font-size: 1.7rem;
  }
  .course_mv_txt h2 span {
    letter-spacing: 2px;
    font-size: 3.8rem;
  }
  .course_mv_txt p {
    font-size: 1.4rem;
    padding: 0px 20px 0px 0;
  }
  .course_mv_txt p span {
    padding: 4px 15px;
    margin: 0 20px 0 0;
  }
  /* top*/
  .course_top {
    width: 90%;
    max-width: 1000px;
  }
  .course_top p {
    line-height: 2;
  }
  .course_top div {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 1.5em auto 0em;
    justify-content: center;
  }
  .course_top div img {
    margin: 0em 5px 0em;
    width: calc(100% / 3 - 10px) !important;
    border-radius: 20px;
    border: 3px solid #fff !important;
  }
  /* schedule*/
  .schedule_bg {
    width: 90%;
    max-width: 1300px;
    margin: 6em auto 0;
  }
  .schedule_bg::before {
    width: 200px;
    padding: 6px 0 0 20px;
    font-size: 2rem;
    border-radius: 20px 20px 0 0;
  }
  .schedule_bg::after {
    bottom: calc(100% + 7px);
    left: 23px;
    width: 20px;
    height: 20px;
  }
  .schedule_inner {
    padding: 40px 60px;
    border-radius: 0 20px 20px 20px;
  }
  .schedule_tab {}
  .schedule_tab li a {
    margin: 0 4px;
    padding: 6px 40px;
    border-radius: 10px 10px 0 0;
  }
  .schedule_slider li {
    border-radius: 10px;
    padding: 20px 12px 0px;
  }
  .schedule_slider li::before {
    top: -1em;
    left: 50%;
    clip-path: polygon(0 0, 100% 0, 96% 50%, 100% 100%, 0 100%, 4% 49%);
    font-size: 1.4rem;
  }
  .schedule_slider li img {
    border-radius: 10px;
    height: 120px !important;
  }
  .schedule_slider li p {
    height: 70px;
  }
  .schedule_slider .slick-list {
    padding: 2.5em 0 0;
  }
  .schedule_slider .slick-slide {
    margin: 0 8px;
  }
  .schedule_slider .slick-prev, .schedule_slider .slick-next {
    height: 15px;
    width: 15px;
  }
  .schedule_slider .slick-prev {
    left: -25px;
  }
  .schedule_slider .slick-next {
    right: -25px;
  }
  /*day*/
  .day1_inner {
    border-radius: 80px 80px 0 0;
    padding: 8em 0 5em;
  }
  .day2_inner {
    border-radius: 80px 80px 0 0;
    padding: 8em 0 5em;
  }
  .day_ttl {
    top: -1em;
  }
  .day_ttl::before {
    top: calc(100% + 5px);
    width: 25px;
    height: 25px;
  }
  .day_ttl img {
    width: 35px !important;
    padding: 0 0 0 15px;
  }
  .day_ttl div {
    padding: 5px 30px;
    font-size: 1.5rem;
  }
  .day_ttl > p {
    font-size: 3rem;
  }
  /*course*/
  .course_list > li {
    margin: 6em auto 0;
    width: 90%;
    max-width: 1200px;
  }
  .course_list_move {
    font-size: 1.7rem;
    letter-spacing: 2px;
    padding: 10px 15px;
  }
  .course_list_move div {
    top: -2.3em;
    width: 45px;
  }
  .course_spot {
    margin: 3em auto 0;
    padding: 30px 40px 50px;
    border-radius: 15px;
  }
  .course_spot::before {
    top: -1em;
    width: 110px;
    padding: 4px 0;
    font-size: 1.4rem;
  }
  .course_spot h2 {
    font-size: 3.5rem;
  }
  .course_spot_txt {
    max-width: 850px;
    margin: auto;
    line-height: 2;
  }
  .course_gallery {
    max-width: 900px;
    margin: 0.5em auto 0.8em;
  }
  .course_gallery img {
    border-radius: 15px;
    height: 550px !important;
  }
  .course_gallery .slick-prev, .course_gallery .slick-next {
    top: calc(50% - 20px);
    height: 40px !important;
    width: 40px !important;
  }
  .course_gallery .slick-prev {
    left: -60px;
  }
  .course_gallery .slick-next {
    right: -60px;
  }
  .course_gallery.marutto::before {
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
  }
  .course_choice-btn {
    max-width: 900px;
    margin: 0 auto 2em;
  }
  .course_choice-btn li img {
    border-radius: 5px;
  }
  .course_choice-btn .slick-slide {
    padding: 0 4px;
  }
  .course_detail {
    margin: 2em auto 0;
  }
  .course_detail summary {
    width: 250px;
    padding: 1em 0;
  }
  .course_detail > div ul {
    margin: 2em auto;
    max-width: 800px;
  }
  .course_detail > div ul li {
    padding: 15px 0;
  }
  .course_detail > div ul dt {
    width: 80px;
    font-size: 1.5rem;
    padding: 3px 0;
  }
  .course_detail > div ul dd {
    width: calc(100% - 100px);
  }
  .course_facility_bg {
    max-width: 1100px;
    margin: 4em auto 0;
  }
  .course_facility_bg::before {
    width: 180px;
    padding: 6px 0 0 20px;
    font-size: 2rem;
    border-radius: 20px 20px 0 0;
  }
  .course_facility_bg::after {
    bottom: calc(100% + 7px);
    left: 23px;
    width: 20px;
    height: 20px;
  }
  .course_facility_inner {
    padding: 40px 40px;
    border-radius: 0 20px 20px 20px;
  }
  .course_facility {}
  .course_facility > li {
    margin: 3em auto 0;
    padding: 0 0 2em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
  }
  .course_facility_img {
    width: 45%;
  }
  .course_facility_img img {
    height: 300px !important;
  }
  .course_facility_txt {
    margin: 0;
    width: 52%;
  }
  .course_facility_txt div {
    padding: 0 0 0 30px;
    letter-spacing: 2px;
  }
  .course_facility_txt div::before {
    width: 20px;
    height: 20px;
  }
  .course_facility_txt p span {
    font-size: 2.2rem;
  }
  .course_facility_txt ul {
    margin: 0.7em auto 0;
  }
  .course_facility_txt li {
    font-size: 1.4rem;
    padding: 3px 0;
  }
  .course_facility_txt dt {
    width: 80px;
  }
  .course_facility_txt dd {
    width: calc(100% - 90px);
  }
  .course_list_close {
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 10px 15px;
  }
  .close_txt {
    margin: 1em auto 0;
    font-size: 2.5rem;
  }
  .course_btn {
    padding: 15px 50px;
    margin-top: 10px;
  }
}
/* SP */
.day_odd {
  background: #F3EBE4;
}
.day_even {
  background: #F2F8F8;
}
.day_odd .day_inner {
  background: #F2F8F8;
  position: relative;
  border-radius: 30px 30px 0 0;
  padding: 8em 0 3em;
}
.day_even .day_inner {
  background: #fff;
  position: relative;
  border-radius: 30px 30px 0 0;
  padding: 8em 0 3em;
}
/* PC */
@media all and (min-width: 768px) {
  .day_odd .day_inner, .day_even .day_inner {
    border-radius: 80px 80px 0 0;
    padding: 8em 0 5em;
  }
}
#modelcourse .course_choice-btn li img {
  height: 80px;
  width: 100%;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  #modelcourse .course_choice-btn li img {
    height: 110px;
  }
}