@charset "UTF-8";
/*
 * SCSS
 */
/*font*/
/*
 * common
 */
* {
  box-sizing: border-box;
  font-size: 100%;
  letter-spacing: 0;
  line-height: 1;
}
:root {
  --font-family: "Poppins", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  --font-en: "Poppins", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  --font-ja: "ヒラギノ角ゴ Pro", "Hiragino Sans", Meiryo, sans-serif;
  --font-noto: "Noto Sans JP", serif;
}
body {
  font-family: var(--font-family);
  color: #463B3C;
}
body.active {
  overflow: hidden;
}
.all_new_line { display:inline-block; letter-spacing:inherit; font-weight:inherit; font-family:inherit; }

#wrapper {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.cf::after {
  content: "";
  display: table;
  clear: both;
}

.container {
  position: relative;
  margin: auto;
  max-width: 1240px;
  width: 96%;
}
@media (max-width: 960px) {
  .container {
    width: 90%;
  }
}

.title {
  display: flex;
  flex-flow: column;
  text-align: center;
  width: auto;
  line-height: 1.4;
  text-align: center;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 0.087em;
}
@media (max-width: 960px) {
  .title {
    font-size: 40px;
  }
}
.title span {
  font-size: 18px;
}
@media (max-width: 960px) {
  .title span {
    font-size: 16px;
    font-weight: 600;
  }
}

/*
 * navi
 */
#navi {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF929C;
  padding: 20px;
  z-index: 100;
}
@media (max-width: 960px) {
  #navi {
    padding: 8px;
  }
}
#navi #nav_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
}
#navi #nav_container::after {
  z-index: -10;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  margin: auto;
  display: block;
  border: 2px solid #fff;
}
#navi .cross {
  position: absolute;
  top: 41px;
  right: 57px;
}
@media (max-width: 960px) {
  #navi .cross {
    top: 22px;
    right: 24px;
  }
}
#navi .cross img {
  width: 18px;
  height: 18px;
}

.navi_list {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.navi_list > * + * {
  margin-top: 70px;
}
@media (max-width: 960px) {
  .navi_list > * + * {
    margin-top: 42px;
  }
}
.navi_list li a {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 960px) {
  .navi_list li a {
    font-size: 18px;
  }
}

/*
 * header
 */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  z-index: 1000;
}
@media (max-width: 960px) {
  #header {
    height: 56px;
  }
}

#header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 100%;
  width: 100%;
}
@media (max-width: 960px) {
  #header_container {
    padding: 0 11px 0 30px;
  }
}

.header_logo img {
  width: 250px;
  height: 30px;
}
@media (max-width: 960px) {
  .header_logo img {
    width: 203px;
    height: 25px;
  }
}

.btn_sakura {
  position: absolute;
  top: 14px;
  right: 30px;
}
@media (max-width: 960px) {
  .btn_sakura {
    position: fixed;
    top: 16px;
    right: 18px;
  }
}
.btn_sakura img {
  width: 73px;
  height: 70px;
}
@media (max-width: 960px) {
  .btn_sakura img {
    width: 80px;
    height: 80px;
  }
}

.btn_follow_twitter {
  position: fixed;
  bottom: 27px;
  right: -23px;
  z-index: 800;
  width: 349px;
  border-radius: 14px;
  box-shadow: 0px 3px 12px rgba(167, 187, 215, 0.6);
}
@media (max-width: 768px) {
  .btn_follow_twitter {
    bottom: 12px;
    right: -12px;
    width: 225px;
  }
}
.btn_follow_twitter a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.btn_fixed_contact {
  position: fixed;
  right: 0;
  bottom: 50%;
  z-index: 9;
  transform: translate(100%, 50%);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0px 3px 12px rgba(147, 135, 136, 0.48);
}

.btn_fixed_contact.on {
    transform: translate(0%, 50%);
}

.btn_fixed_contact a {
  background: linear-gradient(to bottom, #E1769F 0%, #E1769F 100%);
  height: 240px;
  width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 5px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .btn_fixed_contact a {
    width: 48px;
    height: 200px;
    font-size: 16px;
  }
}

.btn_follow_twitter .close {
  position: absolute;
  left: 13px;
  top: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  z-index: 20;
}
@media (max-width: 768px) {
  .btn_follow_twitter .close {
    width: 18px;
    height: 18px;
  }
  .btn_follow_twitter .close img {
    width: 7px;
  }
}

/*
 * fv
 */
#fv {
  position: relative;
  padding: 20px;
  min-height: 100%;
}
#fv::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/fv_bg.jpg) top center/cover no-repeat;
  will-change: transform, animation, position;
  animation: grow 60s linear 10ms infinite;
  transform: translate3d(0, 0, 0.0000001);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (max-width: 960px) {
  #fv::after {
    content: "";
    background: url(../img/fv_bg-sp.jpg) bottom left/cover no-repeat;
  }
}
@keyframes grow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@media (max-width: 960px) {
  #fv {
    margin-bottom: 31px;
    padding: 8px;
  }
}

#fv_container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  max-width: none;
  min-height: 700px;
}
@media (max-width: 640px) {
  #fv_container {
    min-height: auto;
  }
}
#fv_container::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  margin: auto;
  display: block;
  border: 2px solid #fff;
}

.fv_logo {
  /* margin-bottom: 23%; */
  position: relative;
  bottom: 14%;
}
@media (max-width: 640px) {
  .fv_logo {
  /* margin-bottom: 23%; */
  position: relative;
  bottom: 6%;
}
}
@media (max-width: 960px) {
  .fv_logo {
    margin: 0;
  }
}
.fv_logo img {
  margin: auto;
  width: auto;
  height: calc(379/1600*100vw);
}
@media (max-width: 960px) {
  .fv_logo img {
    width: 100%;
    height: auto;
  }
}

.obj_scroll {
  position: absolute;
  left: 37px;
  bottom: -60px;
  animation: move-y 0.5s infinite alternate ease-in-out;
}
@media (max-width: 960px) {
  .obj_scroll {
    left: 5px;
    right: auto;
    margin: auto;
    bottom: -61px;
  }
}
.obj_scroll img {
  width: 17px;
  height: 153px;
}

@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
.fv_tell_box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((100%/2) - (329px/2));
}
@media (max-width: 640px) {
  .fv_tell_box {
    height: calc((100%/2) - (230px/2));
  }
}

.fv_tell {
  position: static;
  z-index: 100;
  display: inline-flex;
  justify-content: center;
  bottom: 20%;
  position: relative;

}
.fv_tell img{
 width: 50%;
 margin: 0 auto;
 /* position: relative;
 bottom: 20%; */
}
@media (max-width: 640px) {
  .fv_tell img{
 width: 90%;
 margin: 0 auto;
}
}
@media (max-width: 560px) {
  .fv_tell {
    width: calc(265/375*100vw);
    bottom: 26%;
    position: relative;
  }
}

/*
 * welcome
 */
.wrap1 {
  background: url(../img/wrap1_bg.jpg) top left/cover;
}
#welcome_container {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  max-width: 1600px;
  width: 100%;
  padding-left: 3%;
  height: 725px;
  position: relative;
  background: linear-gradient(90deg, white 0%, white calc(100% - 104px), transparent calc(100% - 104px), transparent 100%);
}
#welcome_container::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  left: -80%;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 960px) {
  #welcome_container {
    flex-flow: column;
    padding-left: 0;
    height: auto;
    width: 100%;
    background: none;
  }
}
.welcome_contents {
  margin-top: 60px;
  margin-right: 30px;
  text-align: left;
  z-index: 400;
}
@media (max-width: 960px) {
  .welcome_contents {
    position: static;
    margin-top: 0;
    margin-right: 6%;
    padding: 31px 5% 0;
    background: #fff;
  }
}
.welcome_contents h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 32.503px;
  color: #E1769F;
}
@media (max-width: 960px) {
  .welcome_contents h2 {
    margin-bottom: 7.3376px;
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .welcome_contents-txt {
    z-index: 100;
    position: relative;
  }
}
.welcome_contents-txt p {
  line-height: 1.833;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .welcome_contents-txt p {
    z-index: 100;
    position: relative;
    font-size: 16px;
  }
}
.welcome_contents-txt > * + * {
  margin-top: 22.503px;
}
@media (max-width: 960px) {
  .welcome_contents-txt {
    padding-bottom: 45.336px;
  }
}

.welcome_video {
  position: relative;
  max-width: 783px;
  max-height: 546px;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (max-width: 960px) {
  .welcome_video {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    padding-top: 56.25%;
  }
}
.welcome_video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 783px;
  max-height: 546px;
}
@media (max-width: 960px) {
  .welcome_video iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    max-height: none;
  }
}

.obj_taxi {
  position: absolute;
  width: 480px;
  right: 170px;
  bottom: -280px;
  z-index: 300;
}
@media (max-width: 960px) {
  .obj_taxi {
    width: 50%;
    max-width: 220px;
    bottom: -108px;
    right: 21px;
  }
}

.txt_welcome {
  position: absolute;
  top: -45px;
  left: -243px;
  overflow: hidden;
  width: 100%;
}
.txt_welcome img {
  max-width: none;
  width: 3394px;
  height: auto;
}
@media (max-width: 960px) {
  .txt_welcome {
    display: none;
  }
}

/*
 * point
 */
#point h2 {
  color: #fff;
  margin-bottom: 67px;
}
@media (max-width: 960px) {
  #point h2 {
    margin-bottom: 30px;
  }
}

#point_container {
  padding: 184px 0 128px;
}
@media (max-width: 960px) {
  #point_container {
    padding: 107px 0 103px;
  }
}

.point_inner1 {
  position: relative;
  margin-bottom: 160px;
  width: 100%;
  min-height: 909px;
  z-index: 10;
}
@media (max-width: 960px) {
  .point_inner1 {
    margin-bottom: 60px;
    min-height: auto;
  }
}

.point_inner1_block {
  padding: 56px 46px 20px;
  width: calc((100% - 32px) / 2);
  min-height: 369px;
  background: #fff;
  position: absolute;
  border-radius: 10px;
}
@media (max-width: 960px) {
  .point_inner1_block {
    position: relative;
    top: auto !important;
    left: auto !important;
    margin-bottom: 24px;
    width: 100%;
    min-height: auto;
    z-index: 10;
  }
  .point_inner1_block:nth-child(n+3) {
    padding: 112px 20px 35px;
    margin-bottom: 24px;
  }
}
.point_inner1_block h3 {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
  font-size: 27px;
  color: #463B3C;
  margin-bottom: 24.545px;
}
@media (max-width: 960px) {
  .point_inner1_block h3 {
    margin-bottom: 11.7px;
    font-size: 20px;
    text-align: left;
  }
}
.point_inner1_block h3 img {
  margin-right: 23px;
  width: 46px;
}
@media (max-width: 960px) {
  .point_inner1_block h3 img {
    position: absolute;
    top: -74px;
    min-height: 45px;
  }
}
.point_inner1_block p {
  font-size: 16px;
  color: #463B3C;
  line-height: 2;
  font-weight: 400;
}
.point_inner1_block-1 {
  top: 63px;
  right: 0;
}
@media (max-width: 960px) {
  .point_inner1_block-1 {
    padding: 50px 20px 35px;
    border-radius: 0 0 10px 10px;
  }
}
.point_inner1_block-2 {
  top: 600px;
  left: 0;
}
.point_inner1_block-3 {
  top: 600px;
  right: 0;
}

@media (max-width: 960px) {
  .point_inner2 {
    position: relative;
    z-index: 10;
  }
}
.point_inner2 h3 {
  margin-bottom: 12px;
  font-size: 38px;
  color: #fff;
  text-align: center;
}
@media (max-width: 960px) {
  .point_inner2 h3 {
    margin-bottom: 0;
    font-size: 28px;
  }
}
.point_inner2-txt {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 560px) {
  .point_inner2-txt {
    font-size: 13px;
    text-align: left;
  }
}

.txt_holdingPeriod {
  padding: 27px 0 30px;
}
.txt_holdingPeriod img {
  margin: auto;
  width: 810px;
}

.point_photo1 {
  position: absolute;
}
.point_photo1 img {
  width: 690px;
}
@media (max-width: 960px) {
  .point_photo1 {
    position: static;
  }
}

/*
 * sakura
 */
.obj_sakura {
  max-width: none;
  max-height: none;
}

.obj_sakura1 {
  position: absolute;
  right: -360px;
  top: -410px;
  z-index: -10;
  width: 852px;
}
@media (max-width: 960px) {
  .obj_sakura1 {
    width: 556px;
    top: 105px;
    left: -12px;
  }
}

.obj_sakura2 {
  position: absolute;
  top: -480px;
  left: -511px;
  width: 908px;
  z-index: 10;
}
@media (max-width: 960px) {
  .obj_sakura2 {
    display: none;
  }
}

.obj_sakura3 {
  position: absolute;
  z-index: 10;
  top: 473px;
  left: -316px;
  width: 1144px;
}
@media (max-width: 960px) {
  .obj_sakura3 {
    width: 810px;
    top: 771px;
    left: auto;
    right: -248px;
  }
}

.obj_sakura4 {
  position: absolute;
  bottom: -210px;
  right: -490px;
  z-index: 10;
  width: 908px;
}
@media (max-width: 960px) {
  .obj_sakura4 {
    width: 540px;
    right: -196px;
    bottom: -121px;
    transform: rotate3d(1, 1, 1, 22deg);
  }
}

.obj_sakura7 {
  position: absolute;
  width: 908px;
  top: -372px;
  right: -483px;
}
@media (max-width: 960px) {
  .obj_sakura7 {
    width: 418px;
    top: 29px;
    right: auto;
    z-index: 0;
    left: 80px;
  }
}

.obj_sakura8 {
  position: absolute;
  left: -460px;
  top: -230px;
  width: 908px;
}
@media (max-width: 960px) {
  .obj_sakura8 {
    display: none;
  }
}

/*
 * plan
 */
#plan {
  background: url(../img/planpriceWrap_bg.jpg) top left/cover no-repeat;
}
#plan .sub_title {
  margin-bottom: 24px;
  text-align: center;
  color: #463B3C;
  font-size: 27px;
  font-family:"Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media (max-width: 960px) {
  #plan .sub_title {
    line-height: 1.65;
    font-size: 27px;
  }
}
@media (max-width: 560px) {
  #plan .sub_title {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
#plan .plan_txt {
  margin-bottom: 63px;
  text-align: center;
  color: #463B3C;
  font-size: 17px;
  line-height: 2;
  font-weight: 300;
}
@media (max-width: 960px) {
  #plan .plan_txt {
    margin-bottom: 47px;
    text-align: left;
    font-size: 17px;
  }
}
@media (max-width: 560px) {
  #plan .plan_txt {
    font-size: 15px;
    font-size: 4vw;
  }
}
#plan .title {
  margin-bottom: 67px;
  color: #E1769F;
}
@media (max-width: 960px) {
  #plan .title {
    margin-bottom: 34px;
  }
}
#plan .title span {
  color: #463B3C;
}

#plan_container {
  padding: 146px 0 186px;
}
@media (max-width: 960px) {
  #plan_container {
    padding: 55px 0 0;
  }
}
#plan_container .obj_sakura5 {
  position: absolute;
  left: -420px;
  bottom: 980px;
  width: 908px;
}
@media (max-width: 960px) {
  #plan_container .obj_sakura5 {
    width: calc(837/375*100%);
    bottom: calc(133/375*100%);
    left: calc(-160/375*100%);
  }
}
#plan_container .obj_sakura6 {
  position: absolute;
  right: -502px;
  bottom: -70px;
  width: 908px;
  z-index: 10;
}
@media (max-width: 960px) {
  #plan_container .obj_sakura6 {
    display: none;
  }
}

.plan_inner {
  position: relative;
  margin: 0 0 152px;
  z-index: 100;
}
@media (max-width: 560px) {
  .plan_inner {
    margin: 0 0 120px;
  }
}

.plan_course {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .plan_course {
    margin-bottom: 0;
    flex-flow: column;
    margin-bottom: 29px;
  }
}

.plan_course_block {
  width: calc((100% - 32px)/2);
  height: auto;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 960px) {
  .plan_course_block {
    width: 100%;
  }
}
.plan_course_block h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 960px) {
  .plan_course_block h3 {
    margin-bottom: 30px;
  }
}
.plan_course_block h3 b {
  display: inline-block;
  align-items: center;
  padding: 0 22px;
  font-size: 27px;
  line-height: 1.2;
}
@media (max-width: 960px) {
  .plan_course_block h3 b {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .plan_course_block h3 b {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
.plan_course_slider_wrap {
  width: 100%;
  margin: 60px 0 50px 0;
}
@media (max-width: 960px) {
 .plan_course_slider_wrap {
  width: calc(291.27 / 334.5 * 100%);
  margin: 0px 0 17px 0;
}
}
.plan_course_slider {
  margin-left: auto; margin-right: auto;
}
@media (max-width: 560px) {
  .plan_course_slider.plan_course_slider {
    left: auto;
    width: 100%;
  }
}
.plan_course_block-2 {
  border: 4px solid #E1769F;
}
@media (max-width: 960px) {
  .plan_course_block-2 {
    margin-bottom: 30px;
  }
}
.plan_course_block-2 h3 {
  color: #fff;
  background: #E1769F;
}
.plan_course_block-1 {
  border: 4px solid #FF929C;
}
@media (max-width: 560px) {
  .plan_course_block-1 {
    margin-bottom: 30px;
  }
}
.plan_course_block-1 h3 {
  color: #fff;
  background: #FF929C;
}
@media (max-width: 960px) {
  .plan_course_block-1 .course_block-btn {
    margin-bottom: 12px;
  }
}

.course_block {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  box-shadow: 0px 5px 15px rgba(18, 69, 104, 0.15);
}
.course_block-price {
  padding: 0 40px;
  margin-top: 60px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .course_block-price {
  padding: 0 40px;
  margin-top: 0px;
  margin-bottom: 50px;
}
}
.course_block-price img {
  margin: auto;
  width: 100%;
}
@media (max-width: 960px) {
  .course_block-price {
    margin-bottom: 17px;
    width: 100%;
    padding: 0 10%;
  }
}
@media (max-width: 560px) {
  .course_block-price {
    padding: 0 calc(30/375*100%);
  }
}
.course_block-txt {
  padding: 0 50px 50px;
  width: 100%;
}
@media (max-width: 960px) {
  .course_block-txt {
    padding: 0 calc(20/375*100%) 0;
  }
}
.course_block-txt dt {
  margin-bottom: 22px;
  text-align: center;
  font-size: 21px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .course_block-txt dt {
    font-size: 21px;
    line-height: 1.52;
  }
}
@media (max-width: 560px) {
  .course_block-txt dt {
    font-size: 17px;
    font-size: 4.5333333333vw;
  }
}
.course_block-txt dd {
  width: 100%;
}
@media (max-width: 960px) {
  .course_block-txt dd {
    display: flex;
    flex-flow: column;
  }
}
.course_block-txt dd p {
  width: 100%;
  font-size: 16px;
  line-height: 2;
  font-family: var(--font-ja);
  font-weight: 500;
}
@media (max-width: 960px) {
  .course_block-txt dd p {
    margin-bottom: 24.55px;
    font-size: 15px;
    line-height: 1.86;
    order: 1;
  }
}
.course_block-txt dd span {
  display: block;
  margin-top: 17px;
  width: 100%;
  line-height: 2;
  font-size: 14px;
  color: #463B3C;
  font-weight: 300;
}
@media (max-width: 960px) {
  .course_block-txt dd span {
    margin-top: 0;
    order: 3;
  }
}
.course_block_center_wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 50px;

}
.course_block_center_wrap p  {
    width: 100%;
    font-size: 16px;
    line-height: 2;
}
.course_block-btn {
  display: block;
  margin: 0 auto 25px;
  width: 307px;
  color: #fff;
  box-shadow: 0px 3px 12px rgba(167, 187, 215, 0.6);
  border-radius: 50%;
}
@media (max-width: 960px) {
  .course_block-btn {
    position: static;
    order: 2;
    margin-bottom: 31.56px;
    width: 76%;
  }
}
.course_block-btn img {
  width: 100%;
}
.course_block-list {
  font-size: 12px;
  position: relative;
  z-index: 3;
  text-align: right;
  color: #463B3C;
}
@media (max-width: 960px) {
  .course_block-list {
    margin-bottom: 0;
    font-weight: 300;
  }
}
.course_block-list > * + * {
  margin-top: 10px;
  line-height: 1.9;
}
@media (max-width: 960px) {
  .course_block-list > * + * {
    margin-top: 6px;
    line-height: 1.91;
  }
}
@media (max-width: 560px) {
  .course_block-list li {
    line-height: 1.9;
    font-size: 12px;
    text-align: left;
    color: #463B3C;
  }
}

.course_block_present {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 880px;
  margin: auto;
  padding: 70px 75px 65px 65px;
  border: 3px solid #E1769F;
  border-radius: 10px;
}
@media (max-width: 960px) {
  .course_block_present {
    flex-flow: column;
    padding: 60px 16px 35px;
  }
}
.course_block_present-pic {
  position: absolute;
  top: -78px;
  right: 30px;
  width: 240px;
}
.course_block_present-pic img {
  margin: auto;
}
@media (max-width: 960px) {
  .course_block_present-pic {
    position: static;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .course_block_present-pic img {
    margin: auto;
    width: calc(170/375*100vw);
  }
}
.course_block_present-pic span {
  display: inline-block;
  padding-top: 8px;
  padding-right: 26px;
  width: 100%;
  text-align: right;
  font-size: 12px;
  line-height: 1.44;
  color: #463B3C;
}
@media (max-width: 960px) {
  .course_block_present-pic span {
    padding-top: 9.5px;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .course_block_present-pic span {
    padding-right: 0;
    text-align: right;
  }
}
.course_block_present-txt {
  text-align: left;
}
@media (max-width: 960px) {
  .course_block_present-txt {
    margin-bottom: 20.5px;
  }
}
.course_block_present-txt h3 {
  margin-bottom: 18px;
  font-size: 27px;
  color: #E1769F;
  letter-spacing: 0;
}

@media (max-width: 960px) {
  .course_block_present-txt h3 {
    font-size: 27px;
    line-height: 1.65;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .course_block_present-txt h3 {
  margin-bottom: 22px;
  font-size: 23px;
}
}
@media (max-width: 560px) {
  .course_block_present-txt h3 {
    margin-bottom: 8px;
    text-align: left;
    /* font-size: calc(24/375*100vw); */
  }
}
.course_block_present-txt p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #463B3C;
}
/*
 * modal
 */
#plan_detail1 {
  display: none;
}

.plan_modal {
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  overflow: scroll;
}

.plan_modal_container {
  padding: 62px 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 960px) {
  .plan_modal_container {
    padding: 60px 25px;
  }
}
.plan_modal_container .container {
  display: flex;
  flex-flow: column;
  max-width: 1028px;
  width: 100%;
}
@media (max-width: 960px) {
  .plan_modal_container .container {
    width: 100%;
  }
}
.plan_modal_container .container .title {
}
.plan_modal_container .container .plan_couses {
}
.plan_modal_container .container .plan_detail_head {
  margin-bottom: 50px;
}
.plan_modal_container .container .plan_detail_recommend{
  margin-bottom: 70px;
}
.plan_modal_container .container .plan_list2 {
}

.plan_detail_head1{}

.plan_detail_head2{}

.plan_modal_container .title {
  margin-bottom: 62px;
}
@media (max-width: 960px) {
  .plan_modal_container .title {
    margin-bottom: 55px;
  }
}
.plan_modal_container .title span {
  color: #463B3C;
}

#plan_detail1_container .title {
  color: #E1769F;
}
#plan_detail1_container .plan_couses_block {
  border: 2px solid #E1769F;
}
#plan_detail1_container .plan_couses_block.standard {
  border: 2px solid #FF929C;
}
#plan_detail1_container .plan_couses_block.standard h3 {
  color: #FF929C;
}
@media (max-width: 560px) {
  #plan_detail1_container .plan_couses_block.standard {
    border: none;
  }
}
#plan_detail1_container .plan_couses_block.yozakura h3 {
  color: #E1769F;
}
@media (max-width: 960px) {
  #plan_detail1_container .plan_couses_block {
    border: none;
  }
}

.plan_couses {
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .plan_couses {
    margin-bottom: 20px;
  }
}
.plan_couses > * + * {
  margin-top: 96px;
}
@media (max-width: 560px) {
  .plan_couses > * + * {
    margin-top: 78px;
  }
}

.plan_couses_block {
  border-radius: 10px;
  padding: 72px 32px 24.5px;
  width: 100%;
  min-height: 579px;
}
@media (max-width: 960px) {
  .plan_couses_block {
    padding: 0;
    min-height: auto;
  }
}
.plan_couses_block h3 {
  margin-bottom: 61px;
  text-align: center;
  font-size: 28px;
}
@media (max-width: 960px) {
  .plan_couses_block h3 {
    margin-bottom: 34px;
    line-height: 1.65;
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .plan_couses_block h3 {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}

.plan_route {
  margin-bottom: 45.5px;
}
@media (max-width: 960px) {
  .plan_route {
    margin-right: 0;
    width: 100%;
    overflow-x: scroll;
    overflow-y: visible;
    margin-bottom: 50px;
    pointer-events: auto;
  }
}
@media (max-width: 560px) {
  .plan_route {
    margin-right: 25px;
    width: calc(100% + 25px);
  }
}
.plan_route img {
  margin: auto;
}
@media (max-width: 960px) {
  .plan_route img {
    max-height: none;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .plan_route img {
    max-width: 813px;
    max-height: none;
    width: 200%;
  }
}

.plan_list li {
  font-size: 12px;
  line-height: 1.75;
}

.plan_list2 {
  margin-bottom: 131.5px;
  text-align: left;
}
@media (max-width: 560px) {
  .plan_list2 {
    margin-bottom: 78px;
  }
}
.plan_list2 li {
  display: flex;
  flex-flow: row;
  font-size: 14px;
  line-height: 1.75;
}
.plan_list2 li span {
  padding: 5px 0 0 0;
}

.plan_times {
  margin-bottom: 93px;
}
@media (max-width: 960px) {
  .plan_times {
    margin-bottom: 64px;
  }
}
.plan_times h3 {
  margin-bottom: 54px;
  text-align: center;
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 960px) {
  .plan_times h3 {
    margin-bottom: 19px;
    line-height: 1.7;
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .plan_times h3 {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
.plan_times-comment {
  text-align: center;
  font-size: 14px;
}
@media (max-width: 960px) {
  .plan_times-comment {
    font-size: 12px;
    text-align: left;
    line-height: 1.5;
  }
}

.plan_times_wrap {
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin: 0 -45px 35px;
  padding: 0 24px;
}
@media (max-width: 960px) {
  .plan_times_wrap {
    flex-flow: column;
    margin: 0 auto 20px;
    padding: 0;
  }
}

.plan_times_block {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 0 54px;
}
@media (max-width: 960px) {
  .plan_times_block {
    padding: 0;
    flex-flow: row;
    justify-content: center;
  }
  .plan_times_block:not(:last-of-type) {
    border-bottom: 1px solid rgba(112, 112, 112, 0.26);
  }
}
.plan_times_block:not(:first-of-type) {
  border-left: 1px solid rgba(112, 112, 112, 0.26);
}
@media (max-width: 960px) {
  .plan_times_block:not(:first-of-type) {
    border-left: none;
  }
}
.plan_times_block p {
  margin-bottom: 6px;
  font-size: 18px;
}
@media (max-width: 960px) {
  .plan_times_block p {
    margin-right: 12px;
    flex: none;
    font-size: 18px;
    font-size: 4.8vw;
    margin-bottom: 0;
    width: 10.6666666667%;
    white-space: nowrap;
    text-align: right;
  }
}
.plan_times_block b {
  color: #E1769F;
  font-size: 40px;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .plan_times_block b {
    font-size: 40px;
  }
}
@media (max-width: 560px) {
  .plan_times_block b {
    font-size: 40px;
    font-size: 10.6666666667vw;
  }
}

.plan_taxi {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.plan_taxi:not(:last-of-type) {
  margin: 0 0 137px;
}
@media (max-width: 560px) {
  .plan_taxi:not(:last-of-type) {
    margin: 0 0 70px;
  }
}
@media (max-width: 960px) {
  .plan_taxi {
    flex-flow: column;
  }
}
.plan_taxi h3 {
  text-align: left;
  margin-bottom: 34px;
  line-height: 1.3;
  font-size: 27px;
}
@media (max-width: 960px) {
  .plan_taxi h3 {
    line-height: 1.5;
    font-size: 27px;
    text-align: left;
    margin-bottom: 24px;
  }
}
@media (max-width: 560px) {
  .plan_taxi h3 {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
.plan_taxi p {
  font-size: 17px;
  line-height: 2;
  text-align: left;
}
.plan_taxi p.small {
  margin: 26px 0 0;
  font-size: 12px;
}
@media (max-width: 960px) {
  .plan_taxi p {
    margin-bottom: 22.5px;
    line-height: 2;
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .plan_taxi p {
    font-size: 15px;
    font-size: 4vw;
  }
}
.plan_taxi p:not(:first-of-type) {
  margin-top: 25px;
}
.plan_taxi-pic {
  flex: none;
  width: 393px;
}
@media (max-width: 560px) {
  .plan_taxi-pic {
    position: relative;
    width: 100%;
  }
}
.plan_taxi-pic.plan_taxi-pic2 {
  margin-top: 126px;
}
@media (max-width: 560px) {
  .plan_taxi-pic.plan_taxi-pic2 {
    margin-top: 10px;
    left: -25px;
    width: calc(100% + 50px);
  }
}
.plan_taxi-txt {
  padding-right: 9%;
}
@media (max-width: 560px) {
  .plan_taxi-txt {
    padding-right: 0;
    margin-bottom: 14px;
  }
}

.plan_detail_slider {
  margin-bottom: 0 !important;
  flex: none;
  width: 391px;
  height: 100%;
}
@media (max-width: 560px) {
  .plan_detail_slider {
    position: relative;
    left: -25px;
    width: calc(100% + 50px);
  }
}
.plan_detail_slider .slick-dots {
  bottom: 20px;
}
.plan_detail_slider .slick-dots li {
  margin: 0;
}
.plan_detail_slider .slick-dots li button:before {
  opacity: 1;
  font-size: 10px;
  color: #fff;
}
.plan_detail_slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #E10023;
}
.plan_detail_slider .slick-prev:before, .plan_detail_slider .slick-next:before {
  content: none;
}
.plan_detail_slider .slick-prev {
  background: url(../img/all_bg_covid_slide_arrows_prev.png) no-repeat center/26px !important;
  width: 26px;
  height: 26px;
  left: 10px;
  z-index: 3;
}
.plan_detail_slider .slick-next {
  background: url(../img/all_bg_covid_slide_arrows_next.png) no-repeat center/26px !important;
  width: 26px;
  height: 26px;
  right: 10px;
  z-index: 3;
}

.inline_close {
  display: inline-block;
  width: 57px;
}
@media (max-width: 560px) {
  .inline_close {
    width: 33px;
  }
}

.inline_close img {
  width: 57px;
}

@media (max-width: 560px) {
  .inline_close img {
    width: 33px;
  }
}
.modal-close1 {
  position: fixed;
  top: 44px;
  right: 43px;
  z-index: 100;
}

@media (max-width: 560px) {
  .modal-close1 {
    top: 22px;
    right: 21px;
  }
}

.modal-close2 {
  position: relative;
  margin-top: 50px;
}

@media (max-width: 560px) {
  .modal-close2 {
    margin-top: 0;
    margin: auto;
  }
}

/*
 * price
 */
@media (max-width: 560px) {
  #price {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}
#price .price_inner {
  padding: 106px 0 73px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 560px) {
  #price .price_inner {
    padding: 60px 20px 66px;
  }
}
#price .price_inner .course_block-list {
  margin: 0 0 70px;
  text-align: left;
  display: inline-block;
}
@media (max-width: 560px) {
  #price .price_inner .course_block-list {
    margin: 0 0 50px;
  }
}
#price .course_block-list > * + * {
  margin-top: 4px;
  line-height: 1.8;
}

.price_15220 {
  margin: 0 auto 51px;
  display: inline-block;
  width: 638px;
  position: relative;
  z-index: 3;
}
@media (max-width: 560px) {
  .price_15220 {
    margin: 0 auto 28px;
    width: 253px;
  }
}

/*
 * Initiatives
 */
#initiatives {
  background: url(../img/initiatives_bg2.png) top left/cover no-repeat, url(../img/initiatives_bg.jpg) top left/cover no-repeat;
}
@media (min-width: 1600px) {
  #initiatives {
    background: url(../img/initiatives_bg2.png) top left/cover no-repeat, url(../img/initiatives_bg.jpg) top center/1600px auto no-repeat;
  }
}
@media (max-width: 960px) {
  #initiatives {
    background: url(../img/initiatives_bg_SP.jpg) top left/cover no-repeat;
  }
}
#initiatives .title {
  margin-bottom: 112px;
  color: #fff;
  font-size: 38px;
}
@media (max-width: 960px) {
  #initiatives .title {
    margin-bottom: 47px;
  }
}
#initiatives .title span {
  margin-bottom: 15px;
  font-size: 24px;
}
@media (max-width: 960px) {
  #initiatives .title span {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
@media (max-width: 960px) {
  #initiatives .title {
    font-size: 24px;
    font-size: 6.4vw;
  }
}

#initiatives_container {
  padding: 106px 0 163px;
}
@media (max-width: 960px) {
  #initiatives_container {
    padding: 92px 0 66px;
  }
}

.initiatives_list {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  margin-bottom: 59px;
}
.initiatives_list > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.0032);
}
@media (max-width: 960px) {
  .initiatives_list > * + * {
    border: none;
  }
}
@media (max-width: 960px) {
  .initiatives_list {
    flex-flow: column;
    justify-content: center;
    margin-bottom: 41.5px;
  }
  .initiatives_list > * + * {
    margin-top: 40px;
  }
}
.initiatives_list li {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 180px;
  color: #fff;
  width: 100%;
}
@media (max-width: 960px) {
  .initiatives_list li {
    height: 90px;
    flex-flow: row;
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .initiatives_list li {
    max-width: 326px;
  }
}

.initiatives_list_item p {
  text-align: center;
  font-size: 18px;
  line-height: 1.388;
}
@media (max-width: 960px) {
  .initiatives_list_item p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    font-size: 20px;
    height: 100%;
  }
}
@media (max-width: 560px) {
  .initiatives_list_item p {
    font-size: 18px;
    font-size: 4.8vw;
  }
}

@media (max-width: 960px) {
  .initiatives_list_item-pic {
    margin-right: 18px;
    width: calc(98/375*100%);
  }
  .initiatives_list_item-pic img {
    width: auto;
  }
}
@media (max-width: 560px) {
  .initiatives_list_item-pic {
    margin-right: calc(18/375*100vw);
    width: 90px;
    flex: none;
  }
}

.initiatives_txt1 {
  margin-bottom: 43px;
}
.initiatives_txt1 > * + * {
  margin-top: 8px;
}
@media (max-width: 960px) {
  .initiatives_txt1 > * + * {
    margin-top: 0;
  }
}
.initiatives_txt1 p {
  color: #fff;
  font-size: 17px;
  line-height: 2;
  text-align: center;
}
@media (max-width: 960px) {
  .initiatives_txt1 p {
    text-align: left;
    font-size: 15px;
  }
}

.initiatives_btn {
  display: block;
  margin: auto;
  max-width: 321px;
  width: 100%;
  box-shadow: 0px 3px 12px rgba(167, 187, 215, 0.6);
  border-radius: 50%;
}
@media (max-width: 960px) {
  .initiatives_btn {
    display: flex;
    justify-content: center;
  }
}

/*
 * eds
 */
#eds {
  position: relative;
  z-index: 10;
  height: 732px;
  background: url(../img/eds_bg.jpg) top left/cover no-repeat;
}
@media (max-width: 960px) {
  #eds {
    height: auto;
    background: #F6F5F9;
  }
}

#eds_container {
  position: relative;
  height: 100%;
}

.eds_inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 563px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 200;
}
@media (max-width: 960px) {
  .eds_inner {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    align-items: center;
    padding: 38px 0 92px;
    z-index: 200;
  }
}
.eds_inner .title {
  margin-bottom: 40px;
  text-align: left;
  font-size: 64px;
  color: #E1769F;
  font-weight: 600;
}
@media (max-width: 960px) {
  .eds_inner .title {
    margin-bottom: 10.5px;
    font-size: 64px;
  }
}
@media (max-width: 560px) {
  .eds_inner .title {
    font-size: 46px;
    font-size: 12.2666666667vw;
  }
}
.eds_inner .sub_title {
  margin-bottom: 19px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .eds_inner .sub_title {
    font-size: 24px;
    line-height: 2;
    white-space: nowrap;
  }
}
@media (max-width: 560px) {
  .eds_inner .sub_title {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.eds_inner .eds_txt {
  margin-bottom: 58px;
  line-height: 2;
  font-size: 17px;
}
@media (max-width: 960px) {
  .eds_inner .eds_txt {
    margin-bottom: 32px;
  }
}
.eds_inner .eds_btn {
  display: inline-block;
  transition: 0.4s ease;
  box-shadow: 0px 3px 12px rgba(167, 187, 215, 0.6);
  border-radius: 50%;
}
.eds_inner .eds_btn:hover {
  opacity: 1;
  transform: translateY(-5px);
}
@media (max-width: 960px) {
  .eds_inner .eds_btn {
    margin: auto;
    max-width: 321px;
    width: 100%;
  }
  .eds_inner .eds_btn img {
    margin: auto;
    width: 100%;
  }
}

.eds_pic1 {
  position: absolute;
  top: -42px;
  left: -278px;
  max-height: none;
  height: calc(100% + 42px);
}
@media (max-width: 960px) {
  .eds_pic1 {
    position: static;
    margin-left: -6%;
    margin-right: -6%;
    width: 112%;
    max-width: none;
    max-height: none;
  }
}

/*
 * RESERVE
 */
#reserve {
  background: #FF929C;
}
#reserve .title {
  margin-bottom: 38.4px;
  color: #fff;
}

#reserve_container {
  padding: 149px 0 137px;
}
@media (max-width: 960px) {
  #reserve_container {
    padding: 60px 0 73px;
  }
}

.reserve_inner-txt1 {
  margin-bottom: -3px;
  text-align: center;
  font-size: 17px;
  line-height: 2;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 960px) {
  .reserve_inner-txt1 {
    margin-bottom: 10.5px;
    text-align: left;
    font-size: 15px;
  }
}
.reserve_inner-txt2 {
  margin-bottom: 52px;
  text-align: center;
  line-height: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 960px) {
  .reserve_inner-txt2 {
    margin-bottom: 33px;
  }
}

.reserve_links {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .reserve_links {
    flex-flow: column;
    justify-content: center;
  }
}

.links_block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: calc((100% - 33px)/2);
  height: 189px;
  background: #fff;
  border-radius: 11px;
  transition: 0.4s ease;
}
.links_block:hover {
  opacity: 1;
  transform: translateY(-5px);
}
@media (max-width: 960px) {
  .links_block {
    width: 100%;
    height: auto;
  }
}
.links_block-1 {
  color: #E1769F;
}
@media (max-width: 960px) {
  .links_block-1 {
    padding: 20px 0;
    min-height: 104px;
    margin-bottom: 19px;
  }
}
.links_block-1 .links_block-txt1 {
  font-size: 18px;
  margin-bottom: 13px;
  font-weight: 600;
}
@media (max-width: 960px) {
  .links_block-1 .links_block-txt1 {
    font-size: 15px;
    font-size: 4vw;
  }
}
.links_block-1 p {
  font-size: 34px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .links_block-1 p {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.links_block-1::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 30px;
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arrow1.svg) center center/100% 100% no-repeat;
}
@media (max-width: 960px) {
  .links_block-1::after {
    right: 7px;
    width: 13px;
  }
}
.links_block-2 {
  color: #463B3C;
}
@media (max-width: 960px) {
  .links_block-2 {
    padding: 20px 0;
    min-height: 132px;
  }
}
.links_block-2 .links_block-txt1 {
  font-size: 19px;
  margin-bottom: 24px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .links_block-2 .links_block-txt1 {
    margin-bottom: 8px;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.links_block-2 .links_block-txt2 {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .links_block-2 .links_block-txt2 {
    font-size: 12px;
    font-size: 3.2vw;

  }
}
.links_block-2 .links_block-txt2 ._small {
  display: inline-block;
  margin-top: 5px;
  font-size: 12px;
}
.links_block-2 p {
  margin-bottom: 16px;
  display: flex;
  flex-flow: row;
  align-items: center;
  font-size: 50px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .links_block-2 p {
    margin-bottom: 16px;
    font-size: 31px;
    font-size: 8.2666666667vw;
  }
}
.links_block-2 p img {
  margin-right: 11px;
}
@media (max-width: 960px) {
  .links_block-2 p img {
    margin-right: calc(11/375*100%);
    width: calc(39/375*100%);
    height: calc(39/375*100%);
  }
}

/*
 * qa
 */
#qa {
  padding: 154px 0 117px;
  /* background: url(../img/qa_bg.png) top -100px center/1900px auto no-repeat; */
  background: #fff;
}
@media (max-width: 640px) {
  #qa {
    padding: 88px 0 42px;
    /* background: #FDF5F7; */
    background: #fff;
  }
}
#qa .title {
  margin: 0 0 50px;
  color: #E1769F;
}
@media (max-width: 640px) {
  #qa .title {
    margin: 0 0 43px;
  }
}

.qa_inner_list {
  margin: auto;
  max-width: 1120px;
  width: 100%;
}

.qa_inner_list_block {
  display: flex;
  flex-flow: column;
  background: #fff;
  border: 3px solid #E1769F;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(18, 69, 104, 0.15);
}
@media (max-width: 640px) {
  .qa_inner_list_block {
    border-radius: 3px;
  }
}
.qa_inner_list_block:not(:last-of-type) {
  margin: 0 0 32px;
}
@media (max-width: 640px) {
  .qa_inner_list_block:not(:last-of-type) {
    margin: 0 0 24px;
  }
}
.qa_inner_list_block > * {
  position: relative;
  padding: 0 40px;
  line-height: 1.6;
  font-weight: bold;
}
.qa_inner_list_block dt {
  padding: 26px 67px 24px;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .qa_inner_list_block dt {
    padding-left: 56px;
    padding-right: 36px;
  }
}
.qa_inner_list_block dt::before {
  content: "Q.";
  position: absolute;
  top: 17px;
  left: 25px;
  margin-right: 14px;
  font-size: 28px;
  color: #E1769F;
}
@media (max-width: 640px) {
  .qa_inner_list_block dt::before {
    top: 19px;
    left: 20px;
    font-size: 24px;
  }
}
.qa_inner_list_block dt::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 32px;
  display: inline-block;
  margin-left: auto;
  width: 17px;
  height: 16px;
  background: url(../img/qa_arw.svg) no-repeat;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .qa_inner_list_block dt::after {
    right: 15px;
  }
}
.qa_inner_list_block dt.open::after {
  transform: rotate(90deg);
  transition: 0.3s;
}
.qa_inner_list_block dd {
  margin: 0 24px;
  border-top: 1px solid #F6D3E0;
  display: none;
  font-size: 15px;
  padding: 24px 40px 26px;
}
@media (max-width: 640px) {
  .qa_inner_list_block dd {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
  }
}
.qa_inner_list_block dd a {
  border-bottom: 1px solid #463B3C;
  color: #463B3C;
}
.qa_inner_list_block dd a.tel {
  border: none;
}
.qa_inner_list_block dd .comment {
  margin: 0 0 19px;
  line-height: 1.7;
}

.qa_table1 {
  margin: 27px 0 19px;
  max-width: 440px;
  width: 100%;
  border: 2px solid #E1769F;
}
.qa_table1 .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /*flex-flow: row;*/
}
.qa_table1 .row:not(:last-of-type) {
  border-bottom: 1px solid #F5D0DE;
}
.qa_table1 .row.head {
  color: #fff;
  background: #E1769F;
}
.qa_table1 .row.head p {
  font-size: 16px;
}
@media (max-width: 600px) {
  .qa_table1 .row.head p {
    font-size: 15px;
  }
}
.qa_table1 .row.head p:not(:last-of-type) {
  border-right: 1px solid #fff;
}
.qa_table1 .row > * {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  font-weight: bold;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 15px;
}
.qa_table1 .row > *:not(:last-of-type) {
  border-right: 1px solid #F5D0DE;
}

/*
 * caution
 */
#caution {
  padding: 156px 0 126px;
}
@media (max-width: 560px) {
  #caution {
    padding: 80px 0 66px;
  }
}
#caution .title {
  font-size: 0;
  margin: 0 0 65px;
  display: block;
  text-align: center;
  color: #E1769F;
}
@media (max-width: 560px) {
  #caution .title {
    margin: 0 0 39px;
  }
}
#caution .title span {
  display: inline-block;
  padding: 0px 55px;
  letter-spacing: 0.05em;
  font-size: 27px;
  line-height: 1.9;
  background-image: url(/assets/ohanami/img/icon_sakura.svg), url(/assets/ohanami/img/icon_sakura.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 28px 27px, 28px 27px;
}
@media (max-width: 560px) {
  #caution .title span {
    padding: 0px 46px;
    font-size: 24px;
  }
}

.caution_inner {
  margin: auto;
  max-width: 816px;
  width: 100%;
}

.caution_block:not(:last-of-type) {
  margin-bottom: 80px;
}
@media (max-width: 560px) {
  .caution_block:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.caution_block h3 {
  margin: 0 0 26px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .caution_block h3 {
    margin: 0 0 20px;
    font-size: 18px;
  }
}
.caution_block .caution_block_txt1 {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 560px) {
  .caution_block .caution_block_txt1 {
    font-size: 15px;
  }
}
.caution_block .caution_block_txt2 {
  margin: 0 0 10px;
  display: inline;
  line-height: 1.4;
  font-size: 18px;
  font-weight: bold;
  color: #E1769F;
  border-bottom: 1px solid #E1769F;
}
@media (max-width: 560px) {
  .caution_block .caution_block_txt2 {
    padding: 0 0 4px;
    font-size: 15px;
    line-height: 2;
  }
}
.caution_block .caution_block_txt3 {
  margin: 8px 0 26px;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .caution_block .caution_block_txt3 {
    margin: 10px 0 26px;
    line-height: 2;
    font-size: 15px;
  }
}
.caution_block .caution_block_txt3 a {
  color: #E1769F;
}
.caution_block .caution_block_txt4 {
  font-size: 12px;
  line-height: 1.9;
}

/*
 * cta
 */
.cta1 {
  padding: 95px 0 87px;
  background: #F6F1F2;
}
@media (max-width: 960px) {
  .cta1 {
    padding: 46px 0;
  }
}
.cta1 .cta_banner2:not(:last-of-type) {
  margin: 0 auto 28px;
  max-width: 874px;
}
@media (max-width: 560px) {
  .cta1 .cta_banner2:not(:last-of-type) {
    margin: 0 auto 21px;
  }
}

.cta_banner1 {
  display: block;
  margin: 81px auto 81px;
  max-width: 1091px;
}
.cta_banner2 {
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.11);
}

.cta1_links {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .cta_banner1 {
    margin: 14px auto 20px;
  }
  .cta1_links {
    flex-flow: column-reverse;
  }
}
.cta1_links_wrap {
  display: flex;
  flex-flow: row;
}
.cta1_links_wrap a img {
  width: 57px;
  height: 57px;
}
.cta1_links_wrap .icon_tw {
  margin-right: 30px;
}
.cta1_links_txt1 {
  margin-left: 138px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .cta1_links_txt1 {
    margin-bottom: 26px;
    margin-left: 0;
    line-height: 1.7;
    text-align: center;
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .cta1_links_txt1 {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}

.cta2 {
  padding: 96px 0;
  background: #FBF5F7;
}
@media (max-width: 960px) {
  .cta2 {
    padding: 76px 24px 64px;
  }
}

.cta_banner2 {
  display: block;
  margin: 0 auto 47px;
  max-width: 874px;
}
.cta_banner2 img {
  margin: auto;
}

/*
 * english
 */
#english {
  background: #FDF5F7;
}

#english_container {
  padding: 132px 0 110px;
  text-align: center;
}
@media (max-width: 960px) {
  #english_container {
    padding: 77px 0 60px;
  }
}
#english_container .title {
  margin-bottom: 27px;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 960px) {
  #english_container .title {
    font-size: 48px;
  }
}
@media (max-width: 560px) {
  #english_container .title {
    font-size: 32px;
    font-size: 8.5333333333vw;
  }
}

.english_container-txt1 {
  margin-bottom: 76.4px;
  font-size: 20px;
  line-height: 1.5;
}
.english_container-txt2{
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  padding-inline: 80px;
  max-width: 1000px;
  margin-inline: auto;
}
.english_container-txt2-list{
  text-align: left;
  padding-inline: 80px;
  max-width: 1000px;
  margin-inline: auto;

}
.english_container-txt2-list li{
  line-height: 1.5;
}
@media (max-width: 960px) {
  .english_container-txt2{
  padding-inline: 0px;
}
  .english_container-txt2-list{
    padding-inline: 0px;
  }
}
 .english_container-txt2-list > * + * {
  margin-top: 12px;

}
@media (max-width: 960px) {
  .english_container-txt1 {
    margin-bottom: 48px;
    text-align: left;
  }
}
.english_inner + .english_inner{
  margin-top: 80px;
}
.english_inner h3 {
  margin-bottom: 35px;
  font-size: 48px;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .english_inner h3 {
    font-size: 48px;
  }
}
@media (max-width: 560px) {
  .english_inner h3 {
    font-size: 32px;
    font-size: 8.5333333333vw;
  }
}
.english_inner-list {
  display: inline-block;
}
.english_inner-list > * + * {
  margin-top: 21px;
}
.english_inner-list li {
  display: flex;
  flex-flow: row;
  padding: 0 32px;
}
@media (max-width: 960px) {
  .english_inner-list li {
    padding: 0;
  }
}
.english_inner-list li p {
  text-align: left;
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .english_inner-list li p {
    margin-right: -5%;
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .english_inner-list li p {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.english_inner-list li::before {
  content: "";
  display: inline-block;
  margin-top: 4px;
  margin-right: 6px;
  width: 17px;
  height: 16px;
  background: url(../img/icon_sakura.svg) center center/100% 100% no-repeat;
  flex: none;
}

.cta_english {
  display: flex;
  align-items: center;
  min-height: 232px;
  background: #FDF5F7;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
@media (max-width: 960px) {
  .cta_english {
    height: auto;
    padding: 40px 0 60px;
  }
}

.cta_container {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
@media (max-width: 960px) {
  .cta_container {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

.cta_english-txt {
  margin-right: 47px;
}
@media (max-width: 960px) {
  .cta_english-txt {
    margin-bottom: 31px;
    margin-right: 0;
    text-align: center;
  }
}
.cta_english-txt p {
  margin-bottom: 4px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.cta_english-txt span {
  font-size: 13px;
}
@media (max-width: 960px) {
  .cta_english-txt span {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}

.cta_english-tell_wrap ._hours {
  margin-top: 4px;
  text-align: center;
  font-size: 13px;
}
.cta_english-tell {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-flow: row;
  font-size: 50px;
  font-weight: bold;
  white-space: nowrap;
  color: #E1769F;
}
@media (max-width: 960px) {
  .cta_english-tell {
    margin-bottom: 0;
    font-size: 50px;
  }
}
@media (max-width: 560px) {
  .cta_english-tell {
    font-size: 10vw;
  }
}
.cta_english-tell img {
  margin-right: 11px;
}
@media (max-width: 960px) {
  .cta_english-tell img {
    margin-right: calc(3/375*100%);
    width: calc(33/375*100%);
    height: calc(33/375*100%);
  }
}

/*
 * footer
 */
footer {
  display: block;
  padding: 45px 0;
  background-color: #463B3C;
}
@media (max-width: 960px) {
  footer {
    padding: 24px 0;
  }
}

footer .logo {
  display: block;
  margin: 0 0 36px;
  width: 266px;
  height: 30px;
}

@media (min-width: 568px) {
  footer .logo {
    margin: 0;
    width: 308px;
    height: auto;
    flex-shrink: 0;
  }
}
footer .footer_container {
  display: flex;
  flex-flow: column;
}

@media (min-width: 568px) {
  footer .footer_container {
    flex-flow: row;
    justify-content: space-between;
  }
}
footer .copyright {
  display: inherit;
  text-align: center;
  line-height: 1.2;
  font-weight: lighter;
  color: #fff;
  font-size: 11px;
}

@media (min-width: 568px) {
  footer .copyright {
    flex-flow: row;
    font-size: 13px;
  }
}
footer .copyright span {
  display: inline-block;
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 960px) {
  footer .copyright span {
    display: block;
  }
}

footer .footer_btn {
  margin-bottom: 20px;
}

@media (min-width: 568px) {
  footer .footer_btn {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
footer .footer_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  color: #1A1A1A;
}

@media (min-width: 568px) {
  footer .footer_btn a {
    width: 258px;
    height: 45px;
    font-size: 14px;
    font-weight: bold;
  }

  footer .footer_btn a:first-of-type {
    margin-right: 14px;
  }
}
footer .btn_subsc {
  margin-bottom: 20px;
  background: #fff;
}

@media (min-width: 568px) {
  footer .btn_subsc {
    margin-bottom: 0;
  }
}
footer .btn_request {
  background: #FFE600;
}

/*fixed*/
#fixd_btn {
  position: fixed;
  bottom: 0;
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  padding: 4px 0;
  width: 100%;
  height: 40px;
  background: #fff;
  z-index: 9999;
}

#fixd_btn .to_contact {
  padding: 0 2%;
  width: 47%;
  max-width: 200px;
  font-size: 13px;
}

#fixd_btn .to_download {
  justify-content: center;
  padding: 0px 2px;
  width: 47%;
  max-width: 200px;
  font-size: 12px;
}

.links {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}

.links_inner {
  display: inline-flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-around;
  padding: 20px;
  height: auto;
  margin: 0 auto;
  padding: 20px 20px 25px;
  width: 92%;
  background: #fff;
}

.links_inner a {
  margin-bottom: 30px;
  padding-bottom: 2px;
  border-bottom: 1px solid #333;
  color: #333;
  font-size: 14px;
}

.links_inner a:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 568px) {
  #fixd_btn {
    display: none;
  }

  .links {
    display: flex;
    justify-content: flex-end;
    margin: auto;
    margin-top: 11px;
    margin-bottom: 20px;
    width: 1000px;
  }

  .links_inner {
    display: inline-flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    padding: 20px;
    height: 45px;
    width: 529px;
    background: #fff;
  }

  .links_inner a {
    padding-bottom: 2px;
    border-bottom: 1px solid #333;
    color: #333;
    font-size: 14px;
  }

  .links_inner a {
    margin-bottom: 0;
  }
}
/*gimic*/
a {
  position: relative;
}

@media (min-width: 568px) {
  a:hover {
    opacity: 0.8;
  }
}
.pc {
  display: none;
}

@media (min-width: 568px) {
  .pc {
    display: block;
  }
}
@media (min-width: 568px) {
  .sp {
    display: none;
  }
}
.sp_s {
  display: none;
}

@media (max-width: 370px) {
  .sp_s {
    display: block;
  }
}
/* フッターの固定 */
div.foot_link-fixed {
  background-color: #ffe600;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  display: none;
}

@media (max-width: 768px) {
  div.foot_link-fixed {
    height: auto;
  }
}
div.foot_link-bk {
  padding: 0px 0 0px;
  height: 100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  div.foot_link-bk {
    width: 100%;
    height: auto;
  }
}
div.foot_link {
  height: 100%;
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  div.foot_link {
    height: auto;
    width: 100%;
    margin: 0 auto;
  }
}
div.foot_link img {
  height: 100px;
  width: auto;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  div.foot_link img {
    height: auto;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.fv_logo{
  border-radius: 18px;
  overflow: hidden;
}
.point_inner1-text{
  font-size: 17px;
}
.point_inner1-text a,
.course_block-txt a{
  color: #000000;
  text-decoration: underline;
}
.course_block-price .course_timedate{
  width: calc(423/497*100%);
  margin: 0 auto;
  max-height: initial;
}
/* @media (max-width: 768px) {
  .course_timedate{
  width: ;
}
} */
.course_block_present-txt .course_block_present-txt-em{
  font-size: 18px;
  font-weight: bold;
  color: #E1769F;
}
.course_block_present-txt-inner{
  margin-bottom: 46px;
}
@media (max-width: 768px) {
.course_block_present-txt-inner{
  margin-bottom: 24px;
}
}
.course_block_txt{
  font-size: 16px;
  line-height: 2.2;
  font-weight: 500;
}
.course_block_present-aside-list{
  margin-top: 40px;
  text-align: left;
  display: block;
  font-size: 12px;
  line-height: calc(12 / 23);
  font-weight: 400;
  color: #696969;
  font-family: var(--font-noto);
}
@media (max-width: 768px) {
  .course_block_present-aside-list{
    margin-top: 24px;
  }
}
.course_block_present-aside-list li{
  line-height: 2;
}
.course_block_present-aside-info{
  text-align: left;
  margin-top: 40px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}
@media (max-width: 768px) {
  .course_block_present-aside-info{
    margin-top: 24px;
  }
}
.course_block_present-aside-banner{
  margin-top: 24px;
}
.english_inner-list .-sm{
  font-size: 13px;
  font-weight: 300;
}
.plan_detail_recommend-list_block-txt-wrap{
  text-align: left;
  width: calc(560 / 1028 * 100%);
  padding-top:clamp(40px,calc(70 / 1600 * 100vw), 70px);
  margin-left: 40px;
}
@media (max-width: 768px) {
  .plan_detail_recommend-list_block-txt-wrap{
  width:100%;
  margin-top: 0px;
  margin-left: 0px;
  padding-top: 36px;
  padding-inline: 24px;
  padding-bottom: 40px;
}

}
.plan_detail_recommend-list_block-title{
  font-size: 24px;
  color: #FF929C;
  font-weight: bold;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
.plan_detail_recommend-list_block-title{
  font-size: 18px;
  margin-bottom: 21px;
}
}
.plan_detail_recommend-list_block-txt{
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  width: calc(450 / 560 * 100%);
}
@media (max-width: 768px) {
  .plan_detail_recommend-list_block-txt{
    width: 100%;
    font-size: 15px;
  }
}
.plan_detail_recommend-list_block{
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .plan_detail_recommend-list_block{
    flex-flow: column-reverse;
  }
}
.plan_detail_recommend-list_block-pic{
  width: calc(465 / 1028 * 100%);
}
.plan_detail_recommend-list_block-pic img{
  aspect-ratio: 465 / 465;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .plan_detail_recommend-list_block-pic{
    width: 100%;
  }
}
.plan_detail_recommend-list-item{
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.16));
}
.plan_detail_head .plan_detail_recommend-title{
  position: relative;
  font-size: 23px;
  padding-bottom: 23px;
  color: #E1769F;
  font-weight: bold;
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
.plan_detail_head  .plan_detail_recommend-title{
    font-size: 20px;
    margin-bottom: 21px;
  }
}
.plan_detail_head .plan_detail_recommend-title::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 38px;
  height: 2px;
  background-color: #FF929C;
  margin-inline: auto;
}
.plan_detail_head .plan_detail_recommend-title-wrap{
  margin-bottom: 18px;
}
.plan_detail_recommend-list_block-title-num{
  width: 24px;
  height: 24px;
  background-color: #FF929C;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
.plan_detail_recommend-list-item + .plan_detail_recommend-list-item{
  margin-top:60px;
}
@media (max-width: 768px) {
  .plan_detail_recommend-list-item + .plan_detail_recommend-list-item{
    margin-top:40px;
  }
}
.plan_detail_recommend-attention{
  border: 1px solid #E7E7E7;
  padding-block: 66px;
  padding-inline: 60px;
  text-align: left;
  margin-top: 60px;
}
@media (max-width: 768px) {
.plan_detail_recommend-attention{
  border: 1px solid #E7E7E7;
  padding-top: 24px;
  padding-bottom: 34px;
  padding-inline: 24px;
  margin-top: 40px;
}
}
.plan_detail_recommend-attention dt{
  font-size: 16px;
  margin-bottom: 20px;
}

.plan_detail_recommend-attention dd li{
  line-height: 2;
  font-weight: 500;
}
.plan_detail_recommend-attention dd li a{
  color:#000000;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .plan_detail_recommend-attention dt{
    font-size: 12px;
    margin-bottom: 12px;
  }
  .plan_detail_recommend-attention dd li{
    font-size: 12px;
    line-height: calc(23 / 12);
  }
}
.plan_detail_recommend-title .-icon{
  position: relative;
}
.plan_detail_recommend-title .-icon::before,
.plan_detail_recommend-title .-icon::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 4px;
  margin-block: auto;
  width: 28.64px;
  height: 28.48px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.642%22%20height%3D%2227.48%22%20viewBox%3D%220%200%2028.642%2027.48%22%3E%20%3Cpath%20id%3D%22Path%22%20d%3D%22M28.628%2C11.411l-.064.021c-1.685.538-3.376-.009-3.484-.338s.932-1.748%2C2.617-2.287l.064-.019a5.823%2C5.823%2C0%2C0%2C0-7.88-1.823%2C5.562%2C5.562%2C0%2C0%2C0%2C.2-1.476A5.681%2C5.681%2C0%2C0%2C0%2C15.724%2C0V.066c0%2C1.741-1.052%2C3.152-1.4%2C3.152s-1.4-1.411-1.4-3.152c0-.022%2C0-.044%2C0-.066A5.681%2C5.681%2C0%2C0%2C0%2C8.561%2C5.49a5.562%2C5.562%2C0%2C0%2C0%2C.2%2C1.476A5.82%2C5.82%2C0%2C0%2C0%2C.88%2C8.788l.065.019c1.684.538%2C2.725%2C1.957%2C2.617%2C2.287s-1.8.876-3.484.338l-.064-.021A5.664%2C5.664%2C0%2C0%2C0%2C3.98%2C17.179a5.879%2C5.879%2C0%2C0%2C0%2C1.5.269%2C5.711%2C5.711%2C0%2C0%2C0-1%2C1.047%2C5.586%2C5.586%2C0%2C0%2C0%2C.242%2C6.958c.014-.019.025-.037.039-.055%2C1.042-1.408%2C2.736-1.942%2C3.021-1.739s.292%2C1.952-.75%2C3.361l-.04.053a5.821%2C5.821%2C0%2C0%2C0%2C6.807-1.925%2C5.69%2C5.69%2C0%2C0%2C0%2C.529-.869%2C5.586%2C5.586%2C0%2C0%2C0%2C.528.869%2C5.821%2C5.821%2C0%2C0%2C0%2C6.807%2C1.925l-.04-.053c-1.041-1.408-1.034-3.158-.75-3.361s1.98.33%2C3.021%2C1.739c.013.018.025.036.039.055a5.584%2C5.584%2C0%2C0%2C0%2C.241-6.958%2C5.718%2C5.718%2C0%2C0%2C0-1-1.047%2C5.879%2C5.879%2C0%2C0%2C0%2C1.5-.269%2C5.666%2C5.666%2C0%2C0%2C0%2C3.967-5.768%22%20fill%3D%22%23e1769f%22%2F%3E%3C%2Fsvg%3E');
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .plan_detail_recommend-title .-icon::before,
.plan_detail_recommend-title .-icon::after{
  width: 23.64px;
  height: 23.48px;
}
}
.plan_detail_recommend-title .-icon::before{
  right: calc(100% + 20px);
}
.plan_detail_recommend-title .-icon::after{
  left: calc(100% + 20px);
}
@media (max-width: 768px) {
.plan_detail_recommend-title .-icon::before{
  right: calc(100% + 10px);
}
.plan_detail_recommend-title .-icon::after{
  left: calc(100% + 10px);
}
}
.plan_detail_recommend-txt{
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 768px) {
  .plan_detail_recommend-txt{
    font-size: 15px;
  }
}
.course_block_present-aside-info a{
  color:inherit;
}
.course_block_present{
  position: relative;
}
.course_block_stamp_title{
  position: absolute;
  top: -70px;
  right: -70px;
}
@media (max-width: 768px) {
  .course_block_stamp_title{
  position: absolute;
  top: -70px;
  right: -10px;
}
}
.course_block_stamp_title img{
  width: clamp(150px,calc(200 / 1600 * 100vw), 200px);
  transform: rotate(23deg);
}
@media (max-width: 768px) {
  .course_block_stamp_title img{
  width:125.41px ;
}
}
.course_block_stamp_title-txt{
  position: absolute;
  inset: 0;
  margin: auto;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-weight: 700;
  font-size: 19px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .course_block_stamp_title-txt{
    font-size: 15px;
  }
}
.fv_tell_box{
  text-align: center;
}
.fv_tell{
  line-height: 1.5;
}
.fv_tell-top{
  font-weight: 600;
  color: #E1779F;
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 768px) {
  .fv_tell-top{
  font-weight: 600;
  color: #E1779F;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
}
.fv_tell-number{
  font-size: 60px;
  font-weight: 600;
  color: #E1779F;
  display: inline-block;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .fv_tell-number{
    font-size:calc(30 / 375 * 100vw);
    font-weight: 600;
  }
}
.fv_tell-text-md{
  font-size: 24px;
  font-weight: 600;
  color: #E1779F;
  display: block;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .fv_tell-text-md{
    font-size:calc(14 / 375 * 100vw);
  }
}
.fv_tell-text-sm{
  font-size: 18px;
  font-weight: 600;
  color: #E1779F;
    line-height: 1.5;
  display: block;
}
@media (max-width: 768px) {
  .fv_tell-text-sm{
    font-size:calc(12 / 375 * 100vw);
  }
}
.fv_tell-number{
  position: relative;
}
.fv_tell .fv_tell-number-icon{
  width: 56px;
  height:56px;
  position: absolute;
  right: calc(100% + 10px);
  margin-block: auto;
  inset-block: 0;
}
@media (max-width: 768px) {
  .fv_tell .fv_tell-number-icon{
    width: 24px;
    height: 24px;
    right: calc(100% + 5px);
  }
}
.txt_holdingPeriod{
  font-size: 64px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 768px) {
.txt_holdingPeriod{
  font-size: 32px;
}
  }
.txt_holdingPeriod--day{
  font-size: .4em;
  line-height: 1.5;
  font-weight: 500;
  color: #F8A6B2;
  text-align: center;
  border-radius: 50%;
  position: relative;
  bottom: 10px;
  display: inline-block;
  margin-left: 18px;
}

@media (max-width: 768px) {
  .txt_holdingPeriod--day{
  font-size: .4em;
  line-height: 1.5;
  font-weight: 500;
  color: #F8A6B2;
  text-align: center;
  border-radius: 50%;
  position: relative;
  bottom: 5px;
  margin-left: 9px;
}
}
.txt_holdingPeriod--day span{
  position: relative;
  z-index: 1;
}
.txt_holdingPeriod--day::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:  40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
}
@media (max-width: 768px) {
  .txt_holdingPeriod--day::after{
    width:  20px;
    height: 20px;
  }
}
.txt_holdingPeriod--left{
  position: relative;
  margin-right:56px;
}
@media (max-width: 768px) {
 .txt_holdingPeriod--left{
  margin-right:28px;
}
}
.txt_holdingPeriod--left::after{
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  left: calc(100% + 20px);
  display: inline-block;
  width: 25px;
  height: 28px;
  background: #ffffff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
}
@media (max-width: 768px) {
  .txt_holdingPeriod--left::after{
    position: absolute;
    top: 0;
    bottom: 0;
    margin-block: auto;
    left: calc(100% + 10px);
    display: inline-block;
    width: 14px;
    height: 17px;
    background: #ffffff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    content: "";
  }
}
.plan_detail_recommend-map-ttl{
  font-size: 32px;
  margin-bottom: 32px;

}
@media (max-width: 768px) {
  .plan_detail_recommend-map-ttl{
    font-size: 28px;
    margin-bottom: 32px;
  }
}
.plan_detail_recommend-map-img img{
  width: 70%;
  margin-inline: auto;
}
  .plan_detail_recommend-map-img{
  margin-bottom:56px;
}
@media (max-width: 768px) {
  .plan_detail_recommend-map-img{
  margin-bottom: 32px;
}
}
.plan_detail_recommend-list-item--map{
  filter: none;
}
.plan_detail_recommend-section + .plan_detail_recommend-section{
  margin-top: 100px;
}
@media (max-width: 768px) {
  .plan_detail_recommend-section + .plan_detail_recommend-section{
    margin-top: 88px;
  }
}
.u-wbr.sp {
  display: none;
}
.u-wbr.cp {
  display: block;
}
@media (max-width: 768px) {
.u-wbr.sp {
  display: block;
}
.u-wbr.cp {
  display:none;
}
}
