/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    box-sizing: border-box;
    color: #1B1B25;
    line-height: 1.8;
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    position: relative;
    letter-spacing: 1.5px;
    overflow-x: hidden!important;
    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;
}
*:focus{
    outline: none;
}

/*--------------------------------------------------------
    header
--------------------------------------------------------*/
.ly_header{
    transition: 0.5s;
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 999;
}
.ly_header.active{
    background-color: #ffffffCC;
}
@media (min-width:1200px){
    .ly_header{
        height: 180px;
    }
}

/*---------- インナー ----------*/
.bl_headerInner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1560px;
    position: relative;
}

/*---------- ロゴ ----------*/
.el_headerLogo{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 120px;
    width: 35%;
}
.el_headerLogo a{
    transition: 0.3s;
}
.el_headerLogo a:hover{
    opacity: 0.5;
}
@media (min-width:1200px){
    .el_headerLogo{
        left: 20px;
        max-width: 150px;
    }
}
@media (min-width:1600px){
    .el_headerLogo{
        left: 0;
    }
}

/*---------- メニュー開閉ボタン ----------*/
.bl_headerBtn{
    cursor: pointer;
    width: 40px;
    height: 8px;
	position: absolute;
	top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
}
.el_headerBtn{
	cursor: pointer;
	margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}
.el_headerBtn span{
    background-color: #1B1B25;
    border-radius: 50px;
	width: 100%;
	height: 2px;
}
.el_headerBtn,
.el_headerBtn span{
    position: absolute;
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.el_headerBtn span:first-child{
	top: 0;
}
.el_headerBtn span:last-child{
	bottom: 0; 
}
.el_headerBtn.active span{
    background-color: #fff;
}
.el_headerBtn.active span:first-child{
	-webkit-transform: translateY(3px) rotate(-20deg);
	transform: translateY(3px) rotate(-20deg);
}
.el_headerBtn.active span:last-child{
	-webkit-transform: translateY(-3px) rotate(20deg);
	transform: translateY(-3px) rotate(20deg);
}
@media (min-width:1200px){
    .bl_headerBtn{
        width: 60px;
        height: 12px;
        right: 40px;
    }
    .el_headerBtn.active span:nth-of-type(1){
        -webkit-transform: translateY(6px) rotate(-20deg);
        transform: translateY(6px) rotate(-20deg);
    }
    .el_headerBtn.active span:nth-of-type(3){
        -webkit-transform: translateY(-6px) rotate(20deg);
        transform: translateY(-6px) rotate(20deg);
    }
}
@media (min-width:1600px){
    .bl_headerBtn{
        right: 0;
    }
}

/*---------- メニュー ----------*/
.bl_headerMenuCont{
    display: none;
    background-color: #313871;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 900;
}
.bl_headerMenuInner{
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 80px;
}
@media (min-width:1200px){
    .bl_headerMenuInner{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        max-width: 1300px;
        max-height: 700px;
        overflow-y: hidden!important;
        padding-bottom: 0;
        width: 75%;
        height: 75vh;
    }
}
@media (min-width:1600px){
    .bl_headerMenuInner{
        width: 100%;
    }
}

/*---------- メニュー内ロゴ ----------*/
.bl_headerMenuCont .el_menuLogo{
    position: relative;
    width: 100%;
    height: 80px;
}
.bl_headerMenuCont .el_menuLogo a{
    transition: 0.3s;
}
.bl_headerMenuCont .el_menuLogo a:hover{
    opacity: 0.5;
}
.bl_headerMenuCont .el_menuLogo img{
    
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 120px;
    margin: 0;
    width: 100%;
}
@media (min-width:1200px){
    .bl_headerMenuCont .el_menuLogo{
        position: static;
        width: 180px;
        height: auto;
    }
    .bl_headerMenuCont .el_menuLogo img{
        position: static;
        transform: none;
        max-width: none;
        width: 100%;
    }
}
@media (min-width:1400px){
    .bl_headerMenuCont .el_menuLogo{
        width: 200px;
    }
}
@media (min-width:1600px){
    .bl_headerMenuCont .el_menuLogo{
        width: 260px;
    }
}

/*---------- グローバルメニュー ----------*/
.bl_globalMenu{
    list-style: none;
    margin-top: 40px;
    padding: 0 20px;
}
.bl_contents .bl_globalMenu{
    display: none;
}
.bl_globalMenu li+li{
    margin-top: 20px;
}
.bl_globalMenu a{
    color: #fff;
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    z-index: 0;
}
.bl_globalMenu a small{
    color: #989CB8;
    display: block;
    font-family: balboa, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
}
.bl_globalMenu a:hover{
    opacity: 0.5;
}
.bl_globalMenu a span{
    font-size: 20px;
}
@media (min-width:375px){
    .bl_globalMenu a{
        font-size: 30px;
    }
}
@media (min-width:410px){
    .bl_globalMenu a{
        font-size: 32px;
    }
}
@media (min-width:1200px){
    .bl_globalMenu{
        margin: 0;
        padding: 0;
    }
    .bl_contents .bl_globalMenu{
        display: block;
    }
    .bl_globalMenu li+li{
        margin-top: 30px;
    }
    .bl_globalMenu .sp{
        display: none;
    }
    .bl_globalMenu a{
        font-size: 30px;
    }
}
@media (min-width:1400px){
    .bl_globalMenu a{
        font-size: 36px;
    }
    .bl_globalMenu a small{
        font-size: 20px;
    }
    .bl_globalMenu a span{
        font-size: 24px;
        line-height: 1;
    }
}
@media (min-width:1500px){
    .bl_globalMenu a{
        font-size: 42px;
    }
}

/*---------- お問い合せ・sns ----------*/
.bl_headerMenuInner .bl_contents{
    margin-top: 100px;
}
@media (min-width:1200px){
    .bl_headerMenuInner .bl_contents{
        margin-top: 0;
    }
}

/* お問い合せボタン */
.ly_header .el_contact a{
    background-color: #313871;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 300px;
    height: 80px;
}
.ly_header .el_contact a:hover{
    background-color: #fff;
    color: #313871;
}
@media (min-width:1200px){
    .bl_headerMenuInner .el_contact{
        margin-top: 80px;
    }
    .bl_headerMenuInner .el_contact a{
        margin: 0;
    }
}
@media (min-width:1400px){
    .bl_headerMenuInner .el_contact{
        margin-top: 100px;
    }
}
@media (min-width:1500px){
    .bl_headerMenuInner .el_contact{
        margin-top: 130px;
    }
}
@media (min-width:1600px){
    .bl_headerMenuInner .el_contact{
        margin-top: 150px;
    }
}

/* sns */
.bl_headerMenuInner .bl_sns{
    margin-top: 60px;
}
.bl_headerMenuInner .bl_sns p{
    color: #fff;
    text-align: center;
}
.bl_headerMenuInner .bl_sns .bl_flexCont{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.bl_headerMenuInner .bl_sns .bl_flexCont a{
    display: block;
    transition: 0.3s;
    width: 60px;
}
.bl_headerMenuInner .bl_sns .bl_flexCont a:hover{
    opacity: 0.5;
}
.bl_headerMenuInner .bl_sns .bl_flexCont a+a{
    margin-left: 30px;
}
@media (min-width:1200px){
    .bl_headerMenuInner .bl_sns{
        margin-top: 30px;
    }
    .bl_headerMenuInner .bl_sns p{
        text-align: left;
    }
    .bl_headerMenuInner .bl_sns .bl_flexCont{
        justify-content: flex-start;
    }
    .bl_headerMenuInner .bl_sns .bl_flexCont a{
        display: block;
        width: 40px;
    }
    .bl_headerMenuInner .bl_sns .bl_flexCont a+a{
        margin-left: 30px;
    }
}
@media (min-width:1400px){
    .bl_headerMenuInner .bl_sns .bl_flexCont a{
        width: 60px;
    }
}

/*---------- PCのみ表示メニュー ----------*/
.bl_pcMenuCont{
    display: none;
}
@media (min-width:1200px){
    .bl_pcMenuCont{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        position: absolute;
        right: 140px;
        top: 50%;
        transform: translateY(-50%);
    }
    .bl_pcMenu{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        list-style: none;
    }
    .bl_pcMenu li+li{
        margin-left: 30px;
    }
    .bl_pcMenu a{
        color: #1B1B25;
        font-size: 16px;
        text-decoration: none;
        transition: 0.3s;
    }
    .bl_pcMenu a:hover{
        opacity: 0.5;
    }
    .bl_pcMenu .el_contact a{
        border: 1px solid #313871;
        color: #fff;
        display: flex;
        font-weight: normal;
        font-size: 16px;
        text-decoration: none;
        transition: 0.3s;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 160px;
        height: 45px;
    }
    .ly_header .el_contact a:hover{
        background-color: #fff;
        color: #313871;
        opacity: 1;
    }
}

/*--------------------------------------------------------
    コンテナ
--------------------------------------------------------*/
.ly_wrapper{
    width: 100%;
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
    background-color: #272D3E;
    padding: 80px 0 20px;
}
.ly_footer p{
    color: #fff;
}
.ly_footer .bl_cont{
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
}

.ly_footer .bl_footerInner{
    margin-bottom: 60px;
}
@media (min-width:1200px){
    .ly_footer .bl_cont{
        padding: 0 40px;
    }
    .ly_footer .bl_footerInner{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
}
@media (min-width:1600px){
    .ly_footer .bl_cont{
        padding: 0;
    }
}

/* ロゴ・住所 */
.ly_footer .bl_address{
    margin-bottom: 60px;
}
@media (min-width:1200px){
    .ly_footer .bl_address{
        margin: 0;
        max-width: 560px;
        width: 25%;
    }
}

/* ロゴ */
.el_footerLogo{
    display: block;
    margin-bottom: 20px;
    max-width: 180px;
    transition: 0.3s;
}
.el_footerLogo:hover{
    opacity: 0.5;
}
.el_footerLogo img{
    margin: 0;
}

/* 住所 */
@media (min-width:1400px){
    .ly_footer .bl_address .sp{
        display: none;
    }
}

/* サイトマップ */
.ly_footer .bl_sitemap,
.ly_footer .bl_sitemap ul{
    list-style: none;
    margin-bottom: 60px;
}
.ly_footer .bl_sitemap li+li{
    margin-top: 10px;
}
.ly_footer .bl_sitemap li a{
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}
.ly_footer .bl_sitemap li a:hover{
    opacity: 0.5;
}
.ly_footer .bl_sitemap.pc{
    display: none;
}
@media (min-width:1200px){
    .ly_footer .bl_sitemap.sp{
        display: none;
    }
    .ly_footer .bl_sitemap.pc{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        max-width: 540px;
        margin: 0;
        width: 50%;
    }
    .ly_footer .bl_sitemap li+li{
        margin-top: 30px;
    }
    .ly_footer .bl_sitemap a.blog::after{
        background-image: url("assets/img/icon_blank-w.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: '';
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-left: 5px;
    }
}

/* sns */
.ly_footer .bl_sns p{
    font-size: 10px;
    margin-bottom: 20px;
}
.ly_footer .bl_sns .bl_flexCont{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.ly_footer .bl_sns .bl_flexCont a{
    transition: 0.3s;
    width: 30px;
}
.ly_footer .bl_sns .bl_flexCont a:hover{
    opacity: 0.5;
}
.ly_footer .bl_sns .bl_flexCont a+a{
    margin-left: 30px;
}
@media (min-width:1200px){
    .ly_footer .bl_sns{
        margin: 0;
        width: 90px;
    }
}

/* お問い合せ */
.ly_footer .el_contact{
    margin-bottom: 30px;
}
.ly_footer .el_contact a{
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
    height: 80px;
}
.ly_footer .el_contact a:hover{
    background-color: #fff;
    color: #272D3E;
    opacity: 1;
}
@media (min-width:768px){
    .ly_footer .el_contact a{
        max-width: 300px;
    }
}
@media (min-width:1200px){
    .ly_footer .el_contact a{
        margin: 0 0 0 auto;
    }
}

/* コピーライト */
.ly_footer .el_copyright{
    font-size: 10px;
    font-weight: normal;
    text-align: center;
}
@media (min-width:1200px){
    .ly_footer .el_copyright{
        text-align: left;
    }
}

/*--------------------------------------------------------
	ページトップアイコン
--------------------------------------------------------*/
#bl_underFixed{
	position: fixed;
    left: 50%;
    transform: translateX(-50%);
	bottom: 0;
	z-index: 200;
	margin: auto;
    width: 100%;
    height: 60px;
	text-align: center;
	text-decoration: none;
    display: flex;
    justify-content: flex-end;
}
#bl_underFixed a{
	display: flex;
	justify-content: center;
	align-items: center;
    height: 60px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	transition: .3s;
    height: 60px;
}
#bl_underFixed a.pagetop{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 100%;
	background-color: #313871;
    padding: 0 1rem;
    margin-left: .5rem;
}
#bl_underFixed a.el_btn{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #AD2520;
    border: none;
    margin: 0 auto;
    max-width: none;
    width: calc(100% - 60px);
    padding: 0 1.25rem;
}
#bl_underFixed a.el_btn:hover{
    opacity: .5;
}
#bl_underFixed a.el_btn svg{
    width: 1.5rem;
    height: auto;
    margin-right: .5rem;
}
#bl_underFixed a.pagetop:hover{
	opacity: .6;
}
@media (min-width:768px){
    #bl_underFixed{
        bottom: 1.25rem;
        z-index: 200;
        margin: auto;
        width: 95%;
        text-align: center;
        text-decoration: none;
        display: flex;
        justify-content: flex-end;
    }
    #bl_underFixed a.el_btn{
        font-size: 15px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: 650px;
        margin-left: auto;
        margin-right: 0;
    }
    #bl_underFixed a.pagetop{
        margin-top: .5rem;
        margin-left: auto;
    }
    #bl_underFixed a.el_btn{
        padding: 0 3rem;
    }
}

/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* 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: bold!important;
}

/* フォントカラー */
.hp_fcWhite{
    color: #fff!important;
}
.hp_fcBlue{
    color: #313871!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;
    }
}
