@charset "UTF-8";
/* CSS Document */
header .tablet,
header .sp{
    display: none;
}
header .pc{
    display: block;
}

/* ヘッダー */
header{
    position: fixed;
    box-sizing: border-box;
    z-index: 10;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 12px 10px 12px 20px;
}
.header_inner{
    margin: auto;
}

/* ヘッダーロゴ */
.header_logo{
    margin-right: auto;
    width: 160px;
}

/* ヘッダーナビ */
header nav ul li{
    font-size: 16px;
    margin-right: 40px;
}
header nav ul li a{
    color: #fff;
}

/* フリーコール */
header .contact{
    padding-left: 16px;
    border-left: 1px solid #3e3e3e;
}
header .contact .freecall{
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 16px;
}
header .contact .freecall .tel{
    margin-bottom: 6px;
}
header .contact .freecall .tel img,
header .contact .freecall .tel a{
    display: inline-block;
}
header .contact .freecall .tel img{
    width: 32px;
    margin-right: 4px;
}
header .contact .freecall .tel a{
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 26px;
    pointer-events: none;
}
header .contact .freecall p{
    font-size: 12px;
    line-height: 1em;
    margin-bottom: 0;
}

/* お問い合わせ */
header .contact .contact_btn{
    font-size: 14px;
    line-height: 1em;
    background: #005bac;
    color: #fff;
    padding: 18px 30px;
    border-radius: 5px;
}

/* タブレット */
@media screen and (max-width:1300px){
    .header_inner > nav,
    .header_inner > .maintenance,
    .header_inner > .other_nav{
        display: none;
    }
    header .tablet{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 30px 0 20px;
    }
}

/* スマホ */
@media screen and (max-width:767px){
    header{
        padding: 12px 20px;
    }
    header .tablet,
    header .contact{
        display: none;
    }
    .header_inner > .maintenance{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}



