/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    background-image: url("../img/lp-20250712/img_bg.png");
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    cursor: pointer;
    word-wrap:break-word;
}
*:focus{
    outline: none;
}
.ly_wrapper{
    width: 100%;
    overflow: hidden!important;
}

/*--------------------------------------------------------
    共通
--------------------------------------------------------*/
/* コンテナ */
.bl_cont{
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1400px;
}
@media (min-width:768px){
    .bl_cont{
        padding: 0 30px;
    }
}
@media (min-width:1450px){
    .bl_cont{
        padding: 0;
    }
}

/* 見出し */
.bl_cont h2{
    font-size: 20px;
    margin: 0 auto 30px;
}
.bl_cont h2 span{
    color: #00a180;
    display: block;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
}
@media (min-width:768px){
    .bl_cont h2{
        font-size: 28px;
    }
    .bl_cont h2 span{
        font-size: 60px;
    }
}
@media (min-width:1200px){
    .bl_cont h2{
        font-size: 30px;
    }
    .bl_cont h2 span{
        font-size: 80px;
    }
}

/* ボタン */
.bl_cont .el_btn{
    color: #fff;
    background-color: #00a180;
    border-radius: 15px;
    display: block;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 220px;
    margin: 40px auto 0;
    height: auto;
    padding: 10px;
    position: relative;
}
.bl_cont .el_btn::after{
    background-image: url("../img/lp-20250712/icon_arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
}

/* フェードイン */
.fadein{
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s;
}
.fadein.active{
    opacity: 1;
    transform: translateY(0);
}
@media (min-width:768px){
    .fadein:nth-child(2){
        -moz-transition-delay: 200ms;
        -webkit-transition-delay: 200ms;
        -o-transition-delay: 200ms;
        -ms-transition-delay: 200ms;
        transition-delay: 200ms;
    }
    .fadein:nth-child(3){
        -moz-transition-delay: 400ms;
        -webkit-transition-delay: 400ms;
        -o-transition-delay: 400ms;
        -ms-transition-delay: 400ms;
        transition-delay: 400ms;
    }
    .fadein:nth-child(4){
        -moz-transition-delay: 600ms;
        -webkit-transition-delay: 600ms;
        -o-transition-delay: 600ms;
        -ms-transition-delay: 600ms;
        transition-delay: 600ms;
    }
    .fadein:nth-child(5){
        -moz-transition-delay: 800ms;
        -webkit-transition-delay: 800ms;
        -o-transition-delay: 800ms;
        -ms-transition-delay: 800ms;
        transition-delay: 800ms;
    }
    .fadein:nth-child(6){
        -moz-transition-delay: 1200ms;
        -webkit-transition-delay: 1200ms;
        -o-transition-delay: 1200ms;
        -ms-transition-delay: 1200ms;
        transition-delay: 1200ms;
    }
    .fadein:nth-child(7){
        -moz-transition-delay: 1400ms;
        -webkit-transition-delay: 1400ms;
        -o-transition-delay: 1400ms;
        -ms-transition-delay: 1400ms;
        transition-delay: 1400ms;
    }
    .fadein:nth-child(8){
        -moz-transition-delay: 1600ms;
        -webkit-transition-delay: 1600ms;
        -o-transition-delay: 1600ms;
        -ms-transition-delay: 1600ms;
        transition-delay: 1600ms;
    }
    .fadein:nth-child(9){
        -moz-transition-delay: 1800ms;
        -webkit-transition-delay: 1800ms;
        -o-transition-delay: 1800ms;
        -ms-transition-delay: 1800ms;
        transition-delay: 1800ms;
    }
    .fadein:nth-child(10){
        -moz-transition-delay: 2000ms;
        -webkit-transition-delay: 2000ms;
        -o-transition-delay: 2000ms;
        -ms-transition-delay: 2000ms;
        transition-delay: 2000ms;
    }
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
.ly_header{
    position: relative;
}

/* ロゴ */
.ly_header .el_logo{
    position: absolute;
    left: 20px;
    top: 20px;
    max-width: 300px;
    width: 40%;
    z-index: 999;
}
@media (min-width:768px){
    .ly_header .el_logo{
        width: 180px;
    }
}
@media (min-width:1024px){
    .ly_header .el_logo{
        width: 270px;
    }
}
@media (min-width:1200px){
    .ly_header .el_logo{
        width: 300px;
    }
}

/* メイン画像 */
.bl_mainCont{
    width: 100%;
}
.bl_mainCont .pc{
    display: none;
}
.bl_mainCont .pc,
.bl_mainCont .sp{
    position: relative;
}
.bl_mainCont img{
    width: 100%;
}
.bl_mainCont .el_title{
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}
@media (min-width:768px){
    .bl_mainCont .sp{
        display: none;
    }
    .bl_mainCont .pc{
        display: block;
    }
    .bl_mainCont .el_title{
        bottom: -8%;
    }
}

/*--------------------------------------------------------
    共通部分
--------------------------------------------------------*/
/* 背景色 */
.bl_bgB,
.bl_bgY,
.bl_bgP{
    padding: 80px 15px;
}
.bl_bgB{
    background-color: #6c9bd2;
}
.bl_bgY{
    background-color: #fff67f;
}
.bl_bgP{
    background-color: #e25f9e;
}
@media (min-width:768px){
    .bl_bgB,
    .bl_bgY,
    .bl_bgP{
        padding: 80px 30px;
    }
}
@media (min-width:1024px){
    .bl_bgB,
    .bl_bgY,
    .bl_bgP{
        padding: 120px 30px;
    }
}
@media (min-width:1200px){
    .bl_bgB,
    .bl_bgY,
    .bl_bgP{
        padding: 160px 30px;
    }
}
@media (min-width:1600px){
    .bl_bgB,
    .bl_bgY,
    .bl_bgP{
        padding: 160px 0;
    }
}

/* borderあり */
.bl_borderCont{
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}
.bl_borderCont+.bl_borderCont{
    margin-top: 80px;
}
.bl_borderCont::before{
    border: 3px solid #000;
    border-radius: 15px;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: -1;
}
.bl_borderCont.blue::before{
    background-color: #6c9bd2;
}
.bl_borderCont.yellow::before{
    background-color: #fff67f;
}
.bl_borderCont.pink::before{
    background-color: #e25f9e;
}
.bl_borderInner{
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 40px 15px;
}
@media (min-width:768px){
    .bl_borderCont+.bl_borderCont{
        margin-top: 100px;
    }
    .bl_borderCont::before{
        border-radius: 30px;
        bottom: -15px;
        right: -15px;
    }
    .bl_borderInner{
        border-radius: 30px;
        padding: 40px 30px;
    }
}
@media (min-width:1024px){
    .bl_borderCont+.bl_borderCont{
        margin-top: 120px;
    }
    .bl_borderInner{
        padding: 60px 40px;
    }
}
@media (min-width:1200px){
    .bl_borderCont+.bl_borderCont{
        margin-top: 140px;
    }
}

/* マーカー */
.el_borderBlue,
.el_borderYellow,
.el_borderPink{
    display: inline;
}
.el_borderBlue{
    background: linear-gradient(transparent 70%, #6c9bd280 30%);
}
.el_borderYellow{
    background: linear-gradient(transparent 70%, #fff67f 30%);
}
.el_borderPink{
    background: linear-gradient(transparent 70%, #e25f9e80 30%);
}

/* 下線 */
.el_lineBlue,
.el_lineYellow,
.el_linePink{
    padding-bottom: 5px;
}
.el_lineBlue{
    border-bottom: 2px solid #6c9bd2;
}
.el_lineYellow{
    border-bottom: 2px solid #fff67f;
}
.el_linePink{
    border-bottom: 2px solid #e25f9e;
}

/* フォントカラー */
.el_fcBlue{
    color: #6c9bd2;
}
.el_fcYellow{
    color: #fff67f;
}
.el_fcPink{
    color: #e25f9e;
}

/*--------------------------------------------------------
    スケジュール
--------------------------------------------------------*/
.schedule{
    margin-top: 40px;
}
.schedule .bl_borderInner{
    padding-top: 60px;
}
@media (min-width:768px){
    .schedule{
        margin-top: 60px;
    }
    .schedule .bl_borderInner{
        padding-top: 80px;
        position: relative;
    }
    .schedule .bl_borderInner::after{
        background-image: url("../img/lp-20250712/img_schedule-bf.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        content: '';
        display: block;
        width: 150px;
        height: 150px;
        position: absolute;
        top: -80px;
        right: 0;
    }
}
@media (min-width:1024px){
    .schedule .bl_borderInner::after{
        width: 200px;
        height: 200px;
        top: -120px;
        right: 0;
    }
}
@media (min-width:1600px){
    .schedule .bl_borderInner::after{
        width: 250px;
        height: 250px;
        top: -150px;
        right: -30px;
    }
}

/* 見出し */
.schedule h2{
    background-color: #6c9bd2;
    border: 3px solid #000;
    border-radius: 60px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 30px;
    position: absolute;
    top: -30px;
    left: -10px;
}
.schedule h2 span{
    color: #fff67f;
    font-size: 28px;
    margin-right: 10px;
    vertical-align: -2px;
}
@media (min-width:768px){
    .schedule h2{
        font-size: 24px;
        left: -20px;
    }
    .schedule h2 span{
        font-size: 34px;
    }
}
@media (min-width:1200px){
    .schedule h2{
        font-size: 28px;
        top: -40px;
        left: -25px;
    }
    .schedule h2 span{
        font-size: 38px;
    }
}
@media (min-width:1600px){
    .schedule h2{
        font-size: 30px;
        top: -70px;
        left: -60px;
        padding: 10px 60px;
    }
    .schedule h2 span{
        font-size: 60px;
        vertical-align: -10px;
    }
}

/* 日付 */
.schedule .bl_flexCont.day{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.schedule .bl_flexCont.day .bl_flexCol+.bl_flexCol{
    background-color: #6c9bd2;
    border: 2px solid #000;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
}
@media (min-width:768px){
    .schedule .bl_flexCont.day .bl_flexCol{
        width: 48%;
    }
    .schedule .bl_flexCont.day .bl_flexCol+.bl_flexCol{
        margin-top: 0;
        width: 48%;
    }
}
@media (min-width:1024px){
    .schedule .bl_flexCont.day .bl_flexCol{
        width: 50%;
    }
    .schedule .bl_flexCont.day .bl_flexCol+.bl_flexCol{
        font-size: 16px;
        padding: 15px;
        width: 45%;
    }
}
@media (min-width:1200px){
    .schedule .bl_flexCont.day .bl_flexCol{
        width: 55%;
    }
    .schedule .bl_flexCont.day .bl_flexCol+.bl_flexCol{
        font-size: 20px;
        width: 40%;
        padding: 30px 10px;
    }
}

/*--------------------------------------------------------
    プレゼント
--------------------------------------------------------*/
.present{
    margin-top: 80px!important;
}
.present .bl_borderInner{
    padding-top: 60px;
}
@media (min-width:768px){
    .present{
        margin-top: 100px!important;
    }
    .present .bl_borderInner{
        padding-top: 80px;
        position: relative;
    }
    .present .bl_borderInner::after{
        background-image: url("../img/lp-20250712/img_present-af.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        content: '';
        display: block;
        width: 120px;
        height: 120px;
        position: absolute;
        bottom: -40px;
        left: -30px;
    }
}
@media (min-width:1024px){
    .present{
        margin-top: 120px!important;
    }
    .present .bl_borderInner::after{
        width: 160px;
        height: 160px;
        bottom: -100px;
        left: -30px;
    }
}
@media (min-width:1200px){
    .present .bl_borderInner::after{
        width: 200px;
        height: 200px;
        bottom: -120px;
    }
}
@media (min-width:1600px){
    .present{
        margin-top: 180px!important;
    }
    .present .bl_borderInner::after{
        left: -80px;
    }
}

/* 見出し */
.present h2{
    background-color: #fff67f;
    border: 3px solid #000;
    border-radius: 60px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 30px;
    position: absolute;
    top: -30px;
    left: -10px;
}
.present h2 span{
    color: #6c9bd2;
    font-size: 28px;
    margin-right: 10px;
    vertical-align: -2px;
}
@media (min-width:768px){
    .present h2{
        font-size: 24px;
        left: -20px;
    }
    .present h2 span{
        font-size: 34px;
    }
}
@media (min-width:1200px){
    .present h2{
        font-size: 28px;
        top: -40px;
        left: -25px;
    }
    .present h2 span{
        font-size: 38px;
    }
}
@media (min-width:1600px){
    .present h2{
        font-size: 30px;
        top: -70px;
        left: -60px;
        padding: 10px 60px;
    }
    .present h2 span{
        font-size: 60px;
        vertical-align: -10px;
    }
}

/* flex */
.present .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.present .bl_flexCont+.bl_flexCont{
    margin-top: 60px;
}
.present .bl_flexCol{
    width: 100%;
}
.present .bl_flexCol+.bl_flexCol{
    margin-top: 40px;
}
@media (min-width:1024px){
    .present .bl_flexCol:first-child{
        width: 25%;
    }
    .present .bl_flexCol:last-child{
        width: 75%;
    }
    .present .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
}
@media (min-width:1200px){
    .present .bl_flexCol:first-child{
        width: 20%;
    }
    .present .bl_flexCol:last-child{
        width: 80%;
    }
    .present .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
}

/* flex >>> 番号 */
.present .bl_flexCol .blue,
.present .bl_flexCol .pink{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}
.present .bl_flexCol .blue::after,
.present .bl_flexCol .pink::after{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 60px;
    height: 20px;
    margin: 10px auto 0;
}
.present .bl_flexCol .blue::after{
    background-image: url("../img/lp-20250712/icon_arrow-b-sp.png");
}
.present .bl_flexCol .pink::after{
    background-image: url("../img/lp-20250712/icon_arrow-p-sp.png");
}
@media (min-width:1024px){
    .present .bl_flexCol .blue,
    .present .bl_flexCol .pink{
        width: 80px;
        height: 80px;
        margin: 0;
    }
    .present .bl_flexCol .blue::after,
    .present .bl_flexCol .pink::after{
        margin: 0;
        position: absolute;
        top: 50%;
        right: -80%;
        transform: translateY(-50%);
        width: 50px;
        height: 25px;
    }
    .present .bl_flexCol .blue::after{
        background-image: url("../img/lp-20250712/icon_arrow-b-pc.png");
    }
    .present .bl_flexCol .pink::after{
        background-image: url("../img/lp-20250712/icon_arrow-p-pc.png");
    }
}
@media (min-width:1024px){
    .present .bl_flexCol .blue,
    .present .bl_flexCol .pink{
        width: 100px;
        height: 100px;
    }
    .present .bl_flexCol .blue::after,
    .present .bl_flexCol .pink::after{
        width: 60px;
        height: 20px;
        right: -90%;
    }
}
@media (min-width:1200px){
    .present .bl_flexCol .blue::after,
    .present .bl_flexCol .pink::after{
        right: -85%;
    }
}
@media (min-width:1300px){
    .present .bl_flexCol .blue::after,
    .present .bl_flexCol .pink::after{
        right: -90%;
    }
}
@media (min-width:1400px){
    .present .bl_flexCol .blue,
    .present .bl_flexCol .pink{
        width: 120px;
        height: 120px;
    }
    .present .bl_flexCol .blue::after,
    .present .bl_flexCol .pink::after{
        width: 70px;
        height: 30px;
        right: -85%;
    }
}


/* flex >>> タイトル・テキスト */
.present .bl_h3Cont{
    text-align: center;
    margin-bottom: 30px;
}
.present h3{
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
}
.present h3 img{
    display: inline-block;
    margin-top: 15px;
    width: 80%;
    vertical-align: -6px;
}
.present p{
    font-weight: 500;
    text-align: center;
}
.present h3+p{
    font-size: 18px;
}
@media (min-width:768px){
    .present h3{
        font-size: 28px;
    }
    .present h3 img{
        margin: 0 0 0 10px;
        width: 50%;
    }
    .present h3 br{
        display: none;
    }
    .present h3+p{
        font-size: 20px;
    }
    .present p{
        font-size: 18px;
    }
}
@media (min-width:1024px){
    .present .bl_h3Cont{
        text-align: left;
    }
    .present h3{
        font-size: 32px;
    }
    .present h3 img{
        width: 50%;
    }
    .present p{
        text-align: left;
    }
}
@media (min-width:1200px){
    .present h3{
        font-size: 40px;
    }
    .present p{
        font-size: 20px;
    }
}

/* ポイント >>> バス */
.bl_flexCont.bus{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_flexCont.bus .bl_quo-bus{
    margin-top: 30px;
}
.bl_flexCont.bus .bl_quo-bus .el_bg{
    background-color: #fff67f;
    border: 3px solid #000;
    border-radius: 15px;
    color: #e25f9e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 15px;
    padding: 10px 0;
}
.bl_flexCont.bus .bl_quo-bus .el_bg br{
    display: none;
}
.bl_flexCont.bus .bl_quo-bus .bl_busTimeCont{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_flexCont.bus .bl_quo-bus .bl_busTimeCol{
    width: 100%;
}
.bl_flexCont.bus .bl_quo-bus .bl_busTimeCol .el_fcBlue{
    font-weight: bold;
    font-size: 18px;
}
.bl_flexCont.bus .bl_quo-bus .bl_busTimeCol:last-child{
    border-top: 1px solid #999;
    margin-top: 20px;
    padding-top: 20px;
}
@media (min-width:768px){
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCont{
        justify-content: space-between;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol{
        width: 50%;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol:last-child{
        border-top: 0;
        margin-top: 0;
        padding-top: 0;
        position: relative;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol:last-child::before{
        border-left: 1px solid #999;
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -10px;
    }
}
@media (min-width:1024px){
    .bl_flexCont.bus{
        align-items: center;
    }
    .bl_flexCont.bus .bl_flexCol.text{
        width: 60%;
    }
    .bl_flexCont.bus .bl_flexCol.map{
        width: 35%;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol:last-child{
        border-top: 1px solid #999;
        border-left: 0;
        margin-left: 0;
        margin-top: 20px;
        padding-top: 20px;
        padding-left: 0;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol:last-child::before{
        display: none;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol .el_fcBlue{
        width: 90px;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol div{
        width: 300px;
    }
}
@media (min-width:1200px){
    .bl_flexCont.bus{
        margin-top: 20px;
    }
    .bl_flexCont.bus .bl_flexCol.text{
        width: 70%;
    }
    .bl_flexCont.bus .bl_flexCol.map{
        width: 30%;
    }
    .bl_flexCont.bus .bl_quo-bus{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        margin: 0;
    }
    .bl_flexCont.bus .bl_quo-bus:last-child{
        margin-top: 30px;
    }
    .bl_flexCont.bus .bl_quo-bus .el_bg{
        margin: 0 20px 0 0;
        width: 120px;
        height: 90px;
    }
    .bl_flexCont.bus .bl_quo-bus .el_bg p{
        text-align: center;
    }
    .bl_flexCont.bus .bl_quo-bus .el_bg br{
        display: block;
    }
    .bl_flexCont.bus .bl_quo-bus .el_text{
        width: 70%;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol .el_fcBlue{
        width: 80px;
    }
    .bl_flexCont.bus .bl_quo-bus .bl_busTimeCol div{
        width: auto;
    }
}

/* ポイント >>> スイーツプレゼント */
.bl_flexCont.sweets .bl_flexCol br{
    display: none;
}
@media (min-width:768px){
    .bl_flexCont.sweets{
        padding-bottom: 60px;
    }
}
@media (min-width:1024px){
    .bl_flexCont.sweets{
        padding-bottom: 0;
    }
    .bl_flexCont.sweets .bl_flexCol{
        width: 40%;
    }
    .bl_flexCont.sweets figure.bl_flexCol{
        width: 55%;
    }
    .bl_flexCont.sweets figure.bl_flexCol img{
        margin: 0;
    }
    .bl_flexCont.sweets .bl_flexCol br{
        display: block;
    }
}
@media (min-width:1200px){
    .bl_flexCont.sweets .bl_flexCol{
        width: 45%;
    }
    .bl_flexCont.sweets figure.bl_flexCol{
        width: 55%;
    }
}

/* ポイント >>> 学食体験 */
@media (min-width:1024px){
    .bl_flexCont.gakusyoku .bl_flexCol:first-child{
        width: 65%;
    }
    .bl_flexCont.gakusyoku .bl_flexCol:last-child{
        width: 30%;
    }
}
@media (min-width:1200px){
    .bl_flexCont.gakusyoku .bl_flexCol:first-child{
        width: 60%;
    }
    .bl_flexCont.gakusyoku .bl_flexCol:last-child{
        width: 40%;
    }
}

/*--------------------------------------------------------
    オープンキャンパスってなに？
--------------------------------------------------------*/
.bl_whatis{
    margin: 60px auto;
}
@media (min-width:768px){
    .bl_whatis{
        margin: 80px auto;
    }
}
@media (min-width:1200px){
    .bl_whatis{
        margin: 120px auto;
    }
}

/* 見出し・テキスト */
.bl_whatis h2{
    color: #6c9bd2;
    text-align: center;
    margin: 0 auto 20px;
    position: relative;
}
.bl_whatis h2 img{
    margin-top: 10px;
}
.bl_whatis h2+p{
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}
@media (min-width:768px){
    .bl_whatis h2 img{
        width: 680px;
    }
    .bl_whatis h2+p{
        font-size: 24px;
    }
}
@media (min-width:1024px){
    .bl_whatis h2 img{
        width: 700px;
    }
}
@media (min-width:1200px){
    .bl_whatis h2 img{
        width: 800px;
    }
}
@media (min-width:1300px){
    .bl_whatis h2 img{
        width: 1000px;
    }
}

/*===== ポイント共通 =====*/
.point{
    margin-top: 60px;
}
.point .bl_borderInner{
    position: relative;
    padding-top: 60px;
}
.point .bl_borderInner::before{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width:768px){
    .point{
        margin-top: 80px;
    }
    .point .bl_borderInner{
        padding-top: 80px;
    }
}
@media (min-width:1200px){
    .point{
        margin-top: 120px;
    }
    .point .bl_borderInner::before{
        padding-top: 120px;
        width: 140px;
        height: 140px;
        top: -70px;
    }
}

.point h3{
    font-size: 24px;
    text-align: center;
    padding: 0 1px 0px;
    margin: 0 auto;
}
.point h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}
.point h4 span{
    font-size: 24px;
}
.point h5{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.point .hp_txtCenter+p{
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
}
@media (min-width:768px){
    .point h3{
        font-size: 32px;
    }
    .point h4{
        font-size: 24px;
    }
    .point h4 span{
        font-size: 28px;
    }
    .point h5{
        font-size: 20px;
    }
}
@media (min-width:1024px){
    .point .hp_txtCenter+p{
        font-size: 20px;
    }
}
@media (min-width:1200px){
    .point h3{
        font-size: 40px;
    }
    .point h4{
        font-size: 28px;
    }
    .point h4 span{
        font-size: 32px;
    }
    .point h5{
        font-size: 26px;
    }
    .point .hp_txtCenter+p{
        font-size: 22px;
    }
}

/*===== ポイント1 =====*/
.point01 .bl_borderInner::before{
    background-image: url("../img/lp-20250712/icon_what01.png");
}
.point01 h4{
    background-color: #6c9bd2;
    border: 3px solid #000;
    border-radius: 150px;
    color: #fff;
    text-align: center;
    padding: 10px 30px;
}

/* グラフ */
.point01 .bl_graph{
    margin: 40px auto 0;
}
.point01 .bl_chart{
    margin-top: 20px;
}
.point01 .bl_chart .bl_canvasCont{
    position: relative;
}
.point01 .bl_chart .bl_canvasCont::before,
.point01 .bl_chart .bl_canvasCont::after{
    background-image: url("../img/lp-20250712/icon_graph-bf.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
}
.point01 .bl_chart .bl_canvasCont::before{
    top: 0;
    left: -10px;
}
.point01 .bl_chart .bl_canvasCont::after{
    right: -15px;
    bottom: 0;
}
.point01 .bl_chart .bl_canvasCont #chart{
    margin: 0 auto;
    width: 100%;
}
.point01 .bl_chart figure{
    margin-top: 15px;
}
@media (min-width:410px){
    .point01 .bl_chart .bl_canvasCont::before,
    .point01 .bl_chart .bl_canvasCont::after{
        width: 60px;
        height: 60px;
    }
}
@media (min-width:768px){
    .point01 .bl_chart{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px auto 0;
    }
    .point01 .bl_chart .bl_canvasCont{
        margin: 0;
        width: 48%;
        max-width: 460px;
    }
    .point01 .bl_chart .bl_canvasCont::before{
        left: -20px;
    }
    .point01 .bl_chart .bl_canvasCont::after{
        right: -20px;
    }
    .point01 .bl_chart figure{
        width: 48%;
        max-width: 650px;
        margin: 0;
    }
}
@media (min-width:1024px){
    .point01 .bl_chart .bl_canvasCont{
        margin: 0;
        width: 45%;
        max-width: 460px;
    }
    .point01 .bl_chart .bl_canvasCont::before,
    .point01 .bl_chart .bl_canvasCont::after{
        width: 80px;
        height: 80px;
    }
    .point01 .bl_chart figure{
        width: 50%;
    }
}
@media (min-width:1200px){
    .point01 .bl_chart{
        justify-content: center;
        margin-top: 40px;
    }
    .point01 .bl_chart .bl_canvasCont{
        margin: 0 30px 0 0;
        width: 45%;
        max-width: 460px;
    }
    .point01 .bl_chart .bl_canvasCont::before,
    .point01 .bl_chart .bl_canvasCont::after{
        width: 80px;
        height: 80px;
    }
    .point01 .bl_chart figure{
        width: 50%;
    }
}

/* 感想は？ */
.point01 .bl_thoughts{
    margin: 60px auto 0;
}
.point01 .bl_thoughts .bl_flexCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.point01 .bl_thoughts .bl_flexCont:first-of-type{
    margin-bottom: 60px;
}
.point01 .bl_thoughts .bl_flexCol{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.point01 .bl_thoughts .bl_flexCol+.bl_flexCol{
    margin-top: 30px;
}
.point01 .bl_thoughts .el_icon{
    width: 20%;
}
.point01 .bl_thoughts .bl_fukidashi{
	background-color: #fff67f;
	border: 2px solid #000;
	border-radius: 10px;
	display: table;
    padding: 10px;
	position: relative;
    width: 73%;
}
.point01 .bl_thoughts .bl_fukidashi::before{
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 10px solid #000;
}
.point01 .bl_thoughts .bl_fukidashi:before,
.point01 .bl_thoughts .bl_fukidashi:after{
	border-top: 10px solid transparent;
	border-right: solid 15px #000;
	border-bottom: 10px solid transparent;
	content: '';
	position: absolute;
	top: 50%;
	left: -15px;
	transform: translateY(-50%);
}
.point01 .bl_thoughts .bl_fukidashi::after{
	left: calc( 5px - 17px );
	border-right: solid 15px #fff67f;
}
@media (min-width:768px){
    .point01 .bl_thoughts .bl_flexCol{
        width: 48%;
    }
    .point01 .bl_thoughts .bl_flexCol+.bl_flexCol{
        margin: 0;
    }
    .point01 .bl_thoughts .bl_flexCol:nth-child(n+3){
        margin-top: 30px;
    }
    .point01 .bl_thoughts .el_icon{
        width: 15%;
    }
    .point01 .bl_thoughts .bl_fukidashi{
        width: 80%;
    }
}
@media (min-width:1080px){
    .point01 .bl_thoughts h5{
        font-size: 24px;
    }
}

/*===== ポイント2 =====*/
.point02 .bl_borderInner::before{
    background-image: url("../img/lp-20250712/icon_what02.png");
}

/* プチ体験 >>> タイトル・テキスト */
.point02 .bl_flexCont.title{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 40px;
}
.point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol{
    font-size: 18px;
    margin-top: 20px;
}
.point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol p{
    font-weight: 500;
}
.point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol .bl_workshop-time{
    background-color: #fff67f;
    border: 3px solid #000;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
}
@media (min-width:768px){
    .point02 .bl_flexCont.title{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .point02 .bl_flexCont.title .bl_flexCol{
        width: 30%;
    }
    .point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol{
        margin-top: 0;
        width: 68%;
    }
    .point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol p{
        font-size: 20px;
    }
}
@media (min-width:1024px){
    .point02 .bl_flexCont.title{
        justify-content: center;
        align-items: center;
    }
    .point02 .bl_flexCont.title .bl_flexCol{
        width: 300px;
    }
    .point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol{
        margin-top: 0;
        margin-left: 30px;
        width: auto;
    }
}
@media (min-width:1200px){
    .point02 .bl_flexCont.title .bl_flexCol{
        width: 450px;
    }
    .point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol{
        margin-left: 40px;
    }
    .point02 .bl_flexCont.title .bl_flexCol+.bl_flexCol p{
        font-size: 22px;
    }
}

/* ワークショップ */
.bl_design,
.bl_child{
    margin-top: 60px;
}
.bl_design h4,
.bl_child h4{
    border: 3px solid #000;
    border-radius: 150px;
    color: #fff;
    text-align: center;
    padding: 10px 30px;
}
.bl_design h4{
    background-color: #7DA4D6;
}
.bl_child h4{
    background-color: #E46CA5;
}
.bl_design h5,
.bl_child h5{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
        width: 100%;
}
.bl_design h5{
    color: #7DA4D6;
}
.bl_child h5{
    color: #E46CA5;
}
.bl_design .bl_flexCont,
.bl_child .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_design .bl_flexCont .bl_flexCol+.bl_flexCol,
.bl_child .bl_flexCont .bl_flexCol+.bl_flexCol{
    border-top: 1px dashed #999;
    margin-top: 30px;
    padding-top: 30px;
}
.bl_design .bl_flexCont .bl_flexCol img,
.bl_child .bl_flexCont .bl_flexCol img{
    margin-top: 30px;
    width: 100%;
}
@media (min-width:768px){
    .bl_design h5,
    .bl_child h5{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }
    .bl_design h5{
        height: 85px;
    }
    .bl_child h5{
        height: 52px;
    }
    .bl_design h5 br,
    .bl_child h5 br{
        display: block;
    }
    .bl_design .bl_flexCont .bl_flexCol,
    .bl_child .bl_flexCont .bl_flexCol{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 45%;
    }
    .bl_design .bl_flexCont .bl_flexCol+.bl_flexCol,
    .bl_child .bl_flexCont .bl_flexCol+.bl_flexCol{
        border-top: none;
        margin-top: 0;
        padding-top: 0;
        position: relative;
    }
    .bl_design .bl_flexCont .bl_flexCol:nth-child(2)::before,
    .bl_child .bl_flexCont .bl_flexCol:nth-child(2)::before{
        border-left: 1px dotted #999;
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -11%;
    }
    .bl_design .bl_flexCont .bl_flexCol:last-child,
    .bl_child .bl_flexCont .bl_flexCol:last-child{
        margin-top: 40px;
    }
    .bl_design .bl_flexCont .bl_flexCol p,
    .bl_child .bl_flexCont .bl_flexCol p{
        margin-bottom: 30px;
    }
    .bl_design .bl_flexCont .bl_flexCol img,
    .bl_child .bl_flexCont .bl_flexCol img{
        display: block;
        margin-top: auto;
    }
}
@media (min-width:1024px){
    .bl_design h5{
        height: 52px;
    }
    .bl_child h5{
        height: auto;
    }
}
@media (min-width:1200px){
    .bl_design h5{
        height: 85px;
    }
    .bl_child h5{
        height: 52px;
    }
    .bl_design .bl_flexCont .bl_flexCol,
    .bl_child .bl_flexCont .bl_flexCol{
        width: 31%;
    }
    .bl_design .bl_flexCont .bl_flexCol+.bl_flexCol::before,
    .bl_child .bl_flexCont .bl_flexCol+.bl_flexCol::before{
        border-left: 1px dotted #999;
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -6%;
    }
    .bl_design .bl_flexCont .bl_flexCol:last-child,
    .bl_child .bl_flexCont .bl_flexCol:last-child{
        margin-top: 0;
    }
}
@media (min-width:1400px){
    .bl_design h5{
        height: 52px;
    }
    .bl_child h5{
        height: auto;
    }
}

/*===== ポイント3 =====*/
.point03 .bl_borderInner::before{
    background-image: url("../img/lp-20250712/icon_what03.png");
}

/* flex */
.point03 .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.point03 .bl_flexCol:first-of-type{
    font-size: 18px;
    font-weight: 500;
}
.point03 .bl_flexCol:last-of-type{
    margin-top: 20px;
}
.point03 .bl_flexCol figure{
    display: inline-block;
}
.point03 .bl_flexCol figure+figure{
    margin-top: 20px;
}
@media (min-width:768px){
    .point03 .bl_flexCol:last-of-type{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .point03 .bl_flexCol figure{
        width: 48%;
    }
    .point03 .bl_flexCol figure+figure{
        margin-top: 0;
    }
}
@media (min-width:1024px){
    .point03 .bl_flexCol:first-of-type{
        font-size: 20px;
        width: 55%;
    }
    .point03 .bl_flexCol:last-of-type{
        margin: 0;
        width: 43%;
    }
    .point03 .bl_flexCol figure{
        width: 48%;
    }
    .point03 .bl_flexCol figure+figure{
        margin-top: 0;
    }
}
@media (min-width:1200px){
    .point03 .bl_flexCol:first-of-type{
        font-size: 22px;
    }
}

/*===== ポイント4 =====*/
.point04 .bl_borderInner::before{
    background-image: url("../img/lp-20250712/icon_what04.png");
}

/*===== ポイント5 =====*/
.point05 .bl_borderInner::before{
    background-image: url("../img/lp-20250712/icon_what05.png");
}

/*===== ポイント6=====*/
.point06 .bl_borderInner::before{
    background-image: url("../img/lp-20250712/icon_what06.png");
}
/* flex */
.point06 .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.point06 .bl_flexCol:first-of-type{
    font-size: 18px;
    font-weight: 500;
}
.point06 .bl_flexCol:last-of-type{
    margin-top: 20px;
}
.point06 .bl_flexCol figure{
    display: inline-block;
}
.point06 .bl_flexCol figure+figure{
    margin-top: 20px;
}
@media (min-width:768px){
    .point06 .bl_flexCol:last-of-type{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .point06 .bl_flexCol figure{
        width: 48%;
    }
    .point06 .bl_flexCol figure+figure{
        margin-top: 0;
    }
}
@media (min-width:1024px){
    .point06 .bl_flexCol:first-of-type{
        font-size: 20px;
        width: 55%;
    }
    .point06 .bl_flexCol:last-of-type{
        margin: 0;
        width: 43%;
    }
    .point06 .bl_flexCol figure{
        width: 48%;
    }
    .point06 .bl_flexCol figure+figure{
        margin-top: 0;
    }
}
@media (min-width:1200px){
    .point06 .bl_flexCol:first-of-type{
        font-size: 22px;
    }
}

/* 文字スクロール */
.bl_whatis{
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 300px;
}
.bl_textScroll{
    display: flex;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 60px;
    z-index: 10;
    width: 100%;
    height: 150px;
}
.bl_textScrollList{
    display: flex;
    list-style: none;
    padding: 0;
    animation: infinity-scroll-left 140s infinite linear 0.5s both;
}
.bl_textScrollItem{
    background-image: url("../img/lp-20250712/img_roll-text.png");
    background-repeat: repeat-x;
    background-size: contain;
	width: 1300px;
    height: 150px;
    margin-right: 60px;
}
@keyframes infinity-scroll-left{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@media (min-width:1200px){
    .bl_whatis{
        padding-bottom: 350px;
    }
    .bl_textScroll{
        bottom: 60px;
        height: 200px;
    }
    .bl_textScrollList{
        animation: infinity-scroll-left 160s infinite linear 0.5s both;
    }
    .bl_textScrollItem{
        width: 1880px;
        height: 200px;
        margin-right: 100px;
    }
}

/*--------------------------------------------------------
    タイムスケジュール
--------------------------------------------------------*/
.bl_tsCont{
    padding-bottom: 0;
}
.bl_ts{
    margin: 0 auto;
    max-width: 1600px;
    padding: 0;
    position: relative;
}
.bl_ts h2{
    color: #fff67f;
    text-align: center;
}
.bl_ts h2 img{
    margin-top: 10px;
}
@media (min-width:768px){
    .bl_tsCont{
        padding-bottom: 80px;
    }
    .bl_ts h2 img.hp_spOnly{
        display: block;
        width: 360px;
    }
    .bl_ts h2 img.hp_pcOnly{
        display: none;
    }
}
@media (min-width:1024px){
    .bl_ts h2 img.hp_spOnly{
        display: none;
    }
    .bl_ts h2 img.hp_pcOnly{
        display: block;
        width: 550px;
    }
}
@media (min-width:1200px){
    .bl_ts h2 img.hp_pcOnly{
        width: 650px;
    }
}
@media (min-width:1300px){
    .bl_ts h2 img.hp_pcOnly{
        width: 750px;
    }
}
@media (min-width:1600px){
    .bl_tsCont{
        padding: 160px 30px;
    }
}
@media (min-width:1700px){
    .bl_tsCont{
        padding: 160px 0;
    }
}

/* 生徒さん画像 */
@media (min-width:768px){
    .bl_ts::before,
    .bl_ts::after{
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: '';
        display: block;
        position: absolute;
        top: 50px;
        width: 180px;
        height: 180px;
        z-index: 1;
    }
    .bl_ts::before{
        background-image: url("../img/lp-20250712/img_timeschedule-bf.png");
        left: -3%;
    }
    .bl_ts::after{
        background-image: url("../img/lp-20250712/img_timeschedule-af.png");
        right: 3%;
    }
}
@media (min-width:1024px){
    .bl_ts::before,
    .bl_ts::after{
        width: 220px;
        height: 220px;
        top: -50px;
    }
    .bl_ts::before{
        left: -2%;
    }
    .bl_ts::after{
        right: 3%;
    }
}
@media (min-width:1200px){
    .bl_ts::before,
    .bl_ts::after{
        width: 280px;
        height: 280px;
        top: -60px;
    }
    .bl_ts::before{
        left: -1%;
    }
    .bl_ts::after{
        right: 4%;
    }
}
@media (min-width:1200px){
    .bl_ts::before,
    .bl_ts::after{
        top: -50px;
    }
}
@media (min-width:1400px){
    .bl_ts::before,
    .bl_ts::after{
        width: 320px;
        height: 320px;
        top: -12%;
    }
}
@media (min-width:1600px){
    .bl_ts::before,
    .bl_ts::after{
        top: -10%;
    }
    .bl_ts::before{
        left: 0;
    }
    .bl_ts::after{
        right: 5%;
    }
}
@media (min-width:1900px){
    .bl_ts::before,
    .bl_ts::after{
        width: 340px;
        height: 340px;
        top: -12%;
    }
}

/* スケジュール表 */
.bl_ts .bl_scroll{
    overflow-X: scroll;
    margin-top: 30px;
    position: relative;
}
.bl_ts .bl_scroll img{
    max-width: none;
    width: 1200px;
}
@media (min-width:768px){
    .bl_ts .bl_scroll{
        overflow-x: hidden;
        position: relative;
        z-index: 10;
    }
    .bl_ts .bl_scroll img{
        max-width: 100%;
        margin: 0 auto;
        width: auto;
    }
}
@media (min-width:1200px){
    .bl_ts .bl_scroll{
        margin-top: 60px;
    }
}

/* スマホのみ表示 スクロールできるよ！の画像 */
.bl_ts figure{
    margin: 30px auto 0;
    position: relative;
}
.bl_ts figure img{
    margin: 0 auto 0 0;
}
@media (min-width:768px){
    .bl_ts figure{
        display: none;
    }
}

/*--------------------------------------------------------
    キャンパス紹介
--------------------------------------------------------*/
.bl_intro{
    margin: 60px auto;
}
.bl_intro h2{
    color: #6c9bd2;
}
.bl_intro h2 img{
    margin-top: 10px;
}
.bl_intro p{
    font-size: 18px;
    font-weight: 500;
    width: 60%;
    margin: 0 auto 0 0;
}
@media (min-width:375px){
    .bl_intro p{
        width: 65%;
    }
}
@media (min-width:768px){
    .bl_intro{
        margin: 80px auto;
    }
    .bl_intro h2 .hp_spOnly{
        display: block;
        margin: 10px auto 0 0;
        width: 520px;
    }
    .bl_intro h2 .hp_pcOnly{
        display: none;
    }
    .bl_intro p{
        font-size: 20px;
        width: 100%;
        margin: 0;
    }
}
@media (min-width:1024px){
    .bl_intro h2{
        margin-bottom: 40px;
    }
    .bl_intro h2 .hp_spOnly{
        display: none;
    }
    .bl_intro h2 .hp_pcOnly{
        display: block;
        margin: 10px 0 auto 0;
        width: 800px;
    }
}
@media (min-width:1200px){
    .bl_intro{
        margin: 120px auto;
    }
    .bl_intro h2 .hp_pcOnly{
        width: 900px;
    }
    .bl_intro p{
        font-size: 24px;
        width: 100%;
        margin: 0;
    }
}
@media (min-width:1300px){
    .bl_intro h2 .hp_pcOnly{
        width: 1000px;
    }
}
@media (min-width:1400px){
    .bl_intro h2 .hp_pcOnly{
        width: 1100px;
    }
}

/* flex */
.bl_intro .bl_flexCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto 40px;
    position: relative;
    z-index: 10;
}
.bl_intro .bl_flexCol{
    width: 48%;
    transition: 0.3s;
}
.bl_intro .bl_flexCol:hover{
    opacity: 0.5;
}
.bl_intro .bl_flexCol:nth-child(n+3){
    margin-top: 20px;
}
@media (min-width:768px){
    .bl_intro .bl_flexCol{
        width: 24%;
    }
    .bl_intro .bl_flexCol:nth-child(n+3){
        margin-top: 0;
    }
    .bl_intro .bl_flexCol:nth-child(n+5){
        margin-top: 20px;
    }
}

/* 生徒さん画像 */
.bl_intro .bl_flexCont::before{
    background-image: url("../img/lp-20250712/img_campus-intro-bf.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 110px;
    height: 110px;
    position: absolute;
    top: -100px;
    right: 0;
    z-index: -1;
}
@media (min-width:410px){
    .bl_intro .bl_flexCont::before{
        width: 130px;
        height: 130px;
        top: -110px;
    }
}
@media (min-width:768px){
    .bl_intro .bl_flexCont::before{
        width: 190px;
        height: 190px;
        top: -170px;
        right: -10px;
    }
}
@media (min-width:1024px){
    .bl_intro .bl_flexCont::before{
        right: -15px;
    }
}
@media (min-width:1200px){
    .bl_intro .bl_flexCont::before{
        width: 240px;
        height: 240px;
        top: -200px;
        right: 00px;
    }
}
@media (min-width:1500px){
    .bl_intro .bl_flexCont::before{
        width: 280px;
        height: 280px;
        top: -270px;
        right: 0;
    }
}

/* ボタン */
.bl_intro .el_btn{
    background-color: #6c9bd2;
    border: 3px solid #000;
    border-radius: 40px;
    color: #fff;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 20px;
    max-width: 420px;
    margin: 0 auto;
}
.bl_intro .el_btn::after{
    position: absolute;
    right: 25px;
    margin-left: 0;
}
.bl_intro .el_btn:hover{
    opacity: 0.5;
}
@media (min-width:375px){
    .bl_intro .el_btn{
        font-size: 20px;
    }
    .bl_intro .el_btn::after{
        right: 30px;
    }
}
@media (min-width:768px){
    .bl_intro .el_btn{
        font-size: 24px;
    }
}

/*--------------------------------------------------------
    SNSバナー
--------------------------------------------------------*/
.sns.bl_bgP{
    padding: 60px 15px;
    position: relative;
}
.sns .bl_borderInner{
    padding-bottom: 0;
    position: relative;
}
@media (min-width:768px){
    .sns.bl_bgP{
        padding: 60px 30px;
    }
    .sns .bl_borderInner{
        padding-bottom: 40px;
    }
}
@media (min-width:1024px){
    .sns .bl_borderInner{
        padding-bottom: 60px;
    }
}
@media (min-width:1200px){
    .sns .bl_borderInner{
        padding: 80px 60px;
    }
}
@media (min-width:1450px){
    .sns.bl_bgP{
        padding: 80px 0;
    }
}
@media (min-width:1700px){
}

/* 生徒さん画像 */
.el_student{
    width: 130px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}
@media (min-width:375px){
    .el_student{
        width: 150px;
        left: 10px;
    }
}
@media (min-width:500px){
    .el_student{
        width: 180px;
        left: 20px;
    }
}
@media (min-width:600px){
    .el_student{
        width: 220px;
    }
}
@media (min-width:768px){
    .el_student{
        width: 80px;
    }
}
@media (min-width:1024px){
    .el_student{
        width: 100px;
        left: 0;
    }
}
@media (min-width:1400px){
    .el_student{
        width: 120px;
    }
}
@media (min-width:1600px){
    .el_student{
        width: 200px;
    }
}
@media (min-width:1700px){
    .el_student{
        width: 220px;
        left: 20px;
    }
}
@media (min-width:1900px){
    .el_student{
        left: 30px;
    }
}
@media (min-width:2000px){
    .el_student{
        left: 8%;
    }
}

/* flex */
.sns .bl_flexCont{
    display:  flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.sns .bl_flexCol{
    width: 100%;
}
.sns .bl_flexCol+.bl_flexCol{
    margin-top: 30px;
}
@media (min-width:768px){
    .sns .bl_flexCont{
        margin-bottom: 0;
        align-items: center;
        width: 78%;
    }
    .sns .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
}
@media (min-width:1024px){
    .sns .bl_flexCont{
        width: 80%;
    }
}
@media (min-width:1200px){
    .sns .bl_flexCont{
        width: 75%;
    }
}
@media (min-width:1300px){
    .sns .bl_flexCont{
        width: 77%;
    }
}

/* アイコン */
.sns .icon img{
    width: 100%;
    max-width: 220px;
}
@media (min-width:768px){
    .sns .icon{
        width: 8%;
        margin: 0 0 auto 0;
    }
}
@media (min-width:1024px){
    .sns .icon{
        width: 9%;
    }
}
@media (min-width:1200px){
    .sns .icon{
        width: 80px;
    }
}
@media (min-width:1600px){
    .sns .icon{
        margin: 0;
    }
}

/* テキスト */
.sns .text h2{
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}
.sns .text .el_pc{
    display: none;
}
@media (min-width:768px){
    .sns .text{
        width: 58%;
    }
    .sns .text h2{
        text-align: left;
    }
}
@media (min-width:1024px){
    .sns .text{
        width: 58%;
    }
    .sns .text h2{
        font-size: 32px;
    }
    .sns .text p{
        font-size: 22px;
    }
}
@media (min-width:1200px){
    .sns .text{
        width: 52%;
    }
}
@media (min-width:1300px){
    .sns .text{
        width: 420px;
    }
    .sns .text h2{
        font-size: 34px;
    }
    .sns .text p{
        font-size: 24px;
    }
    .sns .text .el_pc{
        display: block;
    }
}

/* QR */
@media (min-width:768px){
    .sns .qr{
        width: 25%;
        max-width: 340px;
    }
}
@media (min-width:1024px){
    .sns .qr{
        width: 28%;
    }
}
@media (min-width:1200px){
    .sns .qr{
        width: 30%;
    }
}
@media (min-width:1300px){
    .sns .qr{
        width: 34%;
    }
}
@media (min-width:1400px){
    .sns .qr{
        width: 340px;
    }
}

/* スマホイメージ */
.sns .phone{
    margin: 0 auto;
    width: 80%;
}
@media (min-width:768px){
    .sns .phone{
        position: absolute;
        bottom: 0;
        right: 20px;
        width: 20%;
        margin: 0;
    }
}
@media (min-width:1024px){
    .sns .phone{
        width: 18%;
    }
}
@media (min-width:1200px){
    .sns .phone{
        right: 60px;
        width: 20%;
    }
}
@media (min-width:1300px){
    .sns .phone{
        width: 220px;
    }
}
@media (min-width:1400px){
    .sns .phone{
        width: 240px;
    }
}


/*--------------------------------------------------------
    申込みボタン
--------------------------------------------------------*/
.el_entry{
    position: fixed;
    right: 10px;
    top: 10px;
    width: 100px;
    height: 100px;
    z-index: 999;
}
.el_entry a{
    background-color: #e25f9e;
    border: 2px solid #000;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: relative;
}
.el_entry a::before{
    background-color: #fff67f;
    border: 2px solid #000;
    border-radius: 50%;
    content:  '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: -6px;
    bottom: -6px;
    z-index: -1;
}
.el_entry:hover a{
    background-color: #6c9bd2;
}
@media (min-width:768px){
    .el_entry{
        right: 30px;
        top: 30px;
        width: 120px;
        height: 120px;
    }
    .el_entry a{
        font-size: 20px;
    }
}
@media (min-width:1024px){
    .el_entry{
        width: 150px;
        height: 150px;
    }
    .el_entry a{
        font-size: 22px;
    }
}
@media (min-width:1200px){
    .el_entry{
        width: 160px;
        height: 160px;
    }
    .el_entry a{
        font-size: 24px;
    }
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
    margin: 60px auto 40px;
}
.ly_footer .bl_cont{
    max-width: 1400px;
    margin: 0 auto;
}
.ly_footer h2+p{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
@media (min-width:768px){
    .ly_footer{
        margin: 80px auto 40px;
    }
    .ly_footer h2 img{
        max-width: 1000px;
        width: 100%;
    }
    .ly_footer h2+p{
        font-size: 22px;
    }
}
@media (min-width:1200px){
    .ly_footer{
        margin: 120px auto 40px;
    }
    .ly_footer h2+p{
        font-size: 24px;
    }
}

/*===== TEL =====*/
.ly_footer .bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.ly_footer .bl_flexCol.tel{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}
@media (min-width:768px){
    .ly_footer .bl_flexCol.tel{
        width: 50%;
    }
}
@media (min-width:1024px){
    .ly_footer .bl_flexCol.tel{
        width: 70%;
    }
}
@media (min-width:1200px){
    .ly_footer .bl_flexCol.tel{
        width: 75%;
    }
}
@media (min-width:1400px){
    .ly_footer .bl_flexCol.tel{
        width: 65%;
    }
}
/* TEL >>> タイトル */
.ly_footer .bl_flexCol.tel .bl_flexCol{
    width: 60px;
    margin-right: 15px;
}
.ly_footer .bl_flexCol.tel .el_title{
    background-color: #e25f9e;
    border: 3px solid #000;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    height: 100%;
}
@media (min-width:768px){
    .ly_footer .bl_flexCol.tel .bl_flexCol{
        width: 80px;
        margin-right: 20px;
    }
    .ly_footer .bl_flexCol.tel .el_title{
        font-size: 22px;
    }
}
/* TEL >>> 番号 */
.ly_footer .bl_flexCol.tel .bl_flexCol+.bl_flexCol{
    width: auto;
}
.ly_footer .bl_flexCol.tel .el_telNumber p{
    font-size: 16px;
    font-weight: 500;
}
.ly_footer .bl_flexCol.tel .el_telNumber p+p{
    margin-top: 10px;
}
.ly_footer .bl_flexCol.tel .el_telNumber a{
    color: #e25f9e;
    display: block;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}
.ly_footer .bl_flexCol.tel .el_telNumber a:hover{
    opacity: 0.5;
}
.ly_footer .bl_flexCol.tel .el_telNumber+p{
    font-size: 14px;
    margin-top: 10px;
}
@media (min-width:768px){
    .ly_footer .bl_flexCol.tel .el_telNumber p{
        font-size: 20px;
    }
    .ly_footer .bl_flexCol.tel .el_telNumber p+p{
        margin-top: 15px;
    }
    .ly_footer .bl_flexCol.tel .el_telNumber a{
        font-size: 32px;
    }
    .ly_footer .bl_flexCol.tel .el_telNumber+p{
        font-size: 16px;
    }
}
@media (min-width:1024px){
    .ly_footer .bl_flexCol.tel .el_telNumber p{
        display: inline-block;
        font-size: 18px;
    }
    .ly_footer .bl_flexCol.tel .el_telNumber p+p{
        margin-top: 0;
        margin-left: 60px;
        position: relative;
    }
    .ly_footer .bl_flexCol.tel .el_telNumber p+p::before{
        background-color: #e25f9e;
        content: '';
        display: block;
        width: 3px;
        height: 60px;
        position: absolute;
        top: 50%;
        left: -30px;
        transform: translateY(-50%) rotate(20deg);
    }
}
@media (min-width:1200px){
    .ly_footer .bl_flexCol.tel .el_telNumber a{
        display: inline-block;
        margin-left: 15px;
        vertical-align: -3px;
    }
}
@media (min-width:1400px){
    .ly_footer .bl_flexCol.tel .el_telNumber p{
        font-size: 20px;
    }
    .ly_footer .bl_flexCol.tel .el_telNumber a{
        font-size: 34px;
    }
    .ly_footer .bl_flexCol.tel .el_telNumber+p{
        font-size: 16px;
    }
}

/*===== MAIL =====*/
.ly_footer .bl_flexCol.mail{
    width: 100%;
    margin-top: 30px;
}
.ly_footer .bl_flexCol.mail .el_btn{
    background-color: #e25f9e;
    border: 3px solid #000;
    border-radius: 50px;
    transition: 0.3s;
    max-width: none;
    margin: 0;
    width: 100%;
}
.ly_footer .bl_flexCol.mail .el_btn:hover{
    opacity: 0.5;
}
.ly_footer .bl_flexCol.mail .el_btn::before{
    background-image: url("../img/lp-20250712/icon_mail.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
.ly_footer .bl_flexCol.mail .el_btn::after{
    display: none;
}
@media (min-width:375px){
    .ly_footer .bl_flexCol.mail .el_btn::before{
        width: 25px;
        height: 25px;
        left: 30px;
    }
}
@media (min-width:768px){
    .ly_footer .bl_flexCol.mail{
        margin: 0;
        width: 45%;
    }
}
@media (min-width:1024px){
    .ly_footer .bl_flexCol.mail{
        width: 30%;
    }
    .ly_footer .bl_flexCol.mail .el_btn::before{
        left: 25px;
    }
}
@media (min-width:1200px){
    .ly_footer .bl_flexCol.mail{
        width: 25%;
    }
}
@media (min-width:1400px){
    .ly_footer .bl_flexCol.mail{
        width: 30%;
    }
    .ly_footer .bl_flexCol.mail .el_btn{
        padding: 30px 0;
        font-size: 20px;
    }
    .ly_footer .bl_flexCol.mail .el_btn::before{
        left: 30px;
    }
    .ly_footer .bl_flexCol.mail .el_btn br{
        display: none;
    }
}

/*===== LINE =====*/
.ly_footer .bl_flexCont.line{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

/* line >>> タイトル */
.ly_footer .bl_flexCont.line .bl_flexCol{
    width: 60px;
    margin-right: 15px;
}
.ly_footer .bl_flexCont.line .el_title{
    background-color: #6c9bd2;
    border: 3px solid #000;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    height: 100%;
}
@media (min-width:768px){
    .ly_footer .bl_flexCont.line .bl_flexCol{
        width: 80px;
        margin-right: 20px;
    }
    .ly_footer .bl_flexCont.line .el_title{
        font-size: 22px;
    }
}
/* line >>> 内容 */
.ly_footer .bl_flexCont.line .bl_flexCol+.bl_flexCol{
    width: 68%;
}
.ly_footer .bl_flexCont.line table{
    border-collapse: collapse;
    margin-bottom: 30px;
}
.ly_footer .bl_flexCont.line table tr{
    display: block;
}
.ly_footer .bl_flexCont.line table tr+tr{
    border-top: 1px solid #ccc;
    margin-top: 15px;
    padding-top: 15px;
}
.ly_footer .bl_flexCont.line table th,
.ly_footer .bl_flexCont.line table td{
    display: block;
}
.ly_footer .bl_flexCont.line table th{
    color: #6c9bd2;
    text-align: left;
    margin-bottom: 5px;
}
.ly_footer .bl_flexCont.line table th br{
    display: none;
}
.ly_footer .bl_flexCont.line .el_lineBtn{
    transition: 0.3s;
}
.ly_footer .bl_flexCont.line .el_lineBtn:hover{
    opacity: 0.5;    
}
.ly_footer .bl_flexCont.line .el_lineBtn img{
    border-radius: 5px;
}
.ly_footer .bl_flexCont.line .el_lineQr{
    margin-top: 20px;
}
.ly_footer .bl_flexCont.line .el_lineQr img{
    border: 1px solid #ccc;
    width: 180px;
}
@media (min-width:375px){
    .ly_footer .bl_flexCont.line .bl_flexCol+.bl_flexCol{
        width: 73%;
    }
    .ly_footer .bl_flexCont.line table th{
        font-size: 18px;
    }
}
@media (min-width:375px){
    .ly_footer .bl_flexCont.line .bl_flexCol+.bl_flexCol{
        width: 73%;
    }
}
@media (min-width:768px){
    .ly_footer .bl_flexCont.line .bl_flexCol+.bl_flexCol{
        width: 83%;
    }
    .ly_footer .bl_flexCont.line .bl_line{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .ly_footer .bl_flexCont.line .el_lineQr{
        margin-top: 0;
        margin-left: 40px;
    }
}
@media (min-width:1200px){
    .ly_footer .bl_flexCont.line .bl_flexCol+.bl_flexCol{
        width: 89%;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .ly_footer .bl_flexCont.line .bl_text{
        width: 65%;
    }
    .ly_footer .bl_flexCont.line table{
        margin: 0;
    }
    .ly_footer .bl_flexCont.line .bl_line{
        width: 30%;
    }
}
@media (min-width:1400px){
    .ly_footer .bl_flexCont.line .bl_flexCol+.bl_flexCol{
        width: 91%;
    }
    .ly_footer .bl_flexCont.line .bl_text{
        width: 68%;
    }
    .ly_footer .bl_flexCont.line table tr{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .ly_footer .bl_flexCont.line table th{
        width: 18%;
        text-align: center;
    }
    .ly_footer .bl_flexCont.line table th br{
        display: block;
    }
    .ly_footer .bl_flexCont.line table td{
        width: 80%;
    }
    .ly_footer .bl_flexCont.line .bl_line{
        justify-content: space-between;
        width: 28%;
    }
    .ly_footer .bl_flexCont.line .el_lineQr{
        width: 45%;
    }
}

/*===== ロゴ =====*/
.ly_footer .el_logo{
    display: block;
    margin: 40px auto 0;
    width: 240px;
}
@media (min-width:768px){
    .ly_footer .el_logo{
        margin: 60px auto 0;
    }
}


/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* clear fix  */
.clear::before, .clear::after,
.hp_clearFix::before,
.hp_clearFix::after{
    content: "";
    display: table;
    table-layout: fixed;
}
.clear::after,
.hp_clearFix::after{
    clear: both;
}

/* フォントサイズ */
.hp_fzXS{
    font-size: 12px!important;
}
.hp_fzSm{
    font-size: 14px!important;
}
.hp_fzMd{
    font-size: 18px!important;
}
.hp_fzLg{
    font-size: 24px!important;
}
.hp_fzXL{
    font-size: 32px!important;
}
.hp_fzXXL{
    font-size: 40px!important;
}
.hp_fzXXXL{
    font-size: 50px!important;
}

/* 上マージン */
.hp_mt1rem{
    margin-top: 1rem !important;
}
.hp_mt2rem{
    margin-top: 2rem !important;
}
.hp_mt3rem{
    margin-top: 3rem !important;
}
.hp_mt4rem{
    margin-top: 4rem !important;
}
.hp_mt5rem{
    margin-top: 5rem !important;
}
.hp_mt6rem{
    margin-top: 6rem !important;
}
.hp_mt7rem{
    margin-top: 7rem !important;
}
.hp_mt8rem{
    margin-top: 8rem !important;
}
.hp_mt9rem{
    margin-top: 9rem !important;
}
.hp_mt10rem{
    margin-top: 10rem !important;
}
.hp_mt0{
    margin-top: 0!important;
}

/* 下マージン*/
.hp_mb1rem{
    margin-bottom: 1rem !important;
}
.hp_mb2rem{
    margin-bottom: 2rem !important;
}
.hp_mb3rem{
    margin-bottom: 3rem !important;
}
.hp_mb4rem{
    margin-bottom: 4rem !important;
}
.hp_mb5rem{
    margin-bottom: 5rem !important;
}
.hp_mb6rem{
    margin-bottom: 6rem !important;
}
.hp_mb7rem{
    margin-bottom: 7rem !important;
}
.hp_mb8rem{
    margin-bottom: 8rem !important;
}
.hp_mb9rem{
    margin-bottom: 9rem !important;
}
.hp_mb10rem{
    margin-bottom: 10rem !important;
}
.hp_mb0{
    margin-bottom: 0 !important;
}

/* 文章の揃え */
.hp_txtCenter{
    text-align: center !important;
}
.hp_txtLeft{
    text-align: left !important;
}
.hp_txtRight{
    text-align: right !important;
}

/* 表示 */
.hp_pcOnly{
    display: none;
}
@media (min-width:768px){
    .hp_spOnly{
        display: none;
    }
    .hp_pcOnly{
        display: block;
    }
}
