/*
Theme Name: Sample Gas Station (紀北給油所)
Author: 株式会社西村商店（HP制作事業）
Description: hp-production-kit でビルドされた紀北給油所デモ。Generated by build.py.
Version: 2.0
*/
/* === BASE CORE ============================================== */
/* ===== Modern CSS Reset ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* WordPressコアの管理バー対応 */
body.admin-bar { padding-top: 0; }
@media (min-width: 783px) {
    body.admin-bar #site-header { top: 32px; }
}

/* ===== Utility containers ========================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Visually-hidden（アクセシビリティ） ============================ */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== お問い合わせフォーム（汎用、業種側でも上書き可） ============== */
.contact-form-wrap { padding: 24px; background: #fafafa; border-radius: 8px; }
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-group .required { color: #c0392b; font-size: 12px; margin-left: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { text-align: center; margin-top: 24px; }
.btn-submit {
    padding: 14px 48px;
    background: var(--primary, #1e40af);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
}

/* ===== モバイル下部バー（汎用骨格、配色は業種側で） ================= */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.mobile-bottom-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    font-size: 11px;
    color: #333;
}
.mobile-bottom-bar .mbb-icon { font-size: 22px; line-height: 1; margin-bottom: 4px; }

@media (max-width: 768px) {
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 64px; }
}

/* ===== お知らせ・ステータスメッセージ（汎用） ========================= */
.notice {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.notice.success { background: #d4edda; color: #155724; }
.notice.error   { background: #f8d7da; color: #721c24; }
.notice.warning { background: #fff3cd; color: #856404; }

/* ===== Breadcrumb（パンくず）================================= */
.breadcrumb {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}
.breadcrumb a { color: inherit; border-bottom: 1px dashed transparent; }
.breadcrumb a:hover { border-bottom-color: currentColor; }
.breadcrumb span { margin: 0 6px; }


/* === INDUSTRY: gas-station ==================================== */
/* ==========================================================================
   Gas Station Industry Stylesheet
   工業的・電光掲示板風・大きな数字・地元密着感のあるカジュアル工務寄り。
   西村商店スタイルの「角丸＋淡色＋ふんわり」とは正反対の世界観。
   ========================================================================== */

/* ─── ROOT TYPOGRAPHY ────────────────────────────────────────────────── */
body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #1f2937;
    background: #fff;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

/* ─── STATUS BAR (最上部固定) ──────────────────────────────────────── */
.gs-status-bar {
    background: #111827;
    color: #f9fafb;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 3px solid var(--accent, #FFC107);
}
.gs-status-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.gs-status-light {
    display: inline-block;
    width: 10px; height: 10px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.25);
    animation: gs-blink 2s infinite;
}
@keyframes gs-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.gs-status-text { font-weight: 700; }
.gs-status-sub { font-weight: 400; color: #9ca3af; margin-left: 4px; }
.gs-status-divider { color: #4b5563; }
.gs-status-delivery { color: var(--accent, #FFC107); font-weight: 600; }
.gs-status-tel {
    margin-left: auto;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.gs-status-tel:hover { color: var(--accent, #FFC107); }

@media (max-width: 768px) {
    .gs-status-bar-inner { gap: 8px; font-size: 12px; padding: 6px 14px; }
    .gs-status-tel { margin-left: 0; width: 100%; text-align: right; }
}

/* ─── HEADER ───────────────────────────────────────────────────────── */
.gs-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gs-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.gs-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.gs-logo img { height: 52px; width: auto; }
.gs-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary, #D32F2F);
    letter-spacing: 0.04em;
}
.gs-nav {
    margin-left: 24px;
    flex: 1;
}
.gs-nav ul { display: flex; gap: 4px; }
.gs-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    transition: background 0.15s, color 0.15s;
    border-bottom: 2px solid transparent;
}
.gs-nav a:hover {
    color: var(--primary, #D32F2F);
    border-bottom-color: var(--primary, #D32F2F);
}
.gs-nav .nav-contact a {
    background: var(--primary, #D32F2F);
    color: #fff;
    border-radius: 4px;
    padding: 8px 18px;
    border-bottom: none;
}
.gs-nav .nav-contact a:hover {
    background: #b71c1c;
    color: #fff;
    border-bottom: none;
}
.gs-header-tel {
    text-align: right;
    line-height: 1.2;
    flex-shrink: 0;
}
.gs-header-tel-label {
    display: block;
    font-size: 11px;
    color: #6b7280;
    letter-spacing: 0.1em;
}
.gs-header-tel-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary, #D32F2F);
    letter-spacing: 0.02em;
}
.gs-hamburger { display: none; }

@media (max-width: 900px) {
    .gs-header-inner { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
    .gs-logo img { height: 42px; }
    .gs-logo-text { font-size: 18px; }
    .gs-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: #111827;
        margin: 0;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        z-index: 200;
    }
    .gs-nav.open { right: 0; }
    .gs-nav ul { flex-direction: column; gap: 0; }
    .gs-nav a {
        color: #f9fafb;
        padding: 14px 8px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .gs-nav a:hover { background: rgba(255,255,255,0.05); color: var(--accent, #FFC107); }
    .gs-nav .nav-contact a { background: var(--primary, #D32F2F); margin-top: 12px; text-align: center; }
    .gs-header-tel {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }
    .gs-header-tel-label { display: none; }
    .gs-header-tel-num { font-size: 18px; }
    .gs-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
        z-index: 300;
        position: relative;
    }
    .gs-hamburger span {
        display: block;
        width: 24px; height: 2px;
        background: #111;
        transition: 0.3s;
    }
    .gs-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: #fff; }
    .gs-hamburger.open span:nth-child(2) { opacity: 0; }
    .gs-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: #fff; }
}
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 150;
}
.nav-overlay.open { display: block; }

/* ─── HERO ─────────────────────────────────────────────────────────── */
.gs-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    overflow: hidden;
}
.gs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.gs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.55) 100%);
    z-index: 1;
}
.gs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    color: #fff;
    width: 100%;
}
.gs-hero-eyebrow {
    display: inline-block;
    background: var(--accent, #FFC107);
    color: #111;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 2px;
    margin-bottom: 20px;
}
.gs-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.gs-hero-sub {
    font-size: 16px;
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.9;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.gs-hero-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent, #FFC107);
    color: #111;
    font-weight: 700;
    border-radius: 4px;
    font-size: 16px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.gs-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ─── PRICE BOARD (主役) ─────────────────────────────────────────── */
.gs-price-section {
    background: #111827;
    padding: 60px 0 80px;
    color: #fff;
}
.gs-price-section-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-price-board-header {
    text-align: center;
    margin-bottom: 40px;
}
.gs-price-board-eyebrow {
    display: inline-block;
    color: var(--accent, #FFC107);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
}
.gs-price-board-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.gs-price-board-meta {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.8;
}
.gs-price-board-meta strong {
    color: var(--accent, #FFC107);
    font-weight: 700;
    margin-right: 8px;
}
.gs-price-board-meta span { color: #9ca3af; }

.gs-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gs-price-cell {
    background: #1f2937;
    border-top: 4px solid var(--cell-color, #D32F2F);
    border-radius: 4px;
    padding: 24px 16px 28px;
    text-align: center;
    position: relative;
}
.gs-price-cell-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--cell-color);
    margin-bottom: 2px;
}
.gs-price-cell-sub {
    font-size: 10px;
    color: #6b7280;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}
.gs-price-cell-value {
    line-height: 1;
    color: #fff;
    font-family: 'Courier New', monospace;
}
.gs-price-int {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.gs-price-dec {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fbbf24;
    margin-left: 2px;
}
.gs-price-unit {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 400;
    margin-top: 8px;
    font-family: inherit;
    letter-spacing: 0.1em;
}
.gs-price-empty {
    text-align: center;
    padding: 40px;
    color: #9ca3af;
}
.gs-price-board-foot {
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    margin-top: 24px;
    line-height: 2;
}
.gs-price-section-foot {
    text-align: center;
    margin-top: 32px;
}
.gs-link-arrow {
    color: var(--accent, #FFC107);
    font-weight: 700;
    border-bottom: 1px dashed rgba(255, 193, 7, 0.4);
    padding-bottom: 2px;
}
.gs-link-arrow:hover { border-bottom-style: solid; }

@media (max-width: 720px) {
    .gs-price-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gs-price-cell { padding: 20px 12px 24px; }
}

/* ─── DELIVERY BANNER ──────────────────────────────────────────────── */
.gs-delivery-banner {
    background: linear-gradient(120deg, #FFA000 0%, #D32F2F 100%);
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}
.gs-delivery-banner::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.gs-delivery-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 130px 1fr 280px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.gs-delivery-banner-icon { color: #fff; }
.gs-delivery-banner-icon svg { width: 100%; height: auto; }
.gs-delivery-banner-tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}
.gs-delivery-banner-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}
.gs-delivery-banner-desc {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.gs-delivery-banner-areas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.gs-delivery-banner-areas li {
    background: rgba(255,255,255,0.18);
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 13px;
}
.gs-delivery-banner-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gs-btn {
    display: block;
    background: #fff;
    color: #b71c1c;
    border-radius: 4px;
    padding: 14px 20px;
    text-align: center;
    font-weight: 700;
    transition: transform 0.15s;
}
.gs-btn:hover { transform: translateY(-2px); }
.gs-btn-label { display: block; font-size: 15px; }
.gs-btn-sub { display: block; font-size: 12px; opacity: 0.7; margin-top: 2px; }
.gs-btn-line { background: #06C755; color: #fff; }
.gs-btn-ghost {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 13px;
    padding: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.4);
    margin-top: 4px;
}
.gs-btn-ghost:hover { border-bottom-style: solid; }

@media (max-width: 900px) {
    .gs-delivery-banner-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .gs-delivery-banner-icon { max-width: 100px; margin: 0 auto; }
    .gs-delivery-banner-areas { justify-content: center; }
}

/* ─── ABOUT (3つの数字) ────────────────────────────────────────────── */
.gs-about {
    background: #f9fafb;
    padding: 80px 0;
}
.gs-about-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.gs-about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.gs-about-stat {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: baseline;
    gap: 8px;
    padding: 20px 24px;
    background: #fff;
    border-left: 4px solid var(--primary, #D32F2F);
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.gs-about-stat-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary, #D32F2F);
    line-height: 1;
    font-family: 'Courier New', monospace;
}
.gs-about-stat-unit {
    font-size: 16px;
    font-weight: 700;
    color: #6b7280;
    margin-left: 4px;
}
.gs-about-stat-label {
    margin-left: 20px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}
.gs-about-text h2 {
    font-size: clamp(22px, 3vw, 30px);
    color: #111827;
    margin-bottom: 20px;
}
.gs-about-text p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 16px;
}
.gs-about-text strong { color: var(--primary, #D32F2F); }

@media (max-width: 800px) {
    .gs-about-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── ACCESS ───────────────────────────────────────────────────────── */
.gs-access {
    background: #fff;
    padding: 80px 0;
}
.gs-access-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.gs-section-eyebrow {
    display: inline-block;
    color: var(--primary, #D32F2F);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
}
.gs-access-info h2 {
    font-size: clamp(22px, 3vw, 30px);
    color: #111;
    margin-bottom: 24px;
}
.gs-access-list { border-top: 2px solid #111; }
.gs-access-list > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding: 14px 4px;
    border-bottom: 1px solid #e5e7eb;
}
.gs-access-list dt {
    font-size: 13px;
    color: #6b7280;
    font-weight: 700;
}
.gs-access-list dd { font-size: 14px; }
.gs-access-list a {
    color: var(--primary, #D32F2F);
    font-weight: 700;
    border-bottom: 1px dashed currentColor;
}
.gs-access-map {
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}
.gs-access-map iframe { width: 100%; height: 100%; border: 0; }
.gs-access-map-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    background: repeating-linear-gradient(45deg, #f3f4f6, #f3f4f6 10px, #e5e7eb 10px, #e5e7eb 20px);
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
}

@media (max-width: 800px) {
    .gs-access-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── NEWS ─────────────────────────────────────────────────────────── */
.gs-news {
    background: #f9fafb;
    padding: 60px 0;
}
.gs-news-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-news-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 2px solid #111;
    padding-bottom: 16px;
}
.gs-news-header h2 {
    font-size: 22px;
    color: #111;
}
.gs-news-header .gs-link-arrow-small {
    margin-left: auto;
    color: var(--primary, #D32F2F);
    font-size: 13px;
    border-color: transparent;
}
.gs-news-list li { border-bottom: 1px solid #e5e7eb; }
.gs-news-list a {
    display: grid;
    grid-template-columns: 90px 100px 1fr;
    gap: 16px;
    padding: 16px 4px;
    align-items: center;
    color: #1f2937;
    transition: background 0.15s;
}
.gs-news-list a:hover { background: #fff; padding-left: 12px; padding-right: 12px; }
.gs-news-list time { font-size: 13px; color: #6b7280; font-weight: 700; }
.gs-news-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}
.gs-news-title { font-size: 14px; }
.gs-news-empty {
    text-align: center;
    padding: 40px 0;
    color: #9ca3af;
}

@media (max-width: 600px) {
    .gs-news-list a { grid-template-columns: 90px 1fr; }
    .gs-news-tag { display: none; }
}

/* ─── FOOTER ───────────────────────────────────────────────────────── */
.gs-footer { background: #1f2937; color: #d1d5db; }
.gs-footer-main { padding: 60px 0 40px; }
.gs-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-footer-main .gs-footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
}
.gs-footer-logo { height: 60px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.gs-footer-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.gs-footer-desc { font-size: 13px; line-height: 1.8; color: #9ca3af; }
.gs-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.gs-footer-col h4 {
    font-size: 14px;
    color: var(--accent, #FFC107);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #374151;
}
.gs-footer-col ul li { padding: 4px 0; }
.gs-footer-col a {
    font-size: 13px;
    color: #d1d5db;
    transition: color 0.15s;
}
.gs-footer-col a:hover { color: var(--accent, #FFC107); }
.gs-footer-contact address { font-style: normal; font-size: 13px; line-height: 1.7; }
.gs-footer-tel { margin: 12px 0 8px; }
.gs-footer-tel a { font-size: 18px; font-weight: 800; color: var(--accent, #FFC107); }
.gs-footer-hours { font-size: 12px; color: #9ca3af; }

.gs-footer-bottom {
    background: #111827;
    padding: 16px 0;
}
.gs-footer-bottom .gs-footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #6b7280;
}
.gs-footer-bottom a { color: #9ca3af; }
.gs-footer-bottom a:hover { color: #fff; }

@media (max-width: 800px) {
    .gs-footer-main .gs-footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .gs-footer-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── MOBILE BOTTOM BAR (industry-tinted) ──────────────────────────── */
.mobile-bottom-bar { background: #fff !important; border-top: 2px solid var(--primary, #D32F2F) !important; }
.mobile-bottom-bar .mbb-call .mbb-icon,
.mobile-bottom-bar .mbb-call { color: var(--primary, #D32F2F); }
.mobile-bottom-bar .mbb-line { color: #06C755; }

/* ─── 汎用 page-* テンプレ最低限スタイル ────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary, #D32F2F) 0%, #b71c1c 100%);
    color: #fff;
    padding: 48px 0 36px;
}
.page-hero .container { max-width: 1080px; padding: 0 20px; }
.page-hero h1 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 6px; }
.page-hero .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a { color: inherit; border-bottom: 1px dashed currentColor; }
.content-wrap { padding: 60px 0; }
.content-wrap .container { max-width: 1080px; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    color: var(--primary, #D32F2F);
    letter-spacing: 0.25em;
    margin-bottom: 6px;
}
.section-title { font-size: clamp(22px, 3vw, 30px); color: #111; margin-bottom: 10px; }
.section-divider { display: none; }
.section-desc { font-size: 14px; color: #4b5563; max-width: 600px; margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}
.service-card-header { padding: 16px 20px; }
.service-card-header .service-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}
.service-card-header h3 { font-size: 18px; color: #111; }
.service-card-body { padding: 0 20px 20px; }
.service-card-body p { font-size: 13px; color: #4b5563; }
.service-features { margin-top: 12px; }
.service-features li {
    padding: 4px 0;
    font-size: 13px;
    color: #4b5563;
    border-bottom: 1px dashed #e5e7eb;
}
.service-features li::before { content: "✓ "; color: var(--primary, #D32F2F); font-weight: 700; }

/* ==========================================================================
   下層ページ用スタイル (page-fuel / page-services / page-delivery)
   ========================================================================== */

/* ─── 圧縮ヒーロー（下層共通） ─────────────────── */
.gs-subhero {
    background: linear-gradient(120deg, #1f2937 0%, #374151 100%);
    color: #fff;
    padding: 56px 0 40px;
    border-bottom: 4px solid var(--accent, #FFC107);
}
.gs-subhero--delivery {
    background: linear-gradient(120deg, #C2410C 0%, #D32F2F 100%);
}
.gs-subhero-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-subhero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--accent, #FFC107);
    font-weight: 700;
    margin-bottom: 8px;
}
.gs-subhero--delivery .gs-subhero-eyebrow { color: #FFD54F; }
.gs-subhero-title {
    font-size: clamp(26px, 3.5vw, 38px);
    color: #fff;
    margin-bottom: 12px;
}
.gs-subhero-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.gs-subhero-breadcrumb a {
    color: inherit;
    border-bottom: 1px dashed currentColor;
}

/* ─── セクション見出し ──────────────────────── */
.gs-section-head {
    text-align: center;
    margin-bottom: 36px;
}
.gs-section-head .gs-section-eyebrow {
    margin-bottom: 8px;
}
.gs-section-head .gs-section-title {
    font-size: clamp(22px, 3vw, 30px);
    color: #111;
    margin-bottom: 12px;
}
.gs-section-head .gs-section-desc {
    font-size: 14px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ─── page-fuel 専用 ────────────────────────── */
.gs-price-section--page { padding: 60px 0; }

.gs-fuel-details {
    background: #fff;
    padding: 80px 0;
}
.gs-fuel-details-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-fuel-list {
    display: grid;
    gap: 16px;
}
.gs-fuel-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 6px solid var(--accent, #6b7280);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.gs-fuel-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.gs-fuel-item-marker {
    background: #f9fafb;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-right: 1px solid #e5e7eb;
}
.gs-fuel-item-num {
    font-family: 'Courier New', monospace;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.gs-fuel-item-label {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-top: 8px;
}
.gs-fuel-item-en {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #9ca3af;
}
.gs-fuel-item-body {
    padding: 24px;
}
.gs-fuel-item-desc {
    font-size: 14px;
    color: #374151;
    margin-bottom: 12px;
}
.gs-fuel-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.gs-fuel-item-tags li {
    background: #f3f4f6;
    color: #4b5563;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}
.gs-link-arrow--inline {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary, #D32F2F);
    border-color: rgba(211, 47, 47, 0.4);
}

@media (max-width: 640px) {
    .gs-fuel-item { grid-template-columns: 1fr; }
    .gs-fuel-item-marker { border-right: 0; border-bottom: 1px solid #e5e7eb; padding: 16px; }
}

/* ─── 支払い方法リスト ──────────────────────── */
.gs-payment {
    background: #f9fafb;
    padding: 60px 0;
}
.gs-payment-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-payment-list {
    display: grid;
    gap: 10px;
}
.gs-payment-list li {
    display: grid;
    grid-template-columns: 60px 180px 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-left: 4px solid var(--primary, #D32F2F);
}
.gs-payment-num {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary, #D32F2F);
}
.gs-payment-list strong {
    font-size: 15px;
    color: #111;
}
.gs-payment-list span:last-child {
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 600px) {
    .gs-payment-list li { grid-template-columns: 40px 1fr; }
    .gs-payment-list li span:last-child {
        grid-column: 1 / -1;
        margin-left: 56px;
    }
}

/* ─── page-services 専用 ────────────────────── */
.gs-services-intro {
    background: #fff;
    padding: 60px 0 40px;
    text-align: center;
}
.gs-services-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-services-intro-eyebrow {
    display: inline-block;
    font-size: 12px;
    color: var(--primary, #D32F2F);
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 12px;
}
.gs-services-intro h2 {
    font-size: clamp(22px, 3vw, 28px);
    color: #111;
    margin-bottom: 16px;
}
.gs-services-intro p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.9;
}

.gs-services-list {
    background: #f9fafb;
    padding: 40px 0 80px;
}
.gs-services-list-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 16px;
}
.gs-service-row {
    display: grid;
    grid-template-columns: 160px 1fr 140px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.gs-service-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.gs-service-row-side {
    background: var(--side, #1976D2);
    color: #fff;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gs-service-row-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 700;
    opacity: 0.9;
}
.gs-service-row-time {
    font-size: 13px;
    margin-top: 8px;
    font-weight: 700;
}
.gs-service-row-body {
    padding: 24px;
}
.gs-service-row-title {
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
}
.gs-service-row-desc {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 12px;
}
.gs-service-row-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}
.gs-service-row-list li {
    padding: 4px 0;
    font-size: 13px;
    color: #4b5563;
}
.gs-service-row-list li::before {
    content: "✓ ";
    color: var(--side, var(--primary, #D32F2F));
    font-weight: 700;
}
.gs-service-row-price {
    background: #fafafa;
    padding: 24px 16px;
    text-align: center;
    border-left: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gs-service-row-price-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #6b7280;
    font-weight: 700;
}
.gs-service-row-price-value {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    color: var(--primary, #D32F2F);
    font-weight: 700;
    margin-top: 6px;
}

@media (max-width: 800px) {
    .gs-service-row { grid-template-columns: 1fr; }
    .gs-service-row-side { flex-direction: row; align-items: center; gap: 16px; padding: 14px 20px; }
    .gs-service-row-time { margin-top: 0; }
    .gs-service-row-price { border-left: 0; border-top: 1px solid #e5e7eb; }
    .gs-service-row-list { grid-template-columns: 1fr; }
}

/* ─── flow ステップ ─────────────────────────── */
.gs-flow {
    background: #fff;
    padding: 80px 0;
}
.gs-flow-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: flow;
}
.gs-flow-steps li {
    background: #f9fafb;
    border-top: 4px solid var(--primary, #D32F2F);
    padding: 28px 24px;
    text-align: center;
    position: relative;
}
.gs-flow-step-num {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--primary, #D32F2F);
    font-weight: 700;
    margin-bottom: 12px;
}
.gs-flow-steps h4 {
    font-size: 18px;
    color: #111;
    margin-bottom: 8px;
}
.gs-flow-steps p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.8;
}

@media (max-width: 720px) {
    .gs-flow-steps { grid-template-columns: 1fr; }
}

/* ─── CTA ロウ ─────────────────────────────── */
.gs-cta {
    background: #111827;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.gs-cta--orange {
    background: linear-gradient(120deg, #C2410C 0%, #D32F2F 100%);
}
.gs-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-cta-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--accent, #FFC107);
    font-weight: 700;
    margin-bottom: 12px;
}
.gs-cta--orange .gs-cta-eyebrow { color: #FFD54F; }
.gs-cta-title {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 12px;
}
.gs-cta-tel {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 28px;
    background: var(--accent, #FFC107);
    color: #111;
    font-size: 22px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.02em;
    transition: transform 0.15s;
}
.gs-cta-tel:hover { transform: translateY(-2px); }
.gs-cta-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}
.gs-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.gs-cta-btn {
    background: #fff;
    color: var(--primary, #D32F2F);
    padding: 16px 28px;
    border-radius: 4px;
    text-align: center;
    min-width: 220px;
    transition: transform 0.15s;
}
.gs-cta-btn:hover { transform: translateY(-2px); }
.gs-cta-btn--primary { background: #fff; }
.gs-cta-btn--line { background: #06C755; color: #fff; }
.gs-cta-btn-label { display: block; font-size: 16px; font-weight: 700; }
.gs-cta-btn-sub { display: block; font-size: 12px; opacity: 0.75; margin-top: 4px; }

/* ─── page-delivery 専用 ────────────────────── */
.gs-delivery-keynumbers {
    background: #fff;
    padding: 60px 0;
}
.gs-delivery-keynumbers-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gs-keynumber {
    background: #f9fafb;
    border-top: 4px solid var(--primary, #D32F2F);
    padding: 28px 20px;
    text-align: center;
}
.gs-keynumber-value {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 64px;
    font-weight: 800;
    color: var(--primary, #D32F2F);
    line-height: 1;
}
.gs-keynumber-value small {
    font-size: 18px;
    margin-left: 4px;
    color: #6b7280;
    font-weight: 700;
}
.gs-keynumber-label {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-top: 12px;
    line-height: 1.6;
}

@media (max-width: 720px) {
    .gs-delivery-keynumbers-inner { grid-template-columns: 1fr; }
}

.gs-delivery-intro {
    background: #f9fafb;
    padding: 60px 0;
}
.gs-delivery-intro-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.gs-delivery-intro-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--primary, #D32F2F);
    font-weight: 700;
    margin-bottom: 12px;
}
.gs-delivery-intro h2 {
    font-size: clamp(22px, 3vw, 28px);
    color: #111;
    margin-bottom: 24px;
    line-height: 1.5;
}
.gs-delivery-intro-bullets {
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
}
.gs-delivery-intro-bullets li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #374151;
    border-bottom: 1px dashed #d1d5db;
}
.gs-delivery-intro-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary, #D32F2F);
    font-weight: 700;
}

.gs-delivery-plans {
    background: #fff;
    padding: 80px 0;
}
.gs-delivery-plans-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.gs-plan {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 32px 28px;
    position: relative;
}
.gs-plan--recommended {
    border-color: var(--primary, #D32F2F);
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.08);
}
.gs-plan-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--primary, #D32F2F);
    color: #fff;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 14px;
}
.gs-plan-tag {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 8px;
}
.gs-plan-title {
    font-size: 24px;
    color: #111;
    margin-bottom: 12px;
}
.gs-plan-desc {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.9;
}
.gs-plan-features {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
    padding: 12px 0;
}
.gs-plan-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 13px;
    color: #4b5563;
}
.gs-plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary, #D32F2F);
    font-weight: 700;
}
.gs-plan-best {
    font-size: 12px;
    color: #6b7280;
    background: #f9fafb;
    padding: 8px 12px;
    border-radius: 4px;
}

@media (max-width: 760px) {
    .gs-plan-grid { grid-template-columns: 1fr; }
}

.gs-delivery-area {
    background: #f9fafb;
    padding: 60px 0;
}
.gs-delivery-area-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}
.gs-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0 16px;
}
.gs-area-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-left: 3px solid var(--primary, #D32F2F);
    font-size: 14px;
    color: #1f2937;
}
.gs-area-pin { color: var(--primary, #D32F2F); }
.gs-area-note {
    background: #fff;
    padding: 14px 16px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.8;
    border-radius: 4px;
    border: 1px dashed #d1d5db;
}

@media (max-width: 540px) {
    .gs-area-grid { grid-template-columns: 1fr; }
}

.gs-delivery-farm {
    background: #fff;
    padding: 60px 0;
}
.gs-delivery-farm-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    align-items: center;
    background: #FFF8E1;
    border-left: 6px solid #FFC107;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 4px;
}
.gs-delivery-farm-badge {
    background: #B45309;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
}
.gs-delivery-farm-body h3 {
    font-size: 20px;
    color: #92400E;
    margin-bottom: 12px;
}
.gs-delivery-farm-body p {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.9;
}
.gs-delivery-farm-body strong { color: #B45309; }

@media (max-width: 700px) {
    .gs-delivery-farm-inner { grid-template-columns: 1fr; padding: 24px; }
}
