.lowerHero__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.lowerHero {
  position: relative;
}

.lowerHero2{
    position: relative;
    height: 320px;
    overflow: hidden;
}

.lowerHero__img2{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    display: block;
}

.lowerHero__title {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
}

.lowerHero__title2 {
  position: absolute;
  left: 12%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
}


.lowerLeadSection{
  padding: 52px 0 120px;
}

.lowerLead{
  max-width: 1100px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .04em;
  color: #111;
}

.ippan_doc {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.ippan_doc a {
    min-width: 280px;
    padding: 18px 26px;
    border-radius: 999px;

    background: #fff;
    border: 2px solid #d9d9d9;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-decoration: none;

    transition: .3s;
}

.ippan_doc a:hover {
    background: #ccff00;
    border-color: #ccff00;
    transform: translateY(-3px);
}

.ippan_doc a i {
    font-size: 18px;
}


@media screen and (max-width: 768px){
  .ippan_doc{
    gap: 14px;
    margin-top: 36px;
    margin-bottom: 30px;
  }
   .ippan_doc a {
        width: 100%;
        max-width: 320px;
    }
  
  .lowerLeadSection{
    padding: 36px 0 80px;
  }
  .lowerLead{
    font-size: 14px;
    line-height: 2.1;
  }

  .lowerLead br{
    display: none;
  }

 .lowerHero__title2 {
   position: absolute;
   left: 12%;
   top: 50%;
   transform: translateY(-50%);
   color: #fff;
   font-size: clamp(34px, 4vw, 56px);
   font-weight: 900;
 }
}


.lowerFeatureBlock{
  padding: 40px 0 30px;
}

.featurePanel{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 120px;
}

.featurePanel__image{
  overflow: hidden;
  border-radius: 12px;
}

.featurePanel__image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.featurePanel__text{
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  margin-left: -70px;
  padding: 46px 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  backdrop-filter: blur(6px);
}

.featurePanel__text h3{
  margin-bottom: 22px;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
}

.featurePanel__text p{
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .04em;
}

.featurePanel--reverse .featurePanel__image{
  grid-column: 2;
  grid-row: 1;
}

.featurePanel--reverse .featurePanel__text{
  grid-column: 1;
  grid-row: 1;
  margin-left: auto;
  margin-right: -70px;
}

/* SP */
@media screen and (max-width: 768px){

  .lowerFeatureBlock{
    padding: 20px 0 0px;
  }

  .featurePanel,
  .featurePanel--reverse{
    display: block;
    margin-bottom: 70px;
  }

  .featurePanel__image img{
    height: 280px;
  }

  .featurePanel__text,
  .featurePanel--reverse .featurePanel__text{
    width: calc(100% - 75px);
    margin: -40px auto 0;
    padding: 30px 24px;
  }

  .featurePanel__text h3{
    font-size: 26px;
  }

  .featurePanel__text p{
    font-size: 14px;
    line-height: 1.9;
  }
}


/* 一般コース*/
.courseSection{
    padding: 50px 0;
}

.courseSection .sectionTitle{
    margin-bottom: 18px;
}

.courseSection .lowerTitle{
    margin-bottom: 24px;
}

.courseLead {
    width: fit-content;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #222;
}

.courseGrid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 115px;
    max-width: 825px;
    margin: 70px auto 0;
}

.courseCard__label{
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
}

.courseCard__label span{
    font-size: 14px;
}

.courseCard__inner{
    border-radius: 40px;
    padding: 50px 35px 30px;
    text-align: center;
}

.courseCard--day .courseCard__inner{
    background: #EFE3A0;
}

.courseCard--night .courseCard__inner{
    background: #A9DEF5;
}

.courseCard__day{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.15em;
}

.courseCard__time{
    margin-top: 5px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.courseCard__text{
    margin-top: 40px;
    font-size: 17px;
    line-height: 2;
    letter-spacing: 0.1em;
}

.courseCard__price{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.courseCard__priceLabel{
    font-size: 18px;
    font-weight: 700;
}

.courseCard__price strong{
    font-size: 43px;
    line-height: 1;
    font-weight: 700;
}

.courseCard__yen{
    font-size: 16px;
    font-weight: 700;
}

.courseCard__btn{
    width: 100%;
    max-width: 250px;
    height: 56px;
    margin: 40px auto 0;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F39A00;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s;
    gap: 30px;
    letter-spacing: 0.1em;
}

.courseCard--night .courseCard__btn{
    background: #0096D6;
}

.courseCard__btn:hover{
    opacity: .8;
}

.courseNotes{
    max-width: 825px;
    margin: 40px auto 0;
    letter-spacing: 0.12em;
}

.courseNotes p{
    font-size: 13px;
    line-height: 2;
    color: #666;
    padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width: 767px){

    .courseSection{
        padding: 80px 0;
    }

    .courseGrid{
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .courseCard__inner{
        padding: 40px 25px 25px;
        border-radius: 30px;
    }

    .courseCard__day{
        font-size: 34px;
    }

    .courseCard__time{
        font-size: 22px;
    }

    .courseCard__price strong{
        font-size: 42px;
    }

}


/* =================================
coachSection
================================= */

.coachSection{
    padding: 120px 0;
}

.coachCard{
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    background: #dcecff;
    min-height: 360px;
}

.coachCard__image{
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
}

.coachCard__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coachCard__content{
    position: relative;
    z-index: 2;
    width: 40%;
    background: #fff;
    border-radius: 20px;
    padding: 34px 34px;
    margin-top: 18px;
    margin-left: 28px;
    margin-bottom: 18px;
}

.coachCard__sub{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .08em;
}

.coachCard__title{
    margin-top: 14px;
    font-size: 30px;
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.coachCard__name{
    margin-top: 5px;
    font-size: 16px;
    font-weight: 700;
}

.coachCard__name span{
    font-size: 13px;
}

.coachCard__text{
    margin-top: 13px;
}

.coachCard__text p{
    font-size: 16px;
    line-height: 2;
}

.coachCard__text p + p{
    margin-top: 18px;
}

.coachCard__license{
    margin-top: 22px;
}

.coachCard__license p{
    font-size: 11px;
    line-height: 2;
}

/* =========================
SP
========================= */

@media screen and (max-width: 767px){

    .coachSection{
        padding: 20px 0;
    }

    .coachCard{
        position: relative;
        border-radius: 24px;
        overflow: visible;
        background: none;
    }

    .coachCard__image{
        position: relative;
        width: 100%;
        height: 280px;
    }

    .coachCard__image img{
        border-radius: 24px;
    }

    .coachCard__content{
        position: relative;
        width: calc(100% - 85px);
        margin: -70px auto 0;
        padding: 28px 24px;
        border-radius: 24px;
        background: #fbfbfb;
        z-index: 2;
    }

    .coachCard__sub{
        font-size: 12px;
    }

    .coachCard__title{
        margin-top: 14px;
        font-size: 18px;
        line-height: 1.7;
    }

    .coachCard__name{
        margin-top: 18px;
        font-size: 15px;
    }

    .coachCard__name span{
        font-size: 12px;
    }

    .coachCard__text{
        margin-top: 18px;
    }

    .coachCard__text p{
        font-size: 13px;
        line-height: 2;
    }

    .coachCard__license{
        margin-top: 20px;
    }

    .coachCard__license p{
        font-size: 11px;
        line-height: 1.8;
    }
}



.juniorFeature{
    padding-top: 40px;
    padding-bottom: 120px;
}

.juniorFeatureList{
    margin-top: 80px;
}

.juniorFeatureItem{
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
}

.juniorFeatureItem + .juniorFeatureItem{
    margin-top: 120px;
}

/* circle */
.juniorFeatureCircle{
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.juniorFeatureItem--01{
    width: 900px;
    min-height: 430px;
    margin: 0 auto;
}

.juniorFeatureItem--01 .juniorFeatureCircle--orange{
    position: absolute;
    left: 0px;
    top: -40px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(247, 218, 190, .65);
    z-index: 1;
}

.juniorFeatureCircle--green{
    width: 320px;
    height: 320px;
    background: rgba(166, 231, 214, .45);
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
}


/* image */

.juniorFeatureItem--01 .juniorFeatureImg{
    position: absolute;
    left: 55px;
    top: 85px;
    width: 390px;
    z-index: 2;
}

.juniorFeatureImg img{
    width: 100%;
    display: block;
}


/* text */

.juniorFeatureItem--01 .juniorFeatureText{
    position: absolute;
    right: 90px;
    top: 145px;
    width: 320px;
    z-index: 3;
}

.juniorFeatureItem--01 .juniorFeatureText::before{
    content: "";
    position: absolute;
    left: -35px;
    top: -265px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(239, 174, 162, .65);
    z-index: -1;
}

.juniorFeatureText h3{
    font-size: 23px;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.05em;
}

.juniorFeatureText p{
    margin-top: 24px;
    font-size: 15px;
    line-height: 2;
}


/* reverse */
.juniorFeatureItem--left{
    justify-content: flex-end;
}


.juniorFeatureItem--01 .juniorFeatureText h3,
.juniorFeatureItem--01 .juniorFeatureText p{
    position: relative;
    top: -160px;
}

.juniorFeatureText p{
    margin-top: 18px;
}


/* green item */
.juniorFeatureItem--left{
    position: relative;
    width: 900px;
    min-height: 430px;
    margin: 120px auto 0;
}

.juniorFeatureItem--left .juniorFeatureText{
    position: absolute;
    left: 90px;
    top: 120px;
    width: 330px;
    z-index: 3;
}

.juniorFeatureItem--left .juniorFeatureImg{
    position: absolute;
    right: 120px;
    top: 180px;
    width: 305px;
    z-index: 2;
}

/* 小さい緑丸 */
.juniorFeatureCircle--greenSmall{
    position: absolute;
    left: 54px;
    top: 0px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(166, 231, 214, .55);
    z-index: 1;
}

/* 大きい緑丸 */
.juniorFeatureItem--left .juniorFeatureCircle--green{
    position: absolute;
    right: 20px;
    top: 290px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(166, 231, 214, .35);
    z-index: 1;
}


@media screen and (max-width: 767px){
    .juniorFeature{
        padding: 10px 0;
    }
    .juniorFeatureList{
        margin-top: 0px;
    }
    .juniorFeatureItem{
        display: block;
    }
    .juniorFeatureItem + .juniorFeatureItem{
        margin-top: 80px;
    }
    /*
    .juniorFeatureCircle{
        width: 220px;
        height: 220px;
        left: 50%;
        right: auto;
        top: 80px;
        transform: translateX(-50%);
    }
    */
    .juniorFeatureImg{
        width: 220px;
        margin: 0 auto;
    }
    .juniorFeatureText{
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
    .juniorFeatureText h3{
        font-size: 28px;
    }
    .juniorFeatureText p{
        font-size: 14px;
        line-height: 2;
    }
}
@media screen and (max-width: 767px){

    .juniorFeatureItem--01,
    .juniorFeatureItem--left{
        width: 100%;
        min-height: auto;
        margin: 0 auto;
    }

    .juniorFeatureItem--01 .juniorFeatureImg,
    .juniorFeatureItem--01 .juniorFeatureText,
    .juniorFeatureItem--left .juniorFeatureImg,
    .juniorFeatureItem--left .juniorFeatureText{
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
    }

    .juniorFeatureItem--01 .juniorFeatureText h3,
    .juniorFeatureItem--01 .juniorFeatureText p{
        top: auto;
    }

    .juniorFeatureItem--01 .juniorFeatureText::before{
        /*display: none;*/
    }

}


.jCourseArea{
    padding: 40px 0 120px;
}

.jCourseList{
    max-width: 1000px;
    margin: 0 auto;
}

.jCourseBlock + .jCourseBlock{
    margin-top: 90px;
}

.jCourseBlock__title{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: .1em;
}

.jCourseBlock__title span{
    margin-left: 18px;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.1em
}

.jCourseBlock__text{
    margin-top: 22px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: .05em;
}

.jCourseBlock__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
}

.jCourseBlock__info{
    display: flex;
    gap: 18px;
}

.jCourseBlock__info li{
    min-width: 130px;
    padding: 11px 22px;
    border: 1px solid #bbb;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.1em;
}

.jCourseBlock__info li img{
    width: 24px;
    height: auto;
    display: block;
}

.jCourseBlock__info small{
    font-size: 11px;
}

.jCourseBlock__btn{
    width: 250px;
    height: 56px;
    border-radius: 999px;
    background: #42a9cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    gap: 30px;
}

@media screen and (max-width: 767px){
    .sectionTitle {
        text-align: center;
        font-size: clamp(28px, 4vw, 56px);
        margin-bottom: 50px;
        font-weight: 800;
    }
    .juniorFeatureItem--01{
        padding-top: 0px;
    }

    .juniorFeatureItem--01 .juniorFeatureText::before{
        display: block;
        width: 250px;
        height: 250px;
        left: 27%;
        top: -100px;
        transform: translateX(-10%);
    }
    
	.juniorFeatureItem--01 .juniorFeatureCircle--orange{
	    width: 300px;
	    height: 300px;
	    left: 50%;
	    top: -46px;
	    transform: translateX(-50%);
	}
    .juniorFeatureItem--left .juniorFeatureCircle--green{
        width: 300px;
        height: 300px;
        right: auto;
        left: 50%;
        top: 305px;
        transform: translateX(-50%);
    }
	.juniorFeatureCircle--greenSmall{
	    position: absolute;
	    left: 15px;
	    top: 0px;
	    width: 400px;
	    height: 400px;
	    border-radius: 50%;
	    background: rgba(166, 231, 214, .55);
	    z-index: 1;
	}
   .juniorFeatureItem--left .juniorFeatureImg{
       position: relative;
       right: auto;
       top: auto;
       width: 180px;
       margin: 30px auto 0;
   }
    .jCourseArea{
        padding: 5px 0 80px;
    }

    .jCourseBlock + .jCourseBlock{
        margin-top: 70px;
    }

    .jCourseBlock__title{
        font-size: 24px;
        line-height: 1.5;
    }

    .jCourseBlock__title span{
        display: block;
        margin: 8px 0 0;
        font-size: 14px;
    }

    .jCourseBlock__bottom{
        display: block;
        margin-top: 24px;
    }

    .jCourseBlock__info{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .jCourseBlock__info li{
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .jCourseBlock__btn{
        width: 100%;
        margin-top: 18px;
        font-size: 21px;
    }

    .juniorFeatureItem--left{
        display: flex;
        flex-direction: column;
    }

    .juniorFeatureItem--left .juniorFeatureImg{
        order: 1;
    }

    .juniorFeatureItem--left .juniorFeatureText{
        order: 2;
    }
   .juniorFeatureItem--left .juniorFeatureText,
   .juniorFeatureItem--left .juniorFeatureImg{
       position: relative;
       left: auto;
       right: auto;
       top: auto;
       width: 80%;
   }
}

.lessonFixedBtn {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;

  width: 72px !important;
  height: 265px !important;
  padding: 26px 0 24px !important;
  box-sizing: border-box !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;

  border-radius: 999px;
  background: #ccff00;
  text-decoration: none;
}

.lessonFixedBtn__text {
  writing-mode: vertical-rl;
  line-height: 1.55 !important;
  letter-spacing: 0.08em;
  font-size: 16px !important;
  font-weight: 700;
  white-space: nowrap;
}

.lessonFixedBtn__icon {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 auto;
}

.lessonFixedBtn__icon img {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 768px) {

    .lessonFixedBtn {
        right: 10px;
    }

}