@charset "utf-8";

/* ==========================================================================
   1. 基本設定・レイアウト
   ========================================================================== */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    overflow-y: scroll;
    background-color: #000;
        font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* 共通パーツ */
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

/* defo.cssのa:hover (opacity:0.6) をロゴだけ無効化 */
.logo a:hover {
    opacity: 1 !important;
}

.flex { display: flex; }
.flex.fww { flex-wrap: wrap; }
.flex.jcsb { justify-content: space-between; }


/* h2内のenスパン共通 */
.t-headline .en {
    display: flex;
    align-items: center;
    gap: 8px;
}

.t-headline .en::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    flex-shrink: 0;
}

/* Reliable Solutions：盾 */
.logistics-solution .t-headline .en::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L3 7v6c0 5 4 9 9 10 5-1 9-5 9-10V7L12 2z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

/* Company & Network：地図ピン */
.bkmap .t-headline .en::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
}

/* Recruit：ユーザー＋プラス */
.recruit-section .t-headline .en::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M2 21v-2a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v2'/%3E%3Cpath d='M19 8v6'/%3E%3Cpath d='M16 11h6'/%3E%3C/svg%3E");
}

/* ==========================================================================
   2. ヘッダー
   ========================================================================== */
.header {
position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding: 20px 4%;
    box-sizing: border-box;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.header.is-scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 15px 4%;
}

.logo {
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: 1;
}

.logo img {
    display: block;
    height: 60px;
    width: auto;
}

.nav {
    margin-left: auto;
}

.nav ul {
    display: flex;
    align-items: center;
}

.nav li {
    margin-left: 25px;
}

.nav a {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.nav a:hover {
    color: #db0020;
    opacity: 1;
    font-weight: 900;
}

/* ==========================================================================
   3. フルスクリーン動画セクション
   ========================================================================== */
.main-wrapper {
    width: 100%;
}

.full-screen-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-background {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.recruit-section .overlay {
    background: rgba(0, 0, 0, 0.65);
}

.section-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 5;
    box-sizing: border-box;
}

.full-screen-section:first-of-type .section-content {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 4%;
}

.section-mainbnr {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.section-mainbnr a {
    flex: 1;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-mainbnr a:hover {
    transform: translateY(-6px);
    opacity: 1 !important;
}

.section-mainbnr img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .section-mainbnr {
        gap: 16px;
    }
}

@media (max-width: 620px) {
    .section-mainbnr {
        /* display: block; */
        gap: 5px;
    }
    /* .section-mainbnr a {
        margin-bottom: 1rem;
    } */
}

/* ==========================================================================
   3-1. 動画上部ナビ（ヒーローナビ）
   ========================================================================== */
.hero-nav-wrap {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    z-index: 15;
}

.hero-nav {
    display: flex;
    align-items: stretch;
    gap: 22px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.hero-nav-group {
    display: flex;
    align-items: stretch;
    background: rgba(10, 10, 10, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

/* 左:中央:右 のグループ幅を項目数に応じて固定し、
   ホバーやクリックで幅が変わらないようにする（2項目:3項目:1項目 = 2:3:1） */
.hero-nav-group.group-left {
    flex: 2 0 0;
}

.hero-nav-group.group-center {
    flex: 3 0 0;
}

.hero-nav-group.group-right {
    flex: 1 0 0;
}

.hero-nav-item {
    position: relative;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    background: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: background-color 0.25s ease;
}

.hero-nav-group > .hero-nav-item:last-child {
    border-right: none;
}

/* ホバー時：背景色 + 下部にカラーバー表示 */
.hero-nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #db0020;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.hero-nav-item:hover,
.hero-nav-item.is-active {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-nav-item:hover::after,
.hero-nav-item.is-active::after {
    transform: scaleX(1);
}

.hero-nav-item:hover .nav-item-label,
.hero-nav-item.is-active .nav-item-label {
    color: #fff;
}

.hero-nav-item .icon-warehouse svg,
.hero-nav-item .icon-truck svg,
.hero-nav-item .icon-company svg,
.hero-nav-item .icon-recruit svg {
    width: 30px;
    height: 30px;
    color: #db0020;
}

.nav-item-label {
    font-size: 0.82rem;
    font-weight: bold;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.hero-nav-item--accent {
    background-color: rgba(219, 0, 32, 0.15);
}

.hero-nav-item--accent .icon-muscle svg {
    width: 30px;
    height: 30px;
    color: #db0020;
}

.hero-nav-item--accent .nav-item-label {
    color: #fff;
}

.hero-nav-item--accent:hover {
    background-color: rgba(219, 0, 32, 0.3);
}

/* ポップアップパネル */
.hero-nav-panels {
    position: relative;
}

.hero-nav-panel {
    display: none;
    position: absolute;
    left: 0;
    bottom: calc(100% + 14px);
    width: 100%;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    padding: 30px 40px;
    box-sizing: border-box;
    align-items: center;
    gap: 30px;
    --arrow-left: 50%;
}

.hero-nav-panel.is-active {
    display: flex;
    animation: heroPanelIn 0.2s ease;
}

/* 吹き出しの下向き三角（▼） */
.hero-nav-panel::after {
    content: "";
    position: absolute;
    left: var(--arrow-left);
    bottom: -9px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(20, 20, 20, 0.85);
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.25));
}

@keyframes heroPanelIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.panel-label {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    white-space: nowrap;
}

.panel-label .panel-arrow {
    color: #db0020;
    font-size: 0.7rem;
}

.panel-label [class^="icon-"] svg {
    width: 26px;
    height: 26px;
    color: #db0020;
}

.panel-divider {
    flex: 0 0 auto;
    align-self: stretch;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.panel-links {
    flex: 1 1 auto;
    columns: 2;
    column-gap: 40px;
    column-rule: 1px solid rgba(255, 255, 255, 0.15);
}

.panel-links.single {
    columns: 1;
}

.panel-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.12);*/
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: bold;
    break-inside: avoid;
    transition: color 0.2s ease;
}

.panel-links a:hover {
    color: #db0020;
}

.panel-links a .link-arrow {
    color: #db0020;
    font-size: 0.65rem;
    flex: 0 0 auto;
}

/* 採用情報：中途・パートナースタッフ採用のネスト項目 */
.panel-link-group {
    display: flex;
    flex-direction: column;
    break-inside: avoid;
}

.panel-link-group > a {
    border-bottom: none;
    padding-bottom: 6px;
}

.panel-sublinks {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    padding-top: 10px;
    margin-bottom: 6px;
}

.panel-sublinks a {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
}

.panel-sublinks a:last-child {
    border-bottom: none;
}

.panel-sublinks a:hover {
    color: #db0020;
}

@media (max-width: 1024px) {
    .hero-nav-item {
        padding: 12px 4px;
    }
    .nav-item-label {
        font-size: 0.72rem;
    }
    .hero-nav-item .icon-warehouse svg,
    .hero-nav-item .icon-truck svg,
    .hero-nav-item .icon-company svg,
    .hero-nav-item .icon-recruit svg,
    .hero-nav-item--accent .icon-muscle svg {
        width: 24px;
        height: 24px;
    }
    .hero-nav-panel {
        padding: 22px 24px;
        gap: 20px;
    }
}

/* ==========================================================================
   3-2. スマホ用レイアウト（カード3段構成）
   ========================================================================== */
@media (max-width: 780px) {
    .hero-nav-wrap {
        width: 92%;
        bottom: 16px;
    }

    .hero-nav-panels {
        display: none; /* スマホではポップアップは表示しない */
    }

    .hero-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: none;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    .hero-nav-group {
        flex: none;
        width: 100%;
        background: rgba(10, 10, 10, 0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }

    /* 上段：倉庫 / 輸配送（2カラム） */
    .hero-nav-group.group-left {
        flex: none;
        flex-direction: row;
    }

    .hero-nav-group.group-left .hero-nav-item {
        padding: 14px 6px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-nav-group.group-left .hero-nav-item:last-child {
        border-right: none;
    }

    /* 中段：3項目を横並びに */
    .hero-nav-group.group-center {
        flex: none;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-nav-group.group-center .hero-nav-item {
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        padding: 14px 6px;
    }

    .hero-nav-group.group-center .hero-nav-item:last-child {
        border-right: none;
    }

    /* 下段：筋トレ採用（ピル型ボタン） */
    .hero-nav-group.group-right {
        flex: none;
        background: none;
        box-shadow: none;
        border-radius: 999px;
    }

    .hero-nav-item--accent {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        border-radius: 999px;
        border: 1.5px solid #db0020;
        background: rgba(219, 0, 32, 0.15);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .hero-nav-item--accent::after {
        display: none;
    }

    .hero-nav-item--accent .nav-item-label {
        font-size: 0.9rem;
    }

    .nav-item-label {
        font-size: 0.72rem;
    }

    .hero-nav-item .icon-warehouse svg,
    .hero-nav-item .icon-truck svg,
    .hero-nav-item .icon-company svg,
    .hero-nav-item .icon-recruit svg,
    .hero-nav-item--accent .icon-muscle svg {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   4. News & Social セクション
   ========================================================================== */
.latest-updates {
    position: relative;
    z-index: 10;
    padding: 60px 4% 120px;
    background: #db0020;
    color: #fff;
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
}

.updates-container {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

h2.t-headline-s-en {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2.t-headline-s-en::before,
.card-label::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    opacity: 0.85;
}

.visual-updates > h2.t-headline-s-en::before {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='0.8' fill='%23ffffff' stroke='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.media-card > h2.t-headline-s-en::before {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 56' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2 Q2 2 2 10 L2 54 L46 54 L46 2 Z'/%3E%3Crect x='12' y='8' width='24' height='12' rx='2'/%3E%3Cline x1='10' y1='30' x2='38' y2='30'/%3E%3Cline x1='10' y1='38' x2='38' y2='38'/%3E%3Cline x1='10' y1='46' x2='38' y2='46'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.text-updates > h2.t-headline-s-en::before {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 3L9 10H4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h1l2 5h2l-1-5h1l13 7V3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.visual-updates-wrap {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.visual-updates-wrap .section-mainbnr {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.visual-updates { flex: 1; }

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.insta-card figure {
    width: 100%;
    height: 70%;
    overflow: hidden;
    background: #000;
    margin-bottom: 10px;
}

.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-row {
    grid-column: span 2;
    display: flex;
    gap: 30px;
}

.insta-row .insta-card {
    flex: 1;
}

.card-label {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.insta-row .insta-card:first-child .card-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("../images/icon_building.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
}

.insta-row .insta-card:last-child .card-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='3' height='10' rx='1'/%3E%3Crect x='19' y='7' width='3' height='10' rx='1'/%3E%3Crect x='6.5' y='9.5' width='2' height='5' rx='0.6'/%3E%3Crect x='15.5' y='9.5' width='2' height='5' rx='0.6'/%3E%3Cline x1='8.5' y1='12' x2='15.5' y2='12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
}

.media-card {
    grid-column: span 2;
    margin-top: 20px;
}

.media-card ul {
    display: flex;
    gap: 20px;
}

.media-card li {
    width: calc(25% - 15px);
}

.media-card figure {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 10px;
}

.media-card img:hover {
    transform: scale(1.05);
}

.media-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: bold;
}

.text-updates {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 40px;
}

.news-list li {
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 20px 0;
}

.news-list time {
    font-size: 0.8rem;
    font-weight: bold;
}

.news-list .tag {
    font-size: 0.65rem;
    padding: 3px 10px;
    margin-left: 10px;
    border-radius: 3px;
    vertical-align: middle;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.news-list .tag.info {
    background: #316195;
}

.news-list .tag.notice {
    background: #651414;
}

.news-list .tag.column {
    background: #857313;
}

.news-list p {
    font-size: 0.95rem;
    margin-top: 8px;
    font-weight: bold;
    line-height: 1.5;
}

.view-all {
    display: inline-block;
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}

.bkmap {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: auto;
    overflow: hidden;
    background-color: #666;
}

@keyframes fluffyFloating {
    0% { transform: translate(2%, 2%) scale(1.0); opacity: 0.4; }
    50% { transform: translate(-2%, -2%) scale(1.1); opacity: 0.8; }
    100% { transform: translate(2%, 2%) scale(1.0); opacity: 0.4; }
}

.bkmap::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('../images/network-bg.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    animation: fluffyFloating 20s ease-in-out infinite;
    will-change: transform, opacity;
    z-index: 1;
}

.bkmap .section-content,
.bkmap .inner-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .news-list li { padding: 10px 0; }
    .news-list p { display: inline-block; }
    .latest-updates { padding: 40px 4% 40px; }
}

@media (max-width: 768px) {
    .insta-row { flex-direction: column; }
    .bkmap::before {
        background-position: 65% center;
        background-size: auto;
    }
}

@media (max-width: 559px) {
    .news-list p { display: block; }

}

/* ==========================================================================
   5. Logistics Solution
   ========================================================================== */
.logistics-solution .overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.logistics-solution .section-content {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding-left: 10%;
}

.inner-container {
    max-width: 800px;
}

.t-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
}

.t-headline .en {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.t-sub-headline {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.5;
}

.t-description {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    max-width: 600px;
}

@media (min-width: 1025px) {
    .logistics-solution .section-content {
        padding-left: 4%;
        padding-right: 4%;
        align-items: center;
    }

    .logistics-solution .flex.fww.jcsb {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logistics-solution .inner-container {
        max-width: 600px;
    }

    .logistics-solution .link-bnr {
        margin-left: 0;
    }
}

/* ==========================================================================
   View More ボタン
   ========================================================================== */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    opacity: 1 !important;
}

.icon-dot-circle {
    width: 44px;
    height: 44px;
    border: 1px dashed rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
    background: transparent;
    animation: spin 4s linear infinite;
    transition: background 0.3s ease, border 0.3s ease;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.icon-dot-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.btn-view-more:hover .icon-dot-circle {
    animation-play-state: paused;
    background: #fff;
    border: 1px solid #fff;
}

.btn-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    animation: counter-spin 4s linear infinite;
    transition: opacity 0.2s ease;
}

@keyframes counter-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

.btn-view-more:hover .btn-arrow {
    opacity: 1;
    animation-play-state: paused;
}

.btn-view-more:hover .icon-dot-circle::after {
    opacity: 0;
}

.btn-view-more .text {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 4px;
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-view-more:hover .text {
    opacity: 1;
    transform: translateX(6px);
    border-bottom-color: #fff;
}

.latest-updates .inner-container {
    text-align: left;
    padding: 20px 0;
}

.latest-updates .t-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
}

.latest-updates .t-description {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.latest-updates .btn-view-more {
    justify-content: flex-start;
}

/* ==========================================================================
   拠点リンクボタン
   ========================================================================== */
.base-region {
    margin-bottom: 30px;
}

.bkmap .btn-view-more {
    margin-top: 20px;
}

.base-region-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0 0 14px;
}

.base-region-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #db0020;
    border-radius: 2px;
}

.base-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.base-link-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    border-radius: 4px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.base-link-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    opacity: 1 !important;
    color: #333;
}

.base-link-btn::before {
    display: none;
}

.link-bnr {
    margin-left: 100px;
    margin-top: 50px;
}

.link-bnr figure {
    margin-bottom: 20px;
}

.link-bnr figure a:hover {
    opacity: 1;
}

.link-bnr a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.link-bnr a:hover {
    transform: translateY(-6px);
    opacity: 1 !important;
}

/* ==========================================================================
   6. レスポンシブ対応
   ========================================================================== */
@media (max-width: 1024px) {
    .updates-container { flex-direction: column; gap: 40px; }
    .text-updates { border-left: none; padding-left: 0; }
    .media-card li { width: calc(24% - 10px); }
    .link-bnr { margin-left: 20px; }
    .logistics-solution .section-content { padding-left: 4%; }
    .inner-container { max-width: 540px; }
}

@media (max-width: 768px) {
    /* ヘッダー */
    .header { padding: 12px 4%; }
    .logo img { height: 32px; }
    .nav { display: none; }

    /* コンテンツ余白 */
    .section-content { padding-left: 5% !important; padding-right: 5%; }
    .visual-grid { grid-template-columns: 1fr; }
    .t-headline { font-size: 1.8rem; }

    /* News赤セクション */
    .latest-updates { padding-top: 30px; }

    /* 拠点 */
    .bkmap .updates-container { padding: 0 4%; }
    .base-link-grid { gap: 10px; }
    .base-link-btn { font-size: 0.85rem; padding: 12px 16px; white-space: normal; }

    /* Logistics Solution：高さ可変に */
    .logistics-solution {
        height: auto;
        min-height: auto;
    }
    .logistics-solution .video-background {
        position: absolute;
        height: 100%;
        min-height: 100%;
    }
    .logistics-solution .section-content {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 80px 5% 30px;
        overflow: visible;
        justify-content: flex-start;
    }

    /* link-bnr */
    .link-bnr { margin: 30px 0 0 0; display: flex; justify-content: space-between; }
    .link-bnr figure { width: 48%; }
    .link-bnr figure img { width: 100%; }
}

@media (max-width: 620px) {
    .t-description br { display: none; }
    .media-card li { width: 46%; }
    .link-bnr { display: block; width: 90%; margin: 50px auto 50px; }
    .link-bnr figure { width: 100%; }
}

@media (max-width: 400px) {
    .t-headline { font-size: 1.4rem; margin-bottom: 15px; }
    .t-sub-headline, .t-description { margin-bottom: 15px; }
}

/* ==========================================================================
   SP ボトムナビ
   ========================================================================== */
.sp-nav {
    display: none;
}

@media (max-width: 768px) {
    .sp-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 2000;
        background: #111;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .sp-nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 4px;
        font-size: 0.75rem;
        font-weight: bold;
        letter-spacing: 0.03em;
        color: rgba(255,255,255,0.85);
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: background 0.2s ease, color 0.2s ease;
        opacity: 1 !important;
    }

    .sp-nav-item:nth-child(3n) { border-right: none; }
    .sp-nav-item:nth-child(4),
    .sp-nav-item:nth-child(5),
    .sp-nav-item:nth-child(6) { border-bottom: none; }

    .sp-nav-item:hover,
    .sp-nav-item:active {
        background: rgba(255,255,255,0.08);
        color: #fff;
        opacity: 1 !important;
    }

    .sp-nav-item--accent { color: #ff4d65; }

    .sp-nav-item--accent:hover,
    .sp-nav-item--accent:active {
        background: rgba(219,0,32,0.15);
        color: #ff4d65;
    }

    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   採用セクション
   ========================================================================== */
.job-tag-container {
    flex: 1;
    max-width: 500px;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.group-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    border-left: 2px solid #db0020;
    padding-left: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: 5px;
    display: inline-block;
}

.tag.muscle, .tag.unique {
    border-color: #db0020;
    color: #fff;
    background: rgba(219, 0, 32, 0.2);
}

.tag:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.tag:hover .tag-sub { color: #000; }

.recruit-section .section-content {
    padding: 0 6%;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.recruit-section .flex.fww.jcsb {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recruit-section .inner-container {
    flex: 0 0 50%;
    max-width: 600px;
    text-align: left;
}

.job-tag-container {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 1024px) {
    .recruit-section {
        height: auto;
        min-height: 100vh;
    }
    .recruit-section .section-content {
        height: auto;
        min-height: 100vh;
        padding: 100px 5% 60px;
        overflow-y: visible;
        justify-content: flex-start;
    }
    .recruit-section .flex.fww.jcsb { align-items: flex-start; }
    .recruit-section .inner-container,
    .job-tab-container {
        flex: 0 0 48%;
        width: 48%;
        max-width: 48%;
    }
    .job-tab-container { margin-top: 40px; margin-left: 0; }
}

@media (max-width: 768px) {
    .recruit-section {
        height: auto;
        min-height: auto;
    }
    .recruit-section .video-background {
        position: absolute;
        height: 100%;
        min-height: 100%;
    }
    .recruit-section .section-content {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 80px 5% 60px;
        overflow: visible;
        justify-content: flex-start;
    }
    .recruit-section .flex.fww.jcsb {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .recruit-section .inner-container,
    .job-tab-container {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .job-panel-wrapper { min-height: 300px; }
}

/* ==========================================================================
   7. お問い合わせエリア
   ========================================================================== */
.contact-section {
    background-color: rgb(17, 17, 17);
    padding: 0;
    position: relative;
    min-height: 120px;
}

.contact-container {
    position: relative;
    left: auto;
    transform: none;
    background-color: #db0020;
    border-radius: 12px;
    padding: 30px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    max-width: 1400px;
    width: 80%;
    margin: -50px auto 0;
    z-index: 5000;
}

.contact-text .label {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-text .label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 2px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11C3 6.6 7 3 12 3s9 3.6 9 8'/%3E%3Cpath d='M3 11h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-3z'/%3E%3Cpath d='M21 11h-2a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-3z'/%3E%3Cpath d='M19 16v1a3 3 0 0 1-3 3h-2'/%3E%3Ccircle cx='12' cy='20' r='1'/%3E%3C/svg%3E");
}

.contact-text .head {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.contact-text .desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-round-white {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #386CB0;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.btn-round-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 1 !important;
}

.btn-round-white .icon-arrow {
    margin-left: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-round-white:hover .icon-arrow {
    transform: translateX(5px);
}

.contact-info {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.25);
    border-right: 1px solid rgba(255,255,255,0.25);
    padding: 0 40px;
}

.contact-office {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.contact-tel {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.contact-tel:hover { opacity: 0.75 !important; }

.contact-hours {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}

.contact-text .desc br { display: none; }

@media (max-width: 1024px) {
    .contact-container { width: 98%; }
    .contact-text .desc br { display: block; }
}

@media (max-width: 960px) {
    .contact-info {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.25);
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding: 30px 0;
        width: 100%;
    }
    .contact-container { flex-direction: column; text-align: center; gap: 40px; }
    .btn-round-white { justify-content: center; }
}

@media (max-width: 400px) {
    .contact-container { margin: 0 auto; }
}

/* ==========================================================================
   職種タグ補足・SNS
   ========================================================================== */
.tag-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: normal;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
    letter-spacing: 0.02em;
    white-space: normal;
}

.sns-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease, opacity 0.3s ease;
}

.sns-link svg { width: 40px; height: 40px; }

.sns-link:hover { color: #fff; opacity: 1 !important; }

/* ==========================================================================
   8. フッター
   ========================================================================== */
/* ==========================================================================
   バナー置き場
   ========================================================================== */
.page-banner-section {
    background-color: #111;
    padding: 60px 4% 80px;
}

.page-banner-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.page-banner-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #fff;
    line-height: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-banner-item img {
    display: block;
    width: 100%;
    height: auto;
}

.page-banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(219, 0, 32, 0.6);
    opacity: 1;
}

@media (max-width: 1024px) {
    .page-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 559px) {
    .page-banner-section {
        padding: 40px 4% 60px;
    }
    .page-banner-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.footer {
    background-color: #111;
    color: #fff;
    padding-top: 100px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%;
    margin: 0 auto;
}

.footer-col { flex: 1; }
.footer-logo-col { flex: 1.5; }
.footer-logo img { height: 55px; width: auto; }

.footer-nav-list li { margin-bottom: 15px; }

.footer-nav-list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-nav-list a:hover { color: #db0020; opacity: 1 !important; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.lang-switcher { display: flex; gap: 10px; }

.lang-switcher a {
    color: rgba(255, 255, 255, 0.5);
    padding: 2px 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.lang-switcher a.active { background-color: #fff; color: #000; border-color: #fff; }

@media (max-width: 768px) {
    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        text-align: left;
    }
    .footer-logo-col { grid-column: span 2; }
}

/* ==========================================================================
   雇用形態タブ
   ========================================================================== */
.job-tab-container {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
}

.job-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border: 1px solid rgba(255,255,255,0.25);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.job-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 18px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 3px solid transparent;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    font-family: inherit;
    font-size: .9em;
    font-weight: bold;
    flex: 1;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    margin-bottom: 0;
}

.job-tab:last-child { border-right: none; }
.job-tab:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }
.job-tab.active { color: #fff; background: rgba(219,0,32,0.15); border-bottom-color: #db0020; }

.job-panel-wrapper {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.25);
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: rgba(255,255,255,0.03);
    min-height: 380px;
}

.job-panel {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.job-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.job-tab[data-icon]::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    transition: opacity 0.25s ease;
}

.job-tab[data-icon]:hover::before,
.job-tab[data-icon].active::before { opacity: 1; }

.job-tab[data-icon="briefcase"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2'/%3E%3Cpath d='M2 13h20'/%3E%3C/svg%3E");
}

.job-tab[data-icon="graduation"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 22 8 12 14 2 8 12 2'/%3E%3Cpath d='M6 11v5c0 2 2.5 4 6 4s6-2 6-4v-5'/%3E%3Cpath d='M22 8v6'/%3E%3C/svg%3E");
}

.job-tab[data-icon="clock"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.tag[data-icon]::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 6px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tag[data-icon]:hover::before { opacity: 1; filter: invert(1); }

.tag[data-icon="truck"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 3h15v13H1z'/%3E%3Cpath d='M16 8h4l3 4v5h-7V8z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.tag[data-icon="muscle"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6.5' width='3.2' height='11' rx='1'/%3E%3Crect x='18.8' y='6.5' width='3.2' height='11' rx='1'/%3E%3Crect x='6.6' y='9' width='2' height='6' rx='0.8'/%3E%3Crect x='15.4' y='9' width='2' height='6' rx='0.8'/%3E%3Cline x1='8.6' y1='12' x2='15.4' y2='12'/%3E%3C/svg%3E");
}

.tag[data-icon="warehouse"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9L12 3l10 6v12H2V9z'/%3E%3Crect x='8' y='14' width='8' height='7'/%3E%3C/svg%3E");
}

.tag[data-icon="document"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 56' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2 Q2 2 2 10 L2 54 L46 54 L46 2 Z'/%3E%3Crect x='12' y='8' width='24' height='12' rx='2'/%3E%3Cline x1='10' y1='30' x2='38' y2='30'/%3E%3Cline x1='10' y1='38' x2='38' y2='38'/%3E%3Cline x1='10' y1='46' x2='38' y2='46'/%3E%3C/svg%3E");
}

.tag[data-icon="briefcase"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2'/%3E%3Cline x1='12' y1='12' x2='12' y2='12'/%3E%3Cpath d='M2 13h20'/%3E%3C/svg%3E");
}

.tag[data-icon="pc"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E");
}

@media (max-width: 1024px) {
    .job-tab-container { flex: 0 0 48%; width: 48%; max-width: 48%; margin-top: 40px; }
}

@media (max-width: 768px) {
    .job-tab-container { flex: 0 0 100%; width: 100%; max-width: 100%; }
    .job-tab { padding: 8px 12px 10px; font-size: 0.8rem; }
}

/* 受話器アイコン */
.tel-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.9a2 2 0 0 1-.4 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.9.6 2.9.7A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E");
}

/* ==========================================================================
   9. ヒーロー動画クロスフェード（倉庫内の映像／リフト作業の映像）
   ========================================================================== */
.hero-video-cycle {
    position: sticky;
}

.hero-video-cycle .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-video-cycle .bg-video.is-active {
    opacity: 1;
}

/* ==========================================================================
   10. メールマガジン登録ボタン
   ========================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #db0020;
    border-color: #db0020;
    color: #fff;
    opacity: 1 !important;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .newsletter-btn .newsletter-text { display: none; }
    .newsletter-btn { padding: 7px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .footer-bottom { flex-wrap: wrap; gap: 16px; }
}

/* ==========================================================================
   11. 筋トレ採用タブ／新卒の注力職種
   ========================================================================== */
.job-tab--muscle.active,
.job-tab--muscle:hover {
    color: #fff;
}

.job-tab[data-icon="muscle"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6.5' width='3.2' height='11' rx='1'/%3E%3Crect x='18.8' y='6.5' width='3.2' height='11' rx='1'/%3E%3Crect x='6.6' y='9' width='2' height='6' rx='0.8'/%3E%3Crect x='15.4' y='9' width='2' height='6' rx='0.8'/%3E%3Cline x1='8.6' y1='12' x2='15.4' y2='12'/%3E%3C/svg%3E");
}

.kintore-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kintore-link-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(219, 0, 32, 0.5);
    border-radius: 6px;
    background: rgba(219, 0, 32, 0.12);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.kintore-link-btn-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #fff;
}

.kintore-link-btn .link-arrow {
    color: #db0020;
    font-size: 0.65rem;
}

.kintore-link-btn .tag-sub {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.65);
}

.kintore-link-btn:hover {
    background: #db0020;
    border-color: #db0020;
    transform: translateY(-3px);
    opacity: 1 !important;
}

.job-group.featured-group .group-label {
    border-left-color: #db0020;
    color: rgba(255, 255, 255, 0.85);
}

.tag.featured {
    position: relative;
    background: rgba(219, 0, 32, 0.22);
    border: 1px solid #db0020;
    color: #fff;
    padding-right: 66px;
    font-size: 0.95rem;
}

.tag.featured:hover {
    background: #db0020;
    color: #fff;
}

.tag-badge {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: #fff;
    color: #db0020;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
}

.tag.featured:hover .tag-badge {
    background: #fff;
    color: #db0020;
}