/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}
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:1450px){
    .bl_cont{
        padding: 0;
    }
}

/* 見出し */
.bl_cont .el_lv2Heading{
    font-size: 16px;
    text-align: center;
    margin: 0 auto 20px;
}
.bl_cont .el_lv2Heading::before{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
}
.bl_cont .el_lv2Heading img{
    display: block;
    margin-bottom: 10px;
}
@media (min-width:375px){
    .bl_cont .el_lv2Heading{
        font-size: 18px;
    }
}
@media (min-width:410px){
    .bl_cont .el_lv2Heading{
        font-size: 20px;
    }
}
@media (min-width:768px){
    .bl_cont .el_lv2Heading{
        font-size: 24px;
        margin-bottom: 30px;
    }
    .bl_cont .el_lv2Heading::before{
        width: 50px;
        height: 50px;
    }
}
@media (min-width:1200px){
    .bl_cont .el_lv2Heading::before{
        width: 60px;
        height: 60px;
    }
}

/* ボタン */
.bl_cont .el_btn{
    color: #fff;
    background: linear-gradient(90deg, rgba(125,192,234,1) 0%, rgba(240,135,192,1) 100%);
    border-radius: 15px;
    display: block;
    font-size: 18px;
    font-weight: bold;
    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/top2025/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%);
}
.bl_cont .el_btn.comingsoon{
    background: linear-gradient(90deg, rgba(178,172,181,1) 0%, rgba(178,172,181,1) 100%);
}
.bl_cont .el_btn.comingsoon::after{
    display: none;
}

/* フェードイン */
.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;
    }
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
.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;
    }
}

/* メイン画像 */
.ly_header .bl_mainCont{
    background-image: url("../img/top2025/img_main.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.ly_header .bl_mainCont::after{
    background-color: #0000004D;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* メイン画像 テキスト */
.ly_header .bl_mainText{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1000px;
    transform: translate(-50%,-50%);
    z-index: 999;
}
@media (min-width:768px){
    .ly_header .bl_mainText{
        width: 70%;
    }
}
@media (min-width:1600px){
    .ly_header .bl_mainText{
        width: 100%;
    }
}


/* スクロールアニメーション */
.el_scroll{
    width: 100%;
	height: 60px;
	position: absolute;
	left: 50%;
	bottom: 8px;
    transform: translateX(-50%);
    z-index: 999;
}
.el_scroll span{
	color: #fff;
    font-size: 18px;
    text-align: center;
	position: absolute;
	left: 50%;
	top: -20px;
    transform: translateX(-50%);
}
.el_scroll::after{
	animation: pathmove 1.4s ease-in-out infinite;
	background: #fff;
	content: "";
	width: 2px;
	height: 60px;
	opacity: 0;
	position: absolute;
	top: 0;
    left: 50%;
    transform: translateX(-50%);
}
@keyframes pathmove{
    0%{
        height: 0;
        top: 10px;
        opacity: 0;
    }
    30%{
        height: 40px;
        opacity: 1;
    }
    100%{
        height: 0;
        top: 60px;
        opacity: 0;
    }
}

/*--------------------------------------------------------
    スケジュール
--------------------------------------------------------*/
.bl_schedule{
    background-color: #e9e4f3;
    padding: 60px 0;
}
.bl_schedule .el_lv2Heading::before{
    background-image: url("../img/top2025/icon_schedule.png");
    display: block;
    margin-bottom: 30px;
}
.bl_schedule .el_lv2Heading img{
    max-width: 660px;
    margin-bottom: 30px;
    width: 100%;
}
.bl_schedule .el_lv2Heading+p{
    font-weight: bold;
}
@media (min-width:768px){
    .bl_schedule{
        padding: 80px 0;
    }
    .bl_schedule .el_lv2Heading img{
        width: 60%;
    }
    .bl_schedule .el_lv2Heading+p{
        font-size: 20px;
        text-align: center;
    }
}
@media (min-width:1024px){
    .bl_schedule .el_lv2Heading img{
        width: 55%;
    }
}
@media (min-width:1200px){
    .bl_schedule{
        padding: 120px 0;
    }
}

/* flex */
.bl_schedule .bl_flexCont{
    margin: 80px auto 0;
}
.bl_schedule .bl_flexCol{
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 5px 5px 5px 0px #b4a3d780;
    max-width: 380px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    position: relative;
}
.bl_schedule .bl_flexCol::before{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.bl_schedule .bl_flexCol:first-of-type::before{
    background-image: url("../img/top2025/icon_schedule01.png");
}
.bl_schedule .bl_flexCol:nth-child(2)::before{
    background-image: url("../img/top2025/icon_schedule02.png");
}
.bl_schedule .bl_flexCol:nth-child(3)::before{
    background-image: url("../img/top2025/icon_schedule03.png");
}
.bl_schedule .bl_flexCol:nth-child(4)::before{
    background-image: url("../img/top2025/icon_schedule04.png");
}
.bl_schedule .bl_flexCol:last-of-type::before{
    background-image: url("../img/top2025/icon_schedule05.png");
}
.bl_schedule .bl_flexCol+.bl_flexCol{
    margin-top: 60px;
}
.bl_schedule .bl_flexCol a{
    transition: 0.3s;
}
.bl_schedule .bl_flexCol a:hover{
    opacity: 0.5;
}
.bl_schedule .bl_flexCol .el_lv3Heading{
    color: #8574ce;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}
.bl_schedule .bl_flexCol .el_lv3Heading::after{
    background-image: url("../img/top2025/icon_dot.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    margin: 20px auto 0;
    line-height: 0.8;
    width: 60px;
    height: 10px;
}
@media (min-width:375px){
    .bl_schedule .bl_flexCol .el_lv3Heading{
        font-size: 22px;
    }
}
@media (min-width:768px){
    .bl_schedule .bl_flexCont{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        margin-top: 100px;
    }
    .bl_schedule .bl_flexCol{
        width: 45%;
    }
    .bl_schedule .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
    .bl_schedule .bl_flexCol:nth-child(n+3){
        margin-top: 80px;
    }
    .bl_schedule .bl_flexCol .el_lv3Heading{
        font-size: 20px;
    }
}
@media (min-width:1024px){
    .bl_schedule .bl_flexCont{
        justify-content: center;
    }
    .bl_schedule .bl_flexCol{
        padding: 60px 20px 40px;
        width: 31%;
        margin: 0;
    }
    .bl_schedule .bl_flexCol::before{
        width: 100px;
        height: 100px;
        top: -50px;
    }
    .bl_schedule .bl_flexCol+.bl_flexCol{
        margin-top: 0;
        margin-left: 30px;
    }
    .bl_schedule .bl_flexCol:nth-child(n+3){
        margin-top: 0;
    }
    .bl_schedule .bl_flexCol:nth-child(n+4){
        margin-top: 80px;
    }
    .bl_schedule .bl_flexCol .el_lv3Heading{
        font-size: 26px;
    }
}
@media (min-width:1024px){
    .bl_schedule .bl_flexCol+.bl_flexCol{
        margin-left: 20px;
    }
}
@media (min-width:1200px){
    .bl_schedule .bl_flexCol+.bl_flexCol{
        margin-left: 30px;
    }
}
@media (min-width:1400px){
    .bl_schedule .bl_flexCol+.bl_flexCol{
        margin-left: 40px;
    }
}

/* 文字スクロール */
.bl_schedule{
    position: relative;
    overflow: hidden;
    padding-bottom: 200px;
}
.bl_textScroll{
    display: flex;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
    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/top2025/img_roll-text.png");
    background-repeat: repeat-x;
    background-size: contain;
	width: 1550px;
    height: 150px;
    margin-right: 80px;
}
@keyframes infinity-scroll-left{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

/*--------------------------------------------------------
    レポート
--------------------------------------------------------*/
.bl_report{
    margin: 60px auto;
}
.bl_report .el_lv2Heading::before{
    background-image: url("../img/top2025/icon_report.png");
    display: block;
    margin-bottom: 30px;
}
.bl_report .el_lv2Heading img{
    max-width: 1190px;
    margin-bottom: 30px;
    width: 100%;
}
.bl_report .el_lv2Heading+p{
    font-weight: bold;
    text-align: center;
}
@media (min-width:768px){
    .bl_report{
        margin: 80px auto;
    }
    .bl_report .el_lv2Heading img{
        width: 90%;
    }
    .bl_report .el_lv2Heading+p{
        font-size: 20px;
    }
}
@media (min-width:1200px){
    .bl_report{
        margin: 120px auto;
    }
}

/* flex */
.bl_report .bl_flexCont{
    margin: 40px auto 0;
}
.bl_report .bl_flexCol+.bl_flexCol{
    margin-top: 40px;
}
.bl_report .bl_flexCol a{
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}
.bl_report .bl_flexCol a:hover{
    opacity: 0.5;
}
.bl_report .bl_flexCol img{
    border-radius: 30px;
    margin: 0;
    width: 100%;
    position: relative;
}
.bl_report .bl_flexCol p{
    background: linear-gradient(90deg, rgba(125,192,234,1) 0%, rgba(240,135,192,1) 100%);
    border-radius: 0 30px 0 30px;
    color: #fff;
    margin-top: 10px;
    padding: 10px 30px;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (min-width:768px){
    .bl_report .bl_flexCont{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .bl_report .bl_flexCol{
        width: 48%;
    }
    .bl_report .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
    .bl_report .bl_flexCol:nth-child(n+3){
        margin-top: 30px;
    }
}
@media (min-width:1024px){
    .bl_report .bl_flexCol{
        width: 24%;
    }
    .bl_report .bl_flexCol:nth-child(n+3){
        margin: 0;
    }
}

/*--------------------------------------------------------
    バナー
--------------------------------------------------------*/
.bl_bnr{
    background-color: #dee2f2;
    padding: 60px 0;
}
@media (min-width:768px){
    .bl_bnr{
        padding: 80px 0;
    }
}
@media (min-width:1200px){
    .bl_bnr{
        padding: 120px 0;
    }
}

/* flex */
.bl_bnr .bl_flexCont{
    margin: 0 auto;
}
.bl_bnr .bl_flexCol{
    margin: 0;
}
.bl_bnr .bl_flexCol+.bl_flexCol{
    margin-top: 40px;
}
.bl_bnr .bl_flexCol a{
    transition: 0.3s;
}
.bl_bnr .bl_flexCol a:hover{
    opacity: 0.5;
}
.bl_bnr .bl_flexCol img{
    margin: 0;
    width: 100%;
}
@media (min-width:768px){
    .bl_bnr .bl_flexCont{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .bl_bnr .bl_flexCol{
        width: 48%;
    }
    .bl_bnr .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
    .bl_bnr .bl_flexCol:nth-child(n+3){
        margin-top: 40px;
    }
}
@media (min-width:1024px){
    .bl_bnr .bl_flexCol{
        width: 24%;
    }
    .bl_bnr .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
}

/*--------------------------------------------------------
    SNSバナー
--------------------------------------------------------*/
.bl_sns{
    margin: 60px auto;
}
.bl_sns .pc{
    display: none;
}
@media (min-width:768px){
    .bl_sns{
        margin: 80px auto;
    }
    .bl_sns .sp{
        display: none;
    }
    .bl_sns .pc{
        display: block;
    }
}
@media (min-width:1200px){
    .bl_sns{
        margin: 120px auto;
    }
}

/*--------------------------------------------------------
    ページトップ
--------------------------------------------------------*/
.el_pageTop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 80px;
    height: 80px;
    z-index: 999;
}
.el_pageTop a{
    background: linear-gradient(130deg, rgba(125, 192, 234, 1) 0%, rgba(240, 135, 192, 1) 100%);
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: relative;
}
.el_pageTop a:hover{
    opacity: 0.5;
}
.el_pageTop span{
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 20px;
}
.el_pageTop span::before{
    background-image: url("../img/top2025/icon_pagetop.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
    margin: 60px auto 40px;
}
.ly_footer .bl_cont{
    max-width: 1400px;
    margin: 0 auto;
}
@media (min-width:768px){
    .ly_footer{
        margin: 80px auto 40px;
    }
}
@media (min-width:1200px){
    .ly_footer{
        margin: 120px auto 40px;
    }
}

/*===== 見出し =====*/
.ly_footer .bl_lvCont{
    text-align: center;
    margin-bottom: 20px;
}
.ly_footer .el_lv2Heading{
    color: #9a89cc;
    display: inline-block;
    font-size: 20px;
    margin: 0;
    position: relative;
}
.ly_footer .el_lv2Heading::before,
.ly_footer .el_lv2Heading::after{
    background-color: #9a89cc;
    content: '';
    display: inline-block;
    width: 50px;
    height: 3px;
    position: absolute;
}
.ly_footer .el_lv2Heading::before{
    left: -55px;
    bottom: 5px;
    transform: rotate(50deg);
}
.ly_footer .el_lv2Heading::after{
    right: -50px;
    bottom: 20px;
    transform: rotate(-50deg);
}
.ly_footer .bl_lvCont+p{
    font-size: 18px;
    text-align: center;
}
@media (min-width:410px){
    .ly_footer .el_lv2Heading{
        font-size: 24px;
    }
    .ly_footer .el_lv2Heading::before,
    .ly_footer .el_lv2Heading::after{
        width: 70px;
    }
    .ly_footer .el_lv2Heading::before{
        left: -75px;
        bottom: 15px;
        transform: rotate(45deg);
    }
    .ly_footer .el_lv2Heading::after{
        right: -70px;
        bottom: 30px;
        transform: rotate(-45deg);
    }
}
@media (min-width:768px){
    .ly_footer .el_lv2Heading{
        font-size: 32px;
    }
    .ly_footer .el_lv2Heading br{
        display: none;
    }
    .ly_footer .el_lv2Heading::before,
    .ly_footer .el_lv2Heading::after{
        width: 45px;
    }
    .ly_footer .el_lv2Heading::before{
        left: -50px;
        bottom: 10px;
        transform: rotate(50deg);
    }
    .ly_footer .el_lv2Heading::after{
        right: -45px;
        bottom: 25px;
        transform: rotate(-50deg);
    }
}
@media (min-width:1024px){
    .ly_footer .el_lv2Heading{
        font-size: 40px;
    }
    .ly_footer .el_lv2Heading::before,
    .ly_footer .el_lv2Heading::after{
        width: 55px;
        height: 4px;
    }
    .ly_footer .el_lv2Heading::before{
        left: -55px;
    }
    .ly_footer .el_lv2Heading::after{
        right: -50px;
    }
}
@media (min-width:1200px){
    .ly_footer .el_lv2Heading{
        font-size: 50px;
    }
    .ly_footer .el_lv2Heading::before,
    .ly_footer .el_lv2Heading::after{
        width: 70px;
    }
    .ly_footer .el_lv2Heading::before{
        left: -80px;
        bottom: 20px;
    }
    .ly_footer .el_lv2Heading::after{
        right: -75px;
        bottom: 35px;
    }
}

/*===== 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: linear-gradient(130deg, rgba(125, 192, 234, 1) 0%, rgba(240, 135, 192, 1) 100%);
    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{
    color: #9a89cc;
    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: #9a89cc;
    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: #9a89cc;
        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: #9a89cc;
    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/top2025/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: 40px;
    }
}
@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: linear-gradient(130deg, rgba(125, 192, 234, 1) 0%, rgba(240, 135, 192, 1) 100%);
    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: #9a89cc;
    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_fwBold{
    font-weight: 500!important;
}

/* フォントカラー */
.hp_fcWhite{
    color: #fff!important;
}
.hp_fc{
    color: #6355a1!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_bcGray{
    background-color: #F1F3F8!important;
}
.hp_bcOrange{
    background-color: #F57F00!important;
}

/* 角丸 */
.hp_br{
    border-radius: 30px!important;
}

/* 表示 */
.hp_pcOnly{
    display: none;
}
@media (min-width:768px){
    .hp_spOnly{
        display: none;
    }
}
@media (min-width:1024px){
    .hp_none{
        display: none;
    }
    .hp_tabOnly{
        display: none;
    }
    .hp_pcOnly{
        display: block;
    }
}
