@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
html {
  scroll-behavior: smooth;
}

.plan_wrapp {
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.plan_wrapp_in {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .plan_wrapp_in {
    padding-bottom: 13.7142857143vw;
  }
}
.plan_wrapp_in h3 {
  font-size: min(2.7272727273vw, 30px);
  font-weight: 500;
  line-height: 2.1428571429;
  text-align: center;
  color: #003b80;
}
@media screen and (max-width: 768px) {
  .plan_wrapp_in h3 {
    font-size: 5.2857142857vw;
  }
}

.wrap {
  width: 100%;
  overflow: hidden;
}

.mv_wrapp {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.intro {
  position: relative;
  z-index: 0;
  margin-inline: calc(50% - 50vw);
  padding: min(14.0909090909vw, 155px) calc(50vw - 50%) min(7.2727272727vw, 80px);
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 28.5714285714vw;
    padding-bottom: 4.2857142857vw;
  }
}
.intro_text {
  font-size: min(2.7272727273vw, 30px);
  font-weight: 500;
  line-height: 2.1428571429;
  text-align: center;
  color: #003b80;
}
@media screen and (max-width: 768px) {
  .intro_text {
    font-size: 5.2857142857vw;
  }
}

.slide_image {
  width: 100%;
  overflow: hidden;
  margin: 0 auto 80px;
}
.slide_image .image_in {
  display: flex;
  width: max-content;
  animation: slideLoop 40s linear infinite;
}
.slide_image .image_in img {
  width: 150vw; /* 画面幅と同じ */
  flex-shrink: 0;
}
.slide_image {
  /* 完全シームレス */
}
@keyframes slideLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-150vw);
  }
}
.slide_image .cap {
  width: 100%;
  text-align: right;
  font-size: 11px;
  padding: 0 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .slide_image {
    margin: 0 auto 40px;
  }
  .slide_image .image_in {
    display: flex;
    width: max-content;
    animation: slideLoop 30s linear infinite;
  }
  .slide_image .image_in img {
    width: 350vw; /* 画面幅と同じ */
    flex-shrink: 0;
  }
  .slide_image {
    /* 完全シームレス */
  }
  @keyframes slideLoop {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-350vw);
    }
  }
}
.plan_bt_wrapp {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .plan_bt_wrapp {
    margin-top: 20px;
  }
}
.plan_bt_wrapp h4 {
  width: 70%;
  max-width: 900px;
  margin: 0 auto;
  background: #003b80;
  border-radius: 20px 20px 0px 0;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: min(1.8181818182vw, 20px);
}
@media screen and (max-width: 768px) {
  .plan_bt_wrapp h4 {
    font-size: 5vw;
  }
}
.plan_bt_wrapp .plan_bt_in {
  background: #deecf3;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .plan_bt_wrapp .plan_bt_in {
    padding: 40px 0;
  }
}
.plan_bt_wrapp .plan_bt_in ul {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3%;
}
@media screen and (max-width: 768px) {
  .plan_bt_wrapp .plan_bt_in ul {
    display: block;
  }
}
.plan_bt_wrapp .plan_bt_in ul li {
  width: 31%;
  flex: 0 0 30.6666666667%;
  aspect-ratio: 300/289;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.6s ease;
}
.plan_bt_wrapp .plan_bt_in ul li:hover {
  opacity: 0.8;
  transform: scale(1.02);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 768px) {
  .plan_bt_wrapp .plan_bt_in ul li {
    width: 90%;
    flex: 90%;
    margin: 0 auto 20px;
  }
}
.plan_bt_wrapp .plan_bt_in ul li a {
  display: block;
  transition: all 0.6s ease;
}
.plan_bt_wrapp .plan_bt_in ul li a img {
  width: 100%;
  max-width: inherit;
}
@media screen and (max-width: 768px) {
  .plan_bt_wrapp .plan_bt_in ul li a img {
    width: 110%;
    max-width: inherit;
    margin-left: -5%;
  }
}
@media screen and (max-width: 768px) {
  .plan_bt_wrapp .plan_bt_in ul li a img.limited {
    margin-top: -5%;
  }
}

.cv-area__wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cv-area__wrap {
    margin-bottom: 30px;
  }
}

.footerAction__button {
  display: none;
}

.footerAction__button.plan_detail {
  display: block !important;
}

.ornament {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
}

.intro_bg01_01,
.intro_bg01_02 {
  width: 48vw;
  max-width: 574px;
  aspect-ratio: 574/250;
  margin: auto;
  transition-delay: 0.75s;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.intro_bg01_01 {
  left: 0;
  top: 0;
  background: url("../img/intro_bg01.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .intro_bg01_01 {
    width: 61.7142857143vw;
  }
}

.intro_bg01_02 {
  right: 0;
  top: 0;
  background: url("../img/intro_bg02.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .intro_bg01_02 {
    width: 52.4285714286vw;
  }
}

.madori_wrap {
  padding: 73px 0 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .madori_wrap {
    padding: 16vw 0 0;
  }
}
.madori_wrap_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 290px;
  background-color: #deecf3;
}
@media screen and (max-width: 768px) {
  .madori_wrap_header {
    padding: 16.57142vw 0;
    height: auto;
  }
}
.madori_wrap_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
  width: 100%;
  max-width: 777px;
}
@media screen and (max-width: 900px) {
  .madori_wrap_inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner {
    width: 80.857142%;
    max-width: inherit;
  }
}
.madori_wrap_inner .inner_typeimg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27.54182%;
  max-width: 214px;
  height: 141px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.13em;
  text-indent: 0.13em;
  background: url(../img/details/bg_type.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 900px) {
  .madori_wrap_inner .inner_typeimg {
    height: 15.666vw;
    font-size: 2.888vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typeimg {
    margin-bottom: 7.85714vw;
    width: 100%;
    max-width: inherit;
    height: 30vw;
    font-size: 5.57142vw;
  }
}
.madori_wrap_inner .inner_typetxt {
  width: 67.69626%;
  max-width: 526px;
  font-family: "YakuHanJP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typetxt {
    width: 100%;
    max-width: inherit;
  }
}
.madori_wrap_inner .inner_typetxt .type_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
  padding: 0 0 10px;
  width: 100%;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typetxt .type_title {
    display: block;
    margin-bottom: 4.2857vw;
    padding: 0 0 1.5vw;
  }
}
.madori_wrap_inner .inner_typetxt .type_title .title_num {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 40px;
}
.madori_wrap_inner .inner_typetxt .type_title .title_num span {
  font-size: 65%;
}
@media screen and (max-width: 900px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_num {
    font-size: 4.888vw;
    line-height: 4.444vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_num {
    margin-bottom: 3vw;
    padding: 0 0 2vw;
    font-size: 10.57142vw;
    line-height: 9vw;
    border-bottom: 1px solid #000;
  }
}
.madori_wrap_inner .inner_typetxt .type_title .title_area {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_area {
    font-size: 121.333vwpx;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_area {
    font-size: 2.85714vw;
  }
}
.madori_wrap_inner .inner_typetxt .type_title .title_area span {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 34px;
}
@media screen and (max-width: 900px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_area span {
    font-size: 4.222vw;
    line-height: 3.777vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_area span {
    font-size: 9.14285vw;
    line-height: 8vw;
  }
}
.madori_wrap_inner .inner_typetxt .type_title .title_area span small {
  font-size: 24px;
}
@media screen and (max-width: 900px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_area span small {
    font-size: 2.666vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typetxt .type_title .title_area span small {
    font-size: 4vw;
  }
}
.madori_wrap_inner .inner_typetxt .type_area_text {
  font-size: 13px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .madori_wrap_inner .inner_typetxt .type_area_text {
    font-size: 1.444vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap_inner .inner_typetxt .type_area_text {
    font-size: 3vw;
  }
}
.madori_wrap_inner .inner_typetxt .type_area_text span {
  color: #ff00ff;
  font-weight: 700;
}
.madori_wrap .madori_box {
  padding: 105px 0 0;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .madori_wrap .madori_box {
    padding: 11.666vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap .madori_box {
    padding: 10vw 0 0;
  }
}
.madori_wrap .madori_box .madori_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 582px;
}
@media screen and (max-width: 900px) {
  .madori_wrap .madori_box .madori_inner {
    width: 90%;
  }
}
.madori_wrap .madori_box .madori_inner .madori_img {
  margin-bottom: 55px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .madori_wrap .madori_box .madori_inner .madori_img {
    margin-bottom: 6.111vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap .madori_box .madori_inner .madori_img {
    margin-bottom: 14.71428vw;
  }
}
.madori_wrap .madori_box .madori_inner .back_list_btn {
  margin: 0 auto;
  width: 53.6%;
  max-width: 311px;
}
@media screen and (max-width: 768px) {
  .madori_wrap .madori_box .madori_inner .back_list_btn {
    width: 71.378%;
  }
}
.madori_wrap .madori_box .madori_inner .back_list_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  color: #fff;
  font-family: var(--font-ja);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  background-color: #4d4d4d;
  border-radius: 100px;
  transition: 0.3s all ease-in-out 0s;
}
.madori_wrap .madori_box .madori_inner .back_list_btn a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 900px) {
  .madori_wrap .madori_box .madori_inner .back_list_btn a {
    height: 5.333vw;
    font-size: 1.888vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap .madori_box .madori_inner .back_list_btn a {
    height: 8.85714vw;
    font-size: 3.2857vw;
  }
}
.madori_wrap .madori_box .madori_inner .img_facility {
  margin: 65px 0 30px;
  width: 100%;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .madori_wrap .madori_box .madori_inner .img_facility {
    margin: 7.222vw 0 3.333vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap .madori_box .madori_inner .img_facility {
    margin: 10vw auto 5.71428vw;
    width: 90%;
  }
}
.madori_wrap .madori_box .madori_inner .madori_note {
  margin-bottom: 80px;
  margin-left: 10px;
  font-family: var(--font-ja);
  font-size: 11px;
}
@media screen and (max-width: 900px) {
  .madori_wrap .madori_box .madori_inner .madori_note {
    margin-bottom: 8.888vw;
    font-size: 1.111vw;
  }
}
@media screen and (max-width: 768px) {
  .madori_wrap .madori_box .madori_inner .madori_note {
    margin: 0 auto 12.85714vw;
    margin-left: 4vw;
    width: 90%;
    font-size: 2vw;
  }
}
.madori_wrap .madori_box .madori_inner .entry_btn {
  margin: 0 auto;
  width: 100%;
  max-width: 316px;
}
@media screen and (max-width: 768px) {
  .madori_wrap .madori_box .madori_inner .entry_btn {
    width: 80%;
  }
}

.plan_cap {
  text-align: center;
  font-size: 11px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .plan_cap {
    font-size: 2vw;
  }
}/*# sourceMappingURL=plan.css.map */