@charset "utf-8";
:root{
  --color-main:#e5772e;
  --color-black:#36241b;
  --color-gray:#b2b2b2;
  --font-fjalla: "Fjalla One", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.inner{
  max-width: 1300px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.wrapper{
  min-width: auto;
}
.visually_hidden{
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
  border:0;
}
@media print, screen and (min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
@media screen and (max-width : 767px){
  .inner{
    width: 92%;
    padding: 0;
  }
}

.pcmn_list_anc{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 2.66%;
  margin-top: 20px;
  margin-bottom: 10px;
  list-style-type: none;
  counter-reset: number;
  text-indent: 0;
}
.pcmn_list_anc > li{
  width: 23%;
  position:relative;
  counter-increment: number;
}
.pcmn_list_anc > li::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-gray);
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 0;
  border-radius: 10px;
}
.pcmn_list_anc > li::after{
  position: absolute;
  right: 24px;
  right: 8.695%;
  top: 0;
  min-width: 1em;
  display: inline-block;
  counter-increment: count 1;
  content: "0"counter(number);
  font-family: var(--font-fjalla);
  font-size: 4.1875rem;
  color: var(--color-black);
  opacity: .2;
  line-height: 1;
  pointer-events: none;
}
.pcmn_list_anc > li a{
  display: block;
  width: 100%;
  border: 3px solid var(--color-black);
  border-radius: 10px;
  position: relative;
  min-height: 60px;
  color: var(--color-black);
  padding: 7px 18px;
  background-color: #fff;
  font-size: 1.125rem;
  line-height: 1.444;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.pcmn_list_anc > li a::after{
  content: "";
  width: 12px;
  height: 14px;
  background: url(/rakurakuen/img/ico_anc.svg)no-repeat center/contain;
  position: absolute;
  right: 26px;
  right: 9.42%;
  top: 50%;
  transform: translateY(-50%);
}
.pcmn_list_anc > li a .ico{
  display: block;
  max-width: 100px;
}
@media screen and (max-width : 767px){
  .pcmn_list_anc{
    gap: 15px 4.34%;
  }
  .pcmn_list_anc > li{
    width: 47.82%;
  }
  .pcmn_list_anc > li::before{
    top: 3px;
    border-radius: 5px;
  }
  .pcmn_list_anc > li::after{
    font-size: 3.75rem;
    right: 4px;
  }
  .pcmn_list_anc > li a{
    font-size: 0.875rem;
    line-height: 1.285;
    padding: 8px 15px;
    border-width: 1px;
    min-height: 54px;
    border-radius: 5px;
  }
  .pcmn_list_anc > li a::after{
    width: 10px;
    height: 12px;
    right: 13px;
  }
}
.pcmn_ttl{
  font-size: 2.375rem;
  text-align: center;
  color: var(--color-main);
  font-weight: 700;
  letter-spacing: 5px;
}
.pcmn_ttl > span{
  border-bottom: 3px solid var(--color-main);
  padding-bottom: 20px;
  display: inline-block;
}
@media screen and (max-width : 767px){
  .pcmn_ttl{
    font-size: 1.8125rem;
    position: relative;
    letter-spacing: 2px;
  }
  .pcmn_ttl::before{
    content: "";
    display: block;
    max-width: 225px;
    width: 100%;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
  }
  .pcmn_ttl > span{
    border: none;
  }
}

.pcmn_btn{
  display: block;
  width: 100%;
  max-width: 556px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
  position: relative;
}
.pcmn_btn a{
  color: #fff;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  background: #e60012;
  font-size: 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pcmn_btn::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #dfdfdf;
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 0;
  border-radius: 10px;
}
@media screen and (max-width : 767px){
  .pcmn_btn{
    height: 50px;
    width: 90.144%;
  }
  .pcmn_btn a{
    font-size: 0.9375rem;
    border-radius: 5px;
  }
  .pcmn_btn::before{
    content: none;
  }
}

/* ===============================================
# header
=============================================== */
.hd_opening{
  width: 95.833%;
  max-width: 1380px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: stretch;
  position: absolute;
  justify-content: space-between;
  position: fixed;
}
.hd_opening .area_logo{
  width: calc(100% - 365px);
  flex-grow: 1;
  padding: 22px 24px;
}
.hd_opening .area_logo .hd_ico{
  position: absolute;
  left: 315px;
  top: -10px;
}
.hd_opening .area_contact{
  display: flex;
}
.hd_opening .area_contact .box_tel{
  width: 335px;
  width: clamp(260px,33.854vw,365px);
  background: url(/rakurakuen/img/bg_hd_contact.jpg) no-repeat;
  background-size: cover;
  display: flex;
  color: var(--color-black);
  align-items: center;
  padding: 22px 33px;
  padding-right: clamp(10px,1.8vw,33px);
  padding-left: clamp(10px,1.8vw,33px);
  gap: 16px;
  flex-shrink: 1;
}
.hd_opening .area_contact .box_tel .txt_contact{
  font-size: 0.9375rem;
  font-size: clamp(0.875rem,1.822vw,0.9375rem);
  line-height: 1.2;
  width: 48px;
}
.hd_opening .area_contact .box_tel .link_contact{
  font-size: 2.25rem;
  font-size: clamp(1.6rem,3.255vw,2.25rem);
  font-weight: 400;
  font-family: var(--font-fjalla);
  font-style: normal;
  color: var(--color-black);
  display: flex;
  line-height: 1;
  gap: 10px;
}
.hd_opening .area_contact .box_tel .link_contact img{
  width: 25px;
}
.hd_opening .area_contact .box_net{
  background: #e60012;
  width: 180px;
}
.hd_opening .area_contact .box_net a{
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area_menu{
  display: none;
}
@media screen and (max-width : 1023px) and (min-width:768px){
  .hd_opening .area_logo{
    padding: 20px 10px;
  }
  .hd_opening .area_logo .hd_logo img{
    width: 190px;
  }
  .hd_opening .area_logo .hd_ico{
    left: 210px;
  }
  .hd_opening .area_logo .hd_ico img{
    width: 90px;
  }
  .hd_opening .area_contact .box_tel{
    padding: 16px 10px;
    gap: 10px;
  }
  .hd_opening .area_contact .box_net{
    width: 160px;
  }
}
@media screen and (max-width : 767px){
  .hd_opening{
    top: 0;
    width: 100%;
    transform: none;
    left: 0;
  }
  .hd_opening .bg_hd{
    position: fixed;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    opacity: 0;
  }
  .hd_opening .bg_hd.is-show{
    opacity: 1;
    pointer-events: all;
  }
  .hd_opening .area_contact .box_tel,
  .hd_opening .area_contact .box_net{
    display: none;
  }
  .hd_opening .area_logo{
    width: 100%;
    padding: 16px 14px;
    display: flex;
    justify-content: space-between;
  }
  .hd_opening .area_logo .hd_logo,
  .area_menu .hd_menu .hd_logo{
    max-width: 200px;
    width: 53.333vw;
  }
  .hd_opening .area_logo .hd_ico{
    max-width: 73px;
    width: 19.2vw;
    left: 227px;
    left: 60.533vw;
    left: clamp(190px,60.533vw,227px);
    top: -5px;
  }
  .hd_opening .area_logo .btn_menu{
    width: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    background: url(/rakurakuen/img/ico_menu.svg)no-repeat center/contain;
  }
  /* area_menu */
  .area_menu{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility 0s linear .28s;
    z-index: 1000;
  }
  .area_menu.is_open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .28s ease, visibility 0s;
  }
  .area_menu .hd_menu{
    background: #fff;
    display: flex;
    width: 100%;
    padding: 16px 14px;
    justify-content: space-between;
  }
  .area_menu .hd_menu .btn_menu{
    width: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    background: url(/rakurakuen/img/ico_menu_open.svg)no-repeat center/contain;
  }
  .area_menu .menu_contact .ttl,
  .area_contact .ttl{
    background: url(/rakurakuen/img/bg_hd_contact_ttl.jpg) no-repeat top/cover;
    padding: 30px 10px;
  }
  .area_menu .menu_contact .ttl img,
  .area_contact .ttl img{
    display: block;
    width: 66.05%;
    margin-left: auto;
    margin-right: auto;
  }
  .area_menu .menu_contact .ttl .btn_net{
    display: block;
    width: 84.5%;
    background: #e60012;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 5px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  .area_menu .menu_contact .contact,
  .area_contact .contact{
    background: url(/rakurakuen/img/bg_hd_contact.jpg) repeat-y;
    background-size: 100% auto;
    padding: 8px 0 20px;
  }
  .area_menu .menu_contact .contact .txt_contact,
  .area_contact .contact .txt_contact{
    font-size: 0.9375rem;
    text-align: center;
    color: var(--color-black);
  }
  .area_menu .menu_contact .contact .link_contact,
  .area_contact .contact .link_contact{
    display: block;
    background: #fff;
    display: flex;
    font-size: 2.1875rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-family: var(--font-fjalla);
    font-style: normal;
    color: var(--color-black);
    line-height: 1;
    padding: 15px 0 10px;
    margin-top: 8px;
  }
  .area_menu .menu_contact .contact .link_contact img,
  .area_contact .contact .link_contact img{
    width: 26px;
    display: block;
  }
  .area_menu .list_menu{
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 70px;
  }
  .area_menu .list_menu > li > a{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-main);
    position: relative;
    border-bottom: 2px solid var(--color-main);
    padding: 16px 10px;
    letter-spacing: 2px;
  }
  .area_menu .list_menu > li > a::after{
    content: "";
    display: block;
    width: 9px;
    height: 12px;
    background: url(/rakurakuen/img/ico_menu_link.svg)no-repeat center/contain;
    position: absolute;
    right: 5px;
    top: 47%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width : 767px) and (max-height:830px){
  .area_menu.is_open{
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: scroll;
    height: 100vh;
  }
}
/* ===============================================
# main
=============================================== */

/* sec_promo
----------------------------------------------- */
.sec_promo{
  background: url(/rakurakuen/img/bg_promo.jpg)no-repeat top/cover;
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
}
.sec_promo img{
  width: 100%;
}
.sec_promo .txt_catch{
  font-size: 2rem;
  color: #fff;
  text-align: center;
  font-weight: 900;
  line-height: 1.5625;
  margin-top: 50px;
  letter-spacing: 2px;
}
.sec_promo .txt{
  line-height: 2;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  margin-top: 25px;
}
.sec_promo .box_txt{
  position: relative;
}
.sec_promo .bnr_special{
  position: absolute;
  right: 1.5625vw;
  bottom: 50px;
  max-width: 300px;
  width: clamp(250px,15.625vw,300px);
}
@media screen and (max-width : 1279px){
  .sec_promo .bnr_special{
    position: relative;
    right: auto;
    top: 0;
    bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 100%;
  }
}
@media screen and (max-width : 767px){
  .sec_promo{
    padding-top: 58px;
    padding-bottom: 90px;
  }
  .sec_promo .ttl_promo{
    position: relative;
    width: 100vw;
    left: -4vw;
  }
  .sec_promo .txt_catch{
    font-size: 1.4375rem;
    letter-spacing: 1px;
    line-height: 1.739;
  }
  .sec_promo .txt{
    text-align: left;
    line-height: 1.733;
    margin-top: 15px;
    font-size: 0.9375rem;
  }
  .sec_promo .bnr_special{
    margin-top: 30px;
  }
}

/* sec_bnr
----------------------------------------------- */
.sec_bnr{
  position: relative;
}
.sec_bnr .box_bnr{
  position: relative;
  top: -20px;
}
.sec_bnr .box_bnr img{
  width: 100%;
}
.sec_bnr .pcmn_btn{
  margin-top: 35px;
}
@media screen and (max-width : 767px){
  .sec_bnr .pcmn_btn{
    margin-top: 20px;
  }
}

/* sec_feature
----------------------------------------------- */
.sec_feature{
  padding-top: 127px;
}
.sec_feature .pcmn_list_anc{
  margin-top: 50px;
}
.sec_feature .area_feature{
  position: relative;
  margin-top: 60px;
}
.sec_feature .area_feature::before{
  content: "";
  display: block;
  width: 100%;
  height: 283px;
  background: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
}
.sec_feature .area_feature .ttl_feature{
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 30px;
  letter-spacing: 2px;
}
.sec_feature .area_feature .ttl_feature .no{
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11.625rem;
  color: #fff;
  opacity: .06;
  font-family: var(--font-fjalla);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
.sec_feature .area_feature .txt_lead{
  font-size: 1.125rem;
  text-align: center;
  color: #fff;
  margin-top: 8px;
  letter-spacing: 1px;
}
.sec_feature .area_feature .box_ttl{
  position: relative;
  z-index: 1;
}
.sec_feature .area_feature .btn_youtube{
  position: absolute;
  top: 86px;
  right: 4.166vw;
}
.sec_feature .area_feature .btn_youtube a{
  background: linear-gradient(305deg,rgba(230, 0, 18, 1) 0%, rgba(1, 64, 153, 1) 100%);
  display: block;
  width: 141px;
  height: 141px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 100px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.1428;
}
.sec_feature .area_feature .btn_youtube a::before{
  content: "";
  display: block;
  width: 52px;
  height: 36px;
  background: url(/rakurakuen/img/ico_youtube.svg) no-repeat top/contain;
  margin-bottom: 11px;
}
.sec_feature .area_feature .btn_youtube a::after{
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  background: url(/rakurakuen/img/ico_arrow.svg) no-repeat center/contain;
  margin-top: 11px;
}
.sec_feature .area_feature .box_feature{
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 30px 2.5%;
  margin-top: 30px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.sec_feature .area_feature .box_feature .txt{
  font-size: 1rem;
  line-height: 1.75;
}
.sec_feature .area_feature .box_feature .img_flex{
  display: flex;
  gap: 2.38%;
  margin-top: 17px;
  justify-content: space-between;
  text-align: center;
}
.sec_feature .area_feature .box_feature .img_flex .item{
  width: 31.6%;
}
.sec_feature .area_feature .box_feature .img_flex .item img{
  width: 100%;
}
.sec_feature .area_feature .box_feature .img_flex .item figcaption{
  font-size: 1.125rem;
  color: var(--color-black);
  text-align: center;
  line-height: 2.111;
  font-weight: 800;
}
.sec_feature .area_feature .box_feature .img_logo_txt{
  display: flex;
  padding: 0 1.75%;
  gap: 2.63%;
  align-items: center;
}
.sec_feature .area_feature .box_feature .img_logo_txt .img_logo{
  width: 30.7%;
}
.sec_feature .area_feature .box_feature .img_logo_txt .txt{
  width: 63.157%;
}
.sec_feature .area_feature .box_feature .img{
  text-align: center;
}
/* grid */
.sec_feature .area_feature .box_feature.img_left{
  display: grid;
  grid-template-columns: 36.6fr 55.8fr;
  grid-column-gap: 2.5%;
  grid-row-gap: 0px;
}
.sec_feature .area_feature .box_feature.img_left .txt{
  grid-area: 1 / 2 / 2 / 3;
}
.sec_feature .area_feature .box_feature.img_left .img{
  grid-area: 1 / 1 / 3 / 2
}
.sec_feature .area_feature .box_feature.img_left .img_flex{
  grid-area: 2 / 2 / 3 / 3;
}
@media screen and (max-width : 1279px){
  .sec_feature .pcmn_list_anc{
    flex-wrap: wrap;
  }
  .sec_feature .pcmn_list_anc li{
    width: 47.82%;
  }
  .sec_feature .area_feature .box_feature.img_left{
    display: block;
  }
}
@media screen and (max-width : 1023px){
  .sec_feature .area_feature .btn_youtube{
    position: relative;
    top: 0;
    left: 0;
    margin-top: 25px;
  }
  .sec_feature .area_feature .btn_youtube a{
    margin-left: auto;
    margin-right: auto;
    max-width: 305px;
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 10px 0;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  }
  .sec_feature .area_feature .btn_youtube a::before{
    width: 30px;
    height: 20px;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .sec_feature .area_feature .btn_youtube a::after{
    width: 7px;
    height: 11px;
    margin-top: 0;
    margin-left: 17px;
  }
  .sec_feature .area_feature .btn_youtube a br.for_pc{
    display: none;
  }
}
@media screen and (max-width : 767px){
  .sec_feature{
    padding-top: 70px;
  }
  .sec_feature .pcmn_list_anc{
    margin-top: 26px;
  }
  .sec_feature .area_feature{
    margin-top: 50px;
  }
  .sec_feature .area_feature::before{
    height: 303px;
  }
  .sec_feature .area_feature .ttl_feature{
    font-size: 1.5625rem;
    letter-spacing: 1px;
  }
  .sec_feature .area_feature .ttl_feature .no{
    top: 0;
  }
  .sec_feature .area_feature .txt_lead{
    font-size: 1rem;
    letter-spacing: 0;
  }
  .sec_feature .area_feature .box_feature{
    padding: 15px 20px 25px;
  }
  .sec_feature .area_feature .box_feature .txt{
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .sec_feature .area_feature .box_feature .txt + .img_left{
    margin-top: 20px;
  }
  .sec_feature .area_feature .box_feature .img_flex{
    width: calc(100% + 40px);
    left: -20px;
    margin-top: 24px;
  }
  .sec_feature .area_feature .box_feature .img_flex .slick_list{
    margin-left: -15px;
  }
  .sec_feature .area_feature .box_feature .img_flex .item{
    margin-left: 10px;
  }
  .sec_feature .area_feature .box_feature .img_flex .item figcaption{
    font-size: 0.875rem;
  }
  .sec_feature .area_feature .box_feature .img_logo_txt{
    display: block;
    text-align: center;
  }
  .sec_feature .area_feature .box_feature .img_logo_txt .img_logo,
  .sec_feature .area_feature .box_feature .img_logo_txt .txt{
    width: 100%;
  }
  .sec_feature .area_feature .box_feature .img_logo_txt img{
    max-width: 346px;
  }
}

/* sec_scene
----------------------------------------------- */
.sec_scene{
  margin-top: 80px;
  padding-top: 52px;
  padding-bottom: 100px;
  background-color: #eff7ff;
  background-image: url(/rakurakuen/img/bg_scene.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.sec_scene .ttl_scene{
  font-size: 2.5rem;
  font-weight: 300;
  position: relative;
  text-align: center;
  letter-spacing: 5px;
  color: var(--color-black);
}
.sec_scene .ttl_scene::before{
  content: "";
  display: block;
  width: 257px;
  height: 84px;
  background: url(/rakurakuen/img/ttl_scene.png)no-repeat top/contain;
  position: absolute;
  left: 50%;
  transform:translateX(-50%);
  top: -50px;
}
.sec_scene .tab_btn{
  margin-top: 37px;
  position: relative;
  overflow: hidden;
  padding-bottom: 17px;
}
.sec_scene .tab_btn::before{
  content: "";
  display: block;
  width: 100%;
  height: 800px;
  background-image: radial-gradient(circle, rgba(229, 119, 46, 1), rgba(0, 114, 255, 0) 400px);
  position: absolute;
  top: 40px;
  left: 0;
}
.sec_scene .tab_btn ul{
  display: flex;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  gap: 2.739%;
}
.sec_scene .tab_btn ul > li{
  width: 31.5%;
}
.sec_scene .tab_btn button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: var(--color-black);
  text-align: center;
  font-family: var(--font-fjalla);
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  width: 100%;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  padding-bottom: 200px;
}
.sec_scene .tab_btn button::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  max-width: 230px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.sec_scene .tab_btn button.is-active::after{
  content: "";
  display: block;
  width: 62px;
  height: 47px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.sec_scene .tab_btn li:nth-child(1) button::before{
  background: url(/rakurakuen/img/btn_scene01.png) no-repeat center/contain;
}
.sec_scene .tab_btn li:nth-child(1) button.is-active::before{
  background: url(/rakurakuen/img/btn_scene01_active.png)no-repeat center/contain;
}
.sec_scene .tab_btn li:nth-child(2) button::before{
  background: url(/rakurakuen/img/btn_scene02.png) no-repeat center/contain;
}
.sec_scene .tab_btn li:nth-child(2) button.is-active::before{
  background: url(/rakurakuen/img/btn_scene02_active.png) no-repeat center/contain;
}
.sec_scene .tab_btn li:nth-child(3) button::before{
  background: url(/rakurakuen/img/btn_scene03.png) no-repeat center/contain;
}
.sec_scene .tab_btn li:nth-child(3) button.is-active::before{
  background: url(/rakurakuen/img/btn_scene03_active.png) no-repeat center/contain;
}
.sec_scene .tab_btn button > span,
.sec_scene .tab_panel .box_scene .ttl_panel > span{
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴPro", "Hiragino Kaku Gothic Pro", 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 300;
  position: relative;
}
.sec_scene .tab_panel{
  position: relative;
  z-index: 1;
}
.sec_scene .tab_panel .panel{
  opacity: 0;
  display: none;
}
.sec_scene .tab_panel .panel.is-active{
  opacity: 1;
  display: block;
}
.sec_scene .tab_panel .box_scene{
  background: var(--color-main);
  color: #fff;
  position: relative;
  padding: 44px 30px 58px;
}
.sec_scene .tab_panel .panel:nth-child(1) .box_scene::before{
  left: 320px;
}
.sec_scene .tab_panel .panel:nth-child(2) .box_scene::before{
  left: 570px;
}
.sec_scene .tab_panel .panel:nth-child(3) .box_scene::before{
  left: 820px;
}
.sec_scene .tab_panel .box_scene .ttl_panel{
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-fjalla);
  font-weight: 400;
  font-style: normal;
  font-size: 5.625rem;
  text-align: center;
  opacity: 0.1;
  line-height: 1;
  letter-spacing: 5px;
  width: 100%;
}
.sec_scene .tab_panel .box_scene .txt_catch{
  font-size: 2rem;
  text-align: center;
  font-weight: 300;
}
.sec_scene .tab_panel .box_scene .wrap_time{
  display: flex;
  gap: 4%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.sec_scene .tab_panel .box_scene .wrap_time .box_time{
  width: 48%;
}
.sec_scene .tab_panel .box_scene .box_time .ttl_time{
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding: 20px 0;
}
.sec_scene .tab_panel .box_scene .box_time .ttl_time .ico_time{
  width: 30px;
  margin-right: 10px;
}
.sec_scene .tab_panel .box_scene .box_time .ttl_time .time{
  font-family: var(--font-fjalla);
  font-weight: 400;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1;
  margin-right: 16px;
  letter-spacing: 5px;
  margin-top: 5px;
}
.sec_scene .tab_panel .box_scene .box_time .txt_time{
  line-height: 1.625;
  margin-top: 22px;
  font-size: 1rem;
}
@media screen and (max-width : 767px){
  .sec_scene{
    margin-top: 92px;
    padding-top: 57px;
    padding-bottom: 0;
  }
  .sec_scene .inner{
    width: 100%;
  }
  .sec_scene .ttl_scene{
    font-size: 2rem;
  }
  .sec_scene .ttl_scene::before{
    width: 231px;
    height: 75px;
    top: -55px;
  }
  .sec_scene .tab_btn{
    margin-top: 27px;
    padding-bottom: 7px;
  }
  .sec_scene .tab_btn ul{
    position: relative;
    gap: 2.666%;
    justify-content: center;
  }
  .sec_scene .tab_btn ul > li{
    width: 30.666%;
  }
  .sec_scene .tab_btn button{
    font-size: 1.1875rem;
    line-height: 1.21;
    padding-bottom: 100px;
  }
  .sec_scene .tab_btn button::before{
    width: 100%;
    height: 100%;
    top: 15px;
  }
  .sec_scene .tab_panel .box_scene{
    padding: 26px 15px 28px;
  }
  .sec_scene .tab_btn button.is-active::after{
    width: 31px;
    height: 24px;
    bottom: -8px;
  }
  .sec_scene .tab_panel .panel:nth-child(1) .box_scene::before{
    left: 48px;
    left: 12.8vw;
  }
  .sec_scene .tab_panel .panel:nth-child(2) .box_scene::before{
    left: 173px;
  }
  .sec_scene .tab_panel .panel:nth-child(3) .box_scene::before{
    left: 300px;
  }
  .sec_scene .tab_panel .box_scene .ttl_panel{
    font-size: 2.5rem;
    top: -12px;
    letter-spacing: 2px;
    line-height: 1.481;
  }
  .sec_scene .tab_panel .box_scene .txt_catch{
    font-size: 1.6875rem;
  }
  .sec_scene .tab_panel .box_scene .wrap_time{
    flex-direction: column;
    gap: 10px;
  }
  .sec_scene .tab_panel .box_scene .wrap_time .box_time{
    width: 100%;
  }
  .sec_scene .tab_panel .box_scene .box_time .ttl_time{
    font-size: 1.0625rem;
    padding: 10px 0;
  }
  .sec_scene .tab_panel .box_scene .box_time .ttl_time .ico_time{
    width: 27px;
    margin-right: 8px;
  }
  .sec_scene .tab_panel .box_scene .box_time .ttl_time .time{
    font-size: 1.5625rem;
    margin-right: 12px;
    letter-spacing: 3px;
  }
  .sec_scene .tab_panel .box_scene .box_time .txt_time{
    font-size: 0.875rem;
    margin-top: 19px;
  }
}

/* sec_facility
----------------------------------------------- */
.sec_facility{
  padding-top: 130px;
  overflow: hidden;
}
.sec_facility .txt_lead{
  text-align: center;
  font-size: 1.125rem;
  margin-top: 24px;
}
.sec_facility .box_facility{
  margin-top: 50px;
}
.sec_facility .box_facility .list_facility{
  display: flex;
}
.sec_facility .box_facility .list_facility > li{
  width: 23.333%;
}
.sec_facility .box_facility .list_facility li .ttl{
  font-size: 1.375rem;
  text-align: center;
  color: var(--color-main);
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
.sec_facility .box_facility .list_facility li .txt{
  line-height: 1.4375;
  margin-top: 23px;
  font-size: 1rem;
}
@media screen and (min-width : 1280px){
  .sec_facility .box_facility .list_facility{
    flex-wrap: wrap;
    gap: 27px 2.25%;
    justify-content: center;
  }
}
@media screen and (max-width : 1279px){
  .sec_facility{
    padding-top: 70px;
  }
  .sec_facility .inner{
    width: 100%;
  }
  .sec_facility .txt_lead{
    font-size: 1rem;
  }
  .sec_facility .box_facility{
    margin-top: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .sec_facility .box_facility .list_facility{
    flex-direction: column;
  }
  .sec_facility .box_facility .list_facility .slick-track{
    margin-left: -10px;
  }
  .sec_facility .box_facility .list_facility .slick-list{
    overflow: visible;
  }
  .sec_facility .box_facility .list_facility .slick-list li{
    margin-left: 25px;
  }
  .sec_facility .box_facility .list_facility .slick-list li img{
    margin: 0 auto;
  }
  .sec_facility .box_facility .list_facility .slick-dots{
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .sec_facility .box_facility .list_facility .slick-dots button{
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: transparent;
    background-color: #e3e3e3;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    margin: 8px;
  }
  .sec_facility .box_facility .list_facility .slick-dots .slick-active button{
    background-color: var(--color-main);
  }
}

/* sec_plan
----------------------------------------------- */
.sec_plan{
  padding-top: 115px;
}
.sec_plan .area_plan{
  margin-top: 42px;
}
.sec_plan .area_plan .item_plan + .item_plan{
  margin-top: 60px;
}
.sec_plan .ttl_plan{
  font-size: 1.25rem;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 3px;
}
.sec_plan .scroll_area{
  position: relative;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 10px;
  background-size: 111px auto;
  scrollbar-color: var(--color-main) #E3E3E3;
  scrollbar-width: thin;
}
.sec_plan .scroll_area::-webkit-scrollbar{
  height:10px;
}
.sec_plan .scroll_area::-webkit-scrollbar{
  background: #E3E3E3;
}
.sec_plan .scroll_area::-webkit-scrollbar-thumb{
  background: var(--color-main);
  border-radius: 0;
}
.sec_plan .scroll_area > .table_plan{
  width: 1200px;
  margin-bottom: 10px;
}
.sec_plan .table_plan{
  color: var(--color-black);
  width: 100%;
  margin-top: 15px;
}
.sec_plan .table_plan th{
  background-color: #e8e8e8;
  font-weight: 700;
  text-align: center;
  border: solid 1px #172c61;
  font-size: 1.125rem;
  padding: 5px 10px;
  vertical-align: middle;
}
.sec_plan .table_plan th.bg_or{
  font-size: 0.9375rem;
  background-color: #fff2ea;
  padding: 2px 5px;
  width: 7.25%;
}
.sec_plan .table_plan td{
  border: solid 1px #172c61;
  background-color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 5px 10px;
  vertical-align: middle;
  height: 40px;
  text-align: center;
  line-height: 1.2;
}
.sec_plan .table_plan td.bg_ye{
  background-color: #fff1a2;
}
.sec_plan .table_plan td.textLeft{
  text-align: left;
}
.sec_plan .table_plan td .main{
  line-height: 1;
  font-size: 0.9375rem;
}
.sec_plan .table_plan td .sub{
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
}
.sec_plan .table_plan td .ico{
  width: 32px;
  vertical-align:text-top;
}
.sec_plan .box_bg{
  background-color: #fffef3;
  padding: 20px;
  margin-top: 40px;
}
.sec_plan .box_bg .txt_open{
  text-align: center;
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 500;
}
.sec_plan .pcmn_btn{
  margin-top: 66px;
}
@media screen and (max-width : 1279px){
  .sec_plan .area_plan{
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
  .sec_plan .area_plan .item_plan{
    width: 100%;
  }
}
@media screen and (max-width : 767px){
  .sec_plan{
    padding-top: 61px;
  }
  .sec_plan .area_plan{
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
  .sec_plan .area_plan .item_plan{
    width: 100%;
  }
  .sec_plan .area_plan .item_plan + .item_plan{
    margin-top: 40px;
  }
  .sec_plan .ttl_plan{
    letter-spacing: 2px;
  }
  .sec_plan .table_plan{
    margin-top: 10px;
  }
  .sec_plan .table_plan th{
    font-size: 0.8125rem;
    line-height: 1.4;
    vertical-align: middle;
    padding: 8px 10px;
  }
  .sec_plan .table_plan th.bg_or{
    font-size: 0.8125rem;
  }
  .sec_plan .table_plan td{
    font-size: 0.9375rem;
    padding: 8px 6px 6px;
    height: auto;
  }
  .sec_plan .table_plan td .sub{
    font-size: 0.8125rem;
  }
  .sec_plan .table_plan td .ico{
    width: 24px;
  }
  .sec_plan .box_bg{
    margin-top: 30px;
    padding: 16px 10px;
  }
  .sec_plan .box_bg .txt_open{
    font-size: 1.0625rem;
  }
  .sec_plan .pcmn_btn{
    margin-top: 25px;
  }
}

/* sec_contact
----------------------------------------------- */
@media screen and (min-width : 768px){
  .sec_contact{
    margin-top: 105px;
    background: url(/rakurakuen/img/bg_contact.jpg) no-repeat center/cover;
  }
  .sec_contact .area_contact{
    padding-top: 42px;
    padding-bottom: 40px;
    position: relative;
  }
  .sec_contact .area_contact::before{
    content: "";
    display: block;
    width: 272px;
    width: 18.88vw;
    height: 279px;
    background: url(/rakurakuen/img/img_contact.png)no-repeat bottom/contain;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .sec_contact .ttl img{
    display: block;
    max-width: 556px;
    margin-left: auto;
    margin-right: auto;
  }
  .sec_contact .contact{
    background: url(/rakurakuen/img/bg_hd_contact.jpg) no-repeat center/cover;
    max-width: 556px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 30px;
    gap: 33px;
    margin-top: 28px;
  }
  .sec_contact .contact .txt_contact{
    font-size: 1rem;
  }
  .sec_contact .contact .link_contact{
    font-size: 2.25rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    color: var(--color-black);
    font-family: var(--font-fjalla);
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width : 767px){
  .sec_contact{
    margin-top: 55px;
  }
  .sec_contact .inner{
    width: 100%;
  }
}

/* footer
----------------------------------------------- */
.ft_opening{
  color: var(--color-black);
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴPro", "Hiragino Kaku Gothic Pro", 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.ft_opening .wrap_ft{
  display: flex;
  gap: 1.583%;
  align-items: flex-end;
}
.ft_opening .wrap_ft .item_txt{
  width: 30.166%;
}
.ft_opening .wrap_ft .item_map{
  width: 68.25%;
}
.ft_opening .wrap_ft .item_map iframe{
  display: block;
}
.footer_local .inner{
  padding-left: 50px;
  padding-right: 50px;
}
.footer_local:before{
  content: none;
}
.footer_local .loc_info_addr{
  margin-top: 2px;
}
.footer_local .loc_info_tel{
  margin-top: 3px;
}
.footer_local .loc_info_time .top_info_time{
  margin-bottom: 8px;
  margin-top: 12px;
}
.footer_local .loc_info_time .time_table{
  padding: 13px 0;
}
.footer_local .loc_info_time .time_table .box_open > div + div{
  margin-top: 10px;
}
.footer_local .loc_info_time .time_table dt{
  background-color: #e8e8e8;
  text-align: center;
  width: 180px;
  padding: 8px 0;
  font-weight: 700;
}
.footer_local .loc_info_time .time_table dt:after{
  content: none;
}
.footer_local .loc_info_time .time_table dd{
  margin-left: 190px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width : 1279px){
.ft_opening .wrap_ft{
    flex-direction: column;
    gap: 30px;
  }
  .ft_opening .wrap_ft .item_txt{
    width: 100%;
    max-width: 500px;
    margin-right: auto;
  }
  .ft_opening .wrap_ft .item_map{
    width: 100%;
  }
}
@media screen and (max-width : 767px){
  .footer_local{
    border: none;
  }
  .footer_local .inner{
    padding-left: 0;
    padding-right: 0;
    padding-top: 55px;
  }
  .footer_local .loc_info_zip,
  .footer_local .loc_info_addr{
    font-size: 0.875rem;
  }
  .footer_local .loc_info_tel{
    margin-top: 16px;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .footer_local .loc_info_time{
    margin-top: 24px;
  }
  .footer_local .loc_info_time .top_info_time .time_caption{
    font-size: 1rem;
    font-weight: 700;
  }
  .footer_local .loc_info_time .time_table{
    margin-top: 14px;
  }
  .footer_local .loc_info_time .time_table .box_open > div{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer_local .loc_info_time .time_table .box_open > div + div{
    margin-top: 10px;
  }
  .footer_local .loc_info_time .time_table dt{
    width: 158px;
    font-size: 0.875rem;
    padding: 14px 0;
  }
  .footer_local .loc_info_time .time_table dd{
    margin-left: 0;
  }
}