@charset "UTF-8";

/* ==============================================
   Variables (Root)
=============================================== */
:root {
    /* Colors */
    --color-primary: #f8b62d; /* メインのオレンジ/イエロー */
    --color-primary-light: #fff8e1; /* 薄い背景用 */
    --color-accent: #f39c12; /* 濃いオレンジ */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg: #fffff;

    /* Fonts */
    --font-base: "Noto Sans JP", sans-serif;
    --font-script: "Dancing Script", cursive;

    /* Layout */
    --width-container: 1200px;
    --spacing-section: 100px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
}

/* ==============================================
   Reset & Base
=============================================== */
html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ==============================================
   Common Components
=============================================== */
/* Container */
.section__container,
.hero__container,
.header__inner {
    width: 90%;
    max-width: var(--width-container);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 6px rgba(243, 156, 18, 0.3);
}

.btn--white {
    background-color: var(--color-white);
    color: var(--color-accent);
}

/* Titles */
.section {
    padding: var(--spacing-section) 0;
}

/* ネストされた.sectionの上の余白を削除 */
.section .section {
    padding-top: 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section__subtitle-en {
    display: block;
    font-family: var(--font-base); /* デザインに合わせて調整。英字だがブロック体 */
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.section__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.text-highlight {
    background: linear-gradient(transparent 60%, #ffe082 60%);
    padding: 0 0.2em;
}

.section__description {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.section__btn-wrapper {
    text-align: center;
    margin-top: var(--spacing-md);
}


/* ==============================================
   Header
=============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    max-width: none;
    margin: 0 auto;
    
    padding: 15px 40px;
}

.header__logo {
    padding: 10px 20px;
}

.header__logo img {
    height: 50px; 
    width: auto;
    vertical-align: bottom;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px; 
}

.header__list {
    display: flex;
    gap: 30px; 
}

.header__link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap; 
}

/* お問い合わせボタン */
.header__cta {
    background-color: var(--color-accent); 
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px; 
    transition: background-color 0.3s, opacity 0.3s;
}

.header__cta:hover {
    background-color: #e67e22; 
    opacity: 1; 
}

/* ==============================================
   Hero Section
=============================================== */
/* ==============================================
   Hero Section (Updated for SP layout)
=============================================== */
.hero {
    position: relative;
    /* ヘッダーの高さ分を確保しつつ、MV全体の余白調整 */
    padding-top: 140px; 
    padding-bottom: 50px;
    overflow: hidden;
    min-height: 700px;
}

.hero__container {
    position: relative;
    height: 600px;
    /* PCではFlexboxを使わず絶対配置でレイアウトする */
}

/* --- PC用レイアウト設定 --- */

/* 1. 背景の楕円形エリア */
.hero__bg-oval {
    position: absolute;
    top: -30px;
    left: -200px;
    width: 70%;
    height: 580px;
    background-color: var(--color-primary);
    border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__landscape-img {
    width: 90%;
    height: 90%;
    border-radius: inherit;
    object-fit: cover;
    transform: translateX(-10px);
}

/* 2. 英語＆日本語テキスト（PCでは同じ位置にまとめる） */
.hero__text-en,
.hero__text-jp {
    position: absolute;
    top: 50px;
    right: 0;
    width: 40%;
    z-index: 2;
    text-align: left;
}

/* 日本語は英語の下に配置されるよう位置を調整 */
.hero__text-jp {
    top: 180px; /* 英語タイトルの高さ分ずらす */
}

.hero__catch-en {
    font-family: var(--font-script);
    font-size: 4.5rem;
    margin-bottom: 0;
    line-height: 1.1;
}

.hero__catch-jp {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 0;
}

/* 3. バス画像 */
.hero__front-visual {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 60%;
    z-index: 3;
}

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


/* ==============================================
   SP Responsive Styles (Header & Hero)
   ここからスマホ用スタイル
=============================================== */
/* ハンバーガーボタン（PCでは非表示） */
.header__hamburger {
    display: none; /* PCでは隠す */
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    padding: 0;
    z-index: 1001;
}
.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.header__hamburger span:nth-child(1) { top: 16px; }
.header__hamburger span:nth-child(2) { top: 24px; opacity: 1; }
.header__hamburger span:nth-child(3) { top: 32px; }

.header__hamburger.is-active span:nth-child(1) {
    top: 24px; /* 中央に移動 */
    transform: translateX(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) { 
    opacity: 0; /* 真ん中の線は消す */
}
.header__hamburger.is-active span:nth-child(3) { 
    top: 24px; /* 中央に移動 */
    transform: translateX(-50%) rotate(-45deg);
}

/* --- スマホメニュー本体 --- */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* 全画面 */
    background-color: #fcf9ee; /* 画像のような薄いベージュ */
    z-index: 1000; /* ハンバーガーボタン(1001)より下、ヘッダーより上 */
    
    /* 初期状態は隠す */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: center; /* 上下中央寄せ */
    align-items: center;
}

/* クラス is-active が付いたら表示 */
.sp-nav.is-active {
    opacity: 1;
    pointer-events: auto;
}

.sp-nav__inner {
    width: 100%;
    height: 100%;
    padding: 80px 20px 40px; /* ヘッダー分空ける */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto; /* 画面が小さい時にスクロール可能に */
}

/* 左上のロゴ（メニュー内） */
.sp-nav__logo {
    position: absolute;
    top: 20px; 
    left: 40px;
}
.sp-nav__logo img {
    height: 50px; 
    width: auto;
}

/* メニューリスト */
.sp-nav__list {
    margin-top: auto; /* 上下の余白バランス調整 */
    margin-bottom: auto;
    text-align: center;
    width: 100%;
}

.sp-nav__item {
    margin-bottom: 30px; /* 各項目の間隔 */
}

.sp-nav__link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    letter-spacing: 0.05em;
}

/* CTAボタンエリア */
.sp-nav__cta {
    margin-top: 20px;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}

.sp-nav__btn {
    width: 100%;
    max-width: 320px;
    padding: 1.2rem;
    font-size: 1rem;
    gap: 10px;
    /* 影を消す場合は box-shadow: none; */
}

/* --- PC表示時（961px以上）は強制非表示 --- */
@media (min-width: 961px) {
    .sp-nav {
        display: none !important;
    }
}

/* --- 960px以下 (SP/Tablet) のスタイル --- */
@media (max-width: 960px) {
    
    /* === Header === */
    .header__inner {
        padding: 10px 20px;
    }
    .header__nav { display: none; } /* PCナビ非表示 */
    .header__hamburger { display: block; } /* ハンバーガー表示 */


    /* === Hero Section (スマホレイアウト) === */
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }

    /* コンテナをFlexboxにして縦積みにする */
    .hero__container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* --- orderプロパティで並び順を指定 --- */
    
    /* 順序1: 英語キャッチコピー */
    .hero__text-en {
        position: static; /* 絶対配置解除 */
        width: 100%;
        text-align: center;
        order: 1;
        margin-bottom: 10px;
        padding: 0;
    }
    .hero__catch-en {
        font-size: 3.2rem;
    }

    /* 順序2: 背景の楕円画像 */
    .hero__bg-oval {
        position: relative;
        top: 0; left: 0;
        order: 2;
        width: 120%; /* 画面より広く */
        margin-left: -10%;
        height: 300px;
        border-radius: 50%; /* 綺麗な楕円に */
        background-color: var(--color-primary);
        margin-bottom: -80px; /* 下のバスと重ねる */
        z-index: 1;
    }
    .hero__landscape-img {
        width: 96%; height: 94%;
        transform: none;
        margin: auto;
        position: absolute; top: 0; bottom: 0; left: 0; right: 0;
    }

    /* 順序3: バス画像 */
    .hero__front-visual {
        position: relative;
        bottom: 0; right: 0;
        width: 100%;
        max-width: 450px;
        order: 3;
        z-index: 2;
        margin-bottom: 30px; /* 下のテキストとの間隔 */
    }

    /* 順序4: 日本語テキスト (追加) */
    .hero__text-jp {
        position: static;
        width: 100%;
        text-align: left; /* 左揃え */
        order: 4;
        top: auto; /* PCの設定をリセット */
        padding: 0 10px; /* 左右に少し余白 */
    }
    .hero__catch-jp {
        font-size: 0.9rem;
        line-height: 1.8;
        color: var(--color-text); /* 黒文字 */
    }
}

/* ==============================================
   Concept Section (Updated)
=============================================== */
.concept {
    position: relative;
    padding: 100px 0;
    overflow: hidden; /* 背景画像のはみ出しを隠す */
    background-color: var(--color-white); /* 以前のパターン背景を削除し白背景に */
}

/* --- 背景装飾エリア --- */
.concept__bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* コンテンツより後ろ */
    pointer-events: none; /* クリックなどを邪魔しないように */
}

.concept__bg-img {
    position: absolute;
    opacity: 0.6; /* 少し薄く表示（画像の濃度に合わせて調整可） */
}

.concept__bg-left {
    top: 100px;
    left: -100px; /* 左端からはみ出す配置 */
    width: 400px;
}

.concept__bg-right {
    top: -50px;
    right: -150px; /* 右上からはみ出す配置 */
    width: 600px;
}

/* 画像自体のサイズ調整 */
.concept__bg-img img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
}


/* --- コンテンツエリア --- */
.concept .section__container {
    position: relative;
    z-index: 1; /* 背景より手前 */
}

/* リード文（さまざまな旅路へ〜） */
.concept__lead {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* 本文テキスト調整 */
.concept .section__description {
    font-size: 0.95rem;
    line-height: 2.2; /* 行間をゆったりと */
    margin-bottom: 3rem;
}

/* --- 画像グリッド --- */
.concept__grid {
    display: flex;
    justify-content: center;
    gap: 40px; /* 間隔を少し広めに */
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.concept__item {
    width: 320px; /* カード幅 */
    text-align: center;
}

.concept__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px; /* 丸抜きではなく角丸四角形に変更（画像参照） */
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: none; /* 白枠削除 */
}

.concept__caption {
    font-weight: 700;
    font-size: 0.9rem;
}


/* --- ボタン調整 --- */
.btn__icon-arrow {
    margin-left: 10px;
    width: 8px;
    height: 12px;
    fill: currentColor;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .concept__bg-img {
        display: none; /* スマホでは非表示 */
    }
    
    .concept__image {
        height: 200px;
    }
    
    .concept__lead {
        font-size: 1rem;
    }
}

/* ==============================================
   Lineup Section (Infinite Scroll)
=============================================== */
.lineup {
    width: 100%;
    overflow: hidden; /* はみ出した部分を隠す */
    padding: 60px 0;
    background-color: var(--color-bg);
}

.lineup__track {
    display: flex;
    width: max-content; /* 中身の幅に合わせる */
    /* アニメーション設定：名前 時間 進行度 繰り返し */
    animation: infinite-scroll 40s linear infinite;
}

.lineup__track img {
    width: 400px;  /* 画像の幅 */
    height: 250px; /* 画像の高さ */
    object-fit: cover;
    margin-right: 20px; /* 画像間の余白 */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* アニメーション定義 */
@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* 全体の半分の幅（5枚分＋余白分）だけ移動したら0に戻る */
        transform: translateX(-50%);
    }
}

/* スマホ対応：画像を少し小さくして速度調整 */
@media (max-width: 768px) {
    .lineup__track img {
        width: 300px;
        height: 180px;
        margin-right: 15px;
    }
    .lineup__track {
        /* スマホでは少し速く感じるかもしれないので調整してもOK */
        animation-duration: 25s;
    }
}
/* ==============================================
   Tour Section (Updated)
=============================================== */
.tour {
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
    background-color: var(--color-white);
    overflow: hidden;
}

/* --- コンテナ設定 --- */
.tour .section__container {
    position: relative; /* ここを基準点にする */
    z-index: 1;
}

/* --- 背景装飾（ドット） --- */
.tour__bg-layer {
    position: absolute;
    /* コンテナの右上を基準に配置 */
    top: -50px;      /* 上にはみ出させる調整 */
    right: 0;        /* コンテナの右端に合わせる */
    width: 500px;    /* 画像サイズ */
    z-index: -1;     /* テキストの後ろに配置 */
    pointer-events: none;
}

.tour__bg-dots {
    width: 100%;
    height: auto;
    opacity: 0.6;
}

/* --- コンテンツエリア --- */
.tour__content {
    text-align: left;
    max-width: 600px; /* テキスト幅 */
    /* 背景画像と重なっても文字が読めるようにz-index等は親に依存 */
}

.tour .section__title {
    margin-bottom: 2rem;
}

.tour .section__description {
    text-align: left;
    margin-bottom: 2.5rem;
}

.tour__btn-wrapper {
    text-align: left;
}

/* --- 下部フルワイド画像 --- */
.tour__visual-full {
    position: relative;
    width: 100%;
    margin-top: 60px;
    line-height: 0;
    z-index: 1;
}

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

/* レスポンシブ対応 */
@media (max-width: 960px) {
    /* SP・タブレット時は配置を調整 */
    .tour__bg-layer {
        width: 300px;
        top: -30px;
        right: -50px; /* 画面端からは少しはみ出させる */
        opacity: 0.3;
    }

    .tour__content {
        max-width: 100%;
        text-align: center;
    }

    .tour .section__description,
    .tour__btn-wrapper {
        text-align: center;
    }
}

/* ==============================================
   Links Section (Cards)
=============================================== */
.links {
    position: relative;
    background-color: #f3f0e8; /* 少しベージュ */
    margin-top: -30px;
    z-index: 0;
}

.links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.links__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.links__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.links__card:hover .links__bg {
    transform: scale(1.1);
}

.links__overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3); /* 文字を読みやすく */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.links__en {
    font-family: var(--font-base);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.links__title {
    font-size: 1.5rem;
    font-weight: 700;
}


/* ==============================================
   Recruit Section (Updated)
=============================================== */
.recruit {
    background-color: var(--color-accent); /* オレンジ背景 */
    color: var(--color-white);
    padding: 80px 0; /* 上下の余白 */
    overflow: hidden;
}

.recruit__container {
    display: flex;
    align-items: center;
    gap: 60px; /* 画像とテキストの間隔 */
}

/* --- 左側の画像 --- */
.recruit__image {
    flex: 1;
}

.recruit__img-rounded {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* 角丸設定：画像の通り大きめに */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* ほんのり影を追加 */
}

/* --- 右側のテキストコンテンツ --- */
.recruit__content {
    flex: 1;
    text-align: left; /* 左揃え */
}

.recruit__subtitle {
    display: block;
    font-family: var(--font-base); /* 英字もサンセリフで */
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 700;
    opacity: 0.9;
}

.recruit__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* キャッチコピー（バス運転士を募集中！） */
.recruit__catch {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.recruit__text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* --- ボタン調整 --- */
.recruit__btn {
    position: relative; /* アイコンを絶対配置するための基準点 */
    display: inline-flex;
    justify-content: center; /* テキストを中央寄せにする */
    align-items: center;
    min-width: 280px;
    padding: 1.2rem 2rem;
    border-radius: 50px; /* 念のため再定義 */
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* アイコンの色：currentColorで親の文字色（オレンジ）を継承 */
.btn__icon-arrow-color {
    position: absolute; /* テキストの流れから切り離す */
    right: 2rem;        /* ボタンの右パディングと同じ位置に配置 */
    top: 50%;           /* 上下中央の基準位置 */
    transform: translateY(-50%); /* 正確に上下中央に合わせる */
    
    width: 8px;
    height: 12px;
    fill: currentColor;
}

/* レスポンシブ対応 */
@media (max-width: 960px) {
    .recruit__container {
        flex-direction: column;
        gap: 40px;
    }

    .recruit__content {
        text-align: center;
        width: 100%;
    }

    .recruit__title {
        margin-bottom: 1.5rem;
    }
    
    .recruit__catch {
        font-size: 1.5rem;
    }
    
    /* スマホでは画像を少し小さく見せるなどの調整が必要ならここへ */
    .recruit__img-rounded {
        max-width: 100%;
    }
}

/* ==============================================
   News Section (Updated Layout)
=============================================== */
.news__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px; /* 左右のカラム間の余白 */
}

/* --- 左側：サイドバー（タイトル＆ボタン） --- */
.news__sidebar {
    width: 25%; /* 左側の幅 */
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左寄せ */
}

.news__header-group {
    margin-bottom: 20px;
}

/* 左側のタイトル下の余白調整 */
.news__sidebar .section__title {
    margin-bottom: 0;
}

/* ボタン調整 */
.news__btn {
    padding: 1rem 2.5rem; /* サイズ調整 */
}
.news__btn .btn__icon-arrow {
    margin-left: 10px;
    width: 8px;
    height: 12px;
}


/* --- 右側：ニュースリスト --- */
.news__main {
    flex: 1; /* 残りの幅をすべて使う */
    width: 100%;
}

.news__list {
    width: 100%;
    border-top: 1px solid #e0e0e0; /* リスト全体の上線 */
}

.news__item {
    border-bottom: 1px solid #e0e0e0; /* 各アイテムの下線 */
}

.news__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0; /* 上下の余白 */
    width: 100%;
    transition: opacity 0.3s;
}

.news__link:hover {
    opacity: 0.7;
}

/* テキスト情報エリア */
.news__info {
    display: flex;
    flex-direction: column; /* 日付を上に、テキストを下に */
    gap: 10px;
    padding-right: 20px;
    flex: 1;
    overflow: hidden; /* テキスト省略用 */
}

.news__date {
    font-family: var(--font-base); /* 英数字フォント */
    color: #999;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.news__text {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    
    /* 長すぎるテキストを「...」で省略する設定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 右端の矢印アイコン（丸） */
.news__arrow-circle {
    width: 30px;
    height: 30px;
    background-color: #f2f2f2; /* 薄いグレーの背景 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* 縮まないように固定 */
}


/* レスポンシブ対応 */
@media (max-width: 960px) {
    .news__container {
        flex-direction: column; /* 縦並びに変更 */
        gap: 30px;
    }

    .news__sidebar {
        width: 100%;
        display: contents; /* 子要素を直接flexコンテナの子として扱う */
    }

    .news__header-group {
        margin-bottom: 0;
        order: 1; /* タイトルを最初に配置 */
        width: 100%;
    }

    /* ボタンを記事一覧の下に移動 */
    .news__btn {
        order: 3; /* ボタンを記事一覧の下に配置 */
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        width: 80%;
        justify-content: center;
        align-items: center;
    }

    /* ボタンをnews__mainの下に配置 */
    .news__main {
        order: 2;
    }

    /* リストの調整 */
    .news__text {
        white-space: normal; /* スマホでは改行させる */
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 2行まで表示 */
        -webkit-box-orient: vertical;
    }
}

@media (max-width: 600px) {
    /* さらに小さい画面 */
    .news__btn {
        width: 80%;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* ==============================================
   Updated Footer & Contact CTA
=============================================== */

/* --- Contact CTA Area (Bus Background) --- */
.footer-cta {
    position: relative;
    padding: 100px 0;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.footer-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* 文字を読みやすくするために少し暗く */
}

.footer-cta__en {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
}

.footer-cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-cta__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
}

.footer-cta__cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-cta__card {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    padding: 40px 20px;
    width: 100%;
    max-width: 480px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-cta__card-label {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-cta__tel-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.footer-cta__tel-row svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.footer-cta__tel {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.footer-cta__hours {
    font-size: 0.9rem;
    font-weight: 700;
}

/* メールボタン専用スタイル */
.btn--orange-cta {
    background-color: var(--color-accent);
    color: #fff;
    width: 100%;
    max-width: 320px;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn--orange-cta:hover {
    opacity: 0.9;
}

.btn--orange-cta svg {
    width: 20px;
    height: 16px;
    fill: white;
}

/* --- Main Footer (White Area) --- */
.footer-main {
    background-color: var(--color-white);
    padding: 60px 0 80px;
    position: relative;
}

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

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

.footer-main__address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-main__nav {
    flex: 1;
    max-width: 750px;
    padding-left: 50px;
}

.footer-main__links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 35px;
}

.footer-main__links a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer-main__policy {
    font-size: 0.85rem;
    color: var(--color-text);
}

.footer-main__policy a {
    text-decoration: none;
}

/* ページトップボタン */
.footer-main__back-to-top {
    position: absolute;
    bottom: -25px;
    right: 5%;
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

/* --- Copyright Bar --- */
.footer-copy {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Footer (for index.html, about-bus.html, company.html) --- */
.footer {
    position: relative;
}

.footer__contact-area {
    position: relative;
    padding: 100px 0;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.footer__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.footer__contact-container {
    position: relative;
    z-index: 1;
}

.footer__header {
    margin-bottom: 50px;
}

.footer__contact-sub {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
    display: block;
    opacity: 0.9;
}

.footer__contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer__description {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer__cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer__card {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    padding: 40px 20px;
    width: 100%;
    max-width: 480px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__card-label {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer__tel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 5px;
}

.footer__icon-tel {
    width: 32px;
    height: 32px;
    fill: #ED9B0C;
    color:#ED9B0C;
}

.footer__tel {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    text-decoration: none;
}

.footer__hours {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer__icon-mail {
    width: 20px;
    height: 16px;
    fill: white;
}

.footer__btn {
    width: 100%;
    max-width: 320px;
}

.footer__content {
    background-color: var(--color-white);
    padding: 60px 0 80px;
    position: relative;
}

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

.footer__info {
    flex-shrink: 0;
}

.footer__logo-box {
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 50px;
    width: auto;
}

.footer__address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text);
}

.footer__nav-group {
    flex: 1;
    max-width: 750px;
    padding-left: 50px;
}

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 35px;
    list-style: none;
}

.footer__nav-list a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.footer__policy-links {
    font-size: 0.85rem;
    color: var(--color-text);
}

.footer__policy-links a {
    text-decoration: none;
    color: var(--color-text);
}

.footer__policy-sep {
    margin: 0 5px;
}

.footer__back-to-top {
    position: absolute;
    bottom: -25px;
    right: 5%;
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer__back-to-top:hover {
    opacity: 0.9;
}

.footer__back-to-top svg {
    width: 20px;
    height: 12px;
}

.footer__copyright {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Responsive Footer --- */
@media (max-width: 960px) {
    .footer-cta__cards,
    .footer__cards {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-cta__card,
    .footer__card {
        max-width: 100%;
    }

    .footer-main__inner,
    .footer__content-inner {
        flex-direction: column;
    }

    .footer-main__nav,
    .footer__nav-group {
        padding-left: 0;
        margin-top: 40px;
    }

    .footer-main__links li,
    .footer__nav-list li {
        width: 45%;
    }

    .footer__tel,
    .footer-cta__tel {
        font-size: 1.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .footer__tel,
    .footer-cta__tel {
        font-size: 1.5rem;
    }
}

/* ==============================================
   Safety Page Styles
=============================================== */

/* --- 安全性評価認定証セクション --- */
.safety-cert {
    background-color: var(--color-white);
    padding: 80px 0;
}

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

.safety-cert__image {
    max-width: 400px;
    width: 100%;
}

.safety-cert__image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- スローガン・運転3原則 --- */
.safety-principles {
    background-color: #fdfdfd;
    padding: 80px 0;
}

.safety-principles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.safety-principles__card {
    background-color: var(--color-white);
    border: 3px solid #f8b62d;
    border-radius: 4px;
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.safety-principles__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 182, 45, 0.2);
}

.safety-principles__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #F5AE32;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.safety-principles__cat {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.safety-principles__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* --- 安全方針セクション --- */
.safety-policy {
    background-color: var(--color-white);
    padding: 100px 0;
}

.safety-policy__header {
    text-align: center;
    margin-bottom: 60px;
}

.safety-policy__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.safety-policy__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

.safety-policy__list {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.safety-policy__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    list-style: none;
}

.safety-policy__number {
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ED9B0C;
    margin-right: 10px;
    white-space: nowrap;
}

.safety-policy__text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.safety-policy__btn-wrapper {
    text-align: center;
}

.safety-policy__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.safety-policy__btn:hover {
    opacity: 0.9;
}

.safety-policy__btn svg {
    width: 12px;
    height: 12px;
    fill: white;
}

/* --- 安全目標セクション --- */
.safety-goals,
.safety-results {
    background-color: #fdfdfd;
    padding: 80px 0;
}

.safety-goals__title,
.safety-results__title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--color-text);
}

/* --- テーブルスタイル --- */
.safety-stats {
    background-color: var(--color-white);
    padding: 80px 0;
}

.safety-table__wrapper {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.safety-table__wrapper:last-child {
    margin-bottom: 0;
}

.safety-table__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--color-accent);
    padding-bottom: 15px;
    display: block;
}

.safety-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    margin-bottom: 15px;
}

.safety-table thead {
    background-color: transparent;
}

.safety-table th {
    padding: 15px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.safety-table tbody th {
    text-align: left;
    background-color: #fff;
    font-weight: 700;
    padding-left: 20px;
}

.safety-table td {
    padding: 15px;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
}

.safety-table tbody tr:last-child th,
.safety-table tbody tr:last-child td {
    border-bottom: 1px solid #e0e0e0;
}

.safety-table__scroll-wrapper {
    width: 100%;
}

.safety-table__note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 960px) {
    .safety-principles__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .safety-principles__card {
        padding: 40px 30px;
    }

    .safety-policy__list {
        gap: 20px;
    }

    .safety-policy__item {
        padding: 20px;
    }

    .safety-policy__number {
        font-size: 1rem;
    }

    .safety-policy__text {
        font-size: 0.9rem;
    }

    .safety-goals__title,
    .safety-results__title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .safety-table__scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .safety-table {
        min-width: 600px;
    }

    .safety-table th,
    .safety-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .safety-cert__image {
        max-width: 100%;
    }

    .safety-principles__title {
        font-size: 1.4rem;
    }

    .safety-policy__item {
        flex-direction: row;
        gap: 10px;
    }

    .safety-table th,
    .safety-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

/* ==============================================
   Sub Page Common
=============================================== */
.page-head {
    position: relative;
    /* ヘッダー分(80px) + 余白(120px) = 200px程度 */
    padding-top: 200px;
    padding-bottom: 80px;
    background-color: var(--color-white);
    overflow: hidden;
}

.page-head__container {
    position: relative; /* パンくずの基準点 */
    height: 200px; /* 高さを確保してレイアウト */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- 背景ドット --- */
.page-head__bg-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* 共通のドットスタイル */
.concept__bg-img {
    position: absolute;
    opacity: 0.6;
}
.concept__bg-img img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: contain;
}

/* 個別の配置調整 */
.page-head__bg-left {
    bottom: 0;
    left: -50px;    /* 左端から少しはみ出させる */
    width: 350px;   /* デザインに合わせて小さめに設定 */
}

.page-head__bg-right {
    top: 50%;       /* 親要素の上下中央を基準にする */
    transform: translateY(-50%); /* 正確に上下中央に配置する */
    right: -250px;  /* 右端から大きくはみ出させる */
    width: 900px;   /* 画面の右側を覆うように巨大に設定 */
}


/* --- タイトルエリア --- */
.page-head__content {
    position: relative;
    z-index: 1;
    text-align: left; /* 左寄せ */
}

.page-head__subtitle-en {
    display: block;
    font-family: var(--font-base);
    font-weight: 700;
    /* 画像の薄いベージュ色に変更 */
    color: #ffe0b2; 
    margin-bottom: 1rem;
    font-size: 5.0rem; /* 大きく */
    letter-spacing: 0.1em;
    line-height: 1;
}

/* NEWSページ用の色調整 */
.page-head--news .page-head__subtitle-en {
    color: #FFB74D;
}

.page-head__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-left: 5px; /* 英字と少しずらす */
}


/* --- パンくずリスト --- */
.breadcrumb {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    font-size: 0.85rem;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb__item a {
    text-decoration: underline;
    color: var(--color-text);
}

/* 区切り線 (/) の追加 */
.breadcrumb__item:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #ccc;
}


/* --- Responsive for Sub Page Header --- */
@media (max-width: 960px) {
    .page-head {
        padding-top: 150px;
        padding-bottom: 60px;
    }
    .page-head__container {
        height: auto;
    }

    .page-head__subtitle-en {
        font-size: 2.5rem;
    }
    .page-head__title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        position: relative; /* スマホでは相対配置に戻す */
        bottom: auto;
        right: auto;
        margin-top: 30px;
        justify-content: flex-start; /* 左寄せ */
    }
    .breadcrumb__list {
        flex-wrap: wrap;
    }
}

/* スマホ表示時に背景画像を非表示 */
@media (max-width: 768px) {
    .page-head__bg-right {
        display: none;
    }
}
/* ==============================================
   About Bus Page
=============================================== */
/* --- Intro / Use Cases --- */
.sub-intro {
    position: relative; /* 背景装飾の基準点 */
    padding-bottom: 80px;
    background-color: var(--color-white);
}

/* 背景ドット装飾 */
.sub-intro__bg-layer {
    position: absolute;
    bottom: 50px; /* 位置調整 */
    left: -100px; /* 左端からはみ出させる */
    width: 400px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.sub-intro__dots {
    width: 100%;
    height: auto;
}

/* セクションタイトル */
.sub-intro__lead {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* グリッドレイアウト */
.usecase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px; /* 上下50px, 左右40px */
    position: relative;
    z-index: 1; /* 背景より手前 */
}

.usecase__item {
    text-align: center; /* タイトルは中央寄せ */
}

.usecase__img-box {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    /* 画像の角丸設定 */
    border-radius: 4px; 
}

.usecase__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

/* ホバー時に画像を少しズーム（演出） */
.usecase__item:hover .usecase__img-box img {
    transform: scale(1.05);
}

.usecase__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent); /* オレンジ色 */
    margin-bottom: 15px;
}

.usecase__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left; /* 説明文は左寄せ */
    color: var(--color-text);
}


/* --- Responsive (SP) --- */
@media (max-width: 960px) {
    .sub-intro__lead {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .usecase__grid {
        grid-template-columns: 1fr; /* 1列に変更 */
        gap: 40px;
    }

    .usecase__img-box {
        height: 220px; /* スマホでは画像の高さを抑える */
    }
    
    .sub-intro__bg-layer {
        width: 250px;
        left: -50px;
        bottom: 20px;
        opacity: 0.3;
    }
}

/* --- Bus Lineup List --- */
.bus-list {
    position: relative; /* 背景装飾の基準点 */
    padding-top: 100px; /* 余白を確保 */
    padding-bottom: 100px;
    overflow: hidden;
}

/* --- 背景ドット装飾 --- */
.bus-list__bg-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 左上のドット */
.bus-list__bg-left {
    top: -100px;
    left: -50px;
    width: 400px;
    opacity: 0.5;
}

/* 右側のドット（大きく） */
.bus-list__bg-right {
    top: 50px;
    right: -200px;
    width: 700px;
    opacity: 0.5;
}


/* --- ヘッダーエリア --- */
.bus-list__header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 80px; /* バスカードとの間隔 */
}

/* サブタイトル（BUS LINEUP） */
.bus-list__header-content .section__subtitle-en {
    color: var(--color-accent); /* オレンジ色 */
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 700;
}

/* メインタイトル（バスラインナップ） */
.bus-list__header-content .section__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* 説明文 */
.bus-list__header-content .section__description {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
    font-weight: 500;
}

.bus-card {
    background-color: #fff;
    margin-bottom: 60px;
    /* 枠線や影はデザイン画像にはあまり見られないためシンプルに */
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
}

.bus-card__head {
    display: flex;
    align-items: stretch;
}

.bus-card__cat {
    background-color: #f39c12; /* 濃いオレンジ */
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px; /* 幅を確保 */
}

.bus-card__name {
    background-color: #fff176; /* 薄い黄色 */
    color: #000;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.2rem;
    flex: 1; /* 残りの幅を埋める */
    display: flex;
    align-items: center;
}

.bus-card__body {
    padding: 40px;
    display: flex;
    gap: 40px;
}
/* 左側：ギャラリー */
.bus-gallery {
    width: 45%; /* 幅の配分 */
}

.bus-gallery__main {
    width: 100%;
    margin-bottom: 10px;
}

.bus-gallery__main-img {
    width: 100%;
    height: 300px; /* 高さは適宜調整 */
    object-fit: cover;
    display: block;
}

.bus-gallery__thumbs {
    display: flex;
    gap: 10px;
}

.bus-gallery__thumb {
    width: calc(20% - 8px); /* 5枚並び想定 */
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, border 0.3s;
    background-color: #ddd; /* 画像ロード前の背景 */
}

.bus-gallery__thumb:hover,
.bus-gallery__thumb.is-active {
    opacity: 1;
    border: 2px solid var(--color-accent); /* アクティブ時は枠線 */
}

/* 右側：スペック情報 */
.bus-info {
    flex: 1;
}

.bus-info__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bus-spec-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bus-spec-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bus-spec-row dt {
    font-weight: 700;
    min-width: 120px; /* ラベル幅を揃える */
    position: relative;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

/* 丸いオレンジのポチ */
.bus-spec-row dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em; /* 文字の高さに合わせる */
    width: 12px;
    height: 12px;
    background-color: #f39c12;
    border-radius: 50%;
}

.bus-spec-row dd {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* PDFボタン */
.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f39c12;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
    flex-wrap: nowrap;
}
.btn-pdf:hover {
    opacity: 0.8;
}


/* --- Footer: 座席レイアウト --- */
.bus-card__footer {
    padding: 0 40px 40px; /* 横の余白はbodyと同じに */
}

.bus-layout__title {
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 2px solid #f39c12; /* オレンジの下線 */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.bus-layout__img {
    border: 2px solid #4a3b2a; /* 枠線（画像のデザインに合わせて） */
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    text-align: left;
}

.bus-layout__img img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: inline-block; /* 中央寄せのため */
}

/* タブレット表示時も幅100%に対応 */
@media (max-width: 1200px) {
    .bus-layout__img img {
        width: 100%;
        max-width: 100%;
    }
}


/* --- Responsive (SP) --- */
@media (max-width: 960px) {
    .bus-card__head {
        flex-direction: column; /* ヘッダーを縦積みに */
    }
    .bus-card__cat, 
    .bus-card__name {
        width: 100%;
        justify-content: flex-start; /* 左寄せ */
    }

    .bus-card__body {
        flex-direction: column;
        padding: 20px;
    }
    
    .bus-gallery {
        width: 100%;
    }
    .bus-gallery__main-img {
        height: 200px;
    }

    .bus-spec-row {
        flex-direction: column;
        gap: 5px;
    }
    .bus-spec-row dt {
        width: 100%;
    }

    .bus-card__footer {
        padding: 0 20px 30px;
    }
}
/* ==============================================
   Company Page
=============================================== */

/* --- Company Outline Table --- */
.company-outline {
    background-color: var(--color-white);
}

.company-table__wrapper {
    max-width: 900px; /* デザインに合わせ適度な幅に制限 */
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #e0e0e0; /* 薄いグレーの線 */
    border-bottom: 1px solid #e0e0e0; /* 薄いグレーの線 */
}

.company-table th,
.company-table td {
    padding: 25px 0;
    text-align: left;
    border-bottom: 1px solid #e0e0e0; /* 薄いグレーの線 */
    font-size: 1rem;
}

.company-table th {
    width: 30%; /* 項目名の幅 */
    font-weight: 700;
    color: var(--color-text);
    vertical-align: top;
}

.company-table td {
    width: 70%;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* 最後の行の線は消す */
.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* --- Access Map --- */
.access {
    background-color: var(--color-white);
    padding-bottom: 120px;
}

.access-map {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden; /* 角丸を効かせるため */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.access-map iframe {
    display: block;
    width: 100% !important;
    height: 450px;
    border: 0;
}


/* --- Responsive (Company Page) --- */
@media (max-width: 768px) {
    .company-table th,
    .company-table td {
        padding: 15px 0;
        font-size: 0.9rem;
    }

    .company-table th {
        width: 35%;
    }

    /* 必要に応じてスマホでは縦並びに変更する場合 */
    /*
    .company-table th, 
    .company-table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    .company-table td {
        padding-top: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    */
    
    .access-map iframe {
        height: 300px;
    }
}
/* ==============================================
   Application Form Page
=============================================== */

/* --- Intro Text & Contact Box (Updated Box Design) --- */
.app-intro {
    background-color: var(--color-white);
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.app-intro__text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 500;
}

/* 2つのボックスを並べるグループ */
.app-intro__contact-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 共通のボックススタイル（オレンジ枠） */
.app-intro__box {
    flex: 1;
    background-color: var(--color-white);
    border: 1px solid var(--color-accent); /* オレンジ色の細い線 */
    border-radius: 4px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.app-intro__box-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-intro__box-number-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.app-intro__box-icon {
    width: 28px;
    height: 28px;
}

.app-intro__box-number {
    font-size: 2.5rem; /* 大きな数字 */
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.app-intro__box-hours {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .app-intro__contact-group {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    .app-intro__box {
        min-height: auto;
        padding: 30px 20px;
    }
    .app-intro__box-number {
        font-size: 1.6rem;
    }
}

/* --- Form Fields --- */
.app-form {
    background-color: var(--color-white);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    border-top: 1px solid #eee;
    padding: 25px 0;
}

.form-row:last-of-type {
    border-bottom: 1px solid #eee;
}

.form-label {
    width: 250px;
    font-weight: 700;
    font-size: 0.95rem;
    padding-top: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.form-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 15px;
    vertical-align: middle;
    flex-shrink: 0;
}

.form-tag.required {
    background-color: #e74c3c;
    color: #fff;
}

.form-tag.optional {
    background-color: #95a5a6;
    color: #fff;
}

.form-content {
    flex: 1;
}

/* Inputs */
.form-content input[type="text"],
.form-content input[type="tel"],
.form-content input[type="email"],
.form-content input[type="number"],
.form-content input[type="date"],
.form-content select,
.form-content textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.form-content input:focus,
.form-content textarea:focus {
    border-color: var(--color-accent);
}

.form-content .input-short { width: 100px; margin-right: 10px; }
.form-content .input-full { width: 100%; margin-bottom: 10px; }

/* Address Group */
.form-address-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-zip {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.form-zip span {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    flex-shrink: 0;
}

/* Contact Form 7のラッパー要素を横並びにする */
.form-zip .wpcf7-form-control-wrap {
    display: inline-block !important;
    width: auto !important;
    flex-shrink: 0;
}

.input-zip {
    width: 180px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    background-color: #f9f9f9 !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    outline: none !important;
    display: inline-block !important;
}

.input-zip:focus {
    background-color: #fff !important;
    border-color: var(--color-accent, #f39c12) !important;
}

.btn-zip {
    padding: 8px 15px;
    background-color: #ddd;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.btn-zip:hover {
    background-color: #ccc;
}

.btn-zip:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Date Group */
.form-date-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-date-group input[type="date"] {
    width: 220px !important;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.form-date-group input[type="date"]:focus {
    border-color: var(--color-accent);
    background-color: #fff;
}

.form-date-group span {
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 500;
    margin: 0 5px;
}

/* Radio Group */
.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

.form-note {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 5px;
}

/* Submit Area */
.form-submit-area {
    text-align: center;
    padding-top: 60px;
}

.form-privacy-text {
    font-size: 0.85rem;
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.form-submit-btn {
    width: 320px;
    padding: 1.2rem;
}

/* --- Responsive (Form) --- */
@media (max-width: 768px) {
    .app-intro__contact-box {
        flex-direction: column;
        gap: 20px;
    }
    .app-intro__tel {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }
    .app-intro__number {
        font-size: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }
    .form-label {
        width: 100%;
        margin-bottom: 10px;
    }
    .form-date-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-submit-btn {
        width: 100%;
    }
    
    /* 郵便番号入力欄の間隔調整（スマホ対応） */
    .form-zip {
        gap: 10px;
    }
    
    .input-zip {
        width: 150px !important;
        padding: 10px 12px !important;
    }
    
    .btn-zip {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
/* ==============================================
   Application Form Page (Detailed Design Update)
=============================================== */

/* フォームコンテナの調整 */
.app-form .form-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 各行のレイアウト */
.form-row {
    display: flex;
    border-top: 1px solid #eee;
    padding: 25px 0;
}

.form-row:last-of-type {
    border-bottom: 1px solid #eee;
}

/* ラベルのスタイル */
.form-label {
    width: 320px;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    padding-top: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 必須タグ */
.form-tag.required {
    background-color: #e74c3c;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 15px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* 入力エリアの基本設定 */
.form-content {
    flex: 1;
}

/* 入力欄のデザイン（グレー背景） */
.form-content input[type="text"],
.form-content input[type="tel"],
.form-content input[type="email"],
.form-content input[type="number"],
.form-content input[type="date"],
.form-content select,
.form-content textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #f4f4f4; /* デザインに合わせた薄いグレー */
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: background-color 0.3s;
}

.form-content input:focus,
.form-content textarea:focus {
    background-color: #ebebeb;
}

/* 氏名の横並び設定 */
.form-flex-input {
    display: flex;
    gap: 15px;
}

/* 住所欄のレイアウト */
.form-address-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-zip {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.form-zip span {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    flex-shrink: 0;
}

/* Contact Form 7のラッパー要素を横並びにする */
.form-zip .wpcf7-form-control-wrap {
    display: inline-block !important;
    width: auto !important;
    flex-shrink: 0;
}

.input-zip {
    width: 180px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    background-color: #f9f9f9 !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    outline: none !important;
    display: inline-block !important;
}

.input-zip:focus {
    background-color: #fff !important;
    border-color: var(--color-accent, #f39c12) !important;
}

.btn-zip {
    padding: 8px 15px;
    background-color: #ddd;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.btn-zip:hover {
    background-color: #ccc;
}

.btn-zip:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 住所のサブ項目（都道府県・市区町村ラベル付き） */
.form-address-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-sub-label {
    width: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}

/* 日付とラジオボタンの調整 */
/* Date Group styles are defined above */

.input-select {
    width: 250px !important;
}

/* 注釈(※) */
.form-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

.form-note--warning {
    text-align: center;
}

/* ラジオボタン */
.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 5px;
}

.form-radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

/* 送信ボタン（オレンジ色） */
.form-submit-area {
    text-align: center;
    padding: 60px 0;
}

.form-submit-btn {
    width: 320px;
    padding: 1.2rem;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
}

/* スマホ対応の微調整 */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-label {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .form-flex-input {
        flex-direction: column;
    }
    
    .form-address-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .form-sub-label {
        width: 100%;
    }
    
    .form-date-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .input-select {
        width: 100% !important;
    }
    
    /* 郵便番号入力欄の間隔調整（スマホ対応） */
    .form-zip {
        gap: 10px;
    }
    
    .input-zip {
        width: 150px !important;
        padding: 10px 12px !important;
    }
    
    .btn-zip {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .form-submit-btn {
        width: 100%;
    }
}
/* --- Consent Section for Privacy Policy --- */
.form-consent-group {
    margin-bottom: 40px;
    text-align: center;
}

.form-consent-lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-consent-link {
    color: var(--color-text);
    text-decoration: underline;
    font-weight: 700;
}

.form-consent-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
}

/* チェックボックス自体のサイズ調整 */
.form-consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

/* スマホ表示時の調整 */
@media (max-width: 768px) {
    .form-consent-lead {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    .form-consent-checkbox {
        font-size: 0.95rem;
    }
}

/* ==============================================
   Tour List Page Styles
=============================================== */
.tour-list-section {
    background-color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 100px;
}

/* Tour List Grid */
.tour-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    margin-bottom: 60px;
}

/* Tour Card */
.tour-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.tour-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tour-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.tour-card__content {
    padding: 15px;
}

.tour-card__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tour-card__date {
    font-size: 0.85rem;
    color: #f8b62d;
    font-weight: 400;
}

.tour-card__tag {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
}

.tour-card__title {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination__arrow,
.pagination__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    background-color: #e0e0e0;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.pagination__arrow {
    background-color: #e0e0e0;
}

.pagination__arrow svg {
    width: 12px;
    height: 12px;
}

.pagination__number {
    background-color: #e0e0e0;
}

.pagination__number--active {
    background-color: var(--color-accent);
    color: #fff;
}

.pagination__arrow:hover,
.pagination__number:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.pagination__number--active:hover {
    background-color: var(--color-accent);
}

/* Responsive */
@media (max-width: 960px) {
    .tour-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
}

@media (max-width: 640px) {
    .tour-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tour-card__image {
        height: 180px;
    }

    .pagination {
        gap: 8px;
    }

    .pagination__arrow,
    .pagination__number {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* ==============================================
   FAQ Page Styles
=============================================== */

/* FAQ Section */
.faq-section {
    background-color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 100px;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

/* FAQ Item - カード形式 */
.faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 35px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* Question */
.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.faq-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-icon--question {
    background-color: #fff;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.faq-icon--answer {
    background-color: var(--color-accent);
    color: #fff;
}

.faq-question-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
    padding-top: 8px;
}

/* Answer */
.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;
}

.faq-answer-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    padding-top: 8px;
}

.faq-answer-text p {
    margin-bottom: 0.5em;
}

.faq-answer-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .faq-item {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .faq-question,
    .faq-answer {
        gap: 15px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
        padding-top: 6px;
    }

    .faq-answer-text {
        font-size: 0.9rem;
        padding-top: 6px;
    }
}

@media (max-width: 480px) {
    .faq-item {
        padding: 20px 15px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .faq-question-text {
        font-size: 0.9rem;
    }

    .faq-answer-text {
        font-size: 0.85rem;
    }
}

/* ==============================================
   Tour Detail Page Styles
=============================================== */
.tour-detail-section {
    background-color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 100px;
}

.tour-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.tour-detail__header {
    margin-bottom: 40px;
}

.tour-detail__meta {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.tour-detail__date {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 400;
    margin-right: 15px;
    line-height: 1.5;
}

.tour-detail__tag {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
}

.tour-detail__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    margin-bottom: 20px;
}

.tour-detail__divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 40px;
}

/* Main Image */
.tour-detail__image {
    width: 100%;
    margin-bottom: 50px;
    background-color: #e0e0e0;
    line-height: 0;
}

.tour-detail__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Area */
.tour-detail__content {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
    max-width: 100%;
}

.tour-detail__content p {
    margin-bottom: 1.5em;
    text-align: left;
}

.tour-detail__content p:last-child {
    margin-bottom: 0;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #e0e0e0;
}

/* Headings */
.tour-detail__heading {
    font-weight: 700;
    color: var(--color-text);
    margin-top: 2.5em;
    margin-bottom: 1em;
}

.tour-detail__heading--h2 {
    font-size: 1.5rem;
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid #e0e0e0;
    font-weight: 700;
}

.tour-detail__heading--h2:first-child {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5em;
    margin-top: 0;
}

.tour-detail__heading--h3 {
    font-size: 1.3rem;
    background-color: #FFEB3B;
    color: var(--color-text);
    padding: 8px 20px;
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    font-weight: 700;
}

.tour-detail__heading--h4 {
    font-size: 1.1rem;
    padding-left: 20px;
    border-left: 4px solid #FF9800;
    margin-left: 0;
    font-weight: 700;
}

.tour-detail__heading--h5 {
    font-size: 1rem;
    font-weight: 700;
}

/* Lists */
.tour-detail__list {
    margin: 1.5em 0;
    padding-left: 0;
}

.tour-detail__list--ul {
    list-style: none;
}

.tour-detail__list--ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0.5em;
}

.tour-detail__list--ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 2;
}

.tour-detail__list--ol {
    list-style: none;
    padding-left: 0;
}

.tour-detail__list--ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-detail__list-number {
    position: absolute;
    left: 0;
    top: 5px;
    font-weight: 700;
    color: #ED9B0C;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ED9B0C;
    border-radius: 50%;
    font-size: 0.85rem;
    line-height: 2;
}

/* Table */
.tour-detail__table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    background-color: var(--color-white);
    border: none;
}

.tour-detail__table thead {
    background-color: #f5f5f5;
}

.tour-detail__table thead th {
    background-color: #f5f5f5;
    font-weight: 700;
}

.tour-detail__table th {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.tour-detail__table th:last-child {
    border-right: 1px solid #e0e0e0;
}

.tour-detail__table td {
    padding: 15px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.tour-detail__table tbody td:first-child {
    font-weight: 700;
}

.tour-detail__table td:last-child {
    border-right: 1px solid #e0e0e0;
}

/* Link */
.tour-detail__link {
    color: #FF6F00;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.tour-detail__link:hover {
    opacity: 0.7;
}

/* Navigation Links */
.tour-detail__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
}

.tour-detail__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.tour-detail__nav-link:hover {
    opacity: 0.7;
}

.tour-detail__nav-icon {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-detail__nav-link--prev svg,
.tour-detail__nav-link--next svg {
    width: 12px;
    height: 12px;
}

.tour-detail__nav-link--list {
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.tour-detail__nav-link--list .tour-detail__nav-icon {
    width: 40px;
    height: 40px;
}

.tour-detail__nav-link--list svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 960px) {
    .tour-detail__title {
        font-size: 1.5rem;
    }

    .tour-detail__image {
        margin-bottom: 40px;
    }

    .tour-detail__heading--h2 {
        font-size: 1.3rem;
    }

    .tour-detail__heading--h3 {
        font-size: 1.2rem;
    }

    .tour-detail__heading--h4 {
        font-size: 1rem;
    }

    .tour-detail__nav {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-around;
    }

    .tour-detail__nav-link {
        font-size: 0;
        line-height: 0;
        color: transparent;
        flex: 1;
        justify-content: center;
        align-items: center;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-indent: 100%;
    }

    /* アイコンのみ表示（テキストを非表示） */
    .tour-detail__nav-link .tour-detail__nav-icon {
        font-size: 1rem;
        text-indent: 0;
        position: relative;
        z-index: 1;
    }

    .tour-detail__nav-link--list {
        width: auto;
        flex: 1;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0;
    }

    .tour-detail__table {
        font-size: 0.85rem;
    }

    .tour-detail__table th,
    .tour-detail__table td {
        padding: 12px 15px;
    }
}

@media (max-width: 640px) {
    .tour-detail {
        padding: 0 10px;
    }

    .tour-detail__title {
        font-size: 1.3rem;
    }

    .tour-detail__content {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .tour-detail__table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tour-detail__table th,
    .tour-detail__table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .tour-detail__nav {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 10px;
    }

    .tour-detail__nav-link {
        width: auto;
        flex: 1;
        justify-content: center;
        align-items: center;
        font-size: 0;
        line-height: 0;
        min-width: 0;
        color: transparent;
        white-space: nowrap;
        overflow: hidden;
        text-indent: 100%;
    }

    /* アイコンのみ表示（テキストを非表示） */
    .tour-detail__nav-link .tour-detail__nav-icon {
        font-size: 1rem;
        text-indent: 0;
        position: relative;
        z-index: 1;
    }

    /* 一覧ボタンはアイコンのみに */
    .tour-detail__nav-link--list {
        flex-direction: column;
        gap: 0;
    }
}

/* ==============================================
   Recruit Page Styles
=============================================== */

/* Recruit Hero Section */
.recruit-hero {
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    background-color: var(--color-white);
    overflow: hidden;
}

.recruit-hero__bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.recruit-hero__bg-right {
    top: 50%;
    transform: translateY(-50%);
    right: -250px;
    width: 900px;
}

.recruit-hero__container {
    position: relative;
    z-index: 1;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recruit-hero__content {
    position: relative;
    z-index: 1;
}

.recruit-hero__subtitle-en {
    display: block;
    font-family: var(--font-base);
    font-weight: 700;
    color: #FFB74D;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    line-height: 1;
}

.recruit-hero__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--color-text);
    margin-left: 5px;
}

.recruit-hero .breadcrumb {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Recruit Main Content Section */
.recruit-main-content {
    background-color: var(--color-white);
    padding: 60px 0;
}

.recruit-main-content__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.recruit-main-content__catch {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 0;
    display: inline-block;
    z-index: 1;
}

.recruit-main-content__catch::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: -10px;
    right: -10px;
    height: 18px;
    background-color: var(--color-primary);
    z-index: -1;
}

.recruit-main-content__text {
    margin-top: 30px;
}

.recruit-main-content__text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 10px;
}

/* Recruit Requirements Section */
.recruit-requirements {
    background-color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 100px;
}

.recruit-requirements__header {
    text-align: center;
    margin-bottom: 50px;
}

.recruit-requirements__subtitle-en {
    display: block;
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.recruit-requirements__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Page Jump Navigation */
.recruit-jump-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 60px;
}

.recruit-jump-nav__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e74c3c;
}

.recruit-jump-nav__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.recruit-jump-nav__btn {
    display: inline-block;
    padding: 10px 45px;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    transition: opacity 0.3s;
}

.recruit-jump-nav__btn:hover {
    opacity: 0.8;
}

.recruit-jump-nav__btn.is-active {
    background-color: var(--color-accent);
    opacity: 1;
}

/* Job Section */
.recruit-job-section {
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.recruit-job-section__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    text-align: left;
}

/* Job Details */
.recruit-job-details {
    max-width: 1000px;
    margin: 0 auto;
}

.recruit-job-details__row {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: flex-start;
    min-height: 50px;
}

.recruit-job-details__row:last-child {
    border-bottom: none;
}

.recruit-job-details__label {
    width: 180px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    flex-shrink: 0;
    padding-right: 20px;
}

.recruit-job-details__value {
    flex: 1;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    padding-left: 0;
}

.recruit-job-details__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.recruit-job-details__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.recruit-job-details__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-text);
}

/* Apply Button */
.recruit-apply {
    text-align: center;
    margin-top: 80px;
}

.recruit-apply__btn {
    display: inline-block;
    padding: 20px 80px;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: opacity 0.3s;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.recruit-apply__btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 960px) {
    .recruit-hero {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .recruit-hero__subtitle-en {
        font-size: 2.5rem;
    }

    .recruit-hero__title {
        font-size: 1.8rem;
    }

    .recruit-hero__container {
        height: auto;
    }

    .recruit-hero .breadcrumb {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
    }

    .recruit-main-content__catch {
        font-size: 2rem;
    }

    .recruit-main-content__text p {
        font-size: 1rem;
    }

    .recruit-jump-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .recruit-jump-nav__buttons {
        width: 100%;
        flex-direction: column;
    }

    .recruit-jump-nav__btn {
        width: 100%;
        text-align: center;
    }

    .recruit-job-details__row {
        flex-direction: column;
        gap: 10px;
    }

    .recruit-job-details__label {
        width: 100%;
    }

    .recruit-job-details__value {
        padding-left: 0;
    }

    .recruit-apply__btn {
        padding: 18px 60px;
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .recruit-hero__subtitle-en {
        font-size: 2rem;
    }

    .recruit-main-content__catch {
        font-size: 1.6rem;
    }

    .recruit-job-section__title {
        font-size: 1.5rem;
    }

    .recruit-apply__btn {
        padding: 16px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* ==============================================
   News Page Styles
=============================================== */
.news-list-section {
    background-color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 100px;
}

.news-list {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
}

.news-list__item {
    border-bottom: 1px solid #e0e0e0;
}

.news-list__link {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    text-decoration: none;
    color: var(--color-text);
    transition: opacity 0.3s;
    gap: 20px;
}

.news-list__link:hover {
    opacity: 0.7;
}

.news-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-list__date {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.news-list__text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list__arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #e0e0e0;
    border-radius: 50%;
    border: none;
    box-shadow: none;
}

.news-list__arrow svg {
    width: 10px;
    height: 14px;
}

.news-list__arrow svg path {
    fill: #d4a574;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.news-pagination__arrow,
.news-pagination__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent);
    background-color: #fff;
    border: 1px solid var(--color-accent);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.news-pagination__arrow svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-accent);
}

.news-pagination__number--active {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.news-pagination__arrow:hover,
.news-pagination__number:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.news-pagination__arrow:hover svg {
    stroke: #fff;
}

.news-pagination__number--active:hover {
    background-color: var(--color-accent);
    color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
    .news-list__link {
        gap: 15px;
    }

    .news-list__content {
        gap: 6px;
    }

    .news-list__text {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .news-list__arrow {
        width: 35px;
        height: 35px;
    }

    .news-pagination {
        gap: 8px;
    }

    .news-pagination__arrow,
    .news-pagination__number {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Contact Form 7 スタイル調整 */
.wpcf7-form {
    margin: 0;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* ==============================================
   WordPress Block Editor Styles for Tour/News Detail Pages
   tour-detail__content と entry-content 内のブロック要素にデザインを適用
   カスタム投稿の詳細ページのみに適用（固定ページには適用しない）
=============================================== */

/* 見出しタグのスタイル（h2-h6） */
.tour-detail__content h2,
body.single-news .entry-content h2,
.tour-detail__content .wp-block-heading h2,
body.single-news .entry-content .wp-block-heading h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 2em;
    margin-bottom: 1em;
    padding-top: 1.5em;
    border-top: 1px solid #e0e0e0;
}

.tour-detail__content h2:first-child,
body.single-news .entry-content h2:first-child,
.tour-detail__content .wp-block-heading h2:first-child,
body.single-news .entry-content .wp-block-heading h2:first-child {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5em;
    margin-top: 0;
}

.tour-detail__content h3,
body.single-news .entry-content h3,
.tour-detail__content .wp-block-heading h3,
body.single-news .entry-content .wp-block-heading h3 {
    font-size: 1.3rem;
    font-weight: 700;
    background-color: #FFEB3B;
    color: var(--color-text);
    padding: 8px 20px;
    display: inline-block;
    margin-top: 2.5em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
}

.tour-detail__content h4,
body.single-news .entry-content h4,
.tour-detail__content .wp-block-heading h4,
body.single-news .entry-content .wp-block-heading h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    padding-left: 20px;
    border-left: 4px solid #FF9800;
    margin-top: 2.5em;
    margin-bottom: 1em;
    margin-left: 0;
}

.tour-detail__content h5,
body.single-news .entry-content h5,
.tour-detail__content .wp-block-heading h5,
body.single-news .entry-content .wp-block-heading h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 2.5em;
    margin-bottom: 1em;
}

.tour-detail__content h6,
body.single-news .entry-content h6,
.tour-detail__content .wp-block-heading h6,
body.single-news .entry-content .wp-block-heading h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 2.5em;
    margin-bottom: 1em;
}

/* リストタグのスタイル（ul） */
.tour-detail__content ul,
body.single-news .entry-content ul,
.tour-detail__content .wp-block-list ul,
body.single-news .entry-content .wp-block-list ul,
.tour-detail__content .wp-block-list li ul,
body.single-news .entry-content .wp-block-list li ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5em 0;
}

.tour-detail__content ul li,
body.single-news .entry-content ul li,
.tour-detail__content .wp-block-list ul li,
body.single-news .entry-content .wp-block-list ul li,
.tour-detail__content .wp-block-list li ul li,
body.single-news .entry-content .wp-block-list li ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0.5em;
}

.tour-detail__content ul li::before,
body.single-news .entry-content ul li::before,
.tour-detail__content .wp-block-list ul li::before,
body.single-news .entry-content .wp-block-list ul li::before,
.tour-detail__content .wp-block-list li ul li::before,
body.single-news .entry-content .wp-block-list li ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 2;
}

/* リストタグのスタイル（ol） */
.tour-detail__content ol,
body.single-news .entry-content ol,
.tour-detail__content .wp-block-list ol,
body.single-news .entry-content .wp-block-list ol {
    list-style: none;
    padding-left: 0;
    margin: 1.5em 0;
    counter-reset: list-counter;
}

.tour-detail__content ol li,
body.single-news .entry-content ol li,
.tour-detail__content .wp-block-list ol li,
body.single-news .entry-content .wp-block-list ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0.5em;
    counter-increment: list-counter;
}

.tour-detail__content ol li::before,
body.single-news .entry-content ol li::before,
.tour-detail__content .wp-block-list ol li::before,
body.single-news .entry-content .wp-block-list ol li::before {
    content: counter(list-counter, decimal);
    position: absolute;
    left: 0;
    top: 5px;
    font-weight: 700;
    color: #ED9B0C;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ED9B0C;
    border-radius: 50%;
    font-size: 0.85rem;
    line-height: 2;
}

/* テーブルタグのスタイル */
.tour-detail__content table,
body.single-news .entry-content table,
.tour-detail__content .wp-block-table table,
body.single-news .entry-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    background-color: var(--color-white);
    border: none;
}

.tour-detail__content table thead,
body.single-news .entry-content table thead,
.tour-detail__content .wp-block-table table thead,
body.single-news .entry-content .wp-block-table table thead {
    background-color: #f5f5f5;
}

.tour-detail__content table thead th,
body.single-news .entry-content table thead th,
.tour-detail__content .wp-block-table table thead th,
body.single-news .entry-content .wp-block-table table thead th {
    background-color: #f5f5f5;
    font-weight: 700;
}

.tour-detail__content table th,
body.single-news .entry-content table th,
.tour-detail__content .wp-block-table table th,
body.single-news .entry-content .wp-block-table table th {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.tour-detail__content table th:last-child,
body.single-news .entry-content table th:last-child,
.tour-detail__content .wp-block-table table th:last-child,
body.single-news .entry-content .wp-block-table table th:last-child {
    border-right: 1px solid #e0e0e0;
}

.tour-detail__content table td,
body.single-news .entry-content table td,
.tour-detail__content .wp-block-table table td,
body.single-news .entry-content .wp-block-table table td {
    padding: 15px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.tour-detail__content table tbody td:first-child,
body.single-news .entry-content table tbody td:first-child,
.tour-detail__content .wp-block-table table tbody td:first-child,
body.single-news .entry-content .wp-block-table table tbody td:first-child {
    font-weight: 700;
}

.tour-detail__content table td:last-child,
body.single-news .entry-content table td:last-child,
.tour-detail__content .wp-block-table table td:last-child,
body.single-news .entry-content .wp-block-table table td:last-child {
    border-right: 1px solid #e0e0e0;
}

/* リンクスタイル */
.tour-detail__content a,
body.single-news .entry-content a {
    color: #FF6F00;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.tour-detail__content a:hover,
body.single-news .entry-content a:hover {
    opacity: 0.7;
}

.tour-detail__content a:visited,
body.single-news .entry-content a:visited {
    color: #FF6F00;
}

/* レスポンシブ対応 */
@media (max-width: 960px) {
    .tour-detail__content h2,
    body.single-news .entry-content h2,
    .tour-detail__content .wp-block-heading h2,
    body.single-news .entry-content .wp-block-heading h2 {
        font-size: 1.3rem;
    }

    .tour-detail__content h3,
    body.single-news .entry-content h3,
    .tour-detail__content .wp-block-heading h3,
    body.single-news .entry-content .wp-block-heading h3 {
        font-size: 1.2rem;
    }

    .tour-detail__content h4,
    body.single-news .entry-content h4,
    .tour-detail__content .wp-block-heading h4,
    body.single-news .entry-content .wp-block-heading h4 {
        font-size: 1rem;
    }

    .tour-detail__content table,
    body.single-news .entry-content table,
    .tour-detail__content .wp-block-table table,
    body.single-news .entry-content .wp-block-table table {
        font-size: 0.85rem;
    }

    .tour-detail__content table th,
    .tour-detail__content table td,
    body.single-news .entry-content table th,
    body.single-news .entry-content table td,
    .tour-detail__content .wp-block-table table th,
    .tour-detail__content .wp-block-table table td,
    body.single-news .entry-content .wp-block-table table th,
    body.single-news .entry-content .wp-block-table table td {
        padding: 12px 15px;
    }
}

@media (max-width: 640px) {
    .tour-detail__content table,
    body.single-news .entry-content table,
    .tour-detail__content .wp-block-table table,
    body.single-news .entry-content .wp-block-table table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tour-detail__content table th,
    .tour-detail__content table td,
    body.single-news .entry-content table th,
    body.single-news .entry-content table td,
    .tour-detail__content .wp-block-table table th,
    .tour-detail__content .wp-block-table table td,
    body.single-news .entry-content .wp-block-table table th,
    body.single-news .entry-content .wp-block-table table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}