/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
html{
    scroll-behavior: smooth;
}
body{
    box-sizing: border-box;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden!important;
    -webkit-text-size-adjust: 100%;
}
@media (min-width:1200px){
    body{
        font-size: 18px;
    }
}
body.active{
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden!important;
    overscroll-behavior: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color: #0556a1;
    cursor: pointer;
    word-wrap:break-word;
    text-decoration: none;
    transition: 0.3s;
}
a:hover{
    opacity: 0.5;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #005A9C!important;
    outline-offset: 2px!important;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
  text-decoration: underline;
}
.skip-link:focus {
  top: 0;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
.ly_header{
    background-color: #fff;
    box-shadow: 0px 4px 15px 0px #0000001A;
    position: sticky;
    top: 0;
    left: 0;
    transition: 0.3s;;
    width: 100%;
    height: 80px;
    z-index: 999;
}
@media (min-width:1200px){
    .ly_header{
        height: 100px;
    }
}

/*===== ロゴ =====*/
.el_headerLogo{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: calc( 100% - 65px );
    line-height: 1.4;
    z-index: 999;
}
.el_headerLogo a{
    color: #0556a1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.el_headerLogo img{
    display: block;
    margin: 0 10px 0 0;
    max-width: 120px;
    width: 100%;
}
@media (min-width:410px){
    .el_headerLogo a{
        font-size: 12px;
    }
    .el_headerLogo img{
        max-width: 140px;
    }
}
@media (min-width:768px){
    .el_headerLogo a{
        font-size: 16px;
    }
    .el_headerLogo img{
        margin: 0 20px 0 0;
        max-width: 180px;
    }
}
@media (min-width:1200px){
    .el_headerLogo{
        left: 20px;
        width: 450px;
    }
    .el_headerLogo a{
        justify-content: space-between;
    }
    .el_headerLogo img{
        margin: 0;
    }
}
@media (min-width:1400px){
    .el_headerLogo{
        width: 500px;
    }
    .el_headerLogo a{
        font-size: 18px;
    }
    .el_headerLogo img{
        max-width: 200px;
    }
}

/*===== スマホメニュー 開閉ボタン =====*/
.el_headerBtn{
	cursor: pointer;
	position: absolute;
	top: 50%;
    right: 10px;
    transform: translateY(-50%);
	margin: 0;
    width: 35px;
    height: 25px;
    z-index: 999;
}
.el_headerBtn span{
    background-color: #0556a1;
	border-radius: 5px;
	position: absolute;
	left: 0;
    width: 100%;
	height: 3px;
}
.el_headerBtn,
.el_headerBtn span{
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.el_headerBtn span:nth-of-type(1){
	top: 0;
}
.el_headerBtn span:nth-of-type(2){
	top: 50%;
    transform: translateY(-50%);
}
.el_headerBtn span:nth-of-type(3){
	bottom: 0;
}
/* メニューを開いたとき */
.el_headerBtn.active span:nth-of-type(1){
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
.el_headerBtn.active span:nth-of-type(2){
	opacity: 0;
}
.el_headerBtn.active span:nth-of-type(3){
	-webkit-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}
@media (min-width:1200px){
    .el_headerBtn{
        display: none;
    }
}

/*===== メニューコンテナ =====*/
.bl_headerCont{
    background-color: #fff;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.bl_headerMenu{
    margin-top: 80px;
    overflow-y: scroll;
    padding-bottom: 160px;
    width: 100%;
    height: 100%;
}
@media (min-width:1200px){
    .bl_headerCont{
        background-color: transparent;
        display: block;
        position: absolute;
        top: 0;
        left: auto;
        right: 20px;
        width: calc( 100% - 460px );
        height: 100px;
    }
    .bl_headerMenu{
        margin-top: 0;
        overflow-y: hidden;
        padding-bottom: 0;
        width: 100%;
        height: 100%;
    }
}
@media (min-width:1400px){
    .bl_headerCont{
        width: calc( 100% - 540px );
    }
}

/*===== グローバルメニュー =====*/
.bl_globalMenu{
    list-style: none;
    padding: 30px 20px;
    position: relative;
    width: 100%;
}
.bl_globalMenu li{
    border-bottom: 1px solid #ccc;
    color: #0556a1;
    font-weight: bold;
    padding: 0 0 30px;
    position: relative;
}
.bl_globalMenu li+li{
    margin-top: 30px;
}
.bl_globalMenu li a{
    color: #0556a1;
    display: block;
    transition: 0.3s;
    position: relative;
}
.bl_globalMenu a:hover{
    cursor: pointer;
    transition: 0.3s;
}
@media (min-width:1200px){
    .bl_globalMenu{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 0;
        padding: 0;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
    }
    .bl_globalMenu li{
        border-bottom: none;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: relative;
        height: 100%;
    }
    .bl_globalMenu li+li{
        margin-top: 0;
        margin-left: 30px;
    }
    .bl_globalMenu li a{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        height: 100%;
    }
}
@media (min-width:1400px){
    .bl_globalMenu li+li{
        margin-left: 40px;
    }
    .bl_globalMenu li a{
        font-size: 18px;
    }
}

/*--------------------------------------------------------
    コンテンツ
--------------------------------------------------------*/
/*===== コンテナ =====*/
.bl_cont{
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 15px;
}
.bl_cont p+p{
    margin-top: 20px;
}
@media (min-width:768px){
    .bl_cont{
        margin: 80px auto;
        padding: 0 30px;
    }
}
@media (min-width:1200px){
    .bl_cont{
        margin: 120px auto;
    }
}
@media (min-width:1250px){
    .bl_cont{
        padding: 0;
    }
}

/*===== 背景色あり =====*/
.bl_bgRblue{
    background-color: #EEF4FA;
    padding: 60px 0;
}
.bl_bgRblue .bl_cont{
    margin: 0 auto;
}
@media (min-width:768px){
    .bl_bgRblue{
        padding: 80px 0;
    }
}
@media (min-width:1200px){
    .bl_bgRblue{
        padding: 120px 0;
    }
}

/*===== 見出し =====*/
h2{
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
}
h3{
    color: #0556a1;
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.4;
    padding-left: 30px;
    position: relative;
}
h3::before{
    background-color: #0556a1;
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    left: 0;
    width: 20px;
    height: 2px;
}
h4{
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}
h5{
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/*===== アンカー調整 =====*/
[id] {
    scroll-margin-top: 120px;
}
@media (min-width:1200px){
    [id] {
        scroll-margin-top: 140px;
    }
}

/*--------------------------------------------------------
    リンク・ボタン
--------------------------------------------------------*/
/*===== リンク =====*/
.el_link{
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 auto;
    position: relative;
}
.el_link::after{
    background-image: url(../img/icon_link.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    margin-left: 10px;
    width: 40px;
    height: 40px;
}
@media (min-width:1200px){
    .el_link{
        font-size: 20px;
    }
    .el_link::after{
        width: 50px;
        height: 50px;
    }
}

/*===== ボタン =====*/
.el_btn{
    background-color: #0556a1;
    border-radius: 5px;
    border: 2px solid #0556a1;
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
    line-height: 1.6;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    max-width: 360px;
    width: 100%;
    height: 100px;
}
.el_btn::after{
    background-image: url(../img/icon_btn.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.el_btn:hover{
    background-color: #fff;
    color: #0556a1;
    opacity: 1!important;
}
.el_btn:hover::after{
    background-image: url(../img/icon_btn-hover.svg);
}
@media (min-width:1200px){
    .el_btn{
        font-size: 20px;
        padding: 0 15px;
    }
    .el_btn::after{
        width: 50px;
        height: 50px;
        right: 15px;
    }
}


/*--------------------------------------------------------
    ページトップボタン
--------------------------------------------------------*/
.el_pageTop{
    display: none;
    margin: auto;
    text-align: center;
    text-decoration: none;
    width: 80px;
    height: 80px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 850;
}
.el_pageTop a{
    background-color: #0556a1;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 95px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}
.el_pageTop a::before{
    background-image: url("../img/icon_pageTop.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    margin: auto;
    text-align: center;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 10px;
    right: 0;
    left: 0;
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
/*===== コンテナ =====*/
.ly_footer{
    background-color: #D1E4F4;
    padding: 80px 15px;
}
.bl_footerRight{
    margin-top: 20px;
}
@media (min-width:768px){
    .ly_footer{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        padding: 60px 30px;
    }
    .bl_footerLeft{
        width: 280px;
    }
    .bl_footerRight{
        margin-top: 0;
        width: calc( 100% - 320px );
    }
}
@media (min-width:1200px){
    .bl_footerLeft{
        width: 450px;
    }
    .bl_footerRight{
        width: calc( 100% - 500px );
    }
}

/*===== ロゴ =====*/
.el_footerLogo{
    color: #0556a1;
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}
.el_footerLogo img{
    display: block;
    margin: 0 auto 10px;
    max-width: 180px;
    width: 100%;
}
@media (min-width:768px){
    .el_footerLogo{
        text-align: left;
    }
    .el_footerLogo img{
        margin: 0 0 10px;
    }
}
@media (min-width:1200px){
    .el_footerLogo{
        display: flex;
    }
    .el_footerLogo img{
        margin-right: 20px;
    }
}

/*===== サイトマップ =====*/
.bl_sitemap{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_sitemap li{
    font-size: 16px;
    text-align: center;
    width: 100%;
}
.bl_sitemap+.bl_sitemap,
.bl_sitemap li+li{
    margin-top: 10px;
}
@media (min-width:768px){
    .bl_sitemap{
        justify-content: flex-end;
    }
    .bl_sitemap li{
        width: auto;
    }
    .bl_sitemap+.bl_sitemap{
        margin-top: 0;
    }
    .bl_sitemap li+li{
        margin-left: 30px;
        margin-top: 0;
    }
}


/*===== コピーライト =====*/
.el_copyright{
    font-size: 14px;
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/*===== 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_fz20{
    font-size: 20px!important;
}

/*===== フォントウェイト =====*/
.hp_fwBold{
    font-weight: bold!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_mNone{
    margin: 0!important;
}

/*===== スペーサー =====*/
.bl_spacer{
    display: block;
    width: 100%;
    height: 80px;
}
.single .bl_spacer{
    height: 40px;
}

/*===== 文章の揃え =====*/
.hp_txtLeft{
    text-align: left !important;
}
.hp_txtRight{
    text-align: right !important;
}
@media (min-width:768px){
    .hp_txtCenter{
        text-align: center !important;
    }
}

/*===== 表示 =====*/
.hp_pcOnly{
    display: none;
}
@media (min-width:768px){
    .hp_spOnly{
        display: none;
    }
    .hp_pcOnly{
        display: block;
    }
}
@media (min-width:1024px){
    .hp_none{
        display: none;
    }
}