@charset "utf-8";

/*========= モーダル表示のためのCSS ===============*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

.modal {
  display: block;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  /*実際に透明で存在しているからサイズが確定する*/
  pointer-events: none;
  /*触れないように*/
  transition: opacity 1s;
  /*1秒フェード*/
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modaal-close:focus, .modaal-close:hover {
  background: none !important;
}

/*ポップアップ共通css*/
.modaal-container {
  width: 90% !important;
  max-width: 1090px !important;
  border-radius: 40px;
  padding: 10px 0;
}

.modaal-content-container {
  max-height: 80vh !important;
  overflow: scroll;
  padding: 0 !important;
}

.modaal-close {
  width: 50px !important;
  position: absolute !important;
  top: -60px !important;
  right: 0 !important;
  border-radius: 50% !important;
  border: solid 1px #FFF !important;
}

.modaal-close:after, .modaal-close:before {
  width: 5px !important;
  height: 35px !important;
  background: #fff !important;
  top: 7px !important;
  left: 22px !important;
}

.popInner {
  width: 90%;
  max-width: 700px;
  padding: 50px 0;
  margin: 0 auto;
}

@media screen and (max-width: 820px) {
  .modaal-container {
    top: 50px;
    border-radius: 15px;
  }

  .modaal-content-container {
    max-height: 70vh !important;
  }

  .popInner {
    max-width: 100%;
    padding: 30px 0;
  }

  .modaal-close {
    width: 40px !important;
    height: 40px !important;
    top: -55px !important;
  }

  .modaal-close:after, .modaal-close:before {
    width: 3px !important;
    height: 25px !important;
    top: 6px !important;
    left: 18px !important;
  }
}

/*ポップアップ内の記述*/
/*=========================================================================================*/
/*step*/
#step {
  max-width: 920px;
}

#step .titleBox p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--main-color);
  position: relative;
  z-index: 1;
}

#step .titleBox h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
}

#step .titleBox h2 span {
  font-size: 50px;
}

#step .titleBox h2+p {
  font-family: var(--text-font);
  font-weight: 400;
  color: var(--text-color);
  margin: 0 0 40px;
}

@media screen and (max-width: 820px) {
  #step .titleBox::before {
    width: 110%;
    height: 190px;
  }

  #step .titleBox p {
    font-size: 14px;
  }

  #step .titleBox h2 {
    font-size: 24px;
    margin: 0 0 10px;
  }

  #step .titleBox h2 span {
    font-size: 36px;
  }

  #step .titleBox h2+p {
    width: 90%;
    max-width: fit-content;
    font-size: 14px;
    letter-spacing: 0.14em;
    line-height: 1.68;
    text-align: left;
    margin: 0 auto 35px;
  }
}

.step {
  max-width: 820px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step li {
  display: flex;
  align-items: flex-start;
}

.step li:nth-child(even) {
  flex-direction: row-reverse;
}

.step li div {
  width: 50%;
  padding: 0 0 50px;
}

.step li div.dot::after {
  width: 7px;
  height: calc(100% - 50px);
  background: radial-gradient(circle farthest-side, #cccccc, #cccccc 40%, transparent 40%, transparent);
  background-size: 7px 9px;
  position: absolute;
  top: 55px;
  transform: none;
  left: -4px;
}

.step li:nth-child(odd) div.dot::after {
  right: -4px;
  left: auto;
}

.step li div img {
  display: block;
  max-width: 275px;
  border-radius: 20px 0 20px 0;
  margin: 0 auto;
}

.step li dl {
  width: 50%;
}

.step li dl dt {
  border-bottom: solid 2.4px var(--main-color);
  position: relative;
  margin: 0 0 15px;
}

.step li dl dt::before {
  display: block;
  content: "";
  width: 36px;
  height: 36px;
  background: left / cover no-repeat url("../img/step-title-bg.svg");
  position: absolute;
  left: -18px;
  bottom: -2.4px;
}

.step li:nth-child(even) dl dt::before {
  transform: scale(-1, 1);
  left: auto;
  right: -18px;
}

.step li dl dt p {
  font-family: var(--sub-font);
  font-size: 24px;
  color: var(--main-color);
  padding: 0 30px;
}

.step li dl dd {
  font-size: 14px;
  padding: 0 30px;
}

@media screen and (max-width: 820px) {
  .step {
    max-width: 340px;
  }

  .step li {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .step li:nth-child(even) {
    flex-direction: column-reverse;
  }

  .step li div, .step li dl {
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
  }

  .step li div,
  .step li dl {
    width: calc(100% - 60px);
    max-width: 290px;
    padding: 0;
    margin: 0 0 20px auto;
  }

  .step li div.dot::after {
    width: 7px;
    height: calc(100% + 90px);
    top: auto;
    bottom: 0;
    left: -35px;
  }

  .step li:nth-child(odd) div.dot::after {
    right: auto;
    left: -35px;
  }

  .step li:nth-child(1) div.dot::after {
    height: calc(100% + 80px);
  }

  .step li:nth-child(2) div.dot::after {
    height: calc(100% + 75px);
  }

  .step li:nth-child(3) div.dot::after {
    height: calc(100% + 65px);
  }

  .step li:nth-child(4) div.dot::after {
    height: calc(100% + 35px);
  }

  .step li:nth-child(5) div.dot::after {
    height: calc(100% + 65px);
  }

  /*    .step li div.dot::after{
        width: 7px;
        height: calc( 100% + 90px );
        top: auto;
        bottom: 0;
        left: -35px;
    }
    .step li:nth-child(odd) div.dot::after{
        right: auto;
        left: -35px;
    }
    .step li:nth-child(1) div.dot::after{
        height: calc( 100% + 65px );
    }*/
  .step li div img {
    max-width: 100%;
    border-radius: 15px 0 15px 0;
  }

  .step li dl dt {
    width: calc(100% + 20px);
    margin: 0 0 10px;
    position: relative;
    left: -20px;
    padding: 0 0 0 20px;
  }

  .step li dl dt::before {
    width: 36.5px;
    height: 36.5px;
    left: -30px;
    bottom: -2px;
  }

  .step li:nth-child(even) dl dt::before {
    transform: scale(1, 1);
    right: auto;
    left: -30px;
  }

  .step li dl dt p {
    font-size: 21px;
    padding: 0;
  }

  .step li dl dd {
    padding: 0;
  }
}

#step .attention {
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

#step .circleColumn {
  margin: 0 auto;
}

#step .circleColumn+p {
  text-align: center;
}

#step .circleColumn li h4+p {
  text-align: left;
}

/**/
.popInner .circleColumn li img {
  border: solid 13px #f0f7fc;
}

.pop_01 .circleColumn li {
  width: 100%;
  max-width: 220px;
}

/**/
.circleColumn+div {
  align-items: inherit;
  max-width: 712px;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px auto 0;
}

.circleColumn+div img {
  width: 203px;
}

.circleColumn+div p {
  display: flex;
  align-items: center;
  width: calc(100% - 203px);
  font-size: 13px;
  text-align: left;
  color: #7c7c7c;
  padding: 20px 30px;
  background: #FFF;
}

@media screen and (max-width: 620px) {
  #step .attention {
    padding: 50px 15px;
  }

  .circleColumn+div {
    padding: 20px;
    background: #FFF;
  }

  .circleColumn+div img {
    width: 100%;
    border-radius: 15px;
    margin: 0 0 15px;
  }

  .circleColumn+div p {
    width: 100%;
    padding: 0;
  }
}

#step .attention+p {
  text-align: center;
  margin: 20px auto;
}

/*=========================================================================================*/
/*voice*/
#voice {
  max-width: 650px;
}

#voice .nameData {
  padding: 25px 30px;
  border-radius: 30px;
  background: #f0f7fc;
  margin: 0 auto 30px;
}

#voice .nameData img {
  width: 250px;
  border: solid 12px #FFF;
  border-radius: 30px 0 30px 0;
}

#voice .nameData ul {
  width: calc(100% - 300px);
}

#voice .nameData ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 17px;
}

#voice .nameData ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 17px;
  font-size: 13px;
  color: #FFF;
  background: var(--main-color);
  border-radius: 10px;
}

#voice .nameData ul li p {
  width: calc(100% - 100px);
}

#voice .nameData+p {
  margin: 0 auto 30px;
}

/**/
.gallery h4 {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 20px;
}

.gallery ul li {
  width: 32.5%;
  margin: 0 0 10px;
}

.gallery ul li img {
  border-radius: 0 15px 0 15px;
}

.gallery ul li:nth-child(2) img,
.gallery ul li:nth-child(4) img {
  border-radius: 15px 0 15px 0;
}

@media screen and (max-width: 820px) {
  #voice .nameData ul li {
    margin: 0 0 10px;
  }

  #voice .nameData ul li:last-child {
    margin: 0;
  }

  #voice .nameData img {
    margin: 0 0 10px;
  }

  #voice .nameData ul {
    width: 100%;
  }

  .gallery ul li {
    width: 49%;
  }
}

/*3つの特典
.pop_01 ul + p{
    width: fit-content;
    font-size: 15px;
    border-radius: 20px;
    padding: 7px 30px;
    background: #f0f7fc;
    margin: 0 auto;
}
/*費用の詳細*/
.dataList dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 10px;
  padding: 20px 30px;
  background: #f0f7fc;
}

.dataList dl:nth-child(even) {
  background: #FFF;
}

.dataList dl dt {
  display: flex;
  align-items: center;
  width: 210px;
  font-size: 13px;
  font-weight: 600;
}

.dataList dl dd {
  width: calc(100% - 210px);
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.dataList dl dd span {
  color: var(--main-color);
}

@media screen and (max-width: 820px) {
  .dataList dl dt {
    width: 100%;
  }

  .dataList dl dd {
    width: 100%;
  }
}

/*=========================================================================================*/
/*voice*/
.pop_03.popInner {
  max-width: 650px;
}

.pop_03 ul {
  padding: 0 0 30px;
  border-bottom: solid 1px #ccc;
  margin: 0 0 30px;
}

.pop_03 ul:last-child {
  padding: 0;
  border-bottom: none;
  margin: 0;
}

.pop_03 ul li+li {
  margin: 30px 0 0;
}

.pop_03 ul li .imgBox {
  max-width: 297px;
  margin: 0;
}

.pop_03 ul li .imgBox img {
  border-radius: 30px 0 30px 0;
}

.pop_03 .imageSlider img {
  border-radius: 30px 0 30px 0;
}

.pop_03 .slick-prev, .pop_03 .slick-next {
  display: block;
  width: 37px;
  height: 37px;
}

.pop_03 .slick-prev {
  left: -18px;
}

.pop_03 .slick-next {
  right: -18px;
}

.pop_03 .slick-prev::before, .pop_03 .slick-next::before {
  width: 5.5px;
  height: 13px;
  left: 15px;
}

.pop_03 .slick-next::before {
  transform: rotate(180deg);
  left: auto;
  right: -18px;
}

.pop_03 ul li .textBox {
  max-width: 310px;
}

.pop_03 h4 {
  display: flex;
  align-items: center;
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--sub-color);
  margin: 0 0 20px;
}

.pop_03 h4::before {
  display: inline-block;
  content: "";
  width: 3px;
  height: 18px;
  border-bottom-left-radius: 1px;
  background: var(--sub-color);
  margin: 0 10px 0 0;
}

.pop_03 h5 {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--main-color);
}

.pop_03 h5::before {
  display: inline-block;
  content: "";
  width: 14px;
  height: 14px;
  background: center / contain no-repeat url("../img/logo-mark.svg");
  margin: 0 8px 0 0;
  position: relative;
  top: 1px;
}

.pop_03 h5+p {
  font-size: 14px;
  margin: 15px 0 10px;
}

.pop_03 .dataList dl {
  padding: 10px 15px;
}

.pop_03 .dataList dl dt {
  width: 55px;
}

.pop_03 .dataList dl dd {
  width: 190px;
}

.pop_03 li:nth-child(2) h4:nth-child(1) {
  margin: 0 0 10px;
}

@media screen and (max-width: 820px) {
  .pop_03 h4 {
    font-size: 18px;
  }

  .pop_03 ul {
    max-width: 320px;
  }

  .pop_03 ul li .imgBox {
    width: 100%;
    margin: 0 auto 20px;
  }

  .pop_03 ul li .textBox {
    width: 100%;
  }
}

/**/
.pop_04 .dataList dl dt,
.pop_05 .dataList dl dt {
  width: 80px;
  text-align: left;
}

.pop_04 .dataList dl dd,
.pop_05 .dataList dl dd {
  width: calc(100% - 110px);
}

@media screen and (max-width: 600px) {

  .pop_04 .dataList dl dt,
  .pop_05 .dataList dl dt,
  .pop_04 .dataList dl dd,
  .pop_05 .dataList dl dd {
    width: 100%;
  }
}

.map {
  display: block;
  text-decoration: underline;
  color: var(--sub-color);
}

.map::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 13px;
  background: center / contain no-repeat url("../img/icon-map.svg");
  margin: 0 5px 0 0;
  position: relative;
  top: 2px;
}

.link::after {
  display: inline-block;
  content: "";
  width: 13px;
  height: 13px;
  background: center / contain no-repeat url("../img/icon-link.svg");
  margin: 0 0 0 5px;
  position: relative;
  top: 1px;
}

.schedule {
  position: relative;
  padding: 0 0 0 20px;
}

.schedule::before {
  display: inline-block;
  content: "";
  height: calc(100% - 50px);
  border-left: solid 1px #cccccc;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

.schedule li {
  position: relative;
}

.schedule li:nth-child(1)::before {
  display: inline-block;
  content: "";
  width: 14px;
  height: 14px;
  background: center / contain no-repeat url("../img/icon-sun.svg");
  position: absolute;
  top: 2px;
  left: -26px;
}

.schedule li:last-child::before {
  display: inline-block;
  content: "";
  width: 11px;
  height: 11px;
  background: center / contain no-repeat url("../img/icon-moon.svg");
  position: absolute;
  bottom: 2px;
  left: -26px;
}

/*==================================================
202412_pop03
===================================*/
.pop_03.repop03 ul li .imgBox{
  max-width: 600px;
  margin: 0 auto;
}
.pop_03.repop03 ul{
  border-bottom: 0;
      margin: 0;
}

/*=========================================================================================*/
/*年末年始短期留学プランの記述-ID名にplanを起用してください*/
/*
#plan .titleBox{
    color: #FFF;
}
#plan .titleBox p{
    font-size: 18px;
    letter-spacing: 0.18em;
    text-align: center;
    margin: 0 0 10px;
}
#plan .titleBox h2{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 30px;
}
#plan .titleBox span{
    margin: 0 3px;
}
#plan .titleBox span:nth-child(1){
    font-size: 63px;
}
#plan .titleBox span:nth-child(2){
    font-size: 26px;
}
@media screen and (max-width: 820px) {
    #plan .titleBox p{
        margin: 0 0 15px;
    }
    #plan .titleBox h2{
        font-size: 16px;
    }
    #plan .titleBox span:nth-child(1){
        font-size: 34px;
    }
    #plan .titleBox span:nth-child(2){
        font-size: 14px;
    }
    #plan .titleBox span {
        margin: 0 1px;
    }
}
/**/
/*
#plan .inner{
    padding: 45px 0;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.10);
    background: #FFF;
}
#plan dl{
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 710px;
    height: 90px;
    border: solid 1px #eeeeee;
    border-radius: 15px;
    margin: 0 auto 5px;
}
#plan dl dt{
    align-content: center;
    justify-content: center;
    width: 184px;
    height: inherit;
    color: var(--main-color);
    background: #f0f7fc;
    position: relative;
}
#plan dl dt::after{
    display: block;
    content: "";
    border-top: 45px solid transparent;
    border-bottom: 45px solid transparent;
    border-left: 25px solid #f0f7fc;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}
#plan dl dt p{
    height: 40px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
}
#plan .dot::after{
    width: 78%;
}
#plan dl dt span{
    font-family: var(--sub-font);
    font-size: 13px;
    text-align: center;
}
#plan dl dd{
    width: calc( 100% - 184px );
    padding: 0 0 0 105px;
}
#plan dl dd p{
    letter-spacing: 0.06em;
}
#plan dl dd span{
    font-size: 13px;
    letter-spacing: 0.06em;
    color: #848484;
}
#plan .btn{
    width: 90%;
    margin: 40px auto 0;
}
@media screen and (max-width: 1000px) {
    #plan dl dd {
        padding: 0 0 0 60px;
    }
}
@media screen and (max-width: 768px) {
    #plan .inner{
        padding: 30px 0 40px;
        border-radius: 25px;
    }
    #plan dl{
        flex-wrap: wrap;
        height: auto;
        margin: 0 auto 10px;
        overflow: hidden;
    }
    #plan dl dt{
        width: 100%;
        height: 50px;
    }
    #plan dl dt::after{
        border-bottom: none;
        border-top: 27px solid #f0f7fc;
        border-right: 280px solid transparent;
        border-left: 280px solid transparent;
        right: auto;
        top: auto;
        bottom: -27px;
        left: 50%;
        transform: translateX(-50%);
    }
    #plan dl dt p,
    #plan dl dt span{
        position: relative;
        top: 10px;
        z-index: 1;
    }
    #plan dl dt p{
        height: 32px;
        font-size: 14px;
    }
    #plan .dot::after{
        width: 50%;
    }
    #plan dl dt span{
        line-height: 1.2;
    }
    #plan dl dd{
        width: 100%;
        padding: 33px 10px 20px;
    }
    #plan dl dd p{
        font-size: 15px;
        font-weight: 700;
        text-align: center;
    }
    #plan dl dd span{
        display: block;
        text-align: center;
    }
    #plan .btn{
        margin: 30px auto 0;
    }
}
