@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

/* ===================================================================

リセット

=================================================================== */

html {
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
    background-repeat: no-repeat;
    box-sizing: inherit;
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

*:focus {
    /*chromeデフォルト設定解除*/
    outline: none;
}

* {
    padding: 0;
    margin: 0;
}


/* 一般的な要素 */

audio:not([controls]) {
    display: none;
    height: 0;
}

hr {
    overflow: visible;
}

address,
em {
    font-style: normal;
}

ul,
ol,
li {
    list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

summary {
    display: list-item;
}

small {
    font-size: 80%;
}

[hidden],
template {
    display: none;
}

abbr[title] {
    border-bottom: 1px dotted;
    text-decoration: none;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* フォーム */

input {
    border-radius: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="number"] {
    width: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
}

optgroup {
    font-weight: bold;
}

button {
    overflow: visible;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: 0;
    padding: 0;
}

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;

    text-transform: none;
}

select::-ms-expand {
    display: none;
}

select::-ms-value {
    color: currentColor;
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}


/* メディア */

img {
    border-style: none;
    vertical-align: top;
}

img,
iframe {
    /*スマホはみ出し用*/
    max-width: 100%;
}

progress {
    vertical-align: baseline;
}

svg:not(:root) {
    overflow: hidden;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}


/* アクセシビリティ */

@media screen {
    [hidden ~ ="screen"] {
        display: inherit;
    }

    [hidden ~ ="screen"]:not(:active):not(:focus):not(:target) {
        position: absolute !important;
        clip: rect(0 0 0 0) !important;
    }
}

[aria-busy="true"] {
    cursor: progress;
}

[aria-controls] {
    cursor: pointer;
}

[aria-disabled] {
    cursor: default;
}


/* selection */

::-moz-selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}

::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}


/* ===================================================================

各ページ共通関連

=================================================================== */

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

.mincho {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}

p {
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;

    text-justify: inter-ideograph;
    /* 日本語用 */
}

th,
td {
    font-size: 16px;
}

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

    p,
    th,
    td {
        font-size: 18px;
    }
}

a {
    text-decoration: none;
}

/*画像ホバーOpacity*/
a img {
    /*transition: 1.0s ;*/
}

/*
a:hover img {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}*/

/*画像ホバーFlashing*/
/*a:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}
*/

/*float*/

@media (min-width: 768px) {
    .left {
        float: left;
    }

    .right {
        float: right;
    }

    .all:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
}


/*両端揃え*/

.just {
    text-align: justify;
    text-justify: inter-ideograph;
}


/* 電話番号リンクPC無効 */

a[href^="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}


/* スマホメニュー */

.nav-content {
    background: #fff;
}

.nav-content ul {
    border-top: 1px solid #eee;
}

.nav-content ul li {}

.nav-content ul li a {
    text-align: left;
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: relative;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.nav-content ul li a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* PCメニュー */

.nav-menus {
    display: none;
}

@media (min-width:960px) {
    .drawer-toggle {
        display: none;
    }

    .nav-menus {
        display: block;
        float: right;
    }

    .nav-menus ul {
        padding: 0 10px;
    }

    .nav-menus ul:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }

    .nav-menus > ul > li {
        float: left;
        text-align: center;
        height: 74px;
        background: #fff;
    }

    .nav-menus ul li a {
        position: relative;
        display: block;
        height: 74px;
        box-sizing: border-box;
        text-decoration: none;
        color: #000;
    }

    .nav-menus ul li a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #043896;
        bottom: 15px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.4s;
    }

    .nav-menus ul li a:hover::after {
        transform: scale(1, 1);
    }

    .nav-menus ul li.nav-menu01 {
        display: none;
    }

    .nav-menus ul li.nav-menu01 a {
        width: 75px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu02 a {
        width: 85px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu03 a {
        width: 85px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu04 a {
        width: 85px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu05 a {
        width: 85px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu06 a {
        width: 85px;
        padding-top: 25px;
    }
}

@media (min-width:1044px) {
    .nav-menus ul li.nav-menu01 {
        display: block;
    }
}

/*ヘッダー*/

header {
    /*border-bottom: 2px solid #ccc;*/
}

.header-wrapper {
    max-width: 1366px;
    margin: 0 auto;
}

header .logo {
    float: left;
    height: 54px;
    box-sizing: border-box;
    padding-left: 5px;
    padding-top: 9px;
}

@media all and (-ms-high-contrast: none) {
    header h1 {
        /*IE用*/
        padding-top: 5px;
    }
}

header .logo a {
    display: block;
}

header .logo a img {
    width: 225px;
    height: auto;
}

header:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

@media (min-width: 960px) {
    header .logo {
        height: 74px;
        padding-top: 12px;
    }

    header .logo a img {
        width: 300px;
    }
}

.head-phone {
    display: none;

}

.head-phone img {
    border: 1px solid #000;
    border-radius: 6px;
}

.head-phone-mini {
    padding: 15px;
}

.head-phone-mini a {
    border: 1px solid #000;
    border-radius: 6px;
    display: block;
}

@media (min-width: 768px) {
    .head-phone {
        display: block;
        float: right;
        width: 150px;
        padding: 7px 0 0 0;
        margin-right: 64px;
    }

    .head-phone-mini {
        display: none;
    }
}

@media (min-width:960px) {
    .head-phone {
        display: block;
        float: right;
        width: 200px;
        padding: 10px 5px 0 0;
        margin: 0;
    }
}

/*フッター*/

footer {
    background-color: #e8e8e8;
}

.footer_logo {
    text-align: center;
    padding: 30px 15px;
}

.footer_logo img {
    width: 200px;
}

.footer_copy {
    text-align: center;
    padding: 30px 15px;
    font-size: .75rem;
}

@media (min-width: 768px) {
    .footer_logo {
        padding: 60px 15px 30px;
    }

    .footer_copy {
        padding: 30px 15px 60px;
    }
}

.footer_nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 0;
}

.footer_nav li {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin: 0;
}

.footer_nav li:last-child {
    border-bottom: none;
}

.footer_nav li a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 12px 0;
    background-color: #f8f8f8;
    transition: background-color 0.2s, color 0.2s;
}

.footer_nav li a:hover {
    background-color: #fff;
    color: #043896;
}

@media screen and (min-width: 768px) {
    .footer_nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        width: auto;
    }

    .footer_nav li {
        width: auto;
        border: none;
    }

    .footer_nav li a {
        width: auto;
        padding: 8px 12px;
        background-color: transparent;
        font-size: 14px;
        color: #0652cc;
    }

    .footer_nav li a:hover {
        background-color: transparent;
        color: #043896;
        text-decoration: underline;
    }
}


/*下固定スマホ用サブメニュー*/
/*
#submenu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #00ad96;
    border-top: 1px solid #fff;
    z-index: 2;
}

#submenu .submenus:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

#submenu .submenus {
    float: left;
    width: 33%;
}

#submenu .submenus a {
    display: block;
    color: #fff;
    text-align: center;
    height: 60px;
    font-size: 28px;
    padding-top: 10px;
    border-left: 1px solid #fff;
}

#submenu .submenus:first-child a {
    border-left: none;
}

@media (min-width: 768px) {
    #submenu {
        display: none;
    }
}
*/
/*トップへ戻る
---------------------------------------------------------------*/

#pagetops {
    position: fixed;
    bottom: 16px;
    right: 12px;
}

#pagetops a {
    cursor: default;
}

#pagetop img {
    border-radius: 10px;
}

#pagetop:after {
    background-color: rgba(80, 80, 80, 0.9);
    color: #fff;
    box-sizing: border-box;
    content: '\f106';
    font-weight: 900;
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 180%;
}

#pagetop:hover:after {
    background-color: rgba(50, 50, 50, 1);
}

@media (min-width: 768px) {
    #pagetops {
        right: 20px;
        bottom: 20px;
    }
}

/* ===================================================================

各ページ style

=================================================================== */

main {
    /*max-width: 1366px;
    margin: 0 auto;*/
}

.btn01 {
    width: 70%;
    margin: 30px auto 15px;
    text-align: center;
}

br.pcnomi {
    display: none;
}

@media (min-width: 768px) {
    br.pcnomi {
        display: block;
    }

    br.smnomi {
        display: none;
    }
}

.btn01 a {
    display: block;
    border-radius: 6px;
    height: 45px;
    line-height: 45px;
    background: #043896;
    color: #fff;
    box-sizing: border-box;
    font-size: 14px;
    transition: background 0.4s ease;
}

.btn01 a:hover {
    background: #0652cc;
}

@media (min-width: 768px) {
    .btn01 {
        width: 315px;
    }

    .btn01 a {
        font-size: 18px;
        height: 55px;
        line-height: 55px;
    }
}

/*トップ スライド*/
.swiper-container {
    width: 100%;
    margin: auto;
}

.overlay-text {
    color: white;
    font-size: 18px;
    background: linear-gradient(to bottom, #4DA0FF, #87CEFA, #E0F7FF);
    background: linear-gradient(to bottom, #4DA0FF, #87CEFA, #A5DFF2);
    padding: 15px;
}

.swiper-slide {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text p {
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 0.6);
}

.overlay-text p span {
    font-size: 32px;
    /*font-size: 36px;*/
    line-height: 1.4;
    padding-top: 10px;
    display: inline-block;
}

@media (min-width: 768px) {
    .swiper-container {
        position: relative;
    }

    .overlay-text {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 10;
        padding: 15px;
        background: none;
        font-size: 20px;
    }

    .overlay-text p span {
        font-size: 36px;
    }
}

/*トップ 受ける使命！渡す責任！*/
.our-commitment {
    padding: 30px 15px;
}

.our-commitment h2 {
    text-align: center;
    padding-bottom: 15px;
}

.our-commitment br {
    display: none;
}

@media (min-width: 768px) {
    .our-commitment p {
        text-align: center;
    }

    .our-commitment br {
        display: block;
    }
}

/* トップ 私たちの取り組み*/
.top-efforts-container-wrap {
    background: #EFF4DC;
}

.top-efforts-container {
    display: block;
}

.top-efforts-text h2,
.top-efforts-text h3 {
    text-align: center;
    padding-bottom: 15px;
}

.top-efforts-text h2 {
    padding-bottom: 5px;
}

.top-efforts-text h3 {
    padding-bottom: 15px;
}

.top-efforts-text p br {
    display: none;
}

@media (min-width: 768px) {
    .top-efforts-text p {
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .top-efforts-text p br {
        display: none;
    }
}

@media (min-width: 1024px) {
    .top-efforts-text p {
        text-align: center;
    }

    .top-efforts-text p br {
        display: block;
    }
}

.top-efforts-text,
.top-efforts-image {
    width: 100%;
    box-sizing: border-box;
}

.top-efforts-text {
    padding: 30px 15px;
}

.top-efforts-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (min-width: 768px) {
    .top-efforts-container {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        max-width: 1336px;
        margin: 0 auto;
    }

    .top-efforts-text,
    .top-efforts-image {
        flex: 1 1 50%;
        box-sizing: border-box;
    }

    .top-efforts-image img {
        height: 100%;
        object-fit: cover;
    }
}

.mark-panth {
    display: flex;
    max-width: 200px;
    margin: 0 auto;
    padding-top: 15px;
}

.mark-panth img {
    width: calc(100% / 3);
}

/* トップ 運送サービス */
.top-service-container-wrap {
    background: #EFF4DC;
}

.top-service-container {
    display: block;
}

.top-service-text,
.top-service-image {
    width: 100%;
    box-sizing: border-box;
}

.top-service-text {
    padding: 30px 15px;
}

.top-service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.top-service-text h2,
.top-service-text h3 {
    text-align: center;
}

.top-service-text h2 {
    padding-bottom: 5px;
}

.top-service-text h3 {
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    .top-service-container {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        align-items: stretch;
        max-width: 1336px;
        margin: 0 auto;
    }

    .top-service-text,
    .top-service-image {
        flex: 1 1 50%;
        box-sizing: border-box;
    }

    .top-service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

.top-service-image-row {
    display: flex;
    gap: 1px;
    max-width: 342px;
    margin: 0 auto 15px;
}

.top-service-image-row img {
    width: calc((100% - 1px) / 2);
    height: auto;
    display: block;
}

.top-service-text p br {
    display: none;
}

@media (min-width: 768px) {
    .top-service-image-row img {
        width: 50%;
        height: auto;
    }

    .top-service-text p {
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .top-service-text p br {
        display: none;
    }
}

@media (min-width: 1024px) {
    .top-service-text p {
        text-align: center;
    }

    .top-service-text p br {
        display: block;
    }
}


/* トップ 保有車輌 */
.top-vehicles {
    padding: 30px 15px;
    text-align: center;
}

.top-vehicles h2 {
    padding-bottom: 15px;
}

.top-vehicles-box {
    display: flex;
    gap: 1px;
    padding-top: 15px;
    margin: 0 auto;
    max-width: 1336px;
}

.top-vehicles-box > div {
    width: calc((100% - 2px) / 3);
}

.top-vehicles-box > div img {
    width: 100%;
    height: auto;
    aspect-ratio: 384 / 264;
    object-fit: cover;
    display: block;
}

.top-vehicles-box p {
    font-size: 14px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .top-vehicles-box p {
        font-size: 16px;
    }
}

/* トップ 採用情報 */
.top-recruit {
    padding: 30px 15px;
    text-align: center;
    background-image: url('../images/top-recruit-back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.top-recruit h2 {
    padding-bottom: 15px;
}

.top-recruit p br {
    display: none;
}

@media screen and (min-width: 768px) {
    .top-recruit p br {
        display: block;
    }
}

/* 事業拠点*/
.kiyoten {
    padding: 30px 15px;
    text-align: center;
    background: #f2f0dd;
}

.kiyoten h2 {
    padding-bottom: 15px;
}

.locations {
    /*display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;*/
    padding: 15px 0;
    margin: 0 auto;
    max-width: 1336px;
    max-width: 738px;
}

.location {
    /*position: relative;*/
}

.locations .location:nth-child(2) {
    margin-top: 60px;
}

.location img {
    display: block;
    width: 100%;
    height: auto;
}

.location-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {
    /*.locations {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }*/
}

/*お気軽にお問い合わせください*/
.okigaruni-wrap {
    padding: 30px 15px;
}

.okigaruni {
    padding: 30px 15px;
    border: 2px solid #999;
    border-radius: 6px;
    max-width: 500px;
    margin: 0 auto;
}

.okigaruni p {
    text-align: center;
}

.oki01 {
    font-size: 20px;
}

.oki02 span {
    font-size: 14px;
}

.tel-mail {
    font-size: 26px;
    text-align: center;
    padding: 10px 0;
}

.tel-mail a {
    color: #000;
}

.tel-mail a span {
    font-size: 30px;
    font-weight: bold;
    padding: 0 10px 0 5px;
}

@media screen and (min-width: 768px) {
    .oki01 {
        font-size: 28px;
    }

    .oki02 span {
        font-size: 16px;
    }

    .tel-mail {
        font-size: 28px;
    }

    .tel-mail a span {
        font-size: 36px;
    }
}

/* トップ各種 */
h2.top-section-title {
    font-size: 28px;
}

h3.top-section-title-sub {
    font-size: 18px;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    h2.top-section-title {
        font-size: 32px;
    }

    .our-commitment h2.top-section-title {
        font-size: 36px;
    }

    h3.top-section-title-sub {
        font-size: 22px;
    }

    .top-recruit p {
        text-align: center;
    }

    .kiyoten p {
        text-align: center;
    }

    .top-vehicles-p {
        text-align: center;
    }

    .our-commitment,
    .top-efforts-text,
    .top-service-text,
    .top-vehicles,
    .top-recruit,
    .okigaruni-wrap,
    .kiyoten {
        padding: 60px 15px;
    }
}

@media screen and (min-width: 960px) {
    h2.top-section-title {
        font-size: 36px;
    }

    .our-commitment h2.top-section-title {
        font-size: 44px;
    }

    h3.top-section-title-sub {
        font-size: 28px;
    }
}

/*各ページタイトル部*/
.page-title-bg {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

}

.page-title-bg.torikumi-bg {
    background-image: url('../images/torikumi-bg.jpg');
}

.page-title-bg.prospectus-bg {
    background-image: url('../images/prospectus-bg.jpg');
}

.page-title-bg.recruit-bg {
    background-image: url('../images/recruit-bg.jpg');
}

.page-title-bg.about-bg {
    background-image: url('../images/about-bg.jpg');
}

.page-title-bg.contact-bg {
    background-image: url('../images/contact-bg.jpg');
}

.page-title-bg h1 {
    font-size: 32px;
}

.page-intro {
    padding: 30px 15px;
}

.page-intro h2 {
    font-size: 28px;
    text-align: center;
    padding-bottom: 15px;
}

.page-cont {
    padding: 30px 15px;
}


/*取り組み および　各ページ*/
.mark-panth-wrap {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.mark-panth-wrap .mark-panth {
    max-width: 140px;
}

.page-cont.page-cont-torikumi h3 {
    font-size: 28px;
    padding-bottom: 15px;
}

.page-cont.page-cont-torikumi h4 {
    font-size: 24px;
    padding-top: 15px;
}

.page-cont.page-cont-torikumi h5 {
    font-size: 20px;
    padding-top: 15px;
}

@media screen and (min-width: 768px) {
    .page-title-bg h1 {
        font-size: 36px;
    }

    .mark-panth-wrap .mark-panth {
        max-width: 200px;
    }

    .page-intro {
        padding: 60px 15px 0;
    }

    .page-intro p {
        text-align: center;
    }

    .page-cont {
        padding: 60px 15px;
    }

    .page-intro h2,
    .page-cont.page-cont-torikumi h3 {
        font-size: 32px;
    }

    .page-cont.page-cont-torikumi h4 {
        font-size: 22px;
    }

    .page-cont.page-cont-torikumi h5 {
        font-size: 22px;
    }

}

@media screen and (min-width: 960px) {
    .page-title-bg h1 {
        font-size: 44px;
    }

    .page-intro h2,
    .page-cont.page-cont-torikumi h3 {
        font-size: 36px;
    }

    .page-cont.page-cont-torikumi h4 {
        font-size: 28px;
    }

}

.page-intro-don {
    padding: 30px 15px 0;
}

.page-intro-don h2 {
    text-align: center;
    padding-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .page-intro-don {
        padding: 60px 15px 0;
    }

    .page-intro-don p {
        text-align: center;
    }
}

.section-title {
    font-size: 28px;
}

.section-sub-title {
    font-size: 18px;
}

.section-block {
    padding: 30px 15px;
}

.section-wide {
    padding: 30px 0;
}

@media screen and (min-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-sub-title {
        font-size: 22px;
    }

    .section-block {
        padding: 60px 15px;
    }

    .section-wide {
        padding: 60px 0;
    }
}

@media screen and (min-width: 960px) {
    .section-title {
        font-size: 36px;
    }

    .section-sub-title {
        font-size: 28px;
    }
}

.markas {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
    max-width: 738px;
}

.sdgs {
    margin: 30px auto 0;
    max-width: 738px;
}

.markas img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.markas-text {
    padding-bottom: 15px;
}

.page-cont.page-cont-torikumi .markas-text h3 {
    font-size: 22px;
}

.markas-text p {
    margin-bottom: 10px;
}

.markas-text a {
    color: #0652cc;
}

.markas-text a:hover {
    color: #043896;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .markas {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .markas img {
        margin-bottom: 0;
        width: 100px;
        flex-shrink: 0;
    }

    .markas-text {
        flex: 1;
    }
}

.torikumi01 {
    margin-bottom: 15px;
}

.torikumi01-image img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .torikumi01-all {
        display: flex;
        gap: 30px;
        align-items: stretch;
        max-width: 1336px;
        margin: 0 auto;
    }

    .torikumi01 {
        flex: 0 0 calc(55% - 15px);
        margin-bottom: 0;
    }

    .torikumi01-image {
        flex: 0 0 calc(45% - 15px);
    }

    .torikumi01-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.torikumi01-under {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.torikumi01-under img {
    width: calc(50% - 7.5px);
    height: auto;
    display: block;
    object-fit: cover;
}

.torikumi02-image img {
    width: 100%;
}

.torikumi02 {
    margin-bottom: 15px;
}

.torikumi02-under {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.torikumi02-under img {
    width: calc(50% - 7.5px);
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {
    .torikumi02-all {
        display: flex;
        flex-direction: row-reverse;
        gap: 30px;
        align-items: stretch;
        max-width: 1336px;
        margin: 0 auto;
    }

    .torikumi02-l {
        flex: 0 0 calc(45% - 15px);
    }

    .torikumi02 {
        flex: 0 0 calc(55% - 15px);
        margin-bottom: 0;
    }


    .torikumi02-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.torikumi03-all-wrap {
    background: #EFF4DC;
    margin-top: 20px;
}

.torikumi03-all {
    display: block;
}

.torikumi03 {
    margin-bottom: 20px;
}

.torikumi03-image img {
    width: 100%;
    height: auto;
}

.torikumi03-l {
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    .torikumi03-all {
        display: flex;
        flex-direction: row-reverse;
        gap: 30px;
        align-items: stretch;
        max-width: 1336px;
        margin: 0 auto;
    }

    .torikumi03-l {
        flex: 0 0 calc(45% - 15px);
        padding-bottom: 0;
    }

    .torikumi03 {
        flex: 0 0 calc(55% - 15px);
        padding: 0 30px 0 0;
    }

    .torikumi03-image img {
        object-fit: cover;
    }
}

/**/
.torikumi03-l .image-layout {
    aspect-ratio: 373 / 432;
    /* 全体：上316 + 下316 → 合計632 */
    width: 100%;
    /* 親の幅に応じて可変 */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.torikumi03-l .top-image {
    display: flex;
    /*flex: 1;*/
}

.torikumi03-l .top-image img {
    width: 100%;
    height: auto;
}

.torikumi03-l .bottom-image {
    display: flex;
    justify-content: space-between;
    padding-top: .5rem;
    /*display: flex;*/
}

/*.torikumi03-l .top-image img,
.torikumi03-l .bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}*/

.torikumi03-l .bottom-image .left {
    width: 49%;
}

.torikumi03-l .bottom-image .left img {
    width: 100%;
    height: auto;
}

.torikumi03-l .bottom-image .right {
    width: 49%;
    /*display: flex;
    flex-direction: column;*/
}

.torikumi03-l .bottom-image .right img {
    width: 100%;
    height: auto;
}


/*事業内容*/

.section-catch-block {
    padding: 30px 15px;
}

.transport-section {
    padding: 0 15px 30px;
}

.prospectus-intro p {
    text-align: left;
    margin: 0 auto;
    max-width: 738px;
}

.transport-section h2,
.workplace-intro-title {
    background: #333333;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
}

.workplace-intro-title.sec {
    margin-top: 30px;
}

.transport-section-inner {
    padding-top: 30px;
}

.transport-section-left,
.transport-section-right {
    background: #333333;
    color: #fff;
    box-sizing: border-box;
}

.transport-section-left {
    margin-bottom: 30px;
}

.transport-section img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.transport-section-tex {
    padding: 15px;
}

@media (min-width: 768px) {
    .transport-section {
        padding: 0 15px 60px;
    }

    .transport-section h2,
    .workplace-intro-title {
        padding: 15px;
        max-width: 1336px;
        margin: 0 auto;
    }

    .transport-section-inner {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 1336px;
    }

    .transport-section-left,
    .transport-section-right {
        flex: 0 0 calc(50% - 15px);
    }

    .transport-section-left {
        margin-bottom: 0;
    }

    .transport-section-tex {
        padding: 30px;
    }

    .torikumi03-l .bottom-image .left {
        width: 49%;
    }

    .torikumi03-l .bottom-image .right {
        width: 49%;
        /*display: flex;
    flex-direction: column;*/
    }
}

.vehicles-section {
    background: #f2f0dd;
}

.vehicles-section h2 {
    text-align: center;
}

.vehicles-section-intro {
    text-align: center;
    padding: 5px 0 15px;
}

.vehicles-section-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    max-width: 1336px;
    margin: 0 auto;
}

.vehicles-section-one {
    flex: 0 0 calc(33.333% - 10px);
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
    text-align: center;
}

.vehicles-section-one img {
    width: 100%;
    max-width: 100%;
    height: auto;

    aspect-ratio: 384 / 264;
    object-fit: cover;
    display: block;
}

/*採用情報*/
.workplace-intro {
    background: #eff4dc;
}

.workplace-voice-section {
    padding-top: 30px;
}

@media (min-width: 768px) {
    .workplace-voice-section {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        max-width: 1336px;
        margin: 0 auto;
    }

    .workplace-voice-image,
    .workplace-voice-text {
        width: calc(50% - 15px);
    }
}

.workplace-voice-image img {
    width: 100%;
    height: auto;
}

.workplace-intro-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}

.workplace-intro-box-one {
    flex: 1 1 calc(25% - 0.75px);
    text-align: center;
}

.workplace-intro-box-one img {
    width: 100%;
    aspect-ratio: 6 / 5;
    object-fit: cover;
}

.workplace-intro-box-one p {
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    padding-top: 5px;
}

@media (min-width: 768px) {
    .workplace-intro-box-one p {
        font-size: 14px;
    }
}

.yoko {
    text-align: center;
    padding-bottom: 15px;
}

.recruit-tab-buttons-wrap {
    box-shadow: inset 0 -10px 0 0 #333;
    padding: 0 15px;
}

.recruit-tab-buttons {
    display: flex;
    gap: 5px;
    margin: 0 auto;
    width: 100%;
    max-width: 738px;
}

.rec-cont {
    padding: 0 15px;
}

.rec-cont h3 {
    text-align: center;
    padding-bottom: 30px;
    font-size: 18px;
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 15px 10px 20px;
    border: 1px solid #333;
    border-bottom: none;
    background: #f2f2f2;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    bottom: 0px;
    z-index: 1;
    box-shadow: inset 0 -10px 0 0 #333;
    border-radius: 8px 8px 0 0;

    flex: 1 1 200px;
    white-space: normal;
    word-break: break-word;
    min-width: 0;
}

.tab-btn span {
    font-size: 10px;
    display: block;
    padding-top: 10px;
}

@media (min-width: 768px) {
    .yoko {
        padding-bottom: 30px;
    }

    .tab-btn {
        font-size: 16px;
    }

    .tab-btn span {
        font-size: 14px;
    }

    .rec-cont h3 {
        font-size: 20px;
    }
}

@media (min-width: 960px) {

    .tab-btn {
        font-size: 18px;
    }

    .tab-btn span {
        font-size: 16px;
    }
}

.tab-btn.active {
    background: #fff;
    z-index: 2;
    box-shadow: inset 0 -10px 0 0 #fff;
}

.recruit-tab-content {
    max-width: 738px;
    margin: 0 auto ;
    display: none;
}

.recruit-tab-content.active {
    display: block;
}

.recruit-table {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #ccc;
    margin: 15px auto;
    max-width: 738px;
}

.rec-cont .recruit-table {
    margin: 30px auto;
}

.recruit-table th,
.recruit-table td {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    text-align: left;
}

.recruit-table th {
    font-weight: bold;
    width:33%;
}
.recruit-table td {
    padding-left: 10px;
}
.recruit-table th,
.recruit-table td {
    border-left: none;
    border-right: none;
}

.workplace-intro h2,
h3.workplace-intro-title {
    font-size: 28px;
    padding-bottom: 15px;
}

.workplace-intro h2 {
    text-align: center;
}

h4.voice {
    font-size: 24px;
    padding-top: 15px;
}

@media (min-width: 768px) {
    .recruit-tab-content {
        padding-top: 15px;
    }
    .recruit-table th,
    .recruit-table td {
        padding: 10px;
    }
    .workplace-intro h2,
    h3.workplace-intro-title {
        font-size: 32px;
    }

    .workplace-intro h2 {
        padding-bottom: 30px;
    }

    h4.voice {
        font-size: 22px;
    }
}

@media (min-width: 960px) {

    .workplace-intro h2,
    h3.workplace-intro-title {
        font-size: 36px;
    }

    h4.voice {
        font-size: 28px;
    }
}

.rec-isshoni {
    padding-bottom: 15px;
    text-align: center;
}

.menkyo {
    max-width: 738px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .rec-isshoni-pal {
        text-align: center;
    }
}

/*会社情報*/
.aisatsu-title {
    text-align: center;
    padding-bottom: 15px;
}

.aisatsu-left {
    padding-top: 15px;
}

.aisatsu-left h3 {
    font-size: 1.5rem;
    padding-top: 15px;
    padding-bottom: 5px;
}

.aisatsu-left h4 {
    padding: .8rem 0 .5rem 0;
    font-size: 18px;
}

.aisatsu-left p span {
    font-size: 140%;
}

.daihyo {
    text-align: right;
    padding-top: 15px;

    font-family:
        "HG正楷書体-PRO",
        "HGP正楷書体-PRO",
        "Yuji Syuku",
        "MS 明朝",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-weight: bold;
    /*letter-spacing: 0.06em;*/
}

.aisatsu-right img {
    width: 100%;
    height: auto;
}

.about-company-info {
    padding: 0 15px;
}

.about-company-image {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    margin: 0 auto;
    max-width: 1336px;
}

.about-company-image img {
    width: calc((100% - 2px) / 3);
    height: auto;
    margin: 0;

    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (min-width: 768px) {
    .aisatsu-title {
        padding-bottom: 30px;
    }

    .aisatsu {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 1336px;
        max-width: 738px;
    }

    /*
    .aisatsu-left,
    .aisatsu-right {
        width: calc(50% - 15px);
    }
*/
    .about-company-image {
        margin-top: 60px;
    }
}

.kiyoten p.kiyoten-name {
    text-align: center;
    color: #fff;
    background: #333333;
    font-size: 18px;
    padding: 5px 0;
}

.kiyoten p.kiyoten-add {
    background: #e8e8e8;
    padding: 15px;
    text-align: left;
}

.touzan-grimg {
    text-align: center;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .kiyoten p.kiyoten-name {
        font-size: 20px;
    }

    .kiyoten p.kiyoten-add {
        text-align: left;
    }

    .touzan-section-block {
        display: flex;
        flex-direction: row-reverse;
        gap: 15px;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 1336px;
    }

    .touzan-grimg,
    .touzan-grl {
        width: calc(50% - 7.5px);
    }
}

/*プライバシーポリシー*/
.privacy-section-block {
    width: 100%;
    margin: 0 auto;
    max-width: 738px;
}

.privacy-section-block h2 {
    padding-top: 15px;
    font-size: 18px;
}

.privacy-section-block p a {
    color: #0652cc;
}

.privacy-section-block p a:hover {
    color: #043896;
    text-decoration: underline;
}

/*お問合せ*/
.snmo-form {
    width: 100%;
    margin: 15px auto;
    max-width: 738px;
}

.snmo-form-title {
    text-align: center;
}

/*Snow Monkey Forms*/
.smf-progress-tracker {
    padding: 30px 0;
}

.smf-form {
    width: 100%;
    margin: 15px auto;
    max-width: 738px;
}

.smf-item__label {
    font-weight: bold;
}

.smf-form .smf-text-control__control {
    width: 100%;
}

.plalink {
    text-align: center;
}

.plalink a {
    color: #0652cc;
}

.plalink a:hover {
    color: #043896;
    text-decoration: underline;
}

.checkbox-group .smf-placeholder {
    text-align: center;
    margin-top: 15px;
}

.smf-form--simple-table + .smf-action {
    text-align: center;
}

.smf-action .smf-button-control__control {
    display: inline-block !important;
    background-image: none !important;
    background-color: #043896 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 30px 15px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
}

.smf-action .smf-button-control__control:hover {
    background-color: #0652cc !important;
}

form[data-screen="confirm"] .checkbox-group {
    display: none;
}

.smf-error-messages {
    color: red !important;
}

.smf-form [data-invalid="1"] {
    border-color: red !important;
}

@media (min-width: 640px) {
    .smf-form--simple-table .smf-item {
        align-items: center;
    }

    .smf-form--simple-table .smf-item__col--label {
        flex: 0 0 150px !important;
        max-width: none !important;
        margin-right: 15px;
    }

    .smf-form--simple-table .smf-item__col--controls {
        flex: 1 !important;
        max-width: none !important;
    }
}

/*車両*/
.wing-wrap {
    width: 100%;
    max-width: 738px;
    margin: 15px auto 0;
}

.wing {}

.wing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
}

.wing li {
    width: 50%;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 10px 12px;
    text-align: center;
    box-sizing: border-box;
}
