@charset "utf-8";
/* 目次ーーーーーーーーーーーーーーーーー */
/* ★★★全ページ共通★★★ */
/* カラーコード */
/* ボディ */
/* セクション */
/* リンク */
/* 太字にする */
/* 文字列 */
/* 見出し（h1~h3まで） */
/* 右向き三角形の装飾 */
/* ボタン装飾 */
/* 赤、青、白、水色の四色 */
/* 見出し装飾１ */
/* 見出し装飾１の縦線 */
/* 見出し装飾２ */
/* 見出し装飾３ */
/* 背景のテキスト */
/* ★★★ヘッダー★★★ */
/* ヘッダーのボタン */
/* ハンバーガーメニューを非表示にする */
/* ★★★ページ内ナビゲーション★★★ */
/* ★★★フッター★★★ */
/* フッターの左側 */
/* フッターの右側 */
/* ★★★トップへ戻るボタン★★★ */
/* 各ページの上部写真 */
/* ★★★トップページ★★★ */
/* 会社情報（トップページ）*/
/* 事業内容（トップページ）*/
/* 安全への取り組み（トップページ）*/
/* 車両紹介（トップページ）*/
/* 求人情報（トップページ）*/
/* お問い合わせ（トップページ）*/
/* ★★★会社情報★★★ */
/* 企業理念 */
/* 沿革 */
/* 会社概要 */
/* 拠点一覧 */
/* ★★★事業内容★★★ */
/* ★★★安全への取り組み★★★ */
/* ★★★車両紹介★★★ */
/* ★★★求人情報★★★ */
/* 求人の特徴 */
/* メッセージ */
/* 社員インタビュー */
/* 募集要項 */
/* 選考フロー */
/* ★★★お問い合わせ★★★ */
/* フォーム */
/* ★★★入力内容確認ページ★★★ */
/* ★★★送信完了ページ★★★ */
/* ★★★オープニングアニメーション★★★ */
/* ★★★各ページトップアニメーション★★★ */

/* ーーーーーーースマホ対応ーーーーーーー */
/* ハンバーガーメニュー */
/* ★★★ヘッダー（スマホ）★★★ */
/* ヘッダーのボタン */
/* ★★★ページ内ナビゲーション（スマホ）★★★ */
/* ★★★フッター（スマホ）★★★ */
/* ★★★トップページ（スマホ）★★★ */
/* スマホ共通部分 */
/* セクション */
/* 見出し装飾２ */
/* ★★★トップページ（スマホ）★★★ */
/* 会社情報（トップページ）（スマホ）*/
/* 事業内容（トップページ）（スマホ）*/
/* 安全への取り組み（トップページ） */
/* 車両紹介（トップページ） */
/* 求人情報（トップページ）（スマホ）*/
/* お問い合わせ（トップページ）（スマホ）*/
/* ★★★会社情報（スマホ）★★★ */
/* 企業理念 */
/* 沿革 */
/* 会社概要 */
/* 拠点一覧 */
/* ★★★事業内容（スマホ）★★★ */
/* ★★★安全への取り組み（スマホ）★★★ */
/* ★★★車両紹介（スマホ）★★★ */
/* ★★★求人情報（スマホ）★★★ */
/* 求人の特徴 */
/* メッセージ */
/* 社員インタビュー */
/* 募集要項 */
/* 選考フロー */
/* ★★★お問い合わせ（スマホ）★★★ */
/* 目次終わりーーーーーーーーーーーーーーーーー */

/* ★★★全ページ共通★★★ */
*,
::before,
::after {
    /* 事業内容のページ内リンクが正常に動作しないため削除↓↓ */
    /* scroll-behavior: smooth; */
    scroll-behavior: auto;
    scroll-padding: 14vh;
}

/* カラーコード */
:root {
    --colormain: #1f66a3;
    --colormainlight: #a9c1d6;
    --colorred: #a41f24;
    --colorredlight: #d77f82;
    --colorgray: #88898a;
    --colorgraylight: #edeef0;
    --colorwhite: #fff;
    --colortext: #05101a;
    --colorshadow: #0004;
}

/* ボディ */
body {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    line-height: 1.5;
    color: var(--colortext);
}

/* セクション */
section {
    overflow: hidden;
    position: relative;
    margin-top: 100px;
    padding: 50px 100px;
}

/* セクションの奇数番目 */
section:nth-of-type(2n+1) {
    background-color: var(--colorwhite);
}

/* セクションの偶数番目 */
section:nth-of-type(2n) {
    background-color: var(--colorgraylight);
}

/* リンク */
a:link,
a:visited {
    color: var(--colortext);
}

/* 太字にする */
.bold {
    font-weight: bold;
}

/* 著作権表記 */
small {
    font-size: 10px;
}

/* 文字列 */
p,
li,
td,
dd {
    font-size: 1.07rem;
    letter-spacing: 0.06em;
}

/* テーブル */
td {
    position: relative;
    z-index: 1;
}

/* 見出し（h1~h3まで） */
h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.08em;
}

h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: normal;
    letter-spacing: 0.06em;
    text-align: center;
}

h3 {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: normal;
    letter-spacing: 0.06em;
}

/* 右向き三角形の装飾 */
/* 白と青の二色 */
.triangle_white,
.triangle_blue {
    display: flex;
    align-items: center;
    gap: .25em;
    font-size: 1.2rem;
}

.triangle_white {
    color: var(--colorwhite);
}

.triangle_blue {
    color: var(--colormain);
}

.triangle_white::after,
.triangle_blue::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    transform: translate(0px, 1px);
}

.triangle_white::after {
    border-left: 15px solid var(--colorwhite);
}

.triangle_blue::after {
    border-left: 15px solid var(--colormain);
}

/* ボタン装飾 */
/* 赤、青、白、水色の四色 */
.red_button,
.blue_button,
.white_button {
    display: block;
    width: fit-content;
    align-items: center;
    gap: .25em;
    padding: 20px 30px;
    border-radius: 20px;
    text-wrap: nowrap;
    box-shadow: 2px 2px 4px var(--colorshadow);
    transition: all 0.4s ease;
}

.red_button {
    background: var(--colorred);
}

.blue_button {
    background: var(--colormain);
}

.white_button {
    background: var(--colorwhite);
}

.red_button:hover,
.blue_button:hover,
.white_button:hover {
    transform: scale(1.04);
}

.sub_button {
    padding: .5em 1.25em;
    background: var(--colormainlight);
    border-radius: 10px;
}

.sub_button:hover {
    background: #bbc3ef;
    color: var(--colortext);
}

/* 見出し装飾１ */
/* span:first-childが日本語
 　span:last-childが英語 */
.headline1_top,
.headline1_red {
    display: flex;
    gap: 20px;
}

.headline1_top {
    justify-content: center;
}

.headline1_top *:last-child,
.headline1_red *:last-child {
    display: flex;
    flex-direction: column;
}

.headline1_top span:first-child,
.headline1_red span:first-child {
    order: 1;
    margin-bottom: 0.7em;
}

.headline1_top span:first-child {
    margin-top: -20px;
    font-size: clamp(0.9rem, 4vw, 1.25rem);
}

.headline1_top span:last-child,
.headline1_red span:last-child {
    margin: 0.7em 0 0.4em;
    padding: 0.2em 0 0.1em;
    line-height: .6;
}

.headline1_red span:last-child {
    font-size: clamp(0.9rem, 3vw, 1.5rem);
    letter-spacing: 0.06em;
    color: var(--colorredlight);
}

.headline1_top span:last-child {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: bold;
    letter-spacing: 0.09em;
    line-height: 1.2;
    color: var(--colormain);
}

/* 見出し装飾１の縦線 */
/* 赤色 */
.redbar {
    position: relative;
    margin-top: 0.5em;
    width: 7px;
    height: clamp(4rem, 12vw, 7.1rem);
    background: var(--colorred);
}

/* 見出し装飾２ */
.headline2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5em;
    margin-bottom: 1.5em;
    font-weight: normal;
}

.headline2::before,
.headline2::after {
    content: "";
    width: 45px;
    height: 3px;
    background-color: var(--colormain);
}

/* 見出し装飾３ */
/* 赤と青 */
.headline3_red,
.headline3_blue {
    margin-bottom: 1em;
}

.headline3_red {
    border-bottom: 2px dashed var(--colorred);
}

.headline3_blue {
    border-bottom: 2px dashed var(--colormain);
}

/* 背景のテキスト */
.bg_text {
    position: absolute;
    right: 20vw;
    bottom: -5px;
    margin-bottom: 10px;
    font-size: 9em;
    white-space: nowrap;
    line-height: .7;
    font-weight: 300;
    color: var(--colorwhite);
    opacity: 40%;
    transition: 2s;
}

.bg_text.in {
    right: -10px;
}

/* ★★★ヘッダー★★★ */
header {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 14vh;
}

/* ヘッダーの背景 */
.headerbg {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    background-color: var(--colorwhite);
    box-shadow: 2px 4px 4px var(--colorshadow);
}

/* ヘッダーのロゴ */
header h1 {
    padding-left: 10px;
    width: 20%;
}

header h1 a {
    display: flex;
}

header h1 a img {
    display: block;
    width: 100%;
    object-fit: contain;
}

header h1 a img:first-child {
    width: 25%;
}

/* ヘッダーナビゲーション */
header nav {
    display: flex;
    height: 100%;
    gap: 1em;
    font-size: 0.95rem;
}

header .nav_text {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1.2em 0.7em 0;
    line-height: 1;
}

header .nav_text a:link,
header .nav_text a:visited {
    color: var(--colortext);
}

header .nav_text a::after {
    content: "";
    position: relative;
    bottom: 3px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--colormainlight);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .5s;
}

header .nav_text a:hover::after {
    transform: scale(1, 1);
}

/* ヘッダーのボタン */
header .nav_box {
    display: flex;
    align-items: center;
}

header .nav_recruit_button,
header .nav_contact_button {
    display: block;
    margin-right: 15px;
    padding: 0.85em;
    width: 140px;
    height: auto;
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s ease;
}

/* ヘッダーの求人情報ボタン */
header .nav_recruit_button {
    border: 2px solid var(--colorred);
    color: var(--colorred);
    background-color: var(--colorwhite);
}

/* ヘッダーのお問い合わせボタン */
header .nav_contact_button {
    background-color: var(--colormain);
    color: var(--colorwhite);
}

/* ヘッダーのボタンにカーソルを合わせた時の挙動 */
header .nav_recruit_button:hover,
header .nav_contact_button:hover {
    transform: scale(1.04);
}

.iconbutton {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_icon {
    display: block;
    margin-right: 0.3em;
    width: 18px;
}

/* ハンバーガーメニューを非表示にする */
header nav input,
header nav label {
    display: none;
}

/* ★★★ページ内ナビゲーション★★★ */
/* 全ページ共通 */
.sub_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1em;
    margin: 0 auto;
    padding: 1.7em 0.5em 0.7em;
    width: 55%;
    font-size: 1rem;
    border: 2px solid var(--colormainlight);
    border-radius: 30px;
}

.sub_nav a:link,
.sub_nav a:visited {
    margin: 0 5px;
    color: var(--colormain);
}

/* カーソルを合わせた時に横線を表示する */
.sub_nav a::after {
    content: "";
    position: relative;
    bottom: 5px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--colormainlight);
    transform: scale(0, 1);
    transition: transform .3s;
}

.sub_nav a:hover::after {
    transform: scale(1, 1);
}

/* ★★★フッター★★★ */
footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
    color: var(--colorwhite);
    background: linear-gradient(to bottom, var(--colormainlight), var(--colormain));
    box-shadow: 0 -2px 4px var(--colorshadow);
}

.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* フッターの左側 */
.footer_left {
    width: 25%;
}

.footer_left a {
    display: flex;
}

.footer_left img {
    width: 100%;
    object-fit: contain;
}

.footer_left img:first-child {
    width: 20%;
}

.footer_left img:last-child {
    width: 70%;
}

/* フッターの右側 */
.footer_right {
    display: flex;
    justify-content: end;
    width: 75%;
}

.footer_right_item {
    padding: 0 1.2em 0 0.5em;
}

.footer_right_item h3 {
    margin-bottom: 1.1em;
    font-size: 0.95rem;
}

.footer_right_item ul {
    border-left: 1px solid var(--colorgraylight);
}

.footer_right_item ul li {
    font-size: 0.75rem;
}

.footer_right_item li {
    margin-bottom: 0.5rem;
}

.footer_right_item a:link,
.footer_right_item a:visited {
    color: var(--colorwhite);
}

.footer_right_item a:hover {
    opacity: 0.5;
}

/* ★★★トップへ戻るボタン★★★ */
.totop {
    position: fixed;
    z-index: 3;
    bottom: 7%;
    right: -5%;
    opacity: 60%;
    transition: .5s;
}

.totop.in {
    right: 4%;
}

.totop>div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    aspect-ratio: 1/1;
    background-color: var(--colorgray);
    border-radius: 10px;
}

.totop span {
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--colorwhite);
}

.totop span:first-child {
    left: 9%;
    transform: rotate(-45deg);
}

.totop span:last-child {
    right: 9%;
    transform: rotate(45deg);
}

/* 各ページの上部写真 */
.top_img {
    position: relative;
    overflow: hidden;
    padding-top: 14vh;
    height: 50vh;
}

.top_img::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--colormain), transparent);
    opacity: 50%;
}

.top_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 60%;
}

/* 走るトラック */
.road_wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.truck_img {
    position: absolute;
    bottom: 0;
    right: -200px;
    display: block;
    width: 180px;
    height: auto;
    transform: translateX(0);
    animation: moveToLeft 10s linear infinite;
    will-change: transform;
}

.scroll_infinity_img img {
    display: block;
    object-fit: cover;
    overflow: hidden;
    width: 250px;
    max-width: 100%;
    height: auto;
}

@keyframes moveToLeft {
    from {
        transform: translateX(0);
    }

    to {
        right: 100vw;
        transform: translateX(-100%);
    }
}


/* ★★★トップページ★★★ */
/* トップ画像 */
#top {
    padding-top: 14vh;
    position: relative;
    overflow: visible;
    background: var(--colorbasegray);
}

/* トップ画像上の文字 */
#top p {
    position: absolute;
    top: 16vh;
    left: 5vh;
    color: var(--colorwhite);
    font-weight: bold;
    font-size: 3rem;
    letter-spacing: 0.3rem;
    text-shadow: 2px 2px 5px var(--colortext);
}

#top p span {
    opacity: 0;
    letter-spacing: 0.6rem;
}

#top p span:nth-of-type(2n+1) {
    font-size: 5.8rem;
    color: var(--colorred);
}

#top p span:nth-of-type(2n) {
    font-size: 5rem;
    color: var(--colorwhite);
}

#top p span:nth-of-type(1),
#top p span:nth-of-type(2) {
    animation: topsentence 0.4s linear 0.2s 1 forwards;
}

#top p span:nth-of-type(3),
#top p span:nth-of-type(4) {
    animation: topsentence 0.4s linear 0.6s 1 forwards;
}

#top p span:nth-of-type(5),
#top p span:nth-of-type(6) {
    animation: topsentence 0.4s linear 1.0s 1 forwards;
}

#top p span:nth-of-type(7) {
    animation: topsentence 0.4s linear 1.4s 1 forwards;
}

#top img {
    object-fit: cover;
    height: 86vh;
}

/* トップ画像のスライドショー */
.slick-dots {
    position: absolute;
    bottom: 10px;
    filter: drop-shadow(0 0 4px #fff);
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots li button:before {
    content: "■";
    font-size: 16px;
}

.slick-dots li button::before {
    color: var(--colorwhite);
    opacity: 50%;
}

.slick-dots li.slick-active button:before {
    color: var(--colorwhite);
    opacity: 90%;
}

@keyframes topsentence {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 会社情報（トップページ）*/
#company {
    position: relative;
    margin: 30px auto 0;
    padding: 50px 100px 100px;
    background-image: url(../img/top_bg_company.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.top_company_message {
    margin: 30px auto;
}

.top_company_message h3,
.top_company_message p {
    text-align: center;
}

.top_company_message h3 {
    margin: 50px;
    font-size: clamp(1.75rem, 5vw, 2rem);
    letter-spacing: 0.3rem;
}

.top_company_message h3 span {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--colormain);
    font-weight: bold;
    letter-spacing: 0.8rem;
}

.top_company_message h3 span::before,
.top_company_message h3 span::after {
    content: '”';
}

.top_company_message p {
    width: fit-content;
    margin: 0 auto;
    padding: 40px 80px;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    line-height: 2;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.top_company_message h3 br {
    display: none;
}

/* 詳しくはこちらボタン */
#company .blue_button {
    margin: 0 auto 20px;
}

/* 背景文字 */
#company .bg_text {
    color: var(--colorwhite);
}

/* 事業内容（トップページ）*/
#business {
    position: relative;
    margin: 0;
    padding: 120px;
    background-color: var(--colorwhite);
    background-image: url(../img/logo/Logo_only.png);
    background-position: top 0 right 0;
    background-repeat: no-repeat;
    background-size: 38%;
}

#business>div:nth-child(2) {
    display: flex;
    justify-content: space-between;
}

#business>div:not(:last-of-type) {
    margin: 60px 0;
}

.business_box {
    position: relative;
    right: -10vw;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    width: 32%;
    aspect-ratio: 1/1;
    color: var(--colorwhite);
    opacity: 0;
    box-shadow: 2px 4px 4px var(--colorshadow);
    transition: .5s;
}

.business_box h3 {
    align-items: start;
    color: var(--colorwhite);
}

.business_box::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--colormain);
    opacity: 80%;
}

/* 詳しくはこちらボタン */
#business .blue_button {
    margin: 50px auto 20px;
}

.business_box:nth-child(1) {
    background: url(../img/business1_1.jpg) center/cover;
}

.business_box:nth-child(2) {
    background: url(../img/business2.jpg) center/cover;
}

.business_box:nth-child(3) {
    background: url(../img/business3.jpg) center/cover;
}

.business_box.in {
    opacity: 1;
    right: 0;
}

.business_box h3,
.business_box span {
    z-index: 4;
}

/* 安全への取り組み（トップページ）*/
/* 車両紹介（トップページ）*/
.top_container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 3%;
}

/* 詳しくはこちらボタン */
.top_container .blue_button {
    margin: 0 auto 20px;
}

#safety,
#vehicles {
    position: relative;
    z-index: 3;
    bottom: -10vw;
    width: 48%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    opacity: 0;
    transition: .5s;
}

/* アニメーション制御 */
#safety.in,
#vehicles.in {
    bottom: 0;
    opacity: 1;
}

#safety p,
#vehicles p {
    margin-bottom: 30px;
}

#safety {
    background-position: top right;
    background-image: url(../img/top_bg_safety.jpg);
}

#vehicles {
    background-image: url(../img/top_bg_vehicles.jpg);
}

/* 背景画像に色を重ねる */
#safety::after,
#vehicles::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}

#safety::after {
    background: var(--colorgraylight);
    opacity: 0.8;
}

#vehicles::after {
    background: var(--colorgraylight);
    opacity: 0.8;
}

/* 背景文字 */
#safety .bg_text,
#vehicles .bg_text {
    font-size: 5em;
}

/* 求人情報（トップページ）*/
.top_recruit_sentence {
    position: relative;
    bottom: -20vw;
    z-index: 3;
    padding: 70px 50px;
    background-image: url(../img/top_recruit_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: .5s;
}

/* アニメーション制御 */
.top_recruit_sentence.in {
    bottom: 0;
    opacity: 1;
}

/* 背景画像に色を重ねる */
.top_recruit_sentence::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
    background: var(--colormainlight);
    opacity: 0.7;
}

.top_recruit_sentence h2 {
    margin: 0 auto 30px;
    width: fit-content;
    font-weight: bold;
    background: linear-gradient(transparent 50%, var(--colorwhite) 50%);
}

.top_recruit_sentence h2 br {
    display: none;
}

.top_recruit_sentence ul li {
    position: relative;
    margin: 10px auto 20px;
    padding: 5px 20px;
    width: fit-content;
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: var(--colorwhite);
    text-shadow: 2px 2px 5px var(--colortext);
    background: linear-gradient(transparent 50%, var(--colorred) 50%);
}

.top_recruit_sentence ul li br {
    display: none;
}

.top_recruit_sentence p {
    margin: 20px 0 30px;
    line-height: 1.8;
    text-align: center;
    color: var(--colorwhite);
    text-shadow: 2px 2px 2px var(--colortext);
}

.top_recruit_sentence a {
    margin: 0 auto;
}

/* お問い合わせ（トップページ）*/
#contact {
    margin: 10px 0 0;
    background-color: var(--colormain);
}

#contact .headline1_top span {
    color: var(--colorwhite);
}

#contact p {
    text-align: center;
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: var(--colorwhite);
}

#contact p:first-child {
    margin-bottom: 25px;
}

#contact p br {
    display: none;
}

#contact a {
    margin: 30px auto 0;
}

/* ★★★会社情報★★★ */
/* 企業理念 */
.philosophy_container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 4em;
}

.philosophy_item {
    position: relative;
    bottom: -20vw;
    text-align: center;
    opacity: 0;
    transition: .5s;
    z-index: 3;
}

.philosophy_item.in {
    bottom: 0;
    opacity: 1;
}

.philosophy_slogan {
    margin-bottom: 0.1em;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bold;
    letter-spacing: 0.3rem;
}

.philosophy_slogan span {
    font-size: clamp(4.5rem, 8vw, 7rem);
    color: var(--colorred);
}

.philosophy_slogan_jp {
    color: var(--colorgray);
}

.philosophy_sentence {
    width: fit-content;
    margin: 0 auto;
    padding: 40px 80px;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    line-height: 2;
}

.philosophy_sentence span {
    color: var(--colorred);
    font-weight: bold;
}

/* 沿革 */
.history_year {
    margin-bottom: 10px;
    padding: 0.5em;
    color: var(--colorwhite);
    background-color: var(--colormain);
    border-radius: 10px;
}

.history_list {
    position: relative;
    margin: 30px 25px;
}

.history_list li {
    position: relative;
    display: flex;
    justify-content: left;
    column-gap: 0.2em;
    margin-bottom: 20px;
    padding-left: 40px;
}

.history_month {
    flex-basis: 10%;
}

.history_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    margin: 0 10px;
    width: 18px;
    height: 18px;
    background-color: var(--colormainlight);
    border-radius: 50%;
}

.history_overview {
    flex-basis: 85%;
}

/* 会社概要 */
#overview table {
    width: 100%;
}

#overview tr {
    border-bottom: 2px solid var(--colorwhite);
}

#overview tr:last-of-type {
    border: none;
}

#overview th {
    margin-bottom: 0.5rem;
    padding: 1rem 0;
    width: 20%;
    vertical-align: middle;
    color: var(--colorwhite);
    text-align: center;
    font-weight: normal;
    background: var(--colorgray);
}

#overview td {
    padding: 1em 5em 1em 2em;
    width: 80%;
    line-height: 1.7;
    background-color: var(--colorwhite);
}

/* 拠点一覧 */
#base h3 {
    padding: 0.5em;
    color: var(--colortext);
    background-color: var(--colormainlight);
    border-radius: 10px;
}

.base_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 40px 0 160px;
}

.base_container_reverse {
    flex-direction: row-reverse;
}

.base_text caption {
    margin-bottom: 10px;
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.base_text table {
    width: 100%;
    border-top: 1px solid var(--colortext);
    border-bottom: 1px solid var(--colortext);
}

.base_text tr {
    border-bottom: 1px solid var(--colortext);
}

.base_text tr:last-of-type {
    border: none;
}

.base_text th {
    margin-bottom: 0.5rem;
    padding: 1rem 0;
    width: 20%;
    vertical-align: middle;
    border-right: 0.5px solid var(--colortext);
    font-weight: normal;
    color: var(--colortext);
    text-align: center;
}

.base_text td {
    padding: 1rem;
    width: 80%;
    font-size: 0.875rem;
    line-height: 1.5;
}

.base_text {
    width: 35%;
}

.googlemap {
    width: 58%;
}

iframe {
    aspect-ratio: 16/9;
    width: 100%;
}

/* ★★★事業内容★★★ */
.business_info .headline2 br {
    display: none;
}

.business_info h2 {
    margin: 0 auto 40px;
}

.business_info .slider {
    width: 85%;
}

.business_block {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.business_block:first-of-type {
    padding-top: 0;
}

.business_block .business_block_left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 80px;
    width: 45%;
}

.business_block_right {
    width: 55%;
    display: flex;
}

.business_block_right img {
    object-fit: cover;
    object-position: 50% 80%;
    padding-top: 40px;
    padding-bottom: 15px;
    aspect-ratio: 1.2/1;
    width: 85%;
    z-index: 1;
}

.business_block .business_block_right img,
.business_block_r .business_block_right img {
    position: relative;
    opacity: 0;
    transition: 1s;
}

.business_block .business_block_right img.in,
.business_block_r .business_block_right img.in {
    position: relative;
    opacity: 1;
}

.business_block .business_block_right img {
    right: -20%;
}

.business_block .business_block_right img.in {
    right: 0;
}

.business_block_r .business_block_right img {
    left: -20%;
}

.business_block_r .business_block_right img.in {
    left: 0;
}

.business_block .business_bg {
    margin-left: -75%;
    width: 100%;
    aspect-ratio: 1/.7;
    background: var(--colormainlight);
}

#business .bg_text {
    color: var(--colormainlight);
}

.business_block_r {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.business_block_r .business_block_left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 80px;
    width: 45%;
}

.business_block_r .business_block_right {
    flex-direction: row-reverse;
}

.business_block_r .business_bg {
    margin-right: -75%;
    width: 100%;
    aspect-ratio: 1/.7;
    background: var(--colormain);
}

/* ★★★安全への取り組み★★★ */
#safetypage section h2 {
    margin-bottom: 20px;
}

#safetypage section h2 br {
    display: none;
}

.safety_text {
    margin-bottom: 2em;
    text-align: center;
}

.safety_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 50px 100px;
}

.safety_flex_text {
    padding: 20px;
    width: 50%;
}

.safety_flex_img {
    width: 48%;
    height: auto;
    padding-right: 20px;
}

.safety_grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 100px;
    margin: 0 50px 100px;
}

.safety_grid_item {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap: 12px;
    align-items: flex-start;
}

.safety_grid_item h3 {
    display: grid;
    grid-template-rows: subgrid;
    align-items: flex-end;
}

.safety_grid p {
    margin-bottom: 20px;
}

.safety_grid_img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ★★★車両紹介★★★ */
.vehicles_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content max-content 1fr auto;
    gap: 40px 30px;
}

.vehicles_item {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 150px;
}

.vehicles_item:last-of-type {
    margin-bottom: 0;
}

.vehicles_table {
    margin: 20px auto;
    width: 70%;
    border-top: 1px solid var(--colorgray);
    border-bottom: 1px solid var(--colorgray);
}

.vehicles_table caption {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 2px;
    border-left: 10px solid var(--colormain);
    font-size: 1.4rem;
    text-align: left;
    letter-spacing: 0.1rem;
    background-color: var(--colormainlight);
}

.vehicles_table tr {
    border-bottom: 1px solid var(--colorgray);
}

.vehicles_table tr:last-of-type {
    border: none;
}

.vehicles_table th {
    margin-bottom: 0.5rem;
    padding: 1rem 0;
    width: 30%;
    font-weight: normal;
    color: var(--colortext);
    text-align: center;
    vertical-align: middle;
    background-color: var(--colorgraylight);
}

.vehicles_table td {
    width: 70%;
    padding: 1rem;
    line-height: 1.5;
}

.vehicles_img img {
    display: block;
    width: 100%;
    object-fit: contain;
}

/* ★★★求人情報★★★ */
#recruitpage .top_img img {
    object-position: 0% 50%;
}

#recruitpage main {
    display: flex;
    flex-direction: column;
}

/* 求人の特徴 */
.job_points_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-around;
    gap: 2em;
}

.job_points_item {
    position: relative;
    bottom: -20vw;
    z-index: 3;
    margin: 0;
    border: 1px solid var(--colorredlight);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
    transition: .5s;
    opacity: 0;
    border-radius: 10px;
}

.job_points_item.in {
    bottom: 0;
    opacity: 1;
}

.job_points_item .job_points_title h3 {
    padding: 15px;
    border: 1px solid var(--colorred);
    font-size: clamp(1.25rem, 4vw, 2rem);
    text-align: center;
    color: var(--colorwhite);
    font-weight: bold;
    letter-spacing: 0.3rem;
    line-height: 1.7;
    background: var(--colorred);
    border-radius: 10px 10px 0 0;
}

.job_points_item p {
    padding: 1.5em 3em;
    line-height: 1.5;
    border-radius: 10px;
}

/* メッセージ */
#job_message h3 {
    position: relative;
    bottom: -10vw;
    z-index: 3;
    margin-bottom: 1.5em;
    text-align: center;
    letter-spacing: 0.3rem;
    opacity: 0;
    transition: .5s;
}

#job_message h3.in {
    opacity: 1;
    bottom: 0;
}

#job_message h3::before {
    content: "「";
    margin-right: 10px;
}

#job_message h3::after {
    content: "」";
    margin-left: 6px;
}

#job_message h3::before,
#job_message h3::after {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--colorred);
}

#job_message h3 span {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--colorred);
}

#job_message h3 br {
    display: none;
}

#job_message p {
    line-height: 1.8;
}

#job_message p:last-of-type {
    margin-top: 1em;
    text-align: right;
}

/* 社員インタビュー */
.left_container,
.right_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 5rem;
}

.right_container {
    flex-direction: row-reverse;
}

.interview01,
.interview03 {
    position: relative;
    z-index: 3;
    left: -10vw;
    opacity: 0;
    transition: .5s;
}

.interview01.in,
.interview03.in {
    left: 0;
    opacity: 1;
}

.interview02 {
    position: relative;
    z-index: 3;
    right: -10vw;
    opacity: 0;
    transition: .5s;
}

.interview02.in {
    right: 0;
    opacity: 1;
}

.interview_img {
    width: 15%;
    height: auto;
    object-fit: contain;
}

.interview_text {
    position: relative;
    padding: 50px;
    width: 75%;
    height: fit-content;
    border-radius: 20px;
}

.left_container .interview_text {
    border: 3px solid var(--colormainlight);
    background-color: var(--colorwhite);
}

.left_container .interview_text::before,
.left_container .interview_text::after {
    content: "";
    position: absolute;
    top: 50%;
}

.left_container .interview_text::before {
    left: -34px;
    z-index: 2;
    margin-top: -12px;
    border: 18px solid transparent;
    border-right: 18px solid var(--colorwhite);
}

.left_container .interview_text::after {
    left: -40px;
    z-index: 1;
    margin-top: -14px;
    border: 20px solid transparent;
    border-right: 20px solid var(--colormainlight);
}

.right_container .interview_text {
    border: 3px solid var(--colorredlight);
    background-color: var(--colorwhite);
}

.right_container .interview_text::before,
.right_container .interview_text::after {
    content: "";
    position: absolute;
    top: 50%;
}

.right_container .interview_text::before {
    right: -34px;
    margin-top: -12px;
    border: 18px solid transparent;
    border-left: 18px solid var(--colorwhite);
    z-index: 2;
}

.right_container .interview_text::after {
    right: -40px;
    margin-top: -14px;
    border: 20px solid transparent;
    border-left: 20px solid var(--colorredlight);
    z-index: 1;
}

.interview_title {
    margin-bottom: 0.8rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 募集要項 */
#job_description table {
    width: 100%;
}

#job_description tr {
    border-bottom: 2px solid var(--colormainlight);
}

#job_description tr:last-of-type {
    border: none;
}

#job_description th {
    margin-bottom: 0.5rem;
    padding: 1em 0;
    width: 20%;
    font-weight: normal;
    color: var(--colorwhite);
    text-align: center;
    vertical-align: middle;
    background: var(--colormain);
}

#job_description td {
    width: 80%;
    padding: 1em 5em 1em 2em;
    line-height: 1.7;
    background-color: var(--colorwhite);
}

/* 選考フロー */
.process_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process_item {
    padding-left: 0;
}

.process_item li {
    padding: 20px;
    border: 2px solid var(--colormainlight);
    background-color: var(--colorwhite);
    border-radius: 20px;
}

.process_item li:not(:last-child) {
    position: relative;
    margin-bottom: 40px;
}

.process_item li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -53px;
    left: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: var(--colormainlight);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.process_item dt {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px dashed var(--colormainlight);
    letter-spacing: 0.2rem;
    font-size: 1.2rem;
}

.process_item dt span {
    margin-right: 0.8rem;
    color: var(--colormain);
    font-weight: bold;
}

.process_item dd {
    line-height: 1.5;
}

.process_item dd span {
    font-weight: bold;
}

#recruitpage .red_button {
    align-self: center;
    margin: 0 0 100px;
}

/* ★★★お問い合わせ★★★ */
#contactpage .contact_section {
    margin: 30px 0 100px;
    background: var(--colormainlight);
}

#contactpage .headline1 span:last-child {
    padding-left: 2em;
}

.contact_section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 120px;
}

.contact_text {
    display: flex;
    flex-direction: column;
}

.contact_text p:first-child {
    margin-bottom: 20px;
}

.contact_text p:not(:first-child) {
    font-size: 1.5em;
    line-height: 1.5;
}

/* フォーム */
.contact_section form {
    display: flex;
    flex-direction: column;
}

.contact_section form>div {
    display: flex;
    padding: .5em 0;
}

.form_title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5em 0;
    width: 250px;
    border-bottom: 2px solid var(--colormain);
}

.contact_section form input,
.contact_section form textarea {
    padding-left: 1em;
    width: 100%;
    border: none;
    outline: none;
}

.contact_section form textarea {
    padding: 1em .5em;
    height: 300px;
    font-size: 1em;
    Resize: none;
    text-align: justify;
}

.contact_section form>div>div:has(input[type="radio"]),
.contact_section form>div>div:has(input[type="radio"])>div {
    display: flex;
    align-items: center;
}

.contact_section form>div>div:has(input[type="radio"]) {
    background: var(--colorwhite);
    width: 100%;
    padding: 0 1em;
    gap: 1em;
}

.contact_section form>div>div:has(input[type="radio"])>div {
    height: 1em;
    width: fit-content;
}

.contact_section form>div>div:has(input[type="radio"])>div input {
    width: fit-content;
}

.contact_section form>div>div:has(input[type="radio"])>div input,
.contact_section form>div>div:has(input[type="radio"])>div label {
    cursor: pointer;
}

.contact_section input[type="submit"] {
    margin: 20px 0;
    padding: 16px 48px;
    width: auto;
    color: var(--colorwhite);
    font-size: 1.25em;
    background-color: var(--colormain);
    align-self: end;
    border-radius: 20px;
}

/* ★★★入力内容確認ページ★★★ */
.confirm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}

.confirm table {
    margin: 0 auto;
    border-spacing: 1em;
}

.confirm tr:last-of-type td {
    max-width: 400px;
}

.confirm table th {
    padding: .5em 1em;
    text-align: end;
    background: var(--colormainlight);
    font-weight: normal;
}

.confirm table td {
    padding: 0 1em;
    border-bottom: 2px solid var(--colormainlight);
}

.confirm .sub_button {
    padding: 0.25em 1.25em;
    height: 100%;
    font-size: 1em;
    border: none;
}

.confirm input.sub_button {
    padding: .5em 2em;
    background: #77f;
    color: var(--colorwhite);
}

.confirm input.sub_button:hover {
    color: var(--colortext);
    background: var(--colormainlight);
}

.confirm .button_box {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 40px;
}

/* ★★★送信完了ページ★★★ */
.send {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}


/* ★★★オープニングアニメーション★★★ */
@keyframes open_bg {
    0% {
        right: 0;
    }

    100% {
        right: 100vw;
        left: -100vw;
        display: none;
    }
}

@media (max-width: 800px) {
    @keyframes open_bg {
        0% {
            right: 0;
        }

        100% {
            right: 200vw;
            left: -200vw;
            display: none;
        }
    }
}

.open_bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8%;
    background: var(--colorwhite);
    animation: open_bg 1.5s 5s ease-in both;
}

@media (max-width: 800px) {
    .open_bg {
        width: 200%;
        left: -58vw;
    }
}

.open_logo_set {
    position: relative;
    display: flex;
    width: 5%;
    right: -8%;
}

.open_logo1,
.open_logo2 {
    position: absolute;
}

.open_logo1 {
    width: 76%;
    right: 110%;
    top: 25%;
    animation: open_logo1 .5s 2.55s ease-out both, open_logo_opa .3s 2.7s ease-out both;
}

.open_logo2 {
    width: 88%;
    top: 12%;
    right: 58%;
    animation: open_logo2 .3s 2.55s ease-out both, open_logo_opa .3s 2.55s ease-out both;
}

.open_logo3 {
    position: relative;
    animation: open_logo3 .3s 2.4s ease-out both, open_logo_opa .3s 2.4s ease-out both;
}

@keyframes open_logo1 {
    0% {
        right: 10%;
    }

    100% {
        right: 110%;
    }

}

@keyframes open_logo2 {
    0% {
        right: -8%;
    }

    100% {
        right: 58%;
    }

}

@keyframes open_logo3 {
    0% {
        right: -100%;
    }

    100% {
        right: 0%;
    }

}

@keyframes open_logo_opa {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.open_bg .open_text {
    width: 30%;
    animation: open_text_opa 1s 3.2s ease-out both;
}

.open_hato_set {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7%;
    opacity: 1;
    animation: open_hato_move 2s 1s ease-out both;
    margin-left: -17vw;
}

@keyframes open_hato_move {
    0% {
        top: -5vw;
        right: -88%;
    }

    60% {
        top: 1vw;
    }

    70% {
        opacity: 1;
    }

    100% {
        top: 1.5vw;
        right: -17%;
        opacity: 0;
    }
}

.hato_body {
    width: 80%;
    transform: rotate(15deg);
}

.hato_wing {
    position: absolute;
    width: 65%;
    top: -75%;
    right: 0;
    transform: scaleY(1) rotate(0deg);
    animation: open_wing .15s 16 ease-in-out alternate;
}

@keyframes open_wing {
    0% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(.2) rotate(15deg);
        top: -5%;
    }
}

@keyframes open_text_opa {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.loading.is-active {
    opacity: 0;
    visibility: hidden;
}

/* ★★★各ページトップアニメーション★★★ */
.top_img .bg_text {
    animation: top_text_anime 2s both;
}

@keyframes top_text_anime {
    0% {
        opacity: 0;
        right: 50vw;
    }

    100% {
        opacity: 40%;
        right: -10px;
    }
}

/* ーーーーーーースマホ対応ーーーーーーー */
@media (max-width: 1000px) {

    /* ハンバーガーメニュー */
    header nav label {
        position: fixed;
        top: 4vh;
        right: 3vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 2em;
    }

    header nav label span,
    header nav label span::before,
    header nav label span::after {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background: var(--colormain);
        border-radius: 999px;
        transition: .5s;

    }

    header nav label span {
        position: relative;
    }

    header nav label span::before {
        position: absolute;
        bottom: -10px;
    }

    header nav label span::after {
        position: absolute;
        top: -10px;
    }

    header nav #hbg:checked+label span {
        background: none;
    }

    header nav #hbg:checked+label span::before {
        bottom: 0;
        transform: rotate(-315deg);
    }

    header nav #hbg:checked+label span::after {
        top: 0;
        transform: rotate(315deg);
    }

    header nav:has(#hbg:checked) {
        top: 8vh;
    }

    /* ★★★ヘッダー（スマホ）★★★ */
    header {
        height: 8vh;
    }

    header h1 {
        width: 70%;
    }

    header h1 a img:last-of-type {
        width: 25vw;
        height: 8vh;
    }

    header h1 a img:first-child {
        width: 7vw;
        height: 8vh;
    }

    header nav {
        position: absolute;
        top: 100vh;
        z-index: 0;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        height: auto;
        max-height: 100vh;
        font-size: 1rem;
        background-color: var(--colormainlight);
        transition: .5s;
    }

    header .nav_text {
        flex-direction: column;
        justify-content: center;
        gap: 0;
        width: 100%;
    }

    header .nav_text a:link,
    header .nav_text a:visited {
        padding: 1em 0;
        width: 100%;
        text-align: center;
    }

    header .nav_text a::after {
        display: none;
    }

    header .nav_text a:hover {
        opacity: 0.5;
    }

    header .nav_box {
        flex-direction: column;
    }

    /* ヘッダーのボタン */
    header .nav_recruit_button,
    header .nav_contact_button {
        margin: 0 0 1em;
        width: 100%;
    }

    /* ★★★ページ内ナビゲーション（スマホ）★★★ */
    .sub_nav {
        flex-wrap: wrap;
        margin: 10px auto;
        padding: 0;
        width: 100%;
        border: none;
    }

    .sub_nav a:link,
    .sub_nav a:visited {
        margin: 0;
    }

    .sub_nav a::after {
        transform: scale(1, 1);
    }

    .sub_nav a:hover {
        opacity: 0.5;
    }

    /* ★★★フッター（スマホ）★★★ */
    .footer_top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .footer_left,
    .footer_right {
        width: 100%;
    }

    .footer_right {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin: 0 auto;
    }

    .footer_right_item ul {
        display: none;
    }

    /* ★★★トップページ（スマホ）★★★ */
    #top {
        padding: 0;
        padding-top: 8vh;
    }

    #top p {
        top: 8vh;
        font-size: 2rem;
    }

    #top p span:nth-of-type(2n+1) {
        font-size: 2.5rem;
    }

    #top p span:nth-of-type(2n) {
        font-size: 2.2rem;
    }

    #top img {
        height: 42vh;
    }

    .top_img {
        padding-top: 8vh;
    }
}


@media (max-width: 800px) {

    /* スマホ共通部分 */
    /* セクション */
    section {
        margin-top: 50px;
        padding: 50px 20px;
    }

    .bg_text {
        writing-mode: vertical-rl;
        font-size: 5em;
    }

    .top_img {
        overflow: hidden;
    }

    .top_img .bg_text {
        font-size: 3.5em;
        margin-top: 8vh;
    }

    .totop {
        right: -15%;
    }

    /* 見出し装飾２ */
    .headline2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .5em;
        margin-bottom: 1.5em;
        font-weight: normal;
    }

    .headline2::before,
    .headline2::after {
        content: "";
        width: 25px;
        height: 3px;
        background-color: var(--colormain);
    }

    /* ★★★トップページ（スマホ）★★★ */
    /* 会社情報（トップページ）（スマホ）*/
    #company {
        margin: 0 auto;
        padding: 0;
    }

    .top_company_message {
        margin: 0 auto 20px;
    }

    .top_company_message h3 {
        margin: 10px 0 20px;
    }

    .top_company_message p {
        margin: 10px 20px;
        padding: 40px;
    }

    .top_company_message h3 br {
        display: block;
    }

    .top_company_message p br {
        display: none;
    }

    /* 事業内容（トップページ）（スマホ）*/
    #business {
        padding: 120px 5%;
    }

    #business>div:nth-child(2) {
        flex-direction: column;
        gap: 40px;
    }

    .business_box {
        width: 100%;
        aspect-ratio: 2 / 1;
    }

    /* 安全への取り組み（トップページ） */
    /* 車両紹介（トップページ） */
    .top_container {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    #safety,
    #vehicles {
        width: 90%;
    }

    /* 求人情報（トップページ）（スマホ）*/
    .top_recruit_sentence h2 {
        padding: 20px;
        background: var(--colorwhite);
    }

    .top_recruit_sentence h2 br {
        display: block;
    }

    .top_recruit_sentence ul li {
        padding: 20px;
        text-align: center;
        text-shadow: none;
        background: var(--colorred);
    }

    .top_recruit_sentence ul li br {
        display: block;
    }

    .top_recruit_sentence p {
        text-align: left;
    }

    /* お問い合わせ（トップページ）（スマホ）*/
    #contact p br {
        display: block;
    }

    #contact a {
        margin: 30px auto 50px;
    }

    /* ★★★会社情報（スマホ）★★★ */
    /* 企業理念 */
    .philosophy_container {
        flex-direction: column;
    }

    .philosophy_sentence {
        margin: 0 auto;
        padding: 0 10px;
    }

    .philosophy_sentence p br {
        display: none;
    }

    /* 沿革 */
    .history_list li {
        flex-direction: column;
    }

    /* 会社情報 */
    #overview th {
        width: 25%;
    }

    #overview td {
        padding: 1em;
        width: 75%;
    }

    /* 拠点一覧 */
    .base_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .base_text,
    .googlemap {
        align-items: center;
        width: 90%;
    }

    .base_text th {
        width: 30%;
    }

    .base_text td {
        width: 70%;
    }

    /* ★★★事業内容（スマホ）★★★ */
    .business_info .headline2 br {
        display: block;
    }

    .business_block,
    .business_block_r {
        flex-direction: column;
        gap: 40px;
    }

    .business_block_r .business_block_left,
    .business_block_r .business_block_right,
    .business_block .business_block_left,
    .business_block .business_block_right {
        width: 100%;
    }

    .business_block .business_block_left {
        padding-right: 0;
    }

    .business_block_r .business_block_left {
        padding-left: 0;
    }

    /* ★★★安全への取り組み（スマホ）★★★ */
    #safetypage section h2 br {
        display: block;
    }

    .safety_text {
        text-align: left;
    }

    .safety_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1em;
        margin-bottom: 4em;
    }

    .safety_flex_text {
        width: 100%;
    }

    .safety_flex_img {
        width: 100%;
    }

    .safety_flex_img img {
        display: block;
        width: 100%;
        object-fit: cover;
        padding: 0;
    }

    .safety_grid {
        grid-template-columns: 1fr;
        margin-top: 4em;
    }

    .safety_grid_item {
        margin-bottom: 4em;
    }

    .safty_grid_item_noimg {
        margin-bottom: -100px;
    }

    .safety_grid_img {
        width: 100%;
    }

    .safety_grid_img img {
        width: 100%;
        object-fit: cover;
    }

    /* ★★★車両紹介（スマホ）★★★ */
    .vehicles_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .vehicles_item {
        margin-bottom: 200px;
    }

    .vehicles_table {
        width: 100%;
    }


    /* ★★★求人情報（スマホ）★★★ */
    #recruitpage section:first-of-type {
        padding-top: 0;
    }

    /* 求人の特徴 */
    .job_points_grid {
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
    }

    .job_points_item p {
        padding: 20px;
    }

    /* メッセージ */
    #job_message h3 br {
        display: block;
    }

    #job_message h3::before,
    #job_message h3::after {
        content: "";
    }

    #job_message p {
        padding: 10px;
    }

    /* 社員インタビュー */
    .left_container,
    .right_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .interview_img {
        width: 40%;
    }

    .interview_text {
        width: 100%;
    }

    .left_container,
    .right_container {
        padding: 20px 10px;
        border-radius: 20px;
        background-color: var(--colorwhite);
    }

    .left_container {
        border: 3px solid var(--colormainlight);
    }

    .right_container {
        border: 3px solid var(--colorredlight);
    }

    .left_container .interview_text,
    .right_container .interview_text {
        background-color: none;
    }

    .left_container .interview_text,
    .right_container .interview_text,
    .left_container .interview_text::before,
    .left_container .interview_text::after,
    .right_container .interview_text::before,
    .right_container .interview_text::after {
        border: none;
    }


    /* 募集要項 */
    #job_description th {
        width: 25%;
        padding: 1em 0.08em;
    }

    #job_description td {
        width: 75%;
        padding: 1em;
    }

    /* 選考フロー */
    .process_container {
        gap: 20px;
    }

    /* ★★★お問い合わせ（スマホ）★★★ */
    .contact_section {
        padding: 120px 5%;
    }

    .contact_section form {
        font-size: 1.25em;
    }

    .contact_section form>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .form_title {
        width: fit-content;
        padding: .5em 2em;
    }

    .contact_section form input,
    .contact_section form textarea,
    .contact_section form>div>div:has(input[type="radio"]) {
        padding: 1em;
        font-size: 1em;
    }

    .contact_section form>div>div:has(input[type="radio"]) {
        flex-direction: column;
        align-items: start;
    }

    .contact_section input[type="submit"] {
        align-self: center;
    }
}