@charset "UTF-8";

/*==========================
共通
===========================*/
* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-image: url("../common/img/bg.png");
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

strong {
    font-size: 1.2em;
    font-weight: 700;
    color: #182d68;
}

.title {
    padding: 2em 1em 1em;
}

.title h2 {
    font-size: 32px;
    color: #182d68;
    font-weight: 700;
    /* border-bottom: 3px solid #182d68; */
    line-height: 1.2;
    width: 80%;
    margin: auto;
}

.title span {
    color: #3299e6;
    font-size: 0.9em;
    font-weight: 700;
}

a:link {
    transition: 0.6s;
    text-decoration: none;
    font-weight: 700;
    color: #333;
}

a:visited {
    color: #333;
}

a:hover {
    transition: 0.3s;
}

a:active {
    color: #000;
}

img {
    display: block;
}

.small {
    font-size: 0.8em;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.xsp_only {
    display: none;
}

.t_r {
    text-align: right;
}

.t_l {
    text-align: left;
}

.bold {
    font-weight: 600;
}

.size_up {
    font-size: 1.4em;
}

.size_down {
    font-size: 0.7em;
    font-weight: 400;
}

img.w75 {
    width: 75% !important;
}

@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .xsp_only {
        display: none;
    }

    .t_r {
        text-align: center;
    }

    .t_l {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-weight: 500;
    }

    .xsp_only {
        display: block;
    }
}

/*==========================
コンテナ
===========================*/
section,
footer {
    margin-left: 160px;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

@media screen and (max-width: 960px) {

    section,
    footer {
        margin-left: 0;
    }

    .container {
        width: 100%;
        padding: 0 3%;
    }
}

/*==========================
ヘッダー
===========================*/
header {
    background-color: #182d68;
    width: 160px;
    height: 100vh;
    position: fixed;
    z-index: 100;
    transition: 0.3s;
}

header:hover {
    background-color: #0f3384;
    transition: 0.3s;
}

nav {
    display: block;
}

.logo {
    width: 160px;
    background: #fff;
    display: block;
    padding: 18px 30px 4px;
    line-height: 2.4;
}

header nav ul {
    display: flex;
    margin: 0 3em;
}

header nav ul li {
    padding: 0 2em;
}

header nav ul li img {
    width: 62%;
}

header nav ul li span {
    display: block;
    font-size: 14px;
    color: #182d68;
}

header nav ul li:hover {
    opacity: 0.7;
    transition: 0.3s;
}

@media screen and (max-width: 960px) {
    header {
        background-color: #182d68;
        width: 100%;
        height: 90px;
        position: fixed;
        z-index: 100;
        transition: 0.3s;
    }

    .logo img {}

    header nav ul li {
        padding: 0 1.3em;
    }
}

@media screen and (max-width: 480px) {
    header {
        width: 100%;
        height: 70px;
        transition: 0.3s;
    }

    header nav ul li span {
        font-size: 12px;
    }

    .logo img {
        width: 75px;
    }

    .logo {
        width: 115px;
        background: #fff;
        display: block;
        padding: 11px 20px 1px;
        line-height: 2.4;
        font-size: 12px;
    }

    header nav ul li img {
        width: 90%;
    }
}

/*ハンバーガーメニュー*/
/*メニュー部分*/
nav {
    display: none;
    position: fixed;
    top: 0;
    left: 160px;
    width: 600px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    z-index: 90;
}

header nav ul {
    display: block;
    width: 100%;
    position: absolute;
    top: 5%;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
}

header nav ul li {
    margin: 0 auto;
    padding: 6%;
    font-size: 24px;
    border-bottom: 1px solid #ccc;
}

header nav ul li:last-child {
    border: none;
}

header nav ul li a {
    display: block;
    color: #000;
}

/*開閉ボタン*/
#nav_toggle {
    width: 160px;
    height: 80vh;
    position: absolute;
    z-index: 200;
    cursor: pointer;
}

#nav_toggle .hum {
    position: relative;
    top: 33vh;
}

#nav_toggle span {
    display: block;
    height: 3px;
    background: #fff;
    position: relative;
    width: 40px;
    left: 60px;
    transition: 0.3s ease-in-out;
}

#nav_toggle .hum p {
    color: #fff;
    position: relative;
    text-align: center;
    top: 30px;
    font-size: 14px;
    font-weight: 500;
}

#nav_toggle span:nth-child(1) {
    top: 0px;
}

#nav_toggle span:nth-child(2) {
    top: 10px;
}

#nav_toggle span:nth-child(3) {
    top: 20px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

@media screen and (max-width: 960px) {
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 72%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
    }

    header nav ul {
        display: block;
        width: 100%;
        position: absolute;
        top: 6%;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: auto;
    }

    header nav ul li {
        margin: 0 auto;
        padding: 7% 7%;
        font-size: 24px;
        border-bottom: 1px solid #ccc;
    }

    #nav_toggle {
        width: 100px;
        height: 80px;
        top: 18px;
        right: 30px;
    }

    #nav_toggle .hum {
        position: relative;
        top: 0;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #fff;
        position: relative;
        width: 40px;
        left: 60px;
        transition: 0.3s ease-in-out;
    }

    #nav_toggle .hum p {
        color: #fff;
        position: relative;
        text-align: right;
        top: 29px;
        font-size: 14px;
        font-weight: 500;
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 75%;
    }
}

@media screen and (max-width: 480px) {
    nav {
        width: 75%;
    }

    header nav ul {
        top: 6%;
    }

    header nav ul li {
        font-size: 22px;
        border-bottom: 1px solid #ccc;
    }

    #nav_toggle {
        width: 100px;
        height: 80px;
        top: 12px;
        right: 23px;
    }

    #nav_toggle .hum {
        top: 0;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #fff;
        position: relative;
        width: 35px;
        left: 62px;
        transition: 0.3s ease-in-out;
    }

    #nav_toggle .hum p {
        color: #fff;
        position: relative;
        text-align: right;
        top: 21px;
        font-size: 14px;
        font-weight: 500;
    }
}

/*==========================
キービジュアル
===========================*/
#mainVisual .fv {
    background: url("img/fv_service.jpg");
    background-position: center bottom 35%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
}

#mainVisual .fv .key {
    position: absolute;
}

#mainVisual img {
    width: 240px;
    position: relative;
}

@media screen and (max-width: 480px) {
    #mainVisual .fv {
        background: url("img/fv_service.jpg") no-repeat;
        background-position: center bottom -10px;
        background-size: cover;
        height: 300px;
        position: relative;
    }

    #mainVisual img {
        width: 115px;
        position: relative;
        top: 70px;
    }
}

/*==========================
事業内容説明
===========================*/
#msg {
    background: url("img/msg_bg.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
    position: relative;
    padding: 4em 14%;
}

#msg .wrap {
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 6% 8%;
}

#msg .wrap h2 {
    border: none;
    margin: 0 auto 1em;
}

#msg .wrap img {
    width: 15vw;
    margin: 0 auto;
}

#msg .wrap p {
    padding: 1em 0;
    line-height: 2.2;
    color: #333;
}

#msg .wrap ul {
    padding: 1em 0;
    line-height: 2.2;
    color: #182d68;
    font-weight: 700;
}

#msg .wrap li {
    padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
    #msg {
        background-position: 3%;
        background-size: cover;
        padding: 1em;
    }

    #msg .wrap img {
        width: 25vw;
    }

    #msg .wrap {
        margin: 10% 3%;
        padding: 2em 1em;
    }

    #msg .wrap p {
        padding: 1em 0;
        font-size: 14px;
    }

    #msg .wrap ul {
        padding: 1em 0;
        font-size: 15px;
    }
}

/*==========================
運搬取り扱い
===========================*/
#sec01 {
    background-color: rgba(103, 188, 226, 0.1);
    padding: 2em 0 3em;
    text-align: center;
}

.pr {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2em;
}

#sec01 .box {
    padding: 1em 1%;
}

.box img {
    width: 100%;
}

#sec01 .box h3 {
    font-size: 18px;
    /* font-weight: 700; */
    color: #fff;
    background-color: #182d68;
    padding: 0.4em;
}

#sec01 .box img {
    filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.07));
}

@media screen and (min-width: 1366px) {
    #sec01 .box h3 {
        font-size: 18px;
        background-color: #182d68;
    }
}

@media screen and (min-width: 769px) and (max-width: 959px) {
    #sec01.pr {
        flex-wrap: wrap;
        justify-content: center;
    }

    #sec01.box {
        width: 33%;
        padding: 2em 3% 0;
    }

    #sec01 .box h3 {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    #sec01 .pr {
        flex-wrap: wrap;
    }

    #sec01 .box {
        margin: 0 auto;
        width: 50%;
        padding: 1.5em 2% 0;
    }

    #sec01 .box img {
        margin: 0 auto;
        max-width: 350px;
    }

    #sec01 .box h3 {
        font-size: 16px;
        line-height: 1.7;
    }
}

/*==========================
車両設備
===========================*/
#sec02 {
    padding: 2em 0;
    text-align: center;
}

#sec02 .pr {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 1em auto 2em;
}

#sec02 .pr .box {
    margin: 1em;
    background: #fff;
    padding: 0;
    width: 250px;
    height: 350px;
    box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

#sec02 .pr h3 {
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding: 25px 1em 0;
    color: #182d68;
}

#sec02 .pr .box img {
    width: 100%;
    margin: 0 auto;
}

#sec02 .pr .box p {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 1em;
    text-align: left;
}

#sec02 .pr .box p.btn {
    color: #fff !important;
    background: #ffd31d;
    padding: 8px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    #sec02 .pr .box {
        margin: 1em 0.5em;
        width: 240px;
        height: 330px;
    }

    #sec02 .pr a h3 {
        font-size: 22px;
        padding: 20px 0 10px;
    }

    #sec02 .pr .box img {}

    #sec02 .pr .box p {
        font-size: 14px;
    }

    #sec02 .pr .box p.btn {
        padding: 5px 20px;
    }
}

@media screen and (max-width: 767px) {
    #sec02 .pr {
        display: block;
    }

    #sec02 .pr .box {
        margin: 1em auto 2em;
        background: #fff;
        padding: 0;
        width: 280px;
        height: 340px;
        box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.25);
        transition: 0.3s;
    }

    #sec02 .pr a h3 {
        font-size: 24px;
        padding: 20px 0 10px;
    }
}

/*==========================
車両詳細
===========================*/
#sec03 {
    padding: 2em 0;
    text-align: center;
    background: linear-gradient(-45deg, #f7f7f7 25%, transparent 25%, transparent 50%, #f7f7f7 50%, #f7f7f7 75%, transparent 75%, transparent), rgba(255, 255, 255, 0.5);
    background-size: 4px 4px;
}

#sec03 img {
    padding: 1em 0 2em;
}

#sec03 .pr {
    display: flex;
    text-align: center;
    border-bottom: 1px solid #a5a5a5;
    flex: 4;
    justify-content: space-around;
    margin: 0;
    padding: 0.8em 0;
}

#sec03 .pr li {
    width: 130px;
}

#sec03 p {
    padding: 1em 0;
    text-align: center;
}

@media screen and (max-width: 600px) {
    #sec03 .pr {}

    #sec03 .pr li {
        width: 74px;
        font-size: 12px;
    }

    #sec03 p {
        font-size: 12px;
    }
}

/*==========================
職場環境改善宣言企業
===========================*/
.banner-area {
    margin-left: 160px;
    overflow: hidden;
    text-align: center;
}

.banner-area img {
    width: 220px;
    margin: 1.5em auto;
}

@media screen and (max-width: 960px) {
    .banner-area {
        margin-left: 0;
    }

    .banner-area img {
        width: 180px;
        margin: 1em auto;
    }
}

/*==========================
リクルート
===========================*/
#recruit {
    background: url("../common/img/bg_recruit.svg") no-repeat;
    background-size: cover;
    height: 250px;
    background-position: center bottom;
}

#recruit .pr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

#recruit .pr .box {
    margin: 1em 1.5em;
}

#recruit .pr .box img {
    width: 230px;
    margin: 0 auto;
}

#recruit a.btn {
    color: #fff !important;
    background: #182d68;
    padding: 15px 50px;
    border-radius: 60px;
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    transition: 0.3s;
}

#recruit a.btn:hover {
    transition: 0.3s;
    filter: brightness(140%);
}

@media screen and (max-width: 768px) {
    #recruit {
        height: 200px;
    }

    #recruit a.btn {
        border-radius: 60px;
        font-size: 15px;
        padding: 12px 40px;
    }

    #recruit .pr .box img {
        width: 180px;
    }

    #recruit .pr .box {
        margin: 0.5em 1em;
    }

}

@media screen and (max-width: 480px) {
    #recruit {
        height: 270px;
    }

    #recruit .pr {
        display: block;
        padding-top: 15px;
    }

    #recruit .pr .box {
        margin: 1em;
        text-align: center;
    }

    #recruit a.btn {
        font-size: 15px;
    }
}


/*==========================
フッター
===========================*/
footer {
    color: #e2e2e2;
    font-size: 13px;
    background: url(../common/img/logo_f.svg) no-repeat bottom 60px right 52px, #212a37;
    background-size: 50px auto;
}

footer a:link {
    color: #e2e2e2;
    font-weight: 500;
}

footer a:visited {
    color: #e2e2e2;
    font-weight: 500;
}

footer a:hover {
    color: #fff;
    transition: 0.3s;
}

footer a:active {
    color: #e2e2e2;
}

footer .footer_group {
    display: flex;
    padding: 3em 7em 6em 3em;
    margin-right: 2em;
    margin: 0 auto;
}

footer .company {
    padding-right: 7%;
}

footer .company .comp {
    font-size: 17px;
    font-weight: 600;
}

footer .company p {
    line-height: 1.8;
}

footer .footer_nav {
    margin: 0 auto;
}

footer .footer_nav li {
    margin: 0.4em auto;
}

footer .footer_nav li span {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0.5em;
}

footer .copy p {
    text-align: center;
    border-top: 1px solid #e2e2e2;
    padding: 1em;
    margin: 0;
    vertical-align: bottom;
    font-size: 10px;
}

footer .fab {
    width: 36px;
    font-size: 22px;
    padding-top: 0.8em;
}

.svg-inline--fa.fa-w-14 {
    width: .875em;
    font-size: 26px;
    margin-right: 6px;
    margin-top: 10px;
}

footer address .f_tel {
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    padding: 2px 12px;
    border: #e2e2e2 2px solid;
    margin: 6px 0 3px;
    border-radius: 20px;
    font-weight: 700;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: left;
        width: 38%;
        margin-bottom: 2em;
    }

    .clearfix:after {
        content: "";
        display: block;
        clear: both;
    }
}

/*トップへ戻るボタン*/
footer .totop {
    position: fixed;
    bottom: 130px;
    right: 40px;
    z-index: 15;
    width: 75px;
}

footer .contact .totop img {
    width: 100px;
    backface-visibility: hidden;
}

@media screen and (max-width: 480px) {
    footer {
        background: url(../common/img/logo_f.svg) no-repeat bottom 65px right 30px, #212a37;
        background-size: 50px auto;
    }

    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: none;
        width: auto;
        margin-bottom: 1em;
    }

    footer .fa {
        padding-top: 1em;
    }

    footer .footer_nav li {
        margin: 0 auto;
    }

    footer .totop {
        bottom: 130px;
        right: 25px;
        width: 60px;
    }
}

/*210316*/
header nav ul li {
    padding: 4% 6%;
    font-size: 22px;
}

@media screen and (max-width: 960px) {
    header nav ul {
        top: 4%;
    }
}