@charset "utf-8";
/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    background-color: #F8FAFC;
    box-sizing: border-box;
    color: #314158;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    line-height: 1.6;
    letter-spacing: 1px;
    position: relative;
    width: 100%;
}
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;
    transition: 0.3s;
}
a:hover{
    opacity: 0.5;
}
*:focus {
    outline: none;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
.ly_header{
    background-color: #FCFCFDF2;
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
}

/* ロゴ */
.ly_header .el_header-logo{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    max-width: 160px;
    width: 100%;
}
.ly_header .el_header-logo img{
    margin: 0;
}
@media (min-width:1200px){
    .ly_header .el_header-logo{
        max-width: 200px;
    }
}

/* メニュー 開閉ボタン */
.el_header-btn{
    background-color: transparent;
    border-radius: 50%;
	cursor: pointer;
	margin: 0;
    z-index: 999;
    width: 40px;
    height: 40px;
	position: absolute;
	top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.el_header-btn.active{
    background-color: #E2E8F0;
}
.el_header-btn .bl_btn-inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 24px;
    height: 14px;
}
.el_header-btn span{
    background-color: #22587C;
    border-radius: 50px;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
}
.el_header-btn,
.el_header-btn span{
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.el_header-btn span:nth-of-type(1){
	top: 0;
}
.el_header-btn span:nth-of-type(2){
	top: 50%;
    transform: translateY(-50%);
}
.el_header-btn span:nth-of-type(3){
	bottom: 0;
}
@media (min-width:1200px){
    .el_header-btn{
        display: none;
    }
}

/*===== スマホメニュー =====*/
.bl_header-menu{
    background-color: #FCFCFDF2;
    border-left: 3px solid #e1e8f0;
    box-shadow: 0 12px 64px 0 #05162F40;
    display: none;
    padding: 30px;
    position: fixed;
    top: 80px;
    right: 0;
    max-width: 200px;
    width: 50%;
    height: calc( 100vh - 80px );
    z-index: 900;
}
.bl_globalmenu{
    margin: 0 auto;
    list-style: none;
}
.bl_globalmenu li+li{
    margin-top: 30px;
}
.bl_globalmenu li a{
    color: #22587C;
    display: block;
    font-size: 16px;
    text-align: right;
    text-decoration: none;
}
@media (min-width:1200px){
    .bl_header-menu{
        background-color: transparent;
        border: 0;
        box-shadow: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 700px;
        padding: 0;
        width: 100%;
        height: 80px;
        top: 0;
        right: 0;
    }
    .bl_globalmenu{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 40px;
        width: 100%;
        height: 80px;
    }
    .bl_globalmenu li{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .bl_globalmenu li+li{
        margin-top: 0;
        margin-left: 40px;
    }
    .bl_globalmenu li a{
        display: block;
        text-decoration: none;
        position: relative;
    }
}

/*--------------------------------------------------------
    共通部分
--------------------------------------------------------*/
/* コンテナ */
.bl_border{
    background-color: #fff;
    border: 2px solid #FBFDFF;
    border-radius: 15px;
    box-shadow: 0 64px 64px 0 #05162F40;
    max-width: 950px;
    margin: 0 auto;
    padding: clamp(2.5rem, 0.278rem + 4.63vw, 3.75rem) clamp(1.25rem, -0.972rem + 4.63vw, 2.5rem);
    position: relative;
    z-index: 50;
}
.bl_border+.bl_border{
    margin-top: 40px;
}

/* リンク・ボタン */
.bl_cont .el_btn{
    background-color: #157BBF;
    border-radius: 50px;
    box-shadow: 0px 2px 8px 0px #05162F26;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
    height: 50px;
    margin: 30px auto 0;
}
@media (min-width:768px){
    .bl_cont .el_btn{
        max-width: 160px;
        margin: 30px 0 0;
    }
}

/* 区切り線 */
.bl_cont hr{
    border: 1px solid #CAD5E2;
    margin: 40px auto;
    padding: 0;
}

/* テキスト */
.bl_cont h1{
    color: #22587C;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin: 60px auto 40px;
}
.bl_cont h2{
    color: #22587C;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 40px;
    padding-bottom: 20px;
    position: relative;
}
.bl_cont h2::after{
    background-color: #90A1B9;
    border-radius: 30px;
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.bl_cont h2.hp_txt-center::after{
    left: 50%;
    transform: translateX(-50%);
}
.bl_cont h2.hp_txt-right::after{
    left: auto;
    right: 0;
}
.bl_cont h3{
    color: #22587C;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto 10px;
}
.bl_cont h4{
    color: #22587C;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto 10px;
}
.bl_cont *+h3,
.bl_cont *+h4{
    margin-top: 20px;
}
.bl_cont .el_catchcopy{
    color: #157BBF;
    font-size: 22px;
    text-align: center;
}
.bl_cont *+p{
    margin-top: 15px;
}
.bl_cont h2+p,
.bl_cont h3+p, 
.bl_cont h4+p{
    margin-top: 0;
}
.bl_cont .el_fc-rg{
    color: #566875;
}
.bl_cont a{
    color: #157BBF;
    text-decoration: underline;
}

/* リスト */
.bl_cont ul{
    list-style: none;
    margin-top: 10px;
    padding: 0;
}
.bl_cont ul li{
    padding-left: 20px;
    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_cont ol{
    counter-reset: item;
    list-style: none;
    margin-top: 10px;
    padding: 0;
}
.bl_cont ol li{
    padding-left: 20px;
    position: relative;
}
.bl_cont ol li:nth-child(n+10){
    padding-left: 30px;
}
.bl_cont ol li+li{
    margin-top: 5px;
}
.bl_cont ol li:before{
    counter-increment: item;
    content: counter(item)'.';
    position: absolute;
    left: 0;
    top: 0;
}

/* 横並び */
.bl_flex-cont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_flex-col{
    width: 100%;
}
.bl_flex-col+.bl_flex-col{
    margin-top: 20px;
}
@media (min-width:768px){
    .bl_flex-col+.bl_flex-col{
        margin-top: 0;
    }
    .bl_flex-col:nth-child(n+3){
        margin-top: 30px;
    }
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer p,
.ly_footer a{
    color: #CAD5E2;
}

/* 情報 */
.bl_footer-cont{
    background-color: #314158;
}
.bl_footer-cont .bl_footer-inner{
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(2.5rem, 0.278rem + 4.63vw, 3.75rem) clamp(1.25rem, -0.972rem + 4.63vw, 2.5rem) clamp(1.875rem, -1.458rem + 6.94vw, 3.75rem);
}
@media (min-width:1200px){
    .bl_footer-cont .bl_footer-inner{
        padding: 60px 0;
    }
}

/* ロゴ */
.ly_footer .el_footer-logo{
    display: block;
    margin: 0 0 15px;
    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;
    }
}

/* SNSリンク */
.ly_footer .bl_sns{
    margin: 30px auto;
}
.ly_footer .bl_sns p{
    color: #fff;
}
.ly_footer .bl_sns .bl_flex-cont{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 15px;
}
.ly_footer .bl_sns .bl_flex-col{
    width: auto;
}
.ly_footer .bl_sns .bl_flex-col + .bl_flex-col{
    margin-top: 0;
    margin-left: 20px;
}
.ly_footer .bl_sns a{
    border: 1px solid #566875;
    border-radius: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
}
.ly_footer .bl_sns a::before{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    margin-right: 20px;
    width: 20px;
    height: 20px;
}
.ly_footer .bl_sns .el_instagram::before{
    background-image: url("../img/icon_instagram.png");
}
.ly_footer .bl_sns .el_x::before{
    background-image: url("../img/icon_x.png");
}

/* サイトポリシー */
.el_policy{
    font-size: 14px;
}

/* 区切り線 */
.ly_footer hr{
    border: 0.6px solid #45556C;
    margin: 30px auto;
}

/* コピーライト */
.ly_footer .bl_policy{
    display: block;
    width: 100%;
}
.ly_footer .bl_policy li+li{
    margin-top: 10px;
}
.ly_footer .el_copyright{
    display: block;
    font-size: 14px;
    margin: 0;
}
@media (min-width:768px){
    .ly_footer .bl_copyright{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
    }
    .ly_footer .bl_policy li{
        display: inline-block;
    }
    .ly_footer .bl_policy li+li{
        margin-top: 0;
        margin-left: 15px;
    }
}

/* 神奈川県～ */
.bl_footer-kanagawa{
    background-color: #fff;
}
.bl_footer-kanagawa .bl_footer-inner{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    max-width: 1120px;
    padding: 20px clamp(1.25rem, -0.972rem + 4.63vw, 2.5rem);
}
.bl_footer-kanagawa .bl_footer-inner figure{
    margin-right: 20px;
    width: 60px;
}
.bl_footer-kanagawa .bl_footer-inner p{
    color: #141414;
    font-size: clamp(0.75rem, 0.528rem + 0.46vw, 0.875rem);
    width: calc( 100% - 70px );
}
@media (min-width:1200px){
    .bl_footer-kanagawa .bl_footer-inner{
        padding: 20px 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;
}

