@charset "utf-8";
/* 全頁共通CSS */

/* スムーススクロール */
html{
    scroll-behavior: smooth!important;
    scroll-padding-top: 100px!important;
}

/*--------------------------------------------------------
    メインビジュアル
--------------------------------------------------------*/
.bl_mv-cont{
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}
.bl_mv-cont::before{
    background-image: url("../img/img_mv-bf.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -35%;
    width: 100%;
    height: 50%;
    z-index: -1;
}
.bl_mv-cont .bl_slider-cont{
    margin: 0!important;
}
.bl_mv-cont .slick-list,
.bl_mv-cont .slick-track,
.bl_mv-cont .bl_slide{
    margin: 0;
    width: 100%;
    height: 100%;
}
.bl_mv-cont .bl_slide img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
@media (max-width:767px){
    .bl_mv-cont .bl_slider-cont{
        aspect-ratio: 1 / 1;
    }
}
@media (min-width:768px){
    .bl_mv-cont{
        margin: 0;
    }
    .bl_mv-cont::before{
        display: none;
    }
}

/* スライダー ドット */
.slick-dots{
    bottom: -40px;
}
.slick-dots li{
    margin: 0!important;
}
.slick-dots li+li{
    margin-left: 5px!important;
}
.slick-dots li button:before{
    color: #CAD5E2!important;
    font-size: 10px;
    opacity: 1!important;
}
.slick-dots li.slick-active button:before{
    color: #22587C!important;
}
@media (min-width:768px){
    .slick-dots{
        display: inline-block!important;
        width: auto!important;
        left: auto!important;
        right: 90px;
        transform: none!important;
        bottom: -40px;
    }
}

/* スライダー 一時停止ボタン */
.el_slider-cb{
    background-color: #566875;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: 0.3s;
    position: absolute;
    bottom: -40px;
    right: 10px;
    width: 65px;
    height: 25px;
}
.el_slider-cb:hover{
    opacity: 0.5;
}
.el_slider-cb p::before{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/icon_pause.png");
    content: '';
    display: inline-block;
    margin-right: 5px;
    width: 10px;
    height: 10px;
}
.el_slider-cb p::after{
    content: '停止';
    display: inline-block;
}
.el_slider-cb.active p::before{
    background-image: url("../img/icon_play.png");
}
.el_slider-cb.active p::after{
    content: '再生';
}

/*--------------------------------------------------------
    アバウト
--------------------------------------------------------*/
.bl_about{
    background-color: #fff;
    padding: clamp(2.5rem, -1.944rem + 9.26vw, 5rem) 20px;
}
.bl_about .bl_intro{
    font-size: 16px;
    text-align: center;
    max-width: 640px;
    margin: 40px auto 0;
    letter-spacing: 2px;
    line-height: 1.8;
}
.bl_about .bl_intro p+p{
    margin-top: 20px;
}
@media (min-width:768px){
    .bl_about{
        padding: clamp(2.5rem, -1.944rem + 9.26vw, 5rem) 0;
    }
    .bl_about .el_catchcopy br{
        display: none;
    }
}

/*--------------------------------------------------------
    背景画像
--------------------------------------------------------*/
@media (min-width:768px){
    .bl_inner{
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, rgba(49, 65, 88, 1) 10%);
        position: relative;
    }
    .bl_inner::before{
        background-image: url("../img/img_bg-activity-pc.png");
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
}
@media (min-width:1200px){
    .bl_inner{
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, rgba(49, 65, 88, 1) 10%);
    }
}

/*--------------------------------------------------------
    アクティビティ
--------------------------------------------------------*/
/* コンテナ */
.bl_activity{
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px 0;
    position: relative;
}
.bl_activity::before{
    background-image: url("../img/img_bg-activity-sp.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media (min-width:768px){
    .bl_activity{
        z-index: 50;
    }
    .bl_activity::before{
        display: none;
    }
}
@media (min-width:1024px){
    .bl_activity{
        padding: 60px 0 0;
    }
}

/* 内容 */
.bl_activity .bl_flex-col{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_activity figure{
    width: 65px;
}
.bl_activity .bl_text{
    width: calc( 100% - 80px );
}
.bl_activity .bl_text h3{
    font-weight: normal;
    font-size: 16px;
    margin: 0;
}
.bl_activity .bl_text p{
    font-size: 12px;
    margin-top: 5px;
}
@media (min-width:768px){
    .bl_activity .bl_flex-col{
        width: 49%;
    }
    .bl_activity .bl_flex-col+.bl_flex-col{
        margin: 0;
    }
    .bl_activity .bl_flex-col:nth-child(n+3){
        margin-top: 30px;
    }
}

/*--------------------------------------------------------
    背景色 スマホのみ
--------------------------------------------------------*/
.bl_bg{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 1%, rgba(49, 65, 88, 1) 3%);
    margin-top: clamp(2.5rem, -1.944rem + 9.26vw, 5rem);
    padding: 0 clamp(1.25rem, -0.972rem + 4.63vw, 2.5rem) clamp(2.5rem, 0.278rem + 4.63vw, 3.75rem);
}
@media (min-width:768px){
    .bl_bg{
        background: none;
        position: relative;
        z-index: 50;
    }
}

/*--------------------------------------------------------
    施設紹介
--------------------------------------------------------*/
/* 施設内紹介 */
.introduction{
    justify-content: center;
}
.introduction .bl_flex-col img{
    margin: 0;
    width: 100%;
}
.introduction .bl_flex-col p{
    color: #566875;
    font-size: 12px;
    margin-top: 5px;
}
@media (min-width:768px){
    .introduction .bl_flex-col{
        width: 49%;
    }
    .introduction .bl_flex-col+.bl_flex-col{
        margin-top: 0;
    }
    .introduction .bl_flex-col:nth-child(n+3){
        margin-top: 20px;
    }
    .introduction .bl_flex-col:nth-child(2n){
        margin-left: 2%;
    }
}

/* 設備・施設 */
.bl_dl-cont dl{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_dl-cont dl+dl{
    margin-top: 20px;
}
.bl_dl-cont dt{
    color: #157BBF;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    position: relative;
}
.bl_dl-cont dt::after{
    border-right: 2px solid #CAD5E2;
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: -20px;
    width: 2px;
    height: 24px;
}
.bl_dl-cont dd{
    width: calc( 100% - 60px);
}
.bl_dl-cont dd h4{
    font-weight: normal;
    margin: 0;
}
.bl_dl-cont dd p{
    color: #566875;
    font-size: 14px;
    margin-top: 5px;
}

/* 主な施設の特徴 */
.features{
    border: 1px solid #CAD5E2;
    border-radius: 15px;
    margin: 30px auto 0;
    padding: clamp(1.25rem, 0.694rem + 1.16vw, 1.563rem);
}
.features .bl_flex-col{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.features .bl_flex-col figure{
    max-width: 50px;
    margin: 0;
}
.features .bl_flex-col p{
    color: #22587C;
    font-size: 14px;
    margin: 0;
    width: calc( 100% - 60px );
}
@media (min-width:768px){
    .features .bl_flex-col{
        width: 48%;
    }
    .features .bl_flex-col+.bl_flex-col{
        margin-top: 0;
    }
    .features .bl_flex-col:nth-child(n+3){
        margin-top: 20px;
    }
    .features .bl_flex-col figure{
        margin: 0;
    }
}
@media (min-width:1024px){
    .features::after{
        content: '';
        display: block;
        width: 32%;
    }
    .features .bl_flex-col{
        width: 32%;
    }
    .features .bl_flex-col:nth-child(n+3){
        margin: 0;
    }
    .features .bl_flex-col:nth-child(n+4){
        margin-top: 20px;
    }
}

/*--------------------------------------------------------
    お知らせ
--------------------------------------------------------*/
.bl_newsCol+.bl_newsCol{
    border-top: 1px solid #c2d1e4;
    margin-top: 30px;
    padding-top: 30px;
}
.bl_news-time{
    color: #566875;
    display: block;
    font-size: 14px;
}
.bl_news-text{
    margin-top: 10px;
}
.bl_news-text .el_category{
    background-color: #F0FDFA;
    border: 1px solid #46ECD5;
    border-radius: 50px;
    color: #00786F;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 85px;
    height: 25px;
}
.bl_news-text h3{
    margin: 10px auto 15px;
}
.bl_news-text p{
    color: #314158;
}
@media (min-width:768px){
    .bl_newsCol{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .bl_news-text{
        margin: 0;
        position: relative;
        width: calc( 100% - 120px );
    }
    .bl_news-text::before{
        background-color: #CAD5E2;
        content: '';
        display: block;
        width: 3px;
        height: calc( 100% - 40px );
        position: absolute;
        left: -35px;
        bottom: 0;
    }
}

/*--------------------------------------------------------
    アクセス
--------------------------------------------------------*/
/* flex */
@media (min-width:768px){
    .access .bl_flex-col{
        width: 48%;
    }
}
@media (min-width:1024px){
    .access .bl_flex-col.bl_map{
        width: 100%;
    }
    .access .bl_flex-col.bl_text{
        width: 53%;
    }
}

/* googlemap */
.bl_map iframe{
    border: 0!important;
    width: 100%;
    height: 100%;
}
@media (max-width:767px){
    .bl_map{
        aspect-ratio: 1 / 1;
    }
}
@media (min-width:768px){
    .bl_map{
        max-width: 360px;
    }
}

/* テキスト */
.access .bl_text h3{
    margin-top: 30px;
}
.access .bl_text .bl_border-left{
    margin-top: 20px;
    padding-left: 30px;
    position: relative;
}
.access .bl_text .bl_border-left::before{
    background-color: #CAD5E2;
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 3px;
    bottom: 0;
}
.access .bl_text .bl_border-left p+p{
    margin-top: 5px;
}
@media (min-width:768px){
    .access .bl_text{
        max-width: 470px;
    }
}
