/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    background-color: #F8FAFC;
    box-sizing: border-box;
    color: #45556C;
    line-height: 1.6;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}
body.active{
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    overscroll-behavior: none;
}
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;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
.ly_header{
    width: 100%;
    margin-bottom: 60px;
}
.ly_header img{
    width: 100%;
}
@media (min-width:1200px){
    .ly_header{
        margin-bottom: 80px;
    }
}

/*--------------------------------------------------------
    共通部分
--------------------------------------------------------*/
/* コンテナ */
.bl_cont{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.bl_border{
    background-color: #fff;
    border: 2px solid #CAD5E2;
    margin: 60px auto;
    padding: 20px;
}
@media (min-width:768px){
    .bl_cont{
        padding: 0 40px;
    }
    .bl_border{
        padding: 40px;
    }
}
@media (min-width:1200px){
    .bl_cont{
        padding: 0;
    }
}

/* テキスト */
.bl_cont p+p{
    margin-top: 20px;
}
.bl_cont .el_catchcopy{
    font-size: 24px;
    text-align: center;
}
.bl_cont h2{
    color: #1D293D;
    font-size: 20px;
    font-weight: normal;
    margin: 0 auto 20px;
}
.bl_cont .el_fc{
    color: #1D293D;
}

/* リンク・ボタン */
.bl_cont a{
    color: #1D293D;
    text-decoration: none;
}
.bl_cont a.el_btn{
    background-color: #157BBF;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    max-width: 180px;
    width: 100%;
    height: 50px;
    margin: 40px 0 0;
}
.bl_cont a.el_btn:hover{
    opacity: 0.5;
}

/* 区切り線 */
.bl_cont hr{
    border: 1px solid #CAD5E2;
    margin: 30px auto;
    padding: 0;
}

/* リスト */
.bl_cont ul{
    list-style: none;
    padding: 0;
}
.bl_cont ul li{
    color: #45556C;
    padding-left: 15px;
    position: relative;
}
.bl_cont ul li+li{
    margin-top: 5px;
}
.bl_cont ul li::before{
    content: '・';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

/*--------------------------------------------------------
    bl_about
--------------------------------------------------------*/
/* イントロ */
.bl_about .el_catchcopy{
    color: #314158;
    margin-bottom: 30px;
}
.bl_about .bl_intro{
    color: #314158;
    font-size: 16px;
    margin: 0 auto;
    max-width: 600px;
}
.bl_about hr{
    border: 2px solid #CAD5E2;
    margin: 60px auto;
}
@media (min-width:768px){
    .bl_about .el_catchcopy br{
        display: none;
    }
    .bl_about .bl_intro{
        text-align: center;
    }
}

/* 主な活動内容 */
.bl_about h2{
    text-align: center;
}
.bl_about .bl_flex-cont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 860px;
    margin: 40px auto 0;
}
.bl_about .bl_flex-col{
    border: 1px solid #CAD5E2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    width: 100%;
}
.bl_about .bl_flex-col+.bl_flex-col{
    margin-top: 20px;
}
.bl_about .bl_flex-col figure{
    max-width: 65px;
    margin: 0;
}
.bl_about .bl_flex-col p{
    color: #1D293D;
    width: 75%;
}
@media (min-width:410px){
    .bl_about .bl_flex-col p{
        width: 78%;
    }
}
@media (min-width:540px){
    .bl_about .bl_flex-col p{
        width: 83%;
    }
}
@media (min-width:768px){
    .bl_about .bl_flex-col{
        width: 49%;
    }
    .bl_about .bl_flex-col+.bl_flex-col{
        margin-top: 0;
    }
    .bl_about .bl_flex-col:nth-child(n+3){
        margin-top: 20px;
    }
    .bl_about .bl_flex-col figure{
        margin: 0;
    }
    .bl_about .bl_flex-col p{
        width: 75%;
    }
}
@media (min-width:1024px){
    .bl_about .bl_flex-col p{
        width: 80%;
    }
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
    background-color: #314158;
    font-size: 14px;
    padding: 40px 20px;
}
.ly_footer p,
.ly_footer a{
    color: #CAD5E2;
}
.bl_footer-inner{
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width:768px){
    .ly_footer{
        padding: 40px;
    }
    .bl_footer-inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
}
@media (min-width:1200px){
    .ly_footer{
        padding: 40px 0;
    }
}

/* ロゴ */
.ly_footer .el_footer-logo{
    display: block;
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
}
.ly_footer .el_footer-logo img{
    margin: 0;
    width: 100%;
}
@media (min-width:768px){
    .ly_footer .el_footer-logo{
        margin: 0;
    }
}

/* コピーライト */
.ly_footer .el_copyright{
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}
@media (min-width:768px){
    .ly_footer .el_copyright{
        text-align: left;
        margin: 0;
    }
}

/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* フォントウェイト */
.hp_fw-bold{
    font-weight: bold!important;
}

/* 文章の揃え */
.hp_txt-center{
    text-align: center!important;
}
.hp_txt-left{
    text-align: left!important;
}
.hp_txt-right{
    text-align: right!important;
}

