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

/*--------------------------------------------------------
    メイン画像
--------------------------------------------------------*/
.bl_main{
    width: 100%;
    height: 120px;
    position: relative;
    background-color: #257dd0;
}
.bl_main .el_lv1Heading{
    color: #fff;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    position: absolute;
    font-size: 26px;
    font-weight: bold;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-style: normal;
}
@media (min-width:768px){
    .bl_main{
        height: 150px;
    }
    .bl_main .el_lv1Heading{
        font-size: 30px;
    }
}
@media (min-width:1024px){
    .bl_main .el_lv1Heading{
        font-size: 35px;
    }
}

/*--------------------------------------------------------
    ぱんくず
--------------------------------------------------------*/
.bl_breadcrumb{
    max-width: 1250px;
    margin: 30px auto;
    padding: 0 15px;
}
.bl_breadcrumb ul{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.bl_breadcrumb li{
    font-size: 12px;
}
.bl_breadcrumb li+li{
    margin-left: 5px;
}
.bl_breadcrumb li+li::before{
    background-image: url("../img/icon_breadcrumb.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    vertical-align: middle;
}
.bl_breadcrumb a{
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}
.bl_breadcrumb a:hover{
    opacity: 0.5;
}
@media (min-width:768px){
    .bl_breadcrumb ul{
        justify-content: flex-end;
    }
    .bl_breadcrumb li{
        font-size: 14px;
    }
    .bl_breadcrumb li+li{
        margin-left: 10px;
    }
    .bl_breadcrumb li+li::before{
        width: 15px;
        height: 15px;
        margin-right: 10px;
    }
}
@media (min-width:1300px){
    .bl_breadcrumb{
        padding: 0;
    }
}

/*--------------------------------------------------------
    ページサブメニュー
--------------------------------------------------------*/
.bl_pageSubMenuCont{
    width: 100%;
    background-color: #F1F3F8;
}
.bl_pageSubMenuCont .bl_cont{
    margin: 0 auto;
    padding: 0;
}
.el_pageSubMenuBtn{
    font-weight: bold;
    padding: 15px;
    position: relative;
}
.el_pageSubMenuBtn::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: 15px;
}
.el_pageSubMenuBtn.active::after{
    transform: rotateX(180deg);
}
.bl_pageSubMenu{
    display: none;
    padding: 0;
    list-style: none;
    margin: 0 auto!important;
}
.bl_pageSubMenu li{
    font-weight: bold;
    padding: 0!important;
}
.bl_pageSubMenu li::before{
    display: none!important;
}
.bl_pageSubMenu li a{
    color: #257dd0;
    display: block;
    text-decoration: none;
    padding: 15px;
    position: relative;
}
.bl_pageSubMenu .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: 15px;
}
.bl_pageSubMenu .hp_spLinkNone.active::after{
    transform: rotateX(180deg);
}
.bl_pageSubMenu li ul{
    background-color: #257dd0;
    display: none;
    list-style: none;
    padding: 20px 15px;
}
.bl_pageSubMenu li ul li{
    position: relative;
    padding: 0;
    height: auto;
}
.bl_pageSubMenu li ul li+li{
    margin-top: 25px;
}
.bl_pageSubMenu li ul li a{
    border-bottom: 1px solid #fff;
    color: #fff;
    display: block;
    width: 100%;
    padding: 0;
}
.bl_pageSubMenu li ul li a::after{
    background-image: url("../img/icon_subMenu.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
}
@media (min-width:1024px){
    .bl_pageSubMenuCont{
        width: 100%;
        background-color: #F1F3F8;
    }
    .el_pageSubMenuBtn{
        display: none;
    }
    .bl_pageSubMenu{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 0;
    }
    .bl_pageSubMenu li{
        flex-grow: 1;
        position: relative;
    }
    .bl_pageSubMenu li+li{
        border-left: 1px solid #257dd0;
    }
    .bl_pageSubMenu .hp_spLinkNone{
        text-align: center;
        padding: 20px 0;
    }
    .bl_pageSubMenu .hp_spLinkNone::after{
        right: 20px;
    }
    .bl_pageSubMenu li ul{
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        padding: 30px 15px;
    }
    .bl_pageSubMenu li ul li+li{
        margin-top: 30px;
        margin-left: 0;
    }
    .bl_pageSubMenu li ul li a{
        transition: 0.3s;
    }
    .bl_pageSubMenu li ul li a:hover{
        opacity: 0.5;
    }
    .bl_pageSubMenu li ul li a::after{
        position: absolute;
        right: 10px;
    }
}

/*--------------------------------------------------------
    見出し
--------------------------------------------------------*/
.bl_cont h2,
.el_lv2Heading{
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #0047a3;
    font-weight: bold;
    line-height: 1.4;
}
.bl_cont *+h2,
*+.el_lv2Heading{
    margin-top: 100px;
}
.bl_cont h3,
.el_lv3Heading{
    display: block;
    margin: 40px auto 10px;
    font-size: 22px;
}
.bl_cont h3::after,
.el_lv3Heading::after{
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    background-image: url(../img/icon_h3.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}
.bl_cont h3.el_icon_check::before,
.el_lv3Heading.el_icon_check::before{
    background-image: url("../img/icon_check.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}
.bl_cont h4,
.el_lv4Heading{
    font-size: 20px;
}
.bl_cont h5,
.el_lv5Heading{
    font-size: 18px;
}
.bl_cont h6,
.el_lv6Heading{
    font-size: 16px;
}
@media (min-width:768px){
    .bl_cont h2,
    .el_lv2Heading{
        font-size: 38px;
        margin-bottom: 30px;
    }
    .bl_cont h3,
    .el_lv3Heading{
        font-size: 26px;
        margin: 60px auto 10px;
    }
    .bl_cont h4,
    .bl_cont .el_lv4Heading{
        font-size: 26px;
    }
    .bl_cont h5,
    .bl_cont .el_lv5Heading{
        font-size: 24px;
    }
    .bl_cont h6,
    .bl_cont .el_lv6Heading{
        font-size: 22px;
    }
}

/*--------------------------------------------------------
    テキスト
--------------------------------------------------------*/
.el_catchCopy{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.bl_cont a{
    color: #FF8000;
    text-decoration: none;
    transition: 0.3s;
}
.bl_cont .el_btnCont{
    text-align: center;
    margin: 50px auto 0;
}
.bl_cont .el_btn{
    color: #fff;
}
@media (min-width:768px){
    .el_catchCopy{
        font-size: 26px;
    }
}

/*--------------------------------------------------------
    flex
--------------------------------------------------------*/
.bl_flexCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px auto 40px;
}
.bl_flexCont.flexStart{
    justify-content: flex-start;
    margin: 40px auto 60px;
}
.bl_flexCol{
    width: 100%;
}
.bl_flexCol+.bl_flexCol{
    margin-top: 30px;
}
.bl_flexCol .el_lv3Heading{
    margin-top: 0;
}
@media (min-width:768px){
    .bl_flexCont.w30::after,
    .bl_flexCont.w24::before,
    .bl_flexCont.w24::after{
        content: '';
        display: block;
        height: 100%;
    }
    .bl_flexCont.w30::after{
        width: 30%;
    }
    .bl_flexCont.w24::after{
        width: 24%;
    }
    .bl_flexCont.w24::before{
        width: 24%;
        order: 1;
    }
    .bl_flexCol.w65{
        width: 65%;
    }
    .bl_flexCol.w55{
        width: 55%;
    }
    .bl_flexCol.w48{
        width: 48%;
    }
    .bl_flexCol.w40{
        width: 40%;
    }
    .bl_flexCol.w30{
        width: 30%;
    }
    .bl_flexCol.w24{
        width: 24%;
    }
    .bl_flexCol.w18,
    .bl_flexCol.w18+.bl_flexCol.w18{
        width: 18%;
        margin: 0;
    }
    .bl_flexCol.w18 img{
        margin: 0;
    }
    .flexStart .bl_flexCol.w18{
        margin: 0;
    }
    .flexStart .bl_flexCol.w18+.bl_flexCol.w18{
        margin-left: 30px;
    }
    .bl_flexCol,
    .bl_flexCol+.bl_flexCol{
        margin: 0 0 30px;
    }
    .order01{
        order: 1;
    }
    .order02{
        order: 2;
    }
}

/*--------------------------------------------------------
    表組み
--------------------------------------------------------*/
/* 共通 */
table caption{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

/* スマホでカラム落ち */
.bl_table{
    margin: 30px auto;
}
.bl_table table{
    border: 1px solid #d9d9d9;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    word-break: break-all;
    word-wrap: break-all;
}
.bl_table th,
.bl_table td{
    padding: 10px;
    text-align: left;
}
.bl_table th{
    background-color: #eee;
}
@media (max-width:767px){
    .bl_table th,
    .bl_table td{
        display: block;
    }
    .bl_table th{
        border-bottom: 1px solid #d9d9d9;
        text-align: center;
    }
    .bl_table tr+tr th{
        border-top: 1px solid #d9d9d9;
    }
}
@media (min-width:768px){
    .bl_table th,
    .bl_table td{
        border: 1px solid #d9d9d9;
    }
}

/* スマホでスクロール */
.bl_tableScroll{
    overflow-x: scroll;
    margin: 30px auto;
}
.bl_tableScroll table{
    border: 1px solid #d9d9d9;
    border-collapse: collapse;
    table-layout: fixed;
    width: 750px;
    word-break: break-all;
    word-wrap: break-all;
}
.bl_tableScroll th,
.bl_tableScroll td{
    text-align: left;
    border: 1px solid #d9d9d9;
    padding: 10px;
}
.bl_tableScroll th{
    background-color: #eee;
}
@media (min-width:768px){
    .bl_tableScroll{
        overflow-x: hidden;
    }
    .bl_tableScroll table{
        width: 100%;
    }
    .bl_tableScroll th,
    .bl_tableScroll td{
        border: 1px solid #d9d9d9;
    }
}

/* 料金テーブル */
.bl_tablePrice{
    margin: 60px auto;
}
.bl_tablePrice table{
    width: 1000px;
    margin: 0 auto;
}
.bl_tablePrice th{
    background-color: #eee;
}
.bl_tablePrice td{
    text-align: right;
}

/* セル横幅 */
.bl_tableScroll .w5{
    width: 5%;
}
.bl_tableScroll .w6{
    width: 6%;
}
.bl_tableScroll .w10{
    width: 10%;
}
.bl_tableScroll .w15{
    width: 15%;
}
.bl_tableScroll .w20{
    width: 20%;
}
.bl_tableScroll .w25{
    width: 25%;
}
.bl_tableScroll .w30{
    width: 30%;
}
.bl_tableScroll .w33{
    width: 33%;
}
.bl_tableScroll .w40{
    width: 40%;
}
.bl_tableScroll .w50{
    width: 50%;
}
.bl_tableScroll .w60{
    width: 60%;
}
.bl_tableScroll .w70{
    width: 70%;
}
.bl_tableScroll .w80{
    width: 80%;
}
@media (min-width:768px){
    .bl_table .w5{
        width: 5%;
    }
    .bl_table .w6{
        width: 6%;
    }
    .bl_table .w10{
        width: 10%;
    }
    .bl_table .w15{
        width: 15%;
    }
    .bl_table .w20{
        width: 20%;
    }
    .bl_table .w25{
        width: 25%;
    }
    .bl_table .w30{
        width: 30%;
    }
    .bl_table .w33{
        width: 33%;
    }
    .bl_table .w40{
        width: 40%;
    }
    .bl_table .w50{
        width: 50%;
    }
    .bl_table .w60{
        width: 60%;
    }
    .bl_table .w70{
        width: 70%;
    }
    .bl_table .w80{
        width: 80%;
    }
}


/*--------------------------------------------------------
    list
--------------------------------------------------------*/
.bl_cont ul,
.bl_list{
    margin: 30px auto;
    list-style: none;
}
.bl_cont ul li,
.bl_list li{
    padding: 0 0 0 20px;
    position: relative;
}
.bl_cont ul li::before,
.bl_list li::before{
    background-color: #b2b2b2;
    border-radius: 50%;
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 7px;
    left: 0;
}
.bl_cont ul li+li,
.bl_list li+li{
    margin-top: 10px;
}
.bl_cont ul li ul,
.bl_list li ul{
    list-style: none;
    margin: 10px auto;
}
.bl_cont ul li ol,
.bl_list li ol{
    margin: 10px auto;
    padding-left: 20px;
}
.bl_list li ul li,
.bl_cont ul li ul li{
    padding: 0;
}
.bl_list li ul li::before,
.bl_cont ul li ul li::before{
    background-color: transparent;
    border-radius: 0;
    content: '-';
    width: auto;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    margin-right: 5px;
}
.bl_cont ul li ol li::before,
.bl_list li ol li::before{
    display: none;
}

/* まる無し */
.bl_listNone{
    max-width: 1000px;
    margin: 30px auto;
    list-style: none;
}
.bl_listNone li+li{
    margin-top: 10px;
}

/* 数字 */
.bl_cont ol,
.bl_listNumber{
    margin: 30px auto;
    padding-left: 25px;
}
.bl_cont ol li,
.bl_listNumber li{
    padding-left: 0;
}
.bl_cont ol li+li,
.bl_listNumber li+li{
    margin-top: 10px;
}
.bl_cont ol li ol,
.bl_listNumber li ol{
    margin: 10px auto;
    padding-left: 20px;
}
.bl_cont ol li ul,
.bl_listNumber li ul{
    list-style: none;
    margin: 10px auto;
}
.bl_cont ol li ul li,
.bl_listNumber li ul li{
    padding: 0;
}
.bl_cont ol li ul li::before,
.bl_listNumber li ul li::before{
    background-color: transparent;
    border-radius: 0;
    content: '-';
    width: auto;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    margin-right: 5px
}

/* フォーム●無し */
.aform .aform-content li,
.aform-name-ul li{
    padding: 0!important;
}
.aform .aform-content li::before,
.aform-name-ul li::before{
    display: none!important;
}

/*--------------------------------------------------------
    サブページ 下部メニュー
--------------------------------------------------------*/
.bl_pageMenu{
    margin-bottom: 0;
    padding: 30px 15px;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-style: normal;
}
.bl_pageMenu .bl_title{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 30px;
}
.bl_pageMenu .bl_listNone li{
    position: relative;
    padding: 0 0 5px 0;
    border-bottom: 1px solid #999;
}
.bl_pageMenu .bl_listNone li::before{
    display: none
}
.bl_pageMenu .bl_listNone li+li{
    margin-top: 25px;
}
.bl_pageMenu .bl_listNone li a{
    color: #000;
    display: block;
    width: 100%;
    padding: 0;
    transition: 0.3s;
}
.bl_pageMenu .bl_listNone li a:hover{
    opacity: 0.5;
}
.bl_pageMenu .bl_listNone li a::before{
    display: none;
}
.bl_pageMenu .bl_listNone li a::after{
    background-image: url("../img/icon_pageMenu.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 5px;
}
@media (min-width:1024px){
    .bl_pageMenu{
        padding: 60px 20px;
        display: flex;
        justify-content: space-between;
    }
    .bl_pageMenu .bl_title{
        display: block;
        width: 30%;
        margin: 0;
    }
    .bl_pageMenu .bl_title p{
        font-size: 25px;
        margin-bottom: 20px;
    }
    .bl_pageMenu .bl_listNone{
        padding: 0;
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .bl_pageMenu .bl_listNone li{
        padding: 0;
        width: 48%;
    }
    .bl_pageMenu .bl_listNone li:nth-child(2){
        margin-top: 0;
    }
    .bl_pageMenu .bl_listNone li a{
        display: block;
        width: 100%;
        padding: 0;
    }
}
@media (min-width:1200px){
    .bl_globalMenu .bl_listNone{
        width: 65%;
    }
}
@media (min-width:1300px){
    .bl_pageMenu{
        padding: 80px;
        margin-bottom: 40px;
    }
}

/*--------------------------------------------------------
    Q&A
--------------------------------------------------------*/
.bl_faqCont{
    max-width: 1000px;
    margin: 30px auto;
}
.bl_faqCont .bl_faqCol+.bl_faqCol{
    margin-top: 50px;
}
.bl_faqCont .bl_question{
    background-color: #fbf0c3;
    border: 2px solid #fad74b;
    border-radius: 20px;
    position: relative;
}
.bl_faqCont .bl_question::before{
    content: '';
    display: block;
    width: 100%;
    height: 99%;
	border: 5px solid #fff;
	border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.bl_faqCont .bl_question a,
.bl_faqCont .bl_question p{
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    position: relative;
    padding: 30px 30px 30px 60px;
}
.bl_faqCont .bl_question a::before,
.bl_faqCont .bl_question p::before{
    position: absolute;
    content: 'Q';
    font-size: 26px;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: bold;
    margin-right: 10px;
    top: 20px;
    left: 20px;
}
.bl_faqCont .bl_question a::before{
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.bl_faqCont .bl_answer{
    margin: 30px auto 0;
    padding: 0 30px;
}

/*--------------------------------------------------------
    2025.05 テナントページリニューアル用追加css
--------------------------------------------------------*/
.bl_tenantCont .bl_card {
    width: 100%;
}
.bl_tenantCont .bl_card a{
    display: block;
}
@media (min-width:1080px){
    .bl_tenantCont .bl_card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (min-width:1280px){
    .bl_tenantCont .bl_card {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 背景灰色の部分 */
.bl_tenantCont .el_cardCont {
    width: 100%;
    background: #F5F5F5;
    padding: 30px;
    margin-bottom: 30px;
}
.bl_tenantCont .el_cardCont h3{
    margin: 5px auto 0;
    width: 100%;
    color: #000;
    font-size: 26px;
    text-align: center;
    line-height: 1.3;
}
.bl_tenantCont .el_cardCont h3 span{
    display: block;
    color: #0047A3;
    font-size: 18px;
    line-height: 2;
    margin-bottom: .5rem;
}
@media (min-width:768px){
    .bl_tenantCont .el_cardCont {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        gap: .5rem;
        border-radius: 10px;
        margin-bottom: 20px;
    }
}


/* 企業の声 一覧 */
.bl_tenantCont .bl_card .el_cardCont-voice+.el_cardCont-voice{
    margin-top: 30px;
}
.bl_tenantCont .el_cardCont-voice {
    width: 100%;
    margin-bottom: 30px;
}
.bl_tenantCont .el_cardCont-voice:hover{
    opacity: .7;
}
.bl_tenantCont .el_cardCont-voice h3{
    margin: 20px auto 0;
    width: 100%;
    color: #000;
    font-size: 22px;
}
.bl_tenantCont .el_cardCont-voice h3 span{
    display: block;
    color: #0047A3;
    font-size: 18px;
}
.bl_tenantCont .el_cardCont-voice h3::after{
    display: none!important;
}
.bl_tenantCont .el_cardCont-voice figure{
    aspect-ratio: 4 / 3;
}
.bl_tenantCont .el_cardCont-voice img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (min-width:768px){
    .bl_tenantCont .el_cardCont-voice {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 2;
        gap: 1rem;
        margin-bottom: 0;
    }
    .bl_tenantCont .bl_card .el_cardCont-voice+.el_cardCont-voice{
        margin-top: 0;
    }
}

/* 各社の情報 */
.bl_tenantCont ul.link {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.bl_tenantCont ul.link li+li{
    margin: 0;
}
.bl_tenantCont ul.link li:nth-child(n+3){
    margin-top: 10px;
}
.bl_tenantCont .bl_tenant-info{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.bl_tenantCont .bl_tenant-info div{
    padding: 0.5rem;
}
.bl_tenantCont ul.bl_link{
    list-style-type: none;
    margin: 0;
    align-items: baseline;
}
.bl_tenantCont ul.bl_linkSns{
    list-style-type: none;
    margin: 0;
    display: flex;
    align-items: baseline;
}
.bl_tenantCont ul.bl_link li{
    padding: 0;
}
.bl_tenantCont ul.bl_linkSns li{
    padding: 0 20px 0 0;
}
.bl_tenantCont ul.bl_linkSns li i{
    font-size: 26px;
}
.bl_tenantCont ul.bl_link li::before,
.bl_tenantCont ul.bl_linkSns li::before{
    content: none;
}


/* 動画埋め込み */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}