/*・SP：480～767px
・PC：768px～*/
body{
    position: relative;
    color: #000;
    word-wrap:break-word;
    font-size: 14px;
    font-family: "メイリオ", Meiryo, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
    line-height: 1.7;
    width: 100%;
    min-height: 100vh;

    /*スマホの文字の大きさ一定*/
    -webkit-text-size-adjust: 100%;

    /*アンチエイリアス*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.inner_medium{
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    margin: 0 auto;
}
.inner_small{
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    margin: 0 auto;
}
.nesting{
    max-width: 930px;
    margin: 0 auto;
}
@media screen and (min-width:768px){
    .inner_medium{
        max-width: 1120px;
        width: -webkit-calc(100% - 80px);
        width: calc(100% - 80px);
    }
    .inner_small{
        max-width: 930px;
        width: -webkit-calc(100% - 80px);
        width: calc(100% - 80px);
    }
}

/*breakpoint display*/
.sp{
    display: block;
}
.sp_inline{
    display: inline-block;
}
.pc,
.pc_inline{
    display: none !important;
}
.pc_l,
.pc_l_inline{
    display: none !important;
}
@media screen and (min-width:768px){
    .sp,
    .sp_inline{
        display: none !important;
    }
    .pc{
        display: block !important;
    }
    .pc_inline{
        display: inline !important;
    }
}
@media screen and (min-width:1120px){
    .pc_l{
        display: block !important;
    }
    .pc_l_inline{
        display: inline !important;
    }
}

/*box-sizing default*/
*{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
img{
    max-width: 100%;
}

@media screen and (min-width:768px){
    a{
        transition: opacity 0.3s;
        opacity: 1;
    }
    a:hover{
        opacity: 0.7;
    }
}

/*iconfont*/
@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot?bfwapo');
    src:  url('../fonts/icomoon.eot?bfwapo#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?bfwapo') format('truetype'),
        url('../fonts/icomoon.woff?bfwapo') format('woff'),
        url('../fonts/icomoon.svg?bfwapo#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-blank:before {
    content: "\e900";
}
.icon-blank:search {
    content: "\e90e";
}


/*header*/
header{
    position: fixed;
    width: 100%;
    height: 115px;
    border-top: 5px solid #094a9e;
    background-color: #fff;
    z-index: 1000;
}
body.home header,
body.internet header,
body.phone header,
body.case header{
    height: 130px;
}
.header_inner{
    width: 97%;
    margin: 0 0 0 3%;
}
.header_top_flex{
    display: flex;
    align-items: center;
}
.header_feature{
    display: none;
}
.header_logo{
    width: -webkit-calc(100% - 110px);
    width: calc(100% - 110px);
}
.header_logo > div{
    display: flex;
    text-decoration: none;
    align-items: center;
}
.header_logo > div a{
    display: block;
    width: 120px;
}
.header_logo > div a img{
    width: 100%;
}
.search_sp_toggle{
    width: 55px;
    height: 55px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}
.search_sp_toggle.open{
    background-color: #094a9e;
    color: #fff;
}
.search_sp_toggle span{
    position: relative;
    display: block;
    width: 35px;
    height: 30px;
    margin: 4px auto 0;
    color: #094a9e;
}
.search_sp_toggle.open span{
    color: #fff;
}
.search_sp_toggle span:before{
    position: absolute;
    content: "\e90e";
    font-family: 'icomoon';
    display: block;
    font-size: 28px;
    height: 28px;
    width: 28px;
    line-height: 28px;
    top: 3px;
    left: 3px;
}
.search_sp_toggle em{
    position: absolute;
    display: block;
    width: 55px;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    bottom: 3px;
}
.gl_open{
    width: 55px;
    height: 55px;
}
.gl_open div{
    width: 35px;
    height: 55px;
    cursor: pointer;
    position: relative;
    padding-top: 10px;
    text-align: center;
    margin: 0 auto;
}
.gl_open span{
    position: absolute;
    display: block;
    width: 35px;
    height: 3px;
    background-color: #094a9e;
    transition: transform 0.5s;
}
.gl_open span:nth-of-type(1){
    top: 10px;
    left: 0px;
    transform-origin: left top;
}
.gl_open span:nth-of-type(2){
    top: 20px;
    left: 0px;
}
.gl_open span:nth-of-type(3){
    bottom: 22px;
    left: 0px;
    transform-origin: left bottom;
}
.gl_open .open span:nth-of-type(1){
    transform: rotate(45deg);
    top: 9px;
    left: 6px;
}
.gl_open .open span:nth-of-type(2){
    display: none;
}
.gl_open .open span:nth-of-type(3){
    transform: rotate(-45deg);
    bottom: 19px;
    left: 6px;
}
.gl_open em{
    position: absolute;
    display: block;
    width: 35px;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    bottom: 3px;
}
.header_bottom{
    display: none;
}
@media screen and (min-width:768px){
    header{
        height: 140px;
    }
    body.home header,
    body.internet header,
    body.phone header,
    body.case header{
        height: 140px;
    }
    .header_inner{
        max-width: 1120px;
        width: -webkit-calc(100% - 40px);
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    .header_top{
        height: 85px;
    }
    .header_top_flex{
        width: 100%;
        justify-content: space-between;
    }
    .header_feature{
        display: block;
    }
    .search_sp_toggle{
        display: none;
    }
    .gl_open{
        display: none;
    }
    .header_logo{
        width: 160px;
    }
    .header_logo > div a{
        width: 100%;
    }
    .header_feature .btn_group{
        display: flex;
        justify-content: flex-end;
        width: -webkit-calc(100% + 4px);
        width: calc(100% + 4px);
        margin: 0 -2px;
    }
    .header_feature .btn_group li{
        padding: 0 2px;
    }
    .header_feature .btn_group li a{
        display: block;
        padding: 6px 10px 6px 30px;
        font-size: 12px;
        height: 37px;
        position: relative;
        text-decoration: none;
        border-radius: 0 0 4px 4px;
        letter-spacing: 0;
        text-align: center;
        background-repeat: no-repeat;
    }
    .header_feature .btn_group li a span{
        display: block;
        position: relative;
        width: max-content;
    }
    .header_feature .btn_group li.corpo a{
        width: 160px;
        border: 1px solid #bec2c3;
        text-decoration: none;
        color: #000;
        background-image: url(../img/common/ico_building_gray.png);
        background-size: 20px auto;
        background-position: 7px 7px;
    }
    .header_feature .btn_group li.app a{
        width: 205px;
        background-color: #cd1e23;
        color: #fff;
        font-weight: bold;
        background-image: url(../img/common/ico_write.png);
        background-position: 6px 6px;
        background-size: 21px auto;
    }
    .header_feature .btn_group li.contact a{
        width: 180px;
        background-color: #f9be00;
        color: #000;
        font-weight: bold;
        background-image: url(../img/common/ico_paper.png);
        background-position: 5px 6px;
        background-size: 22px auto;
    }
    .header_feature .search_group{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        width: -webkit-calc(100% + 8px);
        width: calc(100% + 8px);
        margin: 0 -4px;
        padding: 4px 0;
    }
    .header_feature .search_group li{
        padding: 0 4px;
    }
    .search_group .search_pc{
        width: 54%;
    }
    .search_group .search_pc form{
        border: 1px solid #d0d0d0;
        border-radius: 3px;
        overflow-x: hidden;
    }
    .search_group .search_pc input[type=text]{
        width: calc(100% - 37px);
        outline: none;
        box-shadow: none;
        border: 0px solid transparent;
        background-color: #fff;
        padding: 4px 10px;
        height: 37px;
        font-size: 12px;
    }
    .search_group .search_pc input[type=text]:-ms-input-placeholder{
        color: #a2a2a2;
    }
    .search_group .search_pc input[type=text]:-webkit-placeholder,
    .search_group .search_pc input[type=text]:placeholder{
        color: #a2a2a2;
    }
    .search_group .search_pc input[type=submit]{
        width: 37px;
        height: 37px;
        background-color: #094a9e;
        font-size: 1px;
        color: transparent;
        background-image: url(../img/common/ico_search.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 25px auto;
    }
    .header_feature .phone{
        width: 46%;
    }
    .header_feature .phone .phone_popup{
        display: block;
        position: relative;
        border: 2px solid #104ba1;
        border-radius: 3px;
        color: #104ba1;
        text-decoration: none;
        padding: 5px 6px;
        height: 37px;
        cursor: pointer;
        text-align: center;
    }
    .header_feature .phone .phone_popup span{
        display: inline-block;
        position: relative;
        padding-left: 25px;
        background-image: url(../img/common/ico_phone.png);
        background-repeat: no-repeat;
        background-position: 0px -1px;
        background-size: 20px auto;
        font-size: 11px;
    }
    .header_feature .phone .phone_popup em{
        display: inline-block;
        position: relative;
        font-style: normal;
        font-weight: bold;
        font-size: 11px;
    }
    .header_feature .phone .phone_pc{
        display: none;
        position: absolute;
        bottom: -90px;
        right: 4px;
        border: 2px solid #104ba1;
        padding: 10px 25px;
        background-color: #fff;
        box-shadow: 0px 4px 6px -2px rgba(0,0,0,0.4);
        z-index: 1010;
    }
    .header_feature .phone .phone_pc dl{
        display: flex;
        align-items: center;
    }
    .header_feature .phone .phone_pc dt{
        background-color: #104ba1;
        color: #fff;
        font-weight: bold;
        line-height: 1;
        padding: 5px 10px;
        border-radius: 30px;
    }
    .header_feature .phone .phone_pc dd{
        color: #104ba1;
        font-weight: bold;
        font-size: 25px;
        padding-left: 10px;
    }
    .header_feature .phone .phone_pc p{
        font-size: 12px;
        letter-spacing: 0;
    }
    .phone_popup_close{
        display: block;
        position: absolute;
        width: 16px;
        height: 16px;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }
    .phone_popup_close:before,
    .phone_popup_close:after{
        display: block;
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background-color: #104ba1;
        transform-origin: center;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .phone_popup_close:before{
        transform: rotate(45deg);
    }
    .phone_popup_close:after{
        transform: rotate(-45deg);
    }
    .header_feature .phone .phone_pc.popup{
        display: block;
    }

    .header_bottom{
        display: block;
        background-color: #104ba1;
        position: relative;
    }
    .header_bottom .pc_nav{
        display: flex;
        align-items: center;
        width: 100%;
    }
    .header_bottom .pc_nav > li.home{
        width: 10%;
    }
    .header_bottom .pc_nav > li.internet{
        width: 19%;
    }
    .header_bottom .pc_nav > li.phone{
        width: 17%;
    }
    .header_bottom .pc_nav > li.solution{
        width: 24%;
    }
    .header_bottom .pc_nav > li.case{
        width: 12%;
    }
    .header_bottom .pc_nav > li.support{
        width: 19%;
    }
    .header_bottom .pc_nav > li > a{
        display: block;
        text-align: center;
        position: relative;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        padding: 16px 5px;
        height: 50px;
        font-size: 12px;
    }
    .header_bottom .pc_nav > li > a:before{
        display: block;
        position: absolute;
        content: "";
        width: 1px;
        height: 16px;
        background-color: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
    .header_bottom .pc_nav > li:last-of-type > a:after{
        display: block;
        position: absolute;
        content: "";
        width: 1px;
        height: 16px;
        background-color: #fff;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }
    .header_bottom .pc_nav > li > a:hover,
    .header_bottom .pc_nav > li > a.active,
    body.home .header_bottom .pc_nav > li.home > a,
    body.internet .header_bottom .pc_nav > li.internet > a,
    body.phone .header_bottom .pc_nav > li.phone > a,
    body.solution .header_bottom .pc_nav > li.solution > a,
    body.hosting .header_bottom .pc_nav > li.solution > a,
    body.case .header_bottom .pc_nav > li.case > a{
        opacity: 1;
        background-color: #f9be00;
        color: #000;
    }
    .header_bottom .pc_nav > li > a[target="_blank"] > span{
        display: inline-block;
        position: relative;
        padding-right: 25px;
    }
    .header_bottom .pc_nav > li > a[target="_blank"] > span:after{
        display: block;
        position: absolute;
        content: "\e900";
        font-family: 'icomoon';
        font-weight: 100;
        font-size: 19px;
        line-height: 1;
        width: 19px;
        height: 20px;
        top: -1px;
        bottom: 0;
        right: 0;
        margin: auto;
    }
    .header_bottom .pc_nav .child_wrap{
        visibility: hidden;
        opacity: 0;
        position: absolute;
        width: 100%;
        left: 0;
        top: 50px;
        background-color: rgba(9,74,158,0.9);
        padding: 20px 0;
        transition: opacity 0.3s;
    }
    .header_bottom .pc_nav .child_wrap.active{
        visibility: visible;
        opacity: 1;
    }
    .header_bottom .pc_nav .child_inner{
        max-width: 1120px;
        width: -webkit-calc(100% - 40px);
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    .header_bottom .pc_nav .child_list{
        display: flex;
        flex-wrap: wrap;
        width: -webkit-calc(100% + 8px);
        width: calc(100% + 8px);
        margin: 0 -4px;
    }
    .header_bottom .pc_nav .child_list > li{
        display: flex;
        flex-wrap: wrap;
        width: 33.33%;
        padding: 0 4px 8px;
    }
    .header_bottom .pc_nav .phone .child_list > li{
        width: 25%;
    }
    .header_bottom .pc_nav .office .child_list > li{
        width: 33.33%;
    }
    .header_bottom .pc_nav .case .child_list > li{
        width: 33.33%;
    }
    .header_bottom .pc_nav .child_list > li a{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        position: relative;
        background-color: #fff;
        color: #000;
        font-size: 12px;
        border-radius: 3px;
        padding: 20px 20px 19px 10px;
        line-height: 1.4;
        text-decoration: none;
        transition: all 0.3s;
        text-align: center;
        letter-spacing: 0;
    }
    .header_bottom .pc_nav .child_list > li a:before {
        content: '';
        display: block;
        position: absolute;
        width: 8px;
        height: 8px;
        border-right: 2px solid #09499e;
        border-bottom: 2px solid #09499e;
        transform: rotate(-45deg);
        top: 0;
        bottom: 0;
        right: 12px;
        margin: auto;
    }
    .header_bottom .pc_nav .child_list > li a > span{
        display: block;
        width: 100%;
    }
    .header_bottom .pc_nav .office .child_list > li a{
        padding: 8px 20px 7px 15px;
    }
    .header_bottom .pc_nav .office .child_list > li a > span{
        display: flex;
        align-items: center;
    }
    .header_bottom .pc_nav .office .child_list > li a em.ico{
        display: inline-block;
        position: relative;
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    .header_bottom .pc_nav .child_qa{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 10px 0 0;
    }
    .header_bottom .pc_nav .child_qa dt{
        padding: 0 10px 0 0;
    }
    .header_bottom .pc_nav .child_qa dt div{
        width: 100px;
        height: 40px;
        border: 1px solid #fff;
        color: #fff;
        font-weight: bold;
        text-align: center;
        font-size: 12px;
        padding: 8px 5px 5px;
    }
    .header_bottom .pc_nav .child_qa dd {
        padding: 10px 0 0;
    }
    .header_bottom .pc_nav .child_qa dd a{
        display: block;
        position: relative;
        margin-right: 1em;
        padding-left: 10px;
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 0em;
    }
    .header_bottom .pc_nav .child_qa dd a:after{
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        border-top: 4px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 6px solid #fff;
    }
    .header_bottom .pc_nav .child_inner .child_title{
        margin-bottom: 20px;
    }
    .header_bottom .pc_nav .child_inner .child_title a{
        display: block;
        position: relative;
        padding-left: 10px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 12px;
        letter-spacing: 0em;
    }
    .header_bottom .pc_nav .child_inner .child_title a:after{
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        border-top: 4px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 6px solid #fff;
    }
    .sp_header_inner{
        display: none;
    }
}
@media screen and (min-width:1000px){
    .header_logo{
        width: 220px;
    }
    .header_feature .btn_group li a{
        padding: 6px 18px 6px 40px;
        font-size: 14px;
    }
    .header_feature .btn_group li.corpo a{
        background-position: 14px 8px;
        width: 190px;
    }
    .header_feature .btn_group li.app a{
        background-position: 13px 7px;
        width: 245px;
    }
    .header_feature .btn_group li.contact a{
        background-position: 14px 7px;
        width: 216px;
    }
    .search_group .search_pc{
        width: 50%;
    }
    .header_feature .phone{
        width: 50%;
    }
    .header_feature .phone .phone_popup span{
        font-size: 14px;
        padding-left: 30px;
        background-position: 0 0;
        background-size: 23px auto;
    }
    .header_feature .phone .phone_popup em{
        font-size: 14px;
    }
    .search_group .search_pc input[type=text]{
        font-size: 14px;
    }
    .header_bottom .pc_nav > li > a{
        font-size: 14px;
    }
}
@media screen and (min-width:1040px){
    .header_bottom .pc_nav .child_list > li a{
        font-size: 14px;
        letter-spacing: 0.05em;
    }
    .header_bottom .pc_nav .child_qa dt{
        padding: 0 20px 0 0;
    }
    .header_bottom .pc_nav .child_qa dt div{
        width: 160px;
        font-size: 14px;
    }
    .header_bottom .pc_nav .child_qa dd a{
        margin-right: 2em;
        font-size: 14px;
        padding-left: 15px;
        letter-spacing: 0.05em;
    }
    .header_bottom .pc_nav .child_qa dd a:after{
        border-top: 5px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 8px solid #fff;
    }
    .header_bottom .pc_nav .child_inner .child_title a{
        font-size: 14px;
        padding-left: 15px;
        letter-spacing: 0.05em;
    }
    .header_bottom .pc_nav .child_inner .child_title a:after{
        border-top: 5px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 8px solid #fff;
    }
}

/*sp_nav*/
.sp_nav_drop{
    display: none;
    position: fixed;
    top: 60px;
    z-index: 1000;
    overflow-y: scroll;
    width: 100%;
    height: calc(100vh - 60px);
}
.sp_nav_drop_inner{
    background-color: #094a9e;
    padding-bottom: 10px;
}
html.block .contents_wrap{
    touch-action: none;
}
.gl_nav_sp{
    width: 100%;
    height: 60px;
    border-top: 5px solid #094a9e;
    background-color: #fff;
    padding: 0 3%;
}
.header_sp{
    display: flex;
    align-items: center;
}
.header_logo_sp{
    width: -webkit-calc(100% - 35px);
    width: calc(100% - 35px);
}
.header_logo_sp h1{
    display: flex;
    text-decoration: none;
    align-items: center;
}
.header_logo_sp h1 a{
    display: block;
    width: 120px;
}
.header_logo_sp h1 a img{
    width: 100%;
}
.header_logo_sp h1 span{
    display: block;
    width: calc(100% - 120px);
    padding-left: 10px;
    font-weight: normal;
    font-size: 13px;
}
.header_feature_sp{
    padding: 10px 10px;
    background-color: #fff;
}
body.home .header_feature_sp ul,
body.internet .header_feature_sp ul,
body.phone .header_feature_sp ul,
body.case .header_feature_sp ul{
    display: flex;
    width: -webkit-calc(100% + 10px);
    width: calc(100% + 10px);
    margin: 0 -5px;
}
.header_feature_sp li{
    display: flex;
    flex-wrap: wrap;
}
.header_feature_sp .app{
    display: none;
}
body.home .header_feature_sp li,
body.internet .header_feature_sp li,
body.phone .header_feature_sp li,
body.case .header_feature_sp li{
    width: 50%;
    padding: 0 5px;
}
.header_feature_sp li.app{
    display: none;
}
body.home .header_feature_sp .app,
body.internet .header_feature_sp .app,
body.phone .header_feature_sp .app,
body.case .header_feature_sp .app{
    display: flex;
}
.header_feature_sp li a,
.header_feature_sp .app a {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding: 0 10px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
}
.header_feature_sp li span,
.header_feature_sp .app span {
    display: inline-block;
    position: relative;
    line-height: 1.3;
    padding: 11px 0 9px 35px;
    background-repeat: no-repeat;
}
.header_feature_sp .app a{
    color: #fff;
    background-color: #cd1e23;
}
.header_feature_sp .app a span{
    background-image: url(../img/common/ico_write.png);
    background-size: 22px auto;
    background-position: 0 50%;
}
.header_feature_sp li.contact a{
    color: #000;
    background-color: #fabd00;
}
.header_feature_sp li.contact a span{
    background-image: url(../img/common/ico_paper.png);
    background-size: 24px auto;
    background-position: 0 50%;
}
.header_feature_sp li.contact a span em{
    font-style: normal;
}
body.home .header_feature_sp li.contact a span em,
body.internet .header_feature_sp li.contact a span em,
body.phone .header_feature_sp li.contact a span em,
body.case .header_feature_sp li.contact a span em{
    display: none;
}
.header_feature_sp li.contact a span br{
    display: block;
}
body.home .header_feature_sp li.contact a span br,
body.internet .header_feature_sp li.contact a span br,
body.phone .header_feature_sp li.contact a span br,
body.case .header_feature_sp li.contact a span br{
    display: inline;
}
.sp_nav_drop .phone_sp{
    padding: 0 20px 10px;
}
.sp_nav_drop .phone_sp a{
    display: block;
    text-decoration: none;
    color: #fff;
}
.sp_nav_drop .phone_sp dl{
    display: flex;
    align-items: center;
    font-weight: bold;
}
.sp_nav_drop .phone_sp dt{
    width: 110px;
    background-color: #fff;
    color: #094a9e;
    text-align: center;
    font-size: 16px;
    padding: 1px;
    border-radius: 20px;
    letter-spacing: 0;
}
.sp_nav_drop .phone_sp dd{
    width: calc(100% - 110px);
    padding-left: 10px;
    font-size: 22px;
}
.sp_nav_drop .phone_sp p{
    font-size: 11px;
    padding: 3px 0 0 10px;
    letter-spacing: 0;
}
.gl_nav_sp_outside{
    border-top: 1px solid #fff;
}
.gl_nav_sp_outside > li{
    border-bottom: 1px solid #fff;
    background-color: #215ba8;
}
.gl_nav_sp_outside > li > a{
    display: block;
    position: relative;
    padding: 10px 40px 10px 20px;
    background-color: #09499e;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.gl_nav_sp_outside > li a.drop_none:before{
    display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 0;
    bottom: 0;
    right: 22px;
    margin: auto;
    transform: rotate(45deg);
    transform-origin: center;
}
.gl_nav_sp_outside > li a.drop_sp:before{
    display: block;
    position: absolute;
    content: "";
    width: 18px;
    height: 2px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    right: 19px;
    margin: auto;
    transform: rotate(0);
    transform-origin: center;
    transition: all 0.3s;
    opacity: 1;
}
.gl_nav_sp_outside > li a.drop_sp:after{
    display: block;
    position: absolute;
    content: "";
    width: 2px;
    height: 18px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    right: 27px;
    margin: auto;
    transform: rotate(0);
    transform-origin: center;
    transition: all 0.3s;
}
.gl_nav_sp_outside > li a.drop_sp.up:before{
    transform: rotate(90deg);
    opacity: 0;
}
.gl_nav_sp_outside > li a.drop_sp.up:after{
    transform: rotate(90deg);
    transition: all 0.3s;
}
.gl_nav_sp_outside > li > a[target="_blank"]:before{
    display: block;
    position: absolute;
    content: "\e900";
    font-family: 'icomoon';
    width: 15px;
    height: 15px;
    line-height: 1;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}
.gl_nav_sp_inside{
    display: none;
    padding: 0 20px;
}
.gl_nav_sp_inside > li{
    border-top: 1px solid #fff;
}
.gl_nav_sp_inside .drop_child{
    display: block;
    position: relative;
    padding: 10px 40px 10px 0px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.gl_nav_sp_inside .drop_child:before{
    display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 0;
    bottom: 0;
    right: 4px;
    margin: auto;
    transform: rotate(45deg);
}
.gl_nav_sp_inside .drop_child.gc{
    padding: 10px 40px 5px 0px;
}
.gl_nav_sp_inside .drop_child.gc:before{
    display: none;
}
.gl_nav_sp_gc{
    display: flex;
    flex-wrap: wrap;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
    margin: 0 -10px 15px;
}
.gl_nav_sp_gc > li{
    width: 50%;
    padding: 5px 10px;
}
.gl_nav_sp_gc > li > a{
    display: block;
    position: relative;
    padding-left: 18px;
    color: #fff;
    text-decoration: none;
}
.gl_nav_sp_gc > li > a:before{
    display: block;
    position: absolute;
    content: "";
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid #fff;
    width: 0;
    height: 0;
    top: 6px;
    left: 0;
}
.sp_nav_drop .search_group{
    padding: 10px 20px;
}
.sp_nav_drop .search_sp form{
    border: 1px solid #83a4cf;
}
.sp_nav_drop .search_sp input[type=text]{
    width: calc(100% - 40px);
    outline: none;
    box-shadow: none;
    border: 0px solid transparent;
    background-color: #fff;
    padding: 5px 10px;
    height: 40px;
}
.sp_nav_drop .search_sp input[type=submit]{
    width: 40px;
    height: 40px;
    background-color: #094a9e;
    font-size: 1px;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px auto;
    background-image: url(../img/common/ico_search.png);
}
.sp_nav_drop .search_group .corpo{
    padding: 10px 0 0px;
}
.sp_nav_drop .search_group .corpo a{
    display: block;
    position: relative;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px 15px;
    font-size: 16px;
}
.sp_nav_drop .search_group .corpo a span{
    display: inline-block;
    position: relative;
}
.sp_nav_drop .search_group .corpo a span:after{
    display: inline-block;
    position: relative;
    content: "\e900";
    font-family: 'icomoon';
    line-height: 1;
    padding-left: 5px;
}

/*SP 検索ボタン*/
.search_drop{
    display: none;
    position: fixed;
    top: 60px;
    z-index: 50;
    width: 100%;
    height: 82px;
    background-color: #094a9e;
}
.search_drop_inner .search_group{
    padding: 20px 20px;
}
.search_drop_inner .search_sp form{
    border: 1px solid #83a4cf;
    border-radius: 3px;
    overflow: hidden;
}
.search_drop_inner .search_sp input[type=text]{
    width: calc(100% - 40px);
    outline: none;
    box-shadow: none;
    border: 0px solid transparent;
    background-color: #fff;
    padding: 5px 10px;
    height: 40px;
}
.search_drop_inner .search_sp input[type=submit]{
    width: 40px;
    height: 40px;
    background-color: #094a9e;
    font-size: 1px;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px auto;
    background-image: url(../img/common/ico_search.png);
}

/*main*/
.contents_wrap{
    padding-top: 135px;
}
body.home .contents_wrap,
body.internet .contents_wrap,
body.phone .contents_wrap,
body.case .contents_wrap{
    padding-top: 173px;
}
@media screen and (min-width:768px){
    .contents_wrap{
        padding-top: 140px;
    }
    body.home .contents_wrap,
    body.internet .contents_wrap,
    body.phone .contents_wrap,
    body.case .contents_wrap{
        padding-top: 140px;
    }
}

/*top_back*/
.top_back{
    opacity: 0;
    position: absolute;
    left: 3%;
    transition: opacity 0.3s;
    z-index: 100;
}
.top_back.view{
    opacity: 1;
}
.top_back a{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-color: #09499e;
}
.top_back a span{
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    top: 8px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}
@media screen and (min-width:768px){
    .top_back{
        left: 30px;
    }
    .top_back a{
        width: 60px;
        height: 60px;
        border-radius: 5px;
        transition: transform 0.3s;
        transform: translateY(0);
    }
    .top_back a:hover{
        transform: translateY(-5px);
        opacity: 1;
    }
    .top_back a span{
        width: 22px;
        height: 22px;
        border-left: 3px solid #fff;
        border-top: 3px solid #fff;
        top: 10px;
    }
}

/*contact*/
.page_contact{
    padding: 20px 0;
    background-color: #f0f3fa;
    border-top: 1px solid #cccccc;
}
.page_contact .commonTitle02{
    margin: 10px 0 25px;
}
.contact_box{
    margin-bottom: 20px;
}
.contact_cont{
    background-color: #fff;
    text-align: center;
    padding: 15px 20px;
}
.contact_cont > dt .ico{
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
}
.contact_cont > dt .title{
    display: block;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 10px;
}
.contact_cont > dt .title > span{
    display: none;
}
.contact_cont > dt .title > span.solution{
    display: inline;
}
body.home .contact_cont > dt .title > span,
body.internet .contact_cont > dt .title > span,
body.phone .contact_cont > dt .title > span,
body.case .contact_cont > dt .title > span{
    display: inline;
}
body.home .contact_cont > dt .title > span.solution,
body.internet .contact_cont > dt .title > span.solution,
body.phone .contact_cont > dt .title > span.solution,
body.case .contact_cont > dt .title > span.solution{
    display: none;
}
.contant_bnr.new{
    display: none;
}
body.home .contant_bnr.new,
body.internet .contant_bnr.new,
body.phone .contant_bnr.new,
body.case .contant_bnr.new{
    display: block;
    margin-bottom: 10px;
}
.contant_bnr.paper{
    display: block;
    margin-bottom: 10px;
}
.contant_bnr a{
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 20px;
}
.contant_bnr a .ico{
    width: 45px;
    height: 45px;
}
.contant_bnr a p{
    padding-left: 10px;
    max-width: -webkit-calc(100% - 45px);
    max-width: calc(100% - 45px);
    text-align: left;
}
.contant_bnr.new a{
    background-color: #cc1e23;
    color: #fff;
}
.contant_bnr.paper a{
    background-color: #fabe00;
    color: #000;
}
.contant_bnr.online a{
    background-color: #37A7D9;
    color: #fff;
}
@media screen and (min-width:768px){
    .page_contact{
        padding: 60px 0;
        border-top: 0px solid transparent;
    }
    .page_contact .commonTitle02{
        margin: 0px 0 35px;
    }
    .contact_flex{
        display: flex;
        width: -webkit-calc(100% + 36px);
        width: calc(100% + 36px);
        margin: 0 -18px;
    }
    .contact_box{
        width: 50%;
        padding: 0 18px 0;
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .contact_cont{
        width: 100%;
        padding: 20px 20px;
    }
    .contact_cont > dt{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .contact_cont > dt .ico{
        display: block;
        width: 50px;
        height: 50px;
        margin: 0 0 0;
    }
    .contact_cont > dt .title{
        max-width: -webkit-calc(100% - 50px);
        max-width: calc(100% - 50px);
        padding-left: 10px;
        margin-bottom: 0px;
    }
    .contact_bnr_flex ul{
        display: flex;
        width: -webkit-calc(100% + 8px);
        width: calc(100% + 8px);
        margin: 0 -4px;
    }
    .contact_bnr_flex li{
        width: 100%;
        padding: 0 4px;
    }
    body.home .contact_bnr_flex li,
    body.internet .contact_bnr_flex li,
    body.phone .contact_bnr_flex li,
    body.case .contact_bnr_flex li{
        width: 50%;
    }
    body.home .contant_bnr.new,
    body.internet .contant_bnr.new,
    body.phone .contant_bnr.new,
    body.case .contant_bnr.new{
        margin-bottom: 0px;
    }
    .contant_bnr.paper{
        margin-bottom: 0px;
    }
    .contant_bnr a{
        display: block;
        line-height: 1.4;
        border-radius: 3px;
        height: 100%;
        padding: 8px 20px 9px;
    }
    .contant_bnr a .ico{
        margin: 0 auto 5px;
    }
    .contant_bnr a p{
        padding-left: 0px;
        max-width: 100%;
        text-align: center;
    }
}
.contact_phone dl{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.contact_phone dt{
    width: 100px;
    border-radius: 20px;
    padding: 2px 0;
    text-align: center;
    font-weight: bold;
    background-color: #09499e;
    color: #fff;
}
.contact_phone dd{
    position: relative;
    top: 3px;
    max-width: -webkit-calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding-left: 10px;
    padding-bottom: 3px;
    font-size: 22px;
    line-height: 22px;
    font-weight: bold;
    text-align: left;
    color: #09499e;
}
.contact_phone dd .tel_link a{
    text-decoration: none;
    color: #09499e;
}
.contact_phone p{
    font-size: 12px;
}
@media screen and (min-width:768px){
    .contact_phone dl{
        margin-bottom: 10px;
    }
    .contact_phone dt{
        width: 120px;
        font-size: 18px;
        height: 36px;
        padding: 5px 0;
    }
    .contact_phone dd{
        top: 3px;
        max-width: -webkit-calc(100% - 120px);
        max-width: calc(100% - 120px);
        padding-left: 10px;
        padding-bottom: 0px;
        line-height: 1.4;
        font-size: 40px;
    }
    .contact_phone p{
        font-size: 13px;
    }
}

.contact_apply {
  background-color: #ffffff;
  width: 100%;
  margin: 0 0 50px 0;
  padding: 15px 20px;
}
.contact_apply_btn a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  background-color: #cc1e23;
  border-radius: 100px;
  padding: 10px 0 10px 40px;
}
.contact_apply_btn a span {
  position: relative;
}
.contact_apply_btn a span::before {
  content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: -40px;
	transform: translate(0, -50%);
	width: calc(45px/1.4);
	height: calc(45px/1.4);
	background-image: url("/img/common/ico_write.png");
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (min-width:768px){
  .contact_apply {
    background-color: #ffffff;
    width: 100%;
    margin: 0 0 50px 0;
    padding: 40px 20px;
  }
  .contact_apply_btn a {
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 26px 0 26px 50px;
  }
  .contact_apply_btn a span::before {
    left: -50px;
	  width: calc(45px/1);
	  height: calc(45px/1);
  }
}


/*other_bnr*/
.page_other_bnr{
    padding: 20px 0;
}
.page_other_bnr .bnr_flex{
    margin: 0 0 -10px;
}
.page_other_bnr .bnr_flex li{
    margin-bottom: 10px;
}
.page_other_bnr .bnr_flex li a{
    display: block;
}
@media screen and (min-width:768px){
    .page_other_bnr{
        padding: 60px 0 40px;
    }
    .page_other_bnr .bnr_flex{
        display: flex;
        flex-wrap: wrap;
        width: -webkit-calc(100% + 32px);
        width: calc(100% + 32px);
        margin: 0 -16px -32px;
		justify-content: center;
    }
    .page_other_bnr .bnr_flex li{
        padding: 0 16px 32px;
    }
    .page_other_bnr .bnr_flex li.full{
        width: 100%;
    }
    .page_other_bnr .bnr_flex li.half{
        width: 50%;
    }
}

/*chat*/
div#eNomixTalkLinkerWrapper_eccTalkLinker {
    top: auto!important;
    bottom: 0!important;
}

@media screen and (min-width:768px){

}

/*tax*/
.tax_area{
    padding: 20px 0 30px;
}
.tax_area .tax{
    font-size: 12px;
    text-align: center;
}

/*footer*/
footer{
    letter-spacing: 0;
}
.footer_logo{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 3%;
}
.footer_logo a{
    display: block;
    width: 180px;
}
.footer_nav{
    border-top: 10px solid #738792;
}
.footer_inner{
    position: relative;
}
.footer_inner:before{
    display: block;
    position: absolute;
    content: "";
    width: 50px;
    height: 10px;
    background-color: #fabe00;
    top: -10px;
    left: 50px;
}
.footer_list li{
    position: relative;
}
.footer_list li.chat{
    display: none;
}
.footer_list li:before{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}
.footer_list li a{
    position: relative;
    display: block;
    background-color: #eaeaea;
    padding: 10px 15px;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px dotted #bfbfbf;
}
.footer_list li:last-of-type:before{
    display: none;
}
.footer_list li:last-of-type a{
    border-bottom: 0px solid transparent;
}
footer .copy{
    padding: 30px 3% 15px;
    text-align: center;
}
@media screen and (min-width:768px){
    .footer_nav{
        border-top: 10px solid #738792;
        height: 60px;
    }
    .footer_inner{
        max-width: 1120px;
        width: -webkit-calc(100% - 80px);
        width: calc(100% - 80px);
        margin: 0 auto;
    }
    .footer_inner:before{
        left: 0;
    }
    .footer_list{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 15px;
    }
    .footer_list li.chat{
        display: block;
    }
    .footer_list li:before{
        display: none;
    }
    .footer_list li:after{
        position: absolute;
        content: "";
        display: block;
        width: 1px;
        height: 13px;
        background-color: #fabe00;
        top: 4px;
        right: 0;
        transform: rotate(10deg);
    }
    .footer_list li a{
        background-color: transparent;
        padding: 0px 5px;
        font-size: 12px;
        color: #000;
        text-decoration: none;
        border-bottom: 0px solid transparent;
    }
    .footer_list li a:hover{
        text-decoration: underline;
    }
    .footer_list li:last-of-type:after{
        display: none;
    }
    footer .copy{
        font-size: 11px;
        padding: 20px 40px 30px;
        height: 60px;
    }
}
@media screen and (min-width:1275px){
    .footer_list li a{
        padding: 0px 10px;
    }
}

/*header*/
.header_feature_sp ul {
  display: flex;
  justify-content: space-between;
  margin-top: 5px!important;
}
.header_feature_sp ul li {
  width: 49%;
}
.header_feature_sp li a span {
  display: flex;
  align-items: center;
  height: 100%;
}
.header_feature_sp li.online a {
    color: #fff;
    background-color: #37A7D9;
}.header_feature_sp li.online a span {
    background-image: url("../img/common/ico_computer.png");
    background-size: 24px auto;
    background-position: 0 50%;
}
@media screen and (min-width: 768px) {
  .header_feature {
    display: flex;
  }
  .header_feature .online_box {
    margin: 0 0 5px 4px;
  }
  .header_feature .online_box a {
    position: relative;
    background-color: #37A7D9;
    background-image: url("../img/common/ico_computer.png");
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: 50% 3px;
    display: block;
    height: 100%;
    border-radius: 0 0 4px 4px;
    text-align: center;
    line-height: 1.5;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 35px 15px 0;
    box-sizing: border-box;
    width: 100px;
  }
}