@charset "utf-8";

/* お問い合わせフォーム モダンカスタマイズ */
.modern-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
}

.form-intro {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.form-row {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.form-label {
    width: 250px;
    font-weight: bold;
    color: #333;
    padding-top: 10px;
    display: flex;
    align-items: center;
}

.form-field {
    flex: 1;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #0056b3; /* ブランドブルー */
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.1);
}

.field-note {
    font-size: 0.8rem;
    color: #888;
    margin: 10px 0 5px;
}

.form-submit-area {
    text-align: center;
    margin-top: 50px;
}

/* 必須ラベルの調整 */
.modern-contact-form .must {
    background-color: #e63946;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
}

/* 送信ボタン（トップページのCTAに合わせる） */
.modern-contact-form .btn-primary {
    display: inline-block;
    background-color: #f59e0b; /* トップと同じオレンジ */
    color: #fff;
    padding: 18px 80px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
}

.modern-contact-form .btn-primary:hover {
    background-color: #e08e00;
    transform: translateY(3px);
    box-shadow: none;
}

/* 注意事項エリアのデザイン */
.contact-notice-box {
    margin-top: 80px;
    padding: 40px;
    background-color: #f4f8fc; /* 採用ページと同じ薄い青 */
    border-radius: 8px;
}

.contact-notice-box h4 {
    color: #0056b3;
    margin-bottom: 20px;
    font-weight: bold;
}

/* レスポンシブ */
@media screen and (max-width: 860px) {
    .form-row {
        flex-direction: column;
    }
    .form-label {
        width: 100%;
        margin-bottom: 10px;
    }
    .modern-contact-form .btn-primary {
        width: 100%;
        padding: 15px 20px;
    }
}

/* スライダー全体のコンテナ */
.top01-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* 各画像の設定 */
.top01-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    /* 20秒で1ループ（4枚 × 5秒） */
    animation: fadeSlider 20s infinite; 
}

/* 4枚それぞれの開始タイミングを5秒ずつずらす */
.top01-image-item:nth-child(1) {
    animation-delay: 0s;
}
.top01-image-item:nth-child(2) {
    animation-delay: 5s;
}
.top01-image-item:nth-child(3) {
    animation-delay: 10s;
}
.top01-image-item:nth-child(4) {
    animation-delay: 15s;
}

/* 4枚用に最適化したフェードアニメーション */
@keyframes fadeSlider {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    /* 最初の5%でフェードイン */
    5% {
        opacity: 1;
    }
    /* 25%まで表示を維持（20秒の1/4 = 5秒間） */
    25% {
        opacity: 1;
    }
    /* 次の5%でフェードアウトしながらズーム */
    30% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
    }
}

/* コンテンツの重なり順を保証 */
.top01-content {
    position: relative;
    z-index: 2;
}

/* =======================================================
   ベースフォント設定
   ======================================================= */
body {
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: #333;
}

/* =======================================================
   ヘッダーメニュー (固定・高さ調整版)
   ======================================================= */

/* 1. ヘッダーを固定する */
.site-header {
    position: fixed; /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* 最前面に表示 */
    background-color: #fff; /* 背景色（透明にならないように） */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 下に薄い影をつけて浮き上がらせる */
}

/* 2. ヘッダーが固定された分、サイト全体の中身を下にずらす */
body {
    padding-top: 80px; /* ヘッダーの高さ分だけ下げる */
}

/* 3. ヘッダーの高さをスリムに (100px → 80px) */
.header-main {
    height: 55px; /* 【修正】高さを減らして余白を削除 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1280px; /* in9の幅に合わせる */
    margin: 0 auto;
    padding: 0 0; /* 左右に少し余白 */
}

/* ロゴエリアの調整 */
.header-logo {
    max-width: 300px; 
    flex-shrink: 0;
    margin-right: 20px;
    padding-top: 0; /* 微調整 */
}

.header-logo img {
    height: auto;
    max-height: 50px; /* 【修正】枠に合わせてロゴも少し小さく */
    width: auto;
    display: block;
}

/* ナビゲーションエリア */
.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* リストアイテム */
.header-nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: auto !important;
    display: block;
}

/* リンクテキスト */
.header-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 10px 5px;
    display: block;
    white-space: nowrap; /* 文字崩れ防止 */
    transition: color 0.3s;
    font-family: "Noto Sans JP", sans-serif;
    border: none;
}

/* ホバー設定 */
.header-nav ul li a:not(.nav-contact-btn):hover {
    color: #0056b3;
}

.header-nav ul li a:not(.nav-contact-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0056b3;
    transition: width 0.3s ease;
}

.header-nav ul li a:not(.nav-contact-btn):hover::after {
    width: 100%;
}

/* お問い合わせボタン */
.nav-contact-li {
    margin-left: 10px;
}

.nav-contact-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 44px; /* 高さ微調整 */
    padding: 0 20px !important;
    background-color: #f59e0b;
    color: #fff !important;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-contact-btn:hover {
    background-color: #e08e00;
    transform: translateY(2px);
    box-shadow: none;
    color: #fff;
}

.arrow-icon {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 2px;
}

/* レスポンシブ調整 */
@media screen and (max-width: 1200px) {
    .header-nav ul {
        gap: 15px;
    }
    .header-nav ul li a {
        font-size: 0.85rem;
    }
}

/* =======================================================
   SPメニュー (Hamburger & Nav) - 860px以下
   ======================================================= */
/* ハンバーガーボタン */
.sp-menu-btn {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
}
.sp-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #0056b3;
    position: absolute;
    left: 7px;
    transition: all 0.3s;
}
.sp-menu-btn span:nth-of-type(1) { top: 10px; }
.sp-menu-btn span:nth-of-type(2) { top: 19px; }
.sp-menu-btn span:nth-of-type(3) { top: 28px; }

/* ハンバーガー Active時 */
.sp-menu-btn.active span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 19px;
    background: #fff;
}
.sp-menu-btn.active span:nth-of-type(2) {
    opacity: 0;
}
.sp-menu-btn.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 19px;
    background: #fff;
}

/* SPナビゲーション */
.sp-nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 86, 179, 0.98);
    z-index: 1001;
    transition: right 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}
.sp-nav-wrap.open {
    right: 0;
    visibility: visible;
}
.sp-nav-inner {
    text-align: center;
    width: 100%;
}
.sp-nav-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sp-nav-inner li {
    margin-bottom: 25px;
}
.sp-nav-inner a {
    color: #fff;
    text-decoration: none;
    font-size: 110%;
    font-weight: bold;
    display: block;
    padding: 5px;
}
.sp-contact-btn a {
    background: #f59e0b;
    color: #fff;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 30px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* =======================================================
   レスポンシブ調整 (Responsive)
   ======================================================= */
@media screen and (max-width: 860px) {
    .pc_on { display: none !important; }
    .pc_off { display: block !important; }
    
    .site-header {
        height: 60px; /* SP時のヘッダー高さ */
    }
    .header-logo img {
        height: 45px; /* SP時のロゴサイズ */
    }
    body {
        padding-top: 60px;
    }
}
@media screen and (min-width: 861px) {
    body {
        padding-top: 80px; /* PC時の余白 */
    }
    .sp-nav-wrap { display: none; }
}

/* =======================================================
   トップページ (Home)
   ======================================================= */

/* -------------------------------------------------------
   sec-top01: メインビジュアル
   ------------------------------------------------------- */
.sec-top01 {
    width: 100%;
    height: 600px; /* PCでの高さ */
    position: relative;
    overflow: hidden;
    margin-bottom: 0; /* 下のセクションとの余白はsec-top02のpadding等で調整も可 */
}

.top01-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.top01-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* 画像を少し暗くして文字を見やすくする場合 */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.top01-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* 黒色 */
    /* ここの数字を変えて明暗を調整してください */
    /* 0.0（透明） 〜 1.0（真っ黒） の間で指定します */
    opacity: 0.4; 
    
    z-index: 2; /* 画像より手前に表示 */
}

/* 画像の上に黒いフィルターをかける場合（任意） */
.top01-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 30%の黒被せ */
}

.top01-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* 中央寄せ */
}

.top01-catch {
    color: #fff;
    font-size: 3.2rem; /* 約50px */
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    letter-spacing: 0.05em;
    font-family: "游ゴシック", YuGothic, sans-serif; /* 画像のゴシック体に合わせて */
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .sec-top01 {
        height: 400px; /* スマホでの高さ */
    }
    .top01-catch {
        font-size: 1.2rem;
        line-height: 1.5;
        width: 90%;
    }
}


/* -------------------------------------------------------
   sec-top02: 私たちの想い
   ------------------------------------------------------- */
.sec-top02 {
    padding-top: 100px;
    padding-bottom: 100px; /* 【修正】下に余白を追加して詰まりを解消 */
    background-color: #fff;
}

.top02-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 上揃えで固定 */
    gap: 80px; /* タイトルと本文の間の距離 */
}

/* 縦書きタイトルエリア */
.top02-title-area {
    /* タイトルの位置を本文の開始位置と視覚的に合わせるための微調整 */
    padding-top: 5px; 
}

.top02-title-vertical {
    writing-mode: vertical-rl;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 2.0rem; /* 少しサイズを落として上品に */
    font-weight: 500;
    letter-spacing: 0.4em; /* 文字の間隔を広げて縦書きの美しさを出す */
    line-height: 1;
    color: #333;
}

/* 本文エリア */
.top02-text-area {
    width: 100%;
    max-width: 680px; /* 横幅を制限して読みやすく */
}

.top02-text-area p {
    font-size: 1.0rem;
    
    /* 【修正】行間を締めて「破れた感じ」を解消 */
    line-height: 1.9; 
    
    /* 【修正】段落下の余白を調整 */
    margin-bottom: 30px; 
    
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em; /* 横書き文字も少しだけ間隔を空けて読みやすく */
    text-align: justify; /* 両端揃えにして箱感を出す（好みで削除可） */
}

.top02-text-area p:last-child {
    margin-bottom: 0;
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .sec-top02 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .top02-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 20px;
    }

    .top02-title-area {
        width: 100%;
        text-align: center;
        padding-top: 0;
        /* スマホ時は縦書きをやめて横書きにする場合の記述（現状維持ならこのまま） */
    }

    .top02-title-vertical {
        writing-mode: horizontal-tb; /* スマホでは横書きに戻す */
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }
    
    /* スマホ用の装飾線 */
    .top02-title-vertical::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #0056b3;
        margin: 15px auto 0;
    }

    .top02-text-area p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 25px;
        text-align: left; /* スマホは左揃えが見やすい */
    }
}

/* -------------------------------------------------------
   sec-top03: 5つの強み
   ------------------------------------------------------- */
.sec-top03 {
    width: 100%;
    margin-bottom: 100px;
}

.top03-bg {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

/* タイトルボックス */
.top03-title-box {
    text-align: center;
    margin-bottom: 40px;
}

.top03-title {
    display: inline-block;
    background: #fff;
    color: #009FE8;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 10px 40px;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top03-title.el1 {
    color: #FFF !important;
}

/* 強みリスト（グリッド） */
.top03-list {
    display: flex;
    justify-content: center; /* 中央寄せにしてgapで調整 */
    align-items: stretch; /* ボックスの高さを揃える */
    gap: 2.5%; /* 【変更】隙間を少し広げてバランスを取る */
}

/* 各ボックススタイル */
.strength-box {
    width: 17%; /* 【変更】19%から17%にして少し細くする */
    background: #fff;
    
    /* 【変更】左右のpaddingを15pxから5pxに減らしてスリムに */
    padding: 40px 5px 30px; 
    
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    
    min-height: 280px; 
}

/* アイコンの枠 */
.st-icon {
    width: 100%; /* ← 53% から 100% に戻す */
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 画像の制御 */
.st-icon img {
    /* 大きな画像でも、親の80pxの中に収まるようにする */
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain; /* 比率を維持して収める */
}

.st-icon.el1 img {
    max-height: 60px;
}

/* テキスト */
.st-text {
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
    font-family: "游ゴシック", YuGothic, sans-serif;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .strength-box {
        padding: 30px 10px;
        min-height: auto; /* SPなどでは高さ制限解除 */
    }
    .st-text {
        font-size: 0.8rem;
    }
}

/* レスポンシブ対応 (タブレット〜スマホ) */
@media screen and (max-width: 860px) {
    .sec-top03 {
        margin-bottom: 60px;
    }
    .top03-bg {
        padding: 60px 0;
    }
    
    .top03-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* 隙間を少し詰める */
    }

    .strength-box {
        width: 46%; /* 2列表示 */
        margin-bottom: 0;
        min-height: 220px; /* スマホ用に高さを抑える */
        padding: 25px 10px 20px;
    }
}

/* スマホ極小サイズ (500px以下) の調整 */
@media screen and (max-width: 500px) {
    .top03-list {
        gap: 10px; /* さらに隙間を詰める */
    }

    .strength-box {
        width: 48%; /* 2列表示を死守 */
        padding: 20px 5px 15px;
        min-height: 200px;
    }

    .st-icon {
        height: 60px; /* アイコンエリアを少し小さく */
        margin-bottom: 15px;
    }

    .st-icon img {
        max-height: 60px;
    }

    .st-text {
        font-size: 0.75rem; /* テキストサイズを下げて、2列でも収まりやすくする */
        line-height: 1.5;
    }

    .top03-title {
        font-size: 1.3rem; /* タイトルも少しコンパクトに */
        padding: 8px 25px;
    }
}

/* -------------------------------------------------------
   sec-top04: 事業内容 (ジグザグレイアウト)
   ------------------------------------------------------- */
.sec-top04 {
    /* 背景色は白に戻すか、任意で調整してください。画像では白っぽく見えます */
    background-color: #fff; 
    padding-bottom: 100px;
}

/* セクションタイトル（青文字） */
.sec-title-blue {
    font-size: 2.0rem;
    font-weight: bold;
    color: #009FE8; /* 水色系 */
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-family: "游ゴシック", YuGothic, sans-serif;
}

.sec-lead {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

/* ジグザグ配置のコンテナ */
.business-list-zigzag {
    display: flex;
    flex-direction: column;
    gap: 80px; /* 各項目の縦の間隔 */
}

/* 各項目のレイアウト */
.bus-zigzag-item {
    display: flex;
    align-items: center; /* 垂直方向中央揃え */
    justify-content: space-between;
}

/* 偶数番目（2番目の倉庫など）は左右反転 */
.bus-zigzag-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* 画像エリア */
.bus-z-img {
    width: 48%; /* 全体の約半分 */
}

.bus-z-img img {
    width: 100%;
    height: auto;
    display: block;
    /* 角丸などの装飾が必要なければ以下削除 */
    /* border-radius: 4px; */ 
}

/* テキストエリア */
.bus-z-content {
    width: 46%; /* テキスト側の幅 */
}

/* タイトル（下線付き） */
.bus-z-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 4px solid #009FE8; /* 青い太めの下線 */
    padding-bottom: 5px;
    font-family: "游ゴシック", YuGothic, sans-serif;
}

/* サブタイトル（キャッチコピー） */
.bus-z-sub {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

/* 説明文 */
.bus-z-desc {
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: justify;
    font-weight: 500;
}


/* レスポンシブ対応 (スマホ) */
@media screen and (max-width: 860px) {
    .sec-top04 {
        padding-bottom: 60px;
    }

    .business-list-zigzag {
        gap: 50px;
    }

    .bus-zigzag-item {
        flex-direction: column; /* 縦並び */
    }
    
    /* スマホでは反転せず、すべて 画像→テキスト の順にする */
    .bus-zigzag-item:nth-child(even) {
        flex-direction: column;
    }

    .bus-z-img {
        width: 100%;
        margin-bottom: 25px;
    }

    .bus-z-content {
        width: 100%;
    }
    
    .bus-z-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .bus-z-sub {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

/* -------------------------------------------------------
   sec-top05: お知らせ
   ------------------------------------------------------- */
.sec-top05 {
    width: 100%;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* 背景画像エリア */
.top05-bg-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.top05-bg-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 白いオーバーレイ（フィルター） */
.top05-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background-color: #fff;  白色の膜 */
/*    opacity: 0.85;  【調整可】 透過度 (0.0〜1.0) */
}

/* コンテンツエリア */
.top05-content {
    position: relative;
    z-index: 2; /* 背景より手前に表示 */
}

/* ニュースリスト */
.news-list {
    max-width: 900px; /* 横幅を広げすぎない */
    margin: 0 auto 50px;
    border-top: 1px dotted #ccc; /* 一番上の線 */
}

.news-item {
    border-bottom: 1px dotted #ccc; /* 区切り線 */
    transition: background-color 0.3s;
}

.news-item:hover {
    background-color: rgba(255, 255, 255, 0.6); /* ホバー時に少し白く光る */
}

.news-link {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    text-decoration: none;
    color: #333;
}

.news-date {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #555;
    font-size: 0.95rem;
    width: 120px; /* 日付の幅を固定 */
    flex-shrink: 0; /* 幅を縮めない */
}

.news-title {
    font-size: 1.0rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* 1行で表示（好みで削除可） */
    width: 100%;
}

/* 一覧へボタン */
.news-btn-area {
    text-align: center;
}

.btn-pill {
    display: inline-block;
    padding: 12px 60px;
    border: 1px solid #999;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s;
    font-size: 0.9rem;
    position: relative;
}

/* 矢印アイコン（CSSで作る） */
.btn-pill::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 1px;
    transition: all 0.3s;
}

.btn-pill:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.btn-pill:hover::after {
    border-color: #fff;
    transform: rotate(45deg) translate(2px, -2px); /* 斜め上に少し動く */
}


/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
    .sec-top05 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .news-link {
        flex-direction: column; /* 縦並び */
        align-items: flex-start;
        padding: 15px 5px;
    }

    .news-date {
        width: 100%;
        margin-bottom: 5px;
        font-size: 0.85rem;
        color: #777;
    }

    .news-title {
        white-space: normal; /* スマホでは折り返す */
        font-size: 0.95rem;
    }
}

/* =======================================================
   フッター (Footer)
   ======================================================= */
.site-footer {
    background-color: #fff;
    border-top: 1px solid #eee; /* コンテンツとの区切り線 */
    padding-top: 60px;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
}

/* 左側：会社情報 */
.footer-info {
    width: 35%;
}

.footer-logo img {
    width: 200px; /* ロゴサイズ調整 */
    height: auto;
    margin-bottom: 20px;
}

.footer-address p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-address .tel {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #333;
}

/* 右側：リンクメニュー */
.footer-links {
    width: 60%;
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    gap: 50px; /* カラム間の隙間 */
}

.footer-col {
    /* カラムごとの設定 */
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
    padding-left: 12px; /* ドット用の余白 */
}

/* リンク頭のドット装飾 */
.footer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.footer-nav a:hover {
    color: #0056b3; /* ブランドカラー */
}

.footer-nav a:hover::before {
    background-color: #0056b3;
}

/* コピーライト */
.footer-copyright {
    border-top: 1px solid #eee;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    font-size: 11px;
    color: #999;
    margin-bottom: 0;
    font-family: Helvetica, Arial, sans-serif;
}

/* ページトップボタン調整 (既存JS用) */
#page-top {
    bottom: 20px;
    right: 20px;
}
#page-top a {
    background: #333; /* 色を合わせる */
    border-radius: 50%;
}


/* レスポンシブ対応 (スマホ) */
@media screen and (max-width: 860px) {
    .footer-inner {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .footer-info {
        width: 100%;
        margin-bottom: 40px;
        text-align: center; /* 中央揃え */
    }
    
    .footer-logo img {
        margin: 0 auto 20px; /* ロゴ中央 */
    }

    .footer-links {
        width: 100%;
        flex-direction: column; /* 縦並び */
        gap: 0;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    .footer-nav a {
        padding-left: 0; /* 中央揃えなのでドット用余白削除 */
        display: block;
        padding: 5px 0;
    }
    
    .footer-nav a::before {
        display: none; /* ドット非表示 */
    }
}

/* =======================================================
   下層ページ共通スタイル (WordPress固定ページ用)
   ======================================================= */

/* =======================================================
   サブページMV（モダン・スプリット型）
   ======================================================= */
.split-mv {
    display: flex;
    width: 100%;
    height: 350px; /* PCでの高さ */
    margin-bottom: 80px;
    background-color: #0056b3; /* ブランドブルー */
}

/* 左側：テキストエリア */
.split-mv-text {
    width: 40%; /* 左側4割 */
    background-color: #0056b3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 装飾：斜めの切り込み（アクセント） */
.split-mv-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 350px 80px; /* 斜めの角度調整 */
    border-color: transparent transparent transparent #0056b3; /* 右側の画像を斜めに隠す */
    z-index: 2;
    /* 右の画像エリアに少し食い込ませるための調整 */
    transform: translateX(100%); 
}

.split-text-inner {
    position: relative;
    z-index: 3;
    text-align: left; /* 左揃えで知的さを演出 */
}

.split-en {
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
}

.split-jp {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #fff;
}

.split-line {
    width: 60px;
    height: 4px;
    background-color: #FFF; 
}

/* 右側：画像エリア */
.split-mv-img {
    width: 60%; /* 右側6割 */
    background-position: center;
    background-size: cover;
    position: relative;
}

/* レスポンシブ (SP) */
@media screen and (max-width: 860px) {
    .split-mv {
        height: auto;
        flex-direction: column-reverse; /* スマホでは画像を上に、文字を下に */
        margin-bottom: 50px;
    }

    .split-mv-img {
        width: 100%;
        height: 200px;
    }

    .split-mv-text {
        width: 100%;
        height: 120px; /* テキストエリアの高さ */
        /* 斜め装飾を解除 */
    }
    .split-mv-text::after {
        display: none;
    }

    .split-text-inner {
        text-align: center; /* スマホは中央揃え */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .split-en {
        font-size: 2.2rem;
    }
    
    .split-jp {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .split-line {
        width: 40px;
        height: 3px;
    }
}

/* セクション設定 */
.sub-section {
    margin-bottom: 100px;
}
.bg-gray {
    background-color: #f9f9f9;
    padding: 60px 40px;
    border-radius: 8px;
}

/* 画像とテキストの2カラムレイアウト */
.sub-cols-img-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.sub-cols-img-text.reverse {
    flex-direction: row-reverse;
}
.sub-col-text {
    width: 50%;
}
.sub-col-img {
    width: 45%;
}
.sub-col-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 10px 0 #e6f0fa;
    display: block; /* 余白除去 */
}

/* 見出し・テキスト */
.sub-sec-title {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #333;
    font-family: "游明朝", "Yu Mincho", serif;
}
.lead-text {
    font-size: 1.7rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 25px;
    padding-left: 15px;
/*    border-left: 4px solid #0056b3; */
    line-height: 1.5;
}

/* 代表挨拶 */
.msg-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 25px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}
.msg-sign {
    margin-top: 30px;
    text-align: right;
}
.msg-sign .post {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}
.msg-sign .name {
    font-size: 1.5rem;
    font-weight: bold;
}

/* 会社概要テーブル */
.company-profile {
    border-top: 1px solid #ddd;
    max-width: 900px;
    margin: 0 auto;
}
.company-profile dl {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0; /* WPのpタグ対策 */
}
.company-profile dt {
    width: 25%;
    background: #e6f0fa;
    padding: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.company-profile dd {
    width: 75%;
    padding: 20px;
    background: #fff;
    line-height: 1.8;
    margin: 0; /* リセット */
}

/* レスポンシブ (SP) */
@media screen and (max-width: 860px) {
    .sub-mv { 
        height: 200px; 
        margin-bottom: 50px;
    }
    .sub-mv-title { font-size: 2rem; }
    
    .sub-section { margin-bottom: 60px; }
    .bg-gray { padding: 30px 20px; }

    .sub-cols-img-text {
        flex-direction: column;
        gap: 30px;
        display: block; /* Flex解除でWP自動整形崩れ防止 */
    }
    .sub-cols-img-text.reverse {
        flex-direction: column;
    }
    .sub-col-text, .sub-col-img {
        width: 100%;
        margin-bottom: 30px;
    }
    .sub-col-img img {
        box-shadow: 5px 5px 0 #e6f0fa;
    }
    
    .sub-sec-title { font-size: 1.6rem; }
    
    .company-profile dl {
        display: block; /* Flex解除 */
    }
    .company-profile dt {
        width: 100%;
        padding: 10px 15px;
    }
    .company-profile dd {
        width: 100%;
        padding: 15px;
    }
}

/* =======================================================
   アクセスマップ (全幅表示・横延び)
   ======================================================= */
.access-map-full {
    width: 100vw;  /* 画面幅いっぱい */
    height: 600px; /* 高さ600px固定 */
    
    /* 親要素の幅(1280pxなど)を無視して画面端まで広げる魔法の記述 */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.access-map-full iframe {
    width: 100% !important; /* iframeの幅指定を上書き */
    height: 100% !important; /* iframeの高さを親に合わせる */
    display: block; /* 余計な隙間を消す */
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .access-map-full {
        height: 400px; /* スマホでは高さを少し抑える（お好みで600pxのままでもOK） */
    }
}

/* =======================================================
   沿革 (History)
   ======================================================= */
.history-area {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.history-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.history-row dt {
    width: 20%;
    padding: 20px;
    font-weight: bold;
    color: #0056b3;
    /* 年号を揃える */
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.history-row dd {
    width: 80%;
    padding: 20px;
    line-height: 1.8;
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .history-row {
        flex-direction: column;
    }
    .history-row dt {
        width: 100%;
        padding: 15px 15px 5px 15px; /* 下の余白を詰める */
        border-bottom: none;
    }
    .history-row dd {
        width: 100%;
        padding: 5px 15px 20px 15px; /* 上の余白を詰める */
    }
}

/* =======================================================
   経営理念・社訓 (Philosophy & Motto)
   ======================================================= */
.mind-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #ccc; /* 上に区切り線 */
}

.mind-row {
    margin-bottom: 40px;
}

/* 見出し（// アイコン付き） */
.mind-head {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0056b3; /* ブランドブルー */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mind-head::before {
    content: '//'; /* スラッシュアイコン */
    font-family: sans-serif;
    font-weight: 900;
    color: #ccc; /* 薄いグレー */
    font-size: 1.4rem;
    margin-right: 10px;
    letter-spacing: -3px; /* スラッシュの間隔を詰める */
    font-style: italic;
}

/* 経営理念リスト */
.mind-list {
    padding-left: 25px; /* 数字分のインデント */
    margin-bottom: 0;
}

.mind-list li {
    list-style-type: decimal; /* 数字リスト */
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
}

/* 社訓レイアウト */
.mind-motto {
    text-align: center;
    background-color: #f9f9f9; /* 少し背景色をつける */
    padding: 20px;
    border-radius: 4px;
}

.mind-motto p {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.1em; /* 文字間隔を広げて読みやすく */
}

.mind-motto p:last-child {
    margin-bottom: 0;
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .mind-head {
        font-size: 1.1rem;
    }
    .mind-list li {
        font-size: 0.9rem;
    }
    .mind-motto p {
        font-size: 0.95rem;
        text-align: left; /* スマホでは左寄せの方が見やすい場合も */
    }
}

/* =======================================================
   見出しデザインの刷新 (Modern Headings)
   ======================================================= */

/* 1. センター揃えの見出し（会社概要、アクセス、事業内容など）
   → 「文字は黒、下に青いアクセントライン」で統一 */
.sec-title,
.sec-title-blue,
.top03-title { /* 5つの強み等のタイトルも統一 */
    color: #222 !important; /* 文字色を濃いグレーで引き締める */
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.15em; /* 文字間隔を広げて高級感を出す */
    position: relative;
    display: inline-block;
    padding: 0 0 20px 0; /* 下に余白 */
    margin-bottom: 20px;
    border: none !important; /* 既存のボーダーを消す */
    background: none !important; /* 背景色があれば消す */
    box-shadow: none !important; /* 影があれば消す */
    font-family: "Noto Sans JP", sans-serif;
}

/* 下線のアニメーション風デザイン（中央に短い線） */
.sec-title::after,
.sec-title-blue::after,
.top03-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* 中央配置 */
    width: 60px; /* 線の長さ */
    height: 4px; /* 線の太さ */
    background-color: #0056b3; /* ブランドブルー */
    border-radius: 2px; /* 角を少し丸く */
}

/* 2. 左揃えの見出し（企業理念、メッセージなど）
   → 「左に太い青線」で力強く */
.sub-sec-title {
    color: #222;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    padding-left: 20px; /* 文字の左余白 */
/*    border-left: 6px solid #0056b3;  左側の青い太線 */
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}

.sub-sec-title.el1 {
    border-left: 6px solid #0056b3; 
}

/* 3. 小見出し（各セクション内のタイトルなど）
   → 「下線」を少し細くシンプルに */
.bus-z-title,
.msg-title {
    color: #222;
    border-bottom: 2px solid #0056b3 !important; /* 線の色をブランドカラーに統一 */
    padding-bottom: 10px;
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .sec-title,
    .sec-title-blue,
    .top03-title {
        font-size: 1.6rem;
    }
    
    .sub-sec-title {
        font-size: 1.5rem;
        padding-left: 15px;
        border-left-width: 4px;
    }
}

/* =======================================================
   事業内容ページ (Business Page)
   ======================================================= */

/* 1. 業務内容 (Service) */
.bus-dept-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 3px solid #e6f0fa;
    padding-bottom: 10px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.bus-dept-title span {
    font-size: 0.9rem;
    color: #0056b3;
    margin-left: 15px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.bus-list {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.bus-list li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #555;
}

.bus-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #f59e0b; /* オレンジ */
    font-weight: bold;
}

.bus-list li:last-child {
    margin-bottom: 0;
}

/* 2. 取扱商品 (Product Grid) */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.product-card {
    width: 48%; /* 2列表示 */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prod-img {
    width: 100%;
    height: 200px;
    background-color: #eee;
}

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

.prod-body {
    padding: 20px;
}

.prod-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 10px;
    border-left: 4px solid #f59e0b;
    padding-left: 10px;
}

.prod-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 3. 取扱メーカー (Maker List) */
.maker-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.maker-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
}

.maker-cat {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #0056b3;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.maker-names {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.note-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 20px;
}

/* CTAエリア */
.sub-cta-area {
    margin-top: 80px;
    background-color: #e6f0fa;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
}

.sub-cta-area p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.btn-primary {
    /* 既存のボタンクラスがあればそれを利用、なければ以下 */
    display: inline-block;
    background-color: #f59e0b;
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 3px 0 #d98a00;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(2px);
    box-shadow: none;
    background-color: #e08e00;
    color: #fff;
}

/* レスポンシブ (SP) */
@media screen and (max-width: 860px) {
    /* 業務内容 */
    .bus-dept-title {
        font-size: 1.3rem;
    }
    
    /* 商品カード */
    .product-grid {
        flex-direction: column;
        gap: 20px;
    }
    .product-card {
        width: 100%;
    }
    
    /* メーカー */
    .maker-box {
        padding: 15px;
    }
    .maker-names {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .sub-cta-area p {
        font-size: 1rem;
    }
}

/* =======================================================
   事業内容ページ：修正用CSS
   ======================================================= */

/* 1. イントロダクション見出し（左線を消して中央揃えに） */
.sec-title-intro {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
    font-family: "Noto Sans JP", sans-serif;
    /* ボーダーをつけない */
    border: none;
}

/* 2. 誘導ボタン（デザイン修正） */
.bus-navi-area {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.bus-navi-btn {
    display: block; /* ブロック要素にする */
    width: 300px;
    height: 100px;
    background-color: #fff;
    border: 2px solid #0056b3; /* ブランドブルーの枠線 */
    border-radius: 8px;
    text-decoration: none !important; /* 下線を消す */
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    position: relative;
    
    /* 内部の中央揃え */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bus-navi-btn .en {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.05em;
    display: block;
    line-height: 1.2;
}

.bus-navi-btn .jp {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    display: block;
    margin-top: 5px;
}

/* 矢印（CSSで描画） */
.bus-navi-btn::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #0056b3;
    border-right: 2px solid #0056b3;
    transition: all 0.3s;
}

/* ホバー時の動き */
.bus-navi-btn:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.2);
}

.bus-navi-btn:hover .en,
.bus-navi-btn:hover .jp {
    color: #fff;
}

.bus-navi-btn:hover::after {
    border-color: #fff;
    right: 15px;
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .sec-title-intro {
        font-size: 1.6rem;
    }

    .bus-navi-area {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .bus-navi-btn {
        width: 100%;
        max-width: 350px;
        height: 90px;
    }
}

/* =======================================================
   取扱商品ページ (Lineup Grid)
   ======================================================= */

/* コンテナ：Masonry風に並べる準備 */
.lineup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* カード間の隙間 */
    align-items: flex-start; /* 高さが違っても上揃え */
    margin-bottom: 80px;
}

/* 各カードスタイル */
.lineup-card {
    width: 48%; /* 2列表示 */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08); /* ふんわりした影 */
    overflow: hidden;
    margin-bottom: 0; /* gapで調整するためmargin不要 */
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.lineup-card:hover {
    transform: translateY(-5px); /* ホバーで少し浮く */
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* 画像エリア */
.lineup-img {
    width: 100%;
    height: 370px; /* 高さを固定 */
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.lineup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいにトリミング */
    transition: transform 0.5s;
}

.lineup-card:hover .lineup-img img {
    transform: scale(1.05); /* ホバーでズーム */
}

/* テキストエリア */
.lineup-body {
    padding: 25px;
}

/* カテゴリタイトル */
.lineup-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e6f0fa;
    display: flex;
    align-items: center;
}

/* タイトル前のアイコン（四角） */
.lineup-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f59e0b; /* オレンジ */
    margin-right: 10px;
}

/* 商品リスト */
.lineup-items {
    margin: 0;
    padding: 0;
}

.lineup-items li {
    list-style: none;
    font-size: 0.95rem;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px dashed #eee; /* 点線区切り */
    line-height: 1.5;
}

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

/* レスポンシブ (SP) */
@media screen and (max-width: 860px) {
    .lineup-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .lineup-card {
        width: 100%; /* 1列表示 */
    }
    
    .lineup-img {
        height: 150px;
    }
}

/* =======================================================
   取扱メーカーページ (Maker List)
   ======================================================= */

/* 五十音インデックス */
.maker-index-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.maker-index-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    font-family: "游明朝", "Yu Mincho", serif;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.maker-index-nav a:hover {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
    transform: translateY(-2px);
}

/* メーカーグリッド */
.maker-grid {
    column-count: 2; /* PCでは2列に流し込み（Masonry風） */
    column-gap: 30px;
}

.maker-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px; /* カード下の余白 */
    overflow: hidden;
    break-inside: avoid; /* カードが途中で切れないようにする */
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.maker-head {
    background-color: #0056b3;
    color: #fff;
    font-size: 1.4rem;
    padding: 15px 20px;
    margin: 0;
    font-family: "游明朝", "Yu Mincho", serif;
    font-weight: bold;
}

.maker-list {
    padding: 20px;
    margin: 0;
}

.maker-list li {
    list-style: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.maker-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.maker-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
}

.maker-list a:hover {
    color: #0056b3;
}

/* 外部リンクアイコン */
.ext-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

/* リンクがないテキストだけの場合 */
.maker-list li {
    font-size: 0.95rem;
}

/* レスポンシブ (SP) */
@media screen and (max-width: 860px) {
    .maker-grid {
        column-count: 1; /* スマホでは1列 */
    }
    
    .maker-index-nav a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* =======================================================
   実績・事例ページ (Works Timeline)
   ======================================================= */

.works-timeline-container {
    max-width: 800px;
    margin: 0 auto 80px auto;
    position: relative;
    padding-left: 30px; /* 左側の線のスペース */
}

/* タイムラインの縦線 */
.works-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px; /* 線の位置 */
    width: 2px;
    height: 100%;
    background-color: #e0e0e0;
}

/* 各アイテム */
.work-item {
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.work-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #d0e0f0;
}

/* タイムラインの丸ポチ */
.work-item::before {
    content: '';
    position: absolute;
    top: 25px; /* 丸の位置（高さ） */
    left: -28px; /* 本体の外側へ */
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 3px solid #0056b3; /* ブランドブルー */
    border-radius: 50%;
    z-index: 2;
}

/* 日付 */
.work-date {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* カテゴリタグ共通 */
.work-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* カテゴリ色分け */
.cat-delivery { background-color: #0056b3; } /* 納品：青 */
.cat-urgent   { background-color: #e63946; } /* 緊急：赤 */
.cat-proposal { background-color: #f59e0b; } /* 提案：オレンジ */
.cat-check    { background-color: #2a9d8f; } /* 在庫・その他：緑 */

/* テキスト本文 */
.work-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
    font-weight: 500;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
    .works-timeline-container {
        padding-left: 20px;
    }
    
    .works-timeline-container::before {
        left: 0;
    }
    
    .work-item::before {
        left: -27px;
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
    
    .work-item {
        padding: 15px;
    }
    
    .work-date {
        font-size: 0.8rem;
    }
    
    .work-cat {
        font-size: 0.7rem;
        padding: 2px 8px;
        margin-left: 5px;
    }
    
    .work-text {
        font-size: 0.95rem;
    }
}

/* =======================================================
   採用情報ページ (Recruit Page)
   ======================================================= */

/* 1. ポイントカード */
.recruit-points {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.point-card {
    flex: 1;
    background-color: #f4f8fc;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

.point-card .num {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(0, 86, 179, 0.1);
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.point-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 15px;
}

.point-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

/* 2. 職種見出し */
.recruit-job-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    padding: 10px 20px;
    background-color: #eee;
    border-left: 5px solid #0056b3;
    margin-bottom: 0;
    max-width: 900px;
    margin: 0 auto 0;
}

/* 3. 選考フロー */
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    flex: 1;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px 10px;
    border-radius: 4px;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '▶';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ddd;
    font-size: 12px;
}

.step-num {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
    color: #888;
    margin-bottom: 5px;
}

.flow-step p {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
}

/* 4. 特殊装飾マルチクラス (Element Style) */
/* 備考欄などを少し目立たせたい場合に使用 */
.company-profile dl.el1 {
    background-color: #fff9e6; /* 薄いイエロー背景 */
}
.company-profile dl.el1 dt {
    background-color: #ffecd1;
    color: #d97706; /* オレンジ系の文字 */
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
    .recruit-points, .flow-container {
        flex-direction: column;
        gap: 20px;
    }
    .flow-step:not(:last-child)::after {
        content: '▼';
        right: auto;
        left: 50%;
        bottom: -15px;
        top: auto;
        transform: translateX(-50%);
    }
}