@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 16px;
    font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',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-x: hidden!important;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
.ly_header{
    background-color: #fff;
    width: 100%;
    height: 90px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}
@media (min-width:1024px){
    .ly_header{
        height: 220px;
    }
}
/*===== ロゴ・メニュー開閉ボタン =====*/
.bl_headerInner{
    width: 100%;
    height: 100%;
}
@media (min-width:1024px){
    .bl_headerInner{
        position: relative;
        height: 100px;
    }
}
/* ロゴ */
.el_headerLogo{
    width: 65%;
    max-width: 320px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 999;
    transition: 0.3s;
}
.el_headerLogo:hover{
    opacity: 0.5;
}
.el_headerLogo .pc{
    display: none;
}
@media (min-width:768px){
    .el_headerLogo .sp{
        display: none;
    }
    .el_headerLogo .pc{
        display: block;
    }
}
@media (min-width:1024px){
    .el_headerLogo{
        width: 100%;
        max-width: 400px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}
@media (min-width:1200px){
    .el_headerLogo{
        max-width: 450px;
    }
}

/*===== FBアイコン・検索ボタン =====*/
.bl_headerBtnCont{
    display: none;
}

@media (min-width:1024px){
    .bl_headerBtnCont{
        display: flex;
        align-items: center;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
    }
    .el_iconFb{
        transition: 0.3s;
        margin-right: 20px;
    }
    .el_iconFb:hover{
        opacity: 0.5;
    }
    .el_searchBtn{
        background-color: #4c4c4c;
        border-radius: 10px;
        cursor: pointer;
        display: block;
        margin: 0;
        z-index: 999;
        width: 50px;
        height: 50px;
        position: relative;
        transition: 0.3s;
    }
    .el_searchBtn:hover{
        opacity: 0.5;
    }
    .el_searchBtn a{
        display: block;
        width: 100%;
        height: 100%;
    }
    .el_searchBtn a::before{
        background-image: url("../img/icon_search.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        content: '';
        display: block;
        width: 22px;
        height: 22px;
        vertical-align: middle;
        position: absolute;
        top: 8px;
        left: 12px;
    }
    .el_searchBtn p{
        color: #fff;
        position: absolute;
        bottom: 2px;
        width: 100%;
        font-size: 10px;
        text-align: center;
    }
}

/* メニュー 開閉ボタン */
.el_headerMenuBtn{
    background-color: #4c4c4c;
    border-radius: 10px;
	cursor: pointer;
	margin: 0;
    z-index: 999;
    width: 50px;
    height: 50px;
    position: relative;
}
.el_headerMenuBtn{
    transform: translateY(-50%);
	position: absolute;
	top: 50%;
    right: 10px;
}
.el_headerMenuBtn .el_btnCont{
	width: 50%;
    height: 35%;
    position: absolute;
    top: 10px;
	left: 50%;
    transform: translateX(-50%);
}
.el_headerMenuBtn span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
    background-color: #fff;
}
.el_headerMenuBtn,
.el_headerMenuBtn span{
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.el_headerMenuBtn span:nth-of-type(1){
	top: 0;
}
.el_headerMenuBtn span:nth-of-type(2){
	top: 50%;
    transform: translateY(-50%);
}
.el_headerMenuBtn span:nth-of-type(3){
	bottom: 0; 
}
.el_headerMenuBtn.active span:nth-of-type(1){
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.el_headerMenuBtn.active span:nth-of-type(2){
	opacity: 0;
}
.el_headerMenuBtn.active span:nth-of-type(3){
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}
.el_headerMenuBtn p{
    color: #fff;
    position: absolute;
    bottom: 2px;
    width: 100%;
    font-size: 10px;
    text-align: center;
}
@media (min-width:1024px){
    .el_headerMenuBtn{
        display: none;
    }
}

/* メニュー開閉表示エリア */
.bl_headerMenuInner{
    display: none;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 900;
}
@media (min-width:1024px){
    .bl_headerMenuInner{
        display: block;
        background-color: transparent;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        top: 100px;
        height: 120px;
    }
}
/* グローバルメニュー */
.bl_globalMenu{
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding: 0 0 200px 0;
    list-style: none;
    max-width: 1200px;
}
.bl_globalMenu li a{
    color: #000;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: 0.3s;
    padding: 15px 30px;
    position: relative;
    font-weight: bold;
}
.bl_globalMenu li a::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 10px;
}
.bl_globalMenu .el_icon01 a::before{
    background-image: url("../img/icon_menu01.png");
}
.bl_globalMenu .el_icon02 a::before{
    background-image: url("../img/icon_menu02.png");
}
.bl_globalMenu .el_icon03 a::before{
    background-image: url("../img/icon_menu03.png");
}
.bl_globalMenu .el_icon04 a::before{
    background-image: url("../img/icon_menu04.png");
}
.bl_globalMenu .el_icon05 a::before{
    background-image: url("../img/icon_menu05.png");
}
.bl_globalMenu .el_icon06 a::before{
    background-image: url("../img/icon_menu06.png");
}
.bl_globalMenu .el_icon07 a::before{
    background-image: url("../img/icon_menu07.png");
}
.bl_globalMenu .hp_spLinkNone::after{
    background-image: url("../img/icon_spLinkNone.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 30px;
}
.bl_globalMenu .hp_spLinkNone.active::after{
    transform: scaleY(-1);
}
@media (min-width:1024px){
    .bl_globalMenu{
        padding: 0 20px;
        position: static;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        margin: 0 auto;
    }
    .bl_globalMenu li{
        height: 100%;
    }
    .bl_globalMenu li a{
        font-weight: bold;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        transition: 0.3s;
    }
    .bl_globalMenu li a:hover{
        opacity: 0.5;
    }
    .bl_globalMenu li a::before{
        display: block;
        width: 100%;
        height: 45px;
        margin: 0 auto 5px;
    }
    .bl_globalMenu .hp_spLinkNone::after{
        display: none;
    }
    .bl_globalMenu .current::after,
    .bl_globalMenu .hp_spLinkNone.active::after{
        background-image: url("../img/icon_spLinkNone.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: auto;
        right: auto;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }
}
@media (min-width:1200px){
    .bl_globalMenu{
        padding: 0;
    }
    .bl_globalMenu li{
        width: 160px;
    }
}

/* サブメニュー */
.bl_globalMenu .bl_subMenuCont{
    display: none;
    background-color: #257dd0;
}
.bl_globalMenu .bl_subMenuCont .bl_cont{
    margin: 0 auto;
    max-width: 1000px;
    padding: 0;
}
.bl_globalMenu .bl_subMenuCont .bl_title{
    display: none;
}
.bl_globalMenu .bl_subMenu{
    list-style: none;
    padding: 30px 20px;
    margin: 0;
}
.bl_globalMenu .bl_subMenu li{
    position: relative;
    padding: 0;
    height: auto;
}
.bl_globalMenu .bl_subMenu li::before{
    display: none;
}
.bl_globalMenu .bl_subMenu li+li{
    margin-top: 25px;
}
.bl_globalMenu .bl_subMenu li a{
    border-bottom: 1px solid #fff;
    color: #fff;
    display: block;
    width: 100%;
    padding: 0;
}
.bl_globalMenu .bl_subMenu li a::before{
    display: none;
}
.bl_globalMenu .bl_subMenu li a::after{
    background-image: url("../img/icon_subMenu.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}
@media (min-width:1024px){
    .bl_globalMenu .bl_subMenuCont{
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all .2s ease;
        padding: 80px 0;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100vw;
        height: auto;
        z-index: 999;
    }
    .bl_globalMenu li:hover > .bl_subMenuCont{
        opacity: 1;
        visibility: visible;
    }
    .bl_globalMenu .bl_subMenuCont .bl_cont{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .bl_globalMenu .bl_subMenuCont .bl_title{
        display: block;
        width: 30%;
    }
    .bl_globalMenu .bl_subMenuCont .bl_title p{
        color: #fff;
        font-size: 23px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .bl_globalMenu .bl_subMenuCont .bl_title img{
        margin: 0;
    }
    .bl_globalMenu .bl_subMenu{
        padding: 0;
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .bl_globalMenu .bl_subMenu li{
        position: relative;
        padding: 0;
        width: 48%;
    }
    .bl_globalMenu .bl_subMenu li:nth-child(2){
        margin-top: 0;
    }
    .bl_globalMenu .bl_subMenu li a{
        color: #fff;
        display: block;
        width: 100%;
        padding: 0;
    }
    .bl_globalMenu .bl_subMenu li a::after{
        position: absolute;
        right: 0;
    }
}
@media (min-width:1200px){
    .bl_globalMenu .bl_subMenu{
        width: 65%;
    }
}

/*--------------------------------------------------------
    ly_cont
--------------------------------------------------------*/
.bl_cont{
    max-width: 1250px;
    margin: 60px auto;
    padding: 0 15px;
}
.bl_cont.w1000{
    max-width: 1000px;
}
.bl_cont p+p{
    margin-top: 15px;
}
.bl_bgBlue{
    background-color: #1573c7;
    padding: 60px 0;
}
.bl_bgGray{
    background-color: #f5f5f5;
    padding: 60px 0;
}
.bl_bgBlue .bl_cont,
.bl_bgGray .bl_cont{
    margin: 0 auto;
}
@media (min-width:768px){
    .bl_bgBlue,
    .bl_bgGray{
        padding: 80px 0;
    }
}
@media (min-width:1300px){
    .bl_cont{
        padding: 0;
    }
}

/*--------------------------------------------------------
    見出し
--------------------------------------------------------*/
.el_lv2Heading{
    color: #0047a3;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}
.el_lv2Heading .el_fz{
    color: #bbb;
    font-size: 16px;
    display: block;
    font-weight: 300;
    font-style: normal;
}
.el_lv3Heading{
    font-size: 22px;
    margin-bottom: 20px;
}
@media (min-width:768px){
    .el_lv2Heading{
        font-size: 38px;
        margin-bottom: 30px;
    }
    .el_lv2Heading .el_fz{
        font-size: 18px;
    }
    .el_lv3Heading{
        font-size: 26px;
    }
}

/*--------------------------------------------------------
    ボタン
--------------------------------------------------------*/
.el_btn,
.el_btnBlue,
.el_btnOrange{
    background-color: #0047a3;
    border-radius: 50px;
    color: #fff!important;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 80px;
    position: relative;
    margin: 10px auto;
    transition: 0.3s;
}
.el_btnBlue{
    background-color: #257dd0;
}
.el_btnOrange{
    background-color: #ffa64d;
}
.el_btn::after,
.el_btnBlue::after,
.el_btnOrange::after{
    background-image: url("../img/icon_btn.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.el_btn:hover,
.el_btnBlue:hover,
.el_btnOrange:hover{
    opacity: 0.5;
}
.el_btn.mn{
    margin: 40px auto;
}
@media (min-width:1024px){
    .el_btn.mn{
        margin: 40px 0;
    }
}
/* 一覧を見る */
.el_link{
    color: #000!important;
    font-weight: 600;
    transition: 0.3s;
}
.el_link::after{
    background-color: #f59b00;
    background-image: url("../img/icon_btn.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    content: '';
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;
    vertical-align: middle;
}
.el_link:hover{
    opacity: 0.5;
}

/*--------------------------------------------------------
    会議室空きボタン・ページトップボタン
--------------------------------------------------------*/
/* ページトップボタン */
.bl_pageTopCont{
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 910;
}
.bl_pageTopCont.index{
    bottom: 150px;
}
.bl_pageTop{
    display: none;
}
.el_pageTop{
    width: 60px;
    height: 60px;
    background-color: #01448a;
    border-radius: 50%;
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0 auto;
    text-align: center;
    text-decoration: none;
    line-height: 75px;
    transition: 0.3s;
    position: relative;
}
.el_pageTop::before{
    background-image: url("../img/icon_pagetop.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
}
.el_pageTop:hover{
    opacity: 0.5;
}
@media (min-width:768px){
    .bl_pageTop{
        bottom: 110px;
    }
}
@media (min-width:1024px){
    .bl_pageTopCont,
    .bl_pageTopCont.index{
        bottom: 20px;
    }
}

/* 会議室空きボタン・テナントリンクボタン */
.bl_sideBtn{
    display: none;
}
@media (min-width:1024px){
    .bl_sideBtn{
        display: block;
    }
    .bl_sideBtn .el_crBtn,
    .bl_sideBtn .el_tenantBtn{
        border-radius: 10px;
        color: #fff;
        display: block;
        font-size: 20px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
        margin-top: 20px;
        padding: 10px;
    }
    .bl_sideBtn .el_crBtn{
        background-color: #1573c7;
        position: relative;
    }
    .bl_sideBtn .el_crBtn .el_btnClose{
        position: absolute;
        right: 10px;
        bottom: 10px;
        margin: 0;
        width: 20px;
        height: 20px;
    }
    .bl_sideBtn .el_tenantBtn{
        background-color: #ffa64d;
    }
    .bl_sideBtn .el_crBtn:hover,
    .bl_sideBtn .el_tenantBtn:hover{
        opacity: 0.5;
    }
}

/*--------------------------------------------------------
    スマホ下部メニュー
--------------------------------------------------------*/
.bl_bottomMenu{
    background-color: #fff;
    list-style: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 900;
}
.bl_bottomMenu .bl_flexCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0!important;
}
.bl_bottomMenu .bl_flexCol{
    height: 70px;
    text-align: center;
    position: relative;
    margin: 0!important;
}
.bl_bottomMenu .bl_flexCol+.bl_flexCol{
    margin: 0!important;
}
.bl_bottomMenu .bl_flexCol a{
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
    height: 100%;
}
@media (min-width:768px){
    .bl_bottomMenu .bl_flexCol a{
        font-size: 18px;
    }
}
@media (min-width:1024px){
    .bl_bottomMenu{
        display: none;
    }
}

/* 会議室・テナント */
.bl_bottomMenu .bl_flexCol.col2{
    display: block;
    width: 50%;
    height: 50px;
}
.bl_bottomMenu .bl_flexCol.col2 a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    height: 100%;
    line-height: 1.3;
}
.bl_bottomMenu .room a{
    background-color: #f5f5f5;
    color: #000;
}
.bl_bottomMenu .tenant a{
    background-color: #ffa64d;
}
@media (min-width:768px){
    .bl_bottomMenu .room br{
        display: none;
    }
}

/* 電話・お問合わせ・アクセス */
.bl_bottomMenu .bl_flexCol.col3{
    width: 33.3%;
    height: 60px;
    text-align: center;
    position: relative;
}
.bl_bottomMenu .tel a{
    background-color: #1474cb;
}
.bl_bottomMenu .contact a{
    background-color: #0059b3;
}
.bl_bottomMenu .access a{
    background-color: #01448a;
}
.bl_bottomMenu .bl_flexCol.col3 a::before{
    display: block;
    content: '';
    width: 100%;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
}
.bl_bottomMenu .tel a::before{
    background-image: url("../img/icon_bottomMenu01.png");
    top: 5px;
}
.bl_bottomMenu .contact a::before{
    background-image: url("../img/icon_bottomMenu02.png");
    height: 20px!important;
    top: 10px;
}
.bl_bottomMenu .access a::before{
    background-image: url("../img/icon_bottomMenu03.png");
    top: 6px;
}
.bl_bottomMenu .bl_flexCol.col3 span{
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 5px;
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
    padding-bottom: 140px;
}
.ly_footer.subpage{
    padding-bottom: 70px;
}
@media (min-width:768px){
    .ly_footer{
        padding-bottom: 138px;
    }
    .ly_footer.subpage{
        padding-bottom: 68px;
    }
}
@media (min-width:1024px){
    .ly_footer,
    .ly_footer.subpage{
        padding-bottom: 0;
    }
}
/* お問い合わせ */
.ly_footer .contact{
    display: none;
}
@media (min-width:768px){
    .ly_footer .contact{
        display: block;
    }
    .ly_footer .contact .bl_flexCont{
        display: flex;
        justify-content: space-between;
        margin: 0;
    }
    .ly_footer .contact .bl_flexCol{
        background-color: #fff;
        border-radius: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 48%;
        text-align: center;
        padding: 15px;
    }
    .ly_footer .contact .bl_flexCol,
    .ly_footer .contact .bl_flexCol+.bl_flexCol{
        margin: 0;
    }
    .ly_footer .contact .bl_flexCol p{
        width: 100%;
        font-size: 22px;
        font-weight: bold;
    }
    .ly_footer .contact .bl_flexCol p+p{
        margin-top: 5px;
    }
    .ly_footer .contact .bl_flexCol .el_telNumber{
        font-size: 36px;
        font-weight: bold;
    }
    .ly_footer .contact .bl_flexCol .el_telNumber::before{
        background-image: url("../img/icon_tel.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        content: '';
        display: inline-block;
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
    .ly_footer .contact .bl_flexCol .el_fz{
        font-size: 12px;
    }
    .ly_footer .contact .bl_flexCol .el_btn.contact{
        background-color: #ffa64d;
        margin: 0;
        padding: 15px 80px;
    }
    .ly_footer .contact .bl_flexCol .el_btn.contact::before{
        background-image: url("../img/icon_mail.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        content: '';
        display: inline-block;
        width: 25px;
        height: 25px;
        margin-right: 10px;
        vertical-align: middle;
    }
    .ly_footer .contact .bl_flexCol .el_btn.contact::after{
        display: none;
    }
}
@media (min-width:1024px){
    .ly_footer .contact .bl_flexCol{
        padding: 20px;
    }
    .ly_footer .contact .bl_flexCol p{
        font-size: 24px;
    }
    .ly_footer .contact .bl_flexCol .el_telNumber{
        font-size: 40px;
    }
    .ly_footer .contact .bl_flexCol .el_telNumber::before{
        font-size: 35px;
        margin-right: 10px;
    }
    .ly_footer .contact .bl_flexCol .el_fz{
        font-size: 14px;
    }
}
/* バナー */
.ly_footer .banner{
    display: none;
}
@media (min-width:768px){
    .ly_footer .banner{
        display: block;
        padding: 60px 0;
    }
    .ly_footer .banner .bl_listNone{
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .ly_footer .banner .bl_listNone li{
        width: 18%;
    }
    .ly_footer .banner .bl_listNone li a{
        transition: 0.3s;
    }
    .ly_footer .banner .bl_listNone li a:hover{
        opacity: 0.5;
    }
}
/* グーグルマップ */
.bl_googleMap{
    display: none;
}
@media (min-width:768px){
    .bl_googleMap{
        display: block;
        width: 100%;
        height: 250px;
    }
    .bl_googleMap iframe{
        border: none;
        width: 100%;
        height: 100%;
    }
}
/* サイトマップ */
.ly_footer .sitemap,
.ly_footer .sitemap .bl_cont{
    padding: 0;
    margin: 0 auto;
}
/* サイトマップタイトル*/
.ly_footer .sitemap .el_title{
    background-color: #0047a3;
    cursor: pointer;
    padding: 15px 0;
}
.ly_footer .sitemap .el_title span{
    color: #fff;
    display: block;
    position: relative;
    font-size: 20px;
    font-weight: 400;
    max-width: 1250px;
    margin: 0 auto;
}
.ly_footer .sitemap .el_title span::after{
    background-image: url("../img/icon_sitemap.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 5px;
    right: 30px;
}
.ly_footer .sitemap .el_title.active span::after{
    transform: scaleY(-1);
}
@media (min-width:768px){
    .ly_footer .sitemap .el_title{
        font-size: 26px;
    }
}
@media (min-width:1250px){
    .ly_footer .sitemap .el_title span::after{
        right: 0;
    }
}
/* サイトマップ 中身 */
.ly_footer .sitemap .bl_cont{
    display: none;
}
.ly_footer .bl_siteMapCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}
.ly_footer .bl_siteMap{
    width: 46%;
}
.ly_footer .bl_siteMap:nth-child(3),
.ly_footer .bl_siteMap:nth-child(4){
    margin-top: 30px;
}
.ly_footer .bl_siteMap li{
    padding: 0;
}
.ly_footer .bl_siteMap li::before{
    display: none;
}
.ly_footer .bl_siteMap a{
    text-decoration: none;
    transition: 0.3s;
}
.ly_footer .bl_siteMap a:hover{
    opacity: 0.5;
}
.ly_footer .bl_siteMap .el_borderBottom{
    border-bottom: 1px solid #0047a3;
    color: #0047a3;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.ly_footer .bl_siteMap .bl_listNone{
    list-style: none;
    margin: 0;
}
.ly_footer .bl_siteMap .bl_listNone li{
    margin-top: 10px;
}
.ly_footer .bl_siteMap .bl_listNone a{
    font-size: 14px;
    color: #000;
}
@media (min-width:768px){
    .ly_footer .bl_siteMapCont{
        padding: 40px 10px;
    }
    .ly_footer .bl_siteMap{
        width: 23%;
    }
    .ly_footer .bl_siteMap:nth-child(3),
    .ly_footer .bl_siteMap:nth-child(4){
        margin-top: 0;
    }
}
@media (min-width:1024px){
    .ly_footer .bl_siteMapCont{
        padding: 60px 10px;
    }
}
@media (min-width:1300px){
    .ly_footer .bl_siteMapCont{
        padding: 60px 0;
    }
}
/* 情報 */
.ly_footer .address{
    margin: 40px auto;
    text-align: center;
}
.ly_footer .address .el_footerLogo{
    display: inline-block;
    margin-bottom: 10px;
    max-width: 370px;
    width: 80%;
}
@media (min-width:768px){
    .ly_footer .address .el_footerLogo{
        width: 100%;
    }
}
/* コピーライト */
.ly_footer .bl_copyright{
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* 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_fcRed{
    color: #e7310e!important;
}
.hp_fcPink{
    color: #ff007f!important;
}
.hp_fcBlue{
    color: #0047a3!important;
}
.hp_fcOrange{
    color: #ffa64d!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;
    }
}