/* ==========================================================
   中古冷凍車 専門LPページ 追加CSS
   配置場所: wp-content/themes/gc-kawagoe--WP-THEME/css/reitousha-lp.css

   既存の .lineup__* クラスはそのまま main.css のスタイルが適用されるため、
   このファイルはこのページ固有のスタイルのみを定義する。
   ========================================================== */

/* LPラッパー */
.reitousha-lp {
    background: #f5f7fa;
    padding: 32px 0 60px;
}
.reitousha-lp__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* LPヘッダー */
.reitousha-lp__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 3px solid #005bac;
}
.reitousha-lp__h1 {
    font-size: clamp(1.3em, 3.5vw, 2em);
    color: #111;
    margin: 0 0 12px;
    line-height: 1.3;
    font-weight: bold;
}
.reitousha-lp__h1__sub {
    display: block;
    font-size: 0.65em;
    color: #555;
    font-weight: normal;
    margin-top: 4px;
}
.reitousha-lp__lead {
    color: #444;
    line-height: 1.8;
    margin: 0 0 16px;
    font-size: 0.95em;
}
.reitousha-lp__badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.reitousha-lp__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #d0daea;
    border-radius: 4px;
    padding: 10px 16px;
    min-width: 160px;
}
.reitousha-lp__badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #005bac;
    color: #fff;
    font-size: 0.72em;
    font-weight: bold;
    border-radius: 3px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.reitousha-lp__badge__txt {
    font-size: 0.85em;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
}

/* 件数表示 */
.reitousha-lp__count {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #555;
}

/* 在庫グリッド（既存 .lineup__list を上書き） */
.reitousha-lp__grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ノーリザルト */
.reitousha-lp__noresult {
    text-align: center;
    padding: 60px 0;
    color: #888;
}

/* ページネーション */
.reitousha-pagination {
    text-align: center;
    margin: 40px 0 20px;
}
.reitousha-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.reitousha-pagination li a,
.reitousha-pagination li span {
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    font-size: 0.9em;
    text-decoration: none;
    color: #333;
    transition: background .15s, color .15s;
}
.reitousha-pagination li a:hover { background: #f0f4ff; }
.reitousha-pagination li a.current {
    background: #005bac;
    color: #fff;
    border-color: #005bac;
    pointer-events: none;
}
.reitousha-pagination .page-dots {
    border: none;
    color: #aaa;
    padding: 7px 4px;
}

/* 専門店テキストブロック */
.reitousha-lp__about {
    margin-top: 48px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 8px;
    border-left: 5px solid #005bac;
}
.reitousha-lp__about__ttl {
    font-size: 1.2em;
    color: #1a202c;
    margin: 0 0 16px;
    font-weight: bold;
}
.reitousha-lp__about p {
    color: #444;
    line-height: 1.8;
    margin: 0 0 14px;
    font-size: 0.95em;
}
.reitousha-lp__contact-btn {
    display: inline-block;
    margin-top: 8px;
    margin-right: 16px;
    background: #005bac;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: opacity .15s;
}
.reitousha-lp__contact-btn:hover { opacity: .85; }
.reitousha-lp__top-link {
    display: inline-block;
    margin-top: 8px;
    background: #fff;
    color: #005bac;
    border: 1px solid #005bac;
    padding: 11px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background .15s, color .15s;
}
.reitousha-lp__top-link:hover {
    background: #005bac;
    color: #fff;
}
.reitousha-lp__about__btnwrap {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* FAQセクション */
.reitousha-lp__faq {
    margin-top: 40px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 8px;
    border-left: 5px solid #e0e7f0;
}
.reitousha-lp__faq__ttl {
    font-size: 1.2em;
    color: #1a202c;
    margin: 0 0 24px;
    font-weight: bold;
}
.reitousha-lp__faq__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.reitousha-lp__faq__item {
    border-top: 1px solid #e8ecf0;
    padding: 20px 0;
}
.reitousha-lp__faq__item:last-child {
    border-bottom: 1px solid #e8ecf0;
}
.reitousha-lp__faq__q {
    font-size: 0.95em;
    font-weight: bold;
    color: #005bac;
    margin: 0 0 10px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.reitousha-lp__faq__q::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #005bac;
    font-size: 1em;
}
.reitousha-lp__faq__a {
    font-size: 0.88em;
    color: #444;
    line-height: 1.8;
    margin: 0;
    padding-left: 22px;
    position: relative;
}
.reitousha-lp__faq__a::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #888;
    font-size: 1em;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .reitousha-lp { padding: 20px 0 40px; }
    .reitousha-lp__about { padding: 20px 16px; }
    .reitousha-lp__faq { padding: 20px 16px; }
    .reitousha-lp__badge { min-width: calc(50% - 5px); }
    .reitousha-lp__about__btnwrap { flex-direction: column; }
    .reitousha-lp__contact-btn,
    .reitousha-lp__top-link {
        display: block;
        margin-right: 0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}
