/* ================================================================
   custom.css — shinsei-j modern redesign
   Mobile-first. No layout dependency on uploaded images.
   ================================================================ */

/* ================================================================
   PAGE: PRICE — 元データ完全再現スタイル
   ================================================================ */

/* セクション見出し */
.price-section-head {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 10px 16px;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0;
}
.price-note-top {
    font-size: 13px;
    color: var(--text-mid);
    background: var(--bg);
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-top: none;
    margin-bottom: 20px;
    line-height: 1.85;
}

/* 4カラム料金グリッド */
.price-pack--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.price-pack--4 .price-pack-item {
    padding: 0;
    border-right: 1px solid var(--border);
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.price-pack--4 .price-pack-item:last-child { border-right: none; }
.price-pack--4 .price-pack-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    padding: 10px 12px;
    margin: 0;
    text-align: center;
}
/* 合計欄のヘッダー色 */
.price-pack--4 .price-pack-item--total h3 {
    background: var(--navy);
}

/* 車種画像 */
.price-car-img {
    width: 100%;
    display: block;
}

/* 車種例テキスト */
.price-car-models {
    font-size: 12px;
    color: var(--text-mid);
    padding: 10px 12px 0;
    line-height: 1.6;
    text-align: center;
}

/* 料金内訳テーブル */
.price-inner-tbl {
    width: 100%;
    border-collapse: collapse;
    flex: 1;
}
.price-inner-tbl td {
    padding: 10px 12px;
    font-size: 13px;
    border-top: 1px solid var(--border);
    color: var(--text);
    line-height: 1.6;
    text-align: center;
}
.price-inner-tbl strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-top: 2px;
}
/* 合計行 */
.price-inner-tbl .price-total-row td {
    background: var(--bg);
    font-weight: 600;
}
.price-inner-tbl .price-total-row td strong {
    font-size: 17px;
    color: var(--red);
}
/* 総合計行 */
.price-inner-tbl .price-grand-total td {
    background: var(--navy);
    color: var(--white);
}
.price-inner-tbl .price-grand-total td strong {
    font-size: 19px;
    color: var(--white);
}

/* 割引テーブル */
.price-discount-tbl {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.price-discount-tbl th {
    background: var(--bg);
    padding: 11px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    border-bottom: 1px solid var(--border);
    width: 60%;
}
.price-discount-tbl td {
    padding: 11px 16px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.price-discount-tbl tr:last-child th,
.price-discount-tbl tr:last-child td { border-bottom: none; }
.price-discount-tbl tr:nth-child(even) th,
.price-discount-tbl tr:nth-child(even) td {
    background: #f0f4f8;
    color: var(--navy);
}
.price-discount-tbl tr:nth-child(even) td { color: var(--text); }

/* ================================================================
   PAGE: BLOG LIST (お知らせ一覧)
   ================================================================ */
.news-list { max-width: 800px; margin: 0 auto; }
.news-item { border-bottom: 1px solid var(--border); }
.news-item-link {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 18px 12px;
    color: var(--text);
    text-decoration: none;
    transition: var(--trans);
}
.news-item-link:hover { background: var(--bg); color: var(--navy); }
.news-item-date { font-size: 13px; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }
.news-item-title { font-size: 15px; font-weight: 600; line-height: 1.6; }
.news-item-link:hover .news-item-title { color: var(--red); }
.news-pagination { margin-top: 40px; text-align: center; }
.news-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.news-pagination .page-numbers {
    display: inline-block; padding: 8px 14px; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: 14px; color: var(--navy); text-decoration: none;
}
.news-pagination .page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.news-pagination .page-numbers:hover:not(.current) { background: var(--bg); }

/* ================================================================
   PAGE: SINGLE POST (ブログ投稿個別ページ)
   ================================================================ */
.single-post { max-width: 800px; margin: 0 auto; }
.single-post-hd { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.single-post-title { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.5; }
.single-post-date { font-size: 13px; color: var(--text-light); }
.single-post-body { font-size: 15px; line-height: 2; color: var(--text); }
.single-post-body p { margin-bottom: 1.4em; }
.single-post-body h2 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 2em 0 .8em; }
.single-post-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 1.6em 0 .6em; }
.single-post-body a { color: var(--red); text-decoration: underline; }
.single-post-nav { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ================================================================
   PAGE: CONTACT — スタイル補完
   ================================================================ */
.contact-form-section { margin-bottom: 48px; }
.contact-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 12px 20px;
    margin-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
}
.contact-intro {
    border-radius: 0 0 var(--radius) var(--radius) !important;
    border-left: none !important;
    border: 1px solid var(--border) !important;
    border-top: 3px solid var(--red) !important;
    margin-bottom: 24px !important;
}
/* CF7 必須バッジ（CF7は <span class="req">必須</span> を出力） */
.wpcf7 span.req,
.wpcf7 .req {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: .03em;
}
.wpcf7 .wpcf7-not-valid-tip { color: var(--red); font-size: 12px; margin-top: 4px; display: block; }
.wpcf7 .wpcf7-response-output { padding: 12px 16px; margin-top: 16px; border-radius: var(--radius); font-size: 14px; border: 1px solid var(--border); }
.wpcf7 .wpcf7-mail-sent-ok { background: #f0faf0; border-color: #5ab85a; color: #2d6a2d; }
.wpcf7 .wpcf7-validation-errors { background: #fff8f0; border-color: #e08030; color: #7a3c00; }

/* ================================================================
   RESPONSIVE — price 4col → 2col → 1col
   ================================================================ */

/* ---- カスタムロゴ ---- */
#site-logo .custom-logo-link { display: block; }
#site-logo .custom-logo-link img,
#site-logo .custom-logo { height: 48px; width: auto; display: block; }

/* ---- about-img：縦長画像向け（oasisマスコットなど） ---- */
.about-img--natural {
    aspect-ratio: unset;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img--natural img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: unset;
    border-radius: var(--radius-lg);
}

/* ---- ギャラリー：低解像度画像は引き伸ばさない ---- */
.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    background: var(--bg);
    display: block;
}

/* ---- CSS Custom Properties ---- */
:root {
    --navy:        #0d1f3c;
    --navy-mid:    #1a3a6e;
    --red:         #e63946;
    --red-dark:    #c1121f;
    --bg:          #f4f6f9;
    --bg-dark:     #e8eaee;
    --white:       #ffffff;
    --text:        #2c2c2c;
    --text-mid:    #555;
    --text-light:  #999;
    --border:      #dde1e7;
    --radius:      6px;
    --radius-lg:   14px;
    --shadow:      0 2px 12px rgba(0,0,0,.09);
    --shadow-lg:   0 6px 32px rgba(0,0,0,.14);
    --trans:       .22s ease;
    --max-w:       1100px;
    --hh:          68px; /* header height */
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }
body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
    background: var(--white);
}

/* ---- Layout Helpers ---- */
.wrap {
    width: 92%;
    max-width: var(--max-w);
    margin-inline: auto;
}
.sec { padding: 72px 0; }
.sec--gray { background: var(--bg); }
.sec--navy { background: var(--navy); color: var(--white); }
.sec--navy-grad {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
}

/* ---- Section Title ---- */
.sec-title {
    text-align: center;
    margin-bottom: 52px;
}
.sec-title .en {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.sec-title h2 {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.sec-title--white h2 { color: var(--white); }
.sec-title .bar {
    display: inline-block;
    width: 44px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-top: 14px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
    transition: var(--trans);
    white-space: nowrap;
}
.btn-red  { background: var(--red);  color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-ghost-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 15px 40px; font-size: 16px; }

/* ================================================================
   HEADER
   ================================================================ */
#headerwrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
#header {
    display: flex;
    align-items: center;
    height: var(--hh);
    padding: 0 24px;
    max-width: 1280px;
    margin-inline: auto;
    gap: 16px;
}

/* Logo */
#site-logo { flex-shrink: 0; }
#site-logo a {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 2px;
}
#site-logo img { height: 38px; width: auto; }
.logo-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}
.logo-sub {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: .06em;
    white-space: nowrap;
}

/* Desktop nav */
#main-menu-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#main-menu-container .menu {
    display: flex;
    align-items: center;
    gap: 2px;
}
#main-menu-container .menu li a {
    display: block;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border-radius: var(--radius);
    transition: var(--trans);
    white-space: nowrap;
}
#main-menu-container .menu li a:hover,
#main-menu-container .menu li.current-menu-item > a {
    color: var(--red);
    background: rgba(230,57,70,.07);
}

/* Header tel block */
.hdr-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    margin-left: 8px;
}
.hdr-tel-label { font-size: 10px; color: var(--text-light); line-height: 1; }
.hdr-tel-num {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .02em;
    line-height: 1.2;
    white-space: nowrap;
}
.hdr-tel-hours { font-size: 10px; color: var(--text-light); }

/* Contact btn in header */
.hdr-cta {
    flex-shrink: 0;
    margin-left: 8px;
}

/* Hamburger button */
#menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    margin-left: auto;
}
#menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--trans);
    transform-origin: center;
}
#menu-button.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-button.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-button.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen nav */
#sp-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--hh);
    background: rgba(13,31,60,.97);
    z-index: 990;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity var(--trans);
}
#sp-nav.is-open { display: flex; }
#sp-nav .menu {
    width: 100%;
    max-width: 360px;
}
#sp-nav .menu li {
    border-bottom: 1px solid rgba(255,255,255,.12);
}
#sp-nav .menu li:first-child { border-top: 1px solid rgba(255,255,255,.12); }
#sp-nav .menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: var(--trans);
}
#sp-nav .menu li a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--red);
    border-right: 2px solid var(--red);
    transform: rotate(45deg);
    flex-shrink: 0;
}
#sp-nav .menu li a:hover {
    background: rgba(255,255,255,.06);
    padding-left: 24px;
}
.sp-nav-tel {
    margin-top: 32px;
    text-align: center;
    color: var(--white);
}
.sp-nav-tel a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}
.sp-nav-tel small { display: block; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ================================================================
   LAYOUT
   ================================================================ */
#pagewrap { display: flex; flex-direction: column; min-height: 100vh; }
#body { flex: 1; }

/* ================================================================
   HERO (front-page)
   ================================================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
}
.hero-slider {
    position: relative;
    flex: 1;
    overflow: hidden;
    background: var(--navy);
}
/* Each slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Overlay text */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,31,60,.75) 40%, rgba(13,31,60,.25) 100%);
    display: flex;
    align-items: center;
    z-index: 2;
}
.hero-text {
    width: 92%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding: 60px 0 80px;
}
.hero-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.hero-text h1 {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-text h1 em { color: #7eb8f7; font-style: normal; }
.hero-text p {
    font-size: clamp(13px, 1.8vw, 16px);
    color: rgba(255,255,255,.85);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.9;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: var(--trans);
    padding: 0;
}
.hero-dot.is-active { background: var(--white); transform: scale(1.25); }

/* Stats bar */
.hero-stats {
    background: var(--white);
    border-bottom: 3px solid var(--red);
}
.hero-stats-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 12px;
    border-right: 1px solid var(--border);
    text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.stat-num sup { font-size: .5em; color: var(--text-mid); }
.stat-label { font-size: 12px; color: var(--text-mid); margin-top: 4px; }

/* ================================================================
   SERVICE GRID
   ================================================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--trans);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card-img {
    width: 100%;
    display: block;
}
.service-card-img-ph {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255,255,255,.25);
}
.service-card-body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}
.service-card-body p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}
.service-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--trans);
}
.service-card-link::after { content: "→"; }
.service-card-link:hover { color: var(--red-dark); gap: 9px; }

/* ================================================================
   ABOUT / GREETING
   ================================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-tag {
    display: inline-block;
    background: rgba(230,57,70,.1);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 12px;
}
.about-grid h2 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 20px;
}
.about-grid p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 10px;
}
/* .about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-dark);
    aspect-ratio: 4/3;
} */
.about-img img { width: 100%; height: auto; display: block; }
.about-img-ph {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.3);
    font-size: 52px;
    gap: 10px;
}
.about-img-ph span { font-size: 13px; letter-spacing: .05em; }

/* ================================================================
   NEWS
   ================================================================ */
.news-list { display: flex; flex-direction: column; }
.news-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 15px 4px;
    border-bottom: 1px solid var(--border);
    transition: var(--trans);
    text-decoration: none;
    color: var(--text);
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover { background: var(--bg); padding-left: 12px; }
.news-date {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}
.news-cat {
    font-size: 11px;
    font-weight: 700;
    background: var(--navy);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 2px;
    flex-shrink: 0;
    white-space: nowrap;
}
.news-ttl {
    font-size: 14.5px;
    flex: 1;
    line-height: 1.5;
}
.news-item:hover .news-ttl { color: var(--red); }

/* ================================================================
   CTA BANNER (partials/banner-contact)
   ================================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 64px 24px;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(18px, 3.5vw, 26px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}
.cta-banner p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-tel-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cta-tel { display: flex; flex-direction: column; align-items: center; }
.cta-tel-label { font-size: 11px; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.cta-tel-num {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: .02em;
}
.cta-tel-hours { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 4px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   PAGE HERO
   ================================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 52px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(20px, 4.5vw, 32px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 6px;
}
.page-hero p { font-size: 13px; color: rgba(255,255,255,.65); }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.3); font-size: 14px; }

/* ================================================================
   SHARED: INFO TABLE
   ================================================================ */
.info-tbl {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.info-tbl th, .info-tbl td {
    padding: 13px 18px;
    font-size: 14.5px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.75;
    text-align: left;
}
.info-tbl th {
    background: var(--bg);
    font-weight: 700;
    color: var(--navy);
    width: 28%;
    white-space: nowrap;
}
.info-tbl tr:last-child th,
.info-tbl tr:last-child td { border-bottom: none; }

/* ================================================================
   SHARED: ACCORDION
   ================================================================ */
.acc-list { display: flex; flex-direction: column; gap: 8px; }
.acc-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    background: var(--white);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    user-select: none;
    transition: background var(--trans);
    gap: 12px;
}
.acc-header:hover { background: var(--bg); }
.acc-arrow {
    font-size: 22px;
    color: var(--red);
    transition: transform var(--trans);
    line-height: 1;
    flex-shrink: 0;
}
.acc-item.is-open .acc-arrow { transform: rotate(180deg); }
.acc-body {
    display: none;
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.9;
}
.acc-body.is-open { display: block; }
.acc-body > * + * { margin-top: 10px; }

/* ================================================================
   FOOTER
   ================================================================ */
#footerwrap { background: var(--navy); }
#footer {
    padding: 56px 0 0;
    color: rgba(255,255,255,.8);
    max-width: 100%;
}
.footer-inner {
    width: 92%;
    max-width: var(--max-w);
    margin-inline: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.95;
    margin-bottom: 14px;
}
.footer-logo-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.footer-logo-name small { display: block; font-size: 10px; font-weight: 400; color: rgba(255,255,255,.4); letter-spacing: .06em; margin-bottom: 4px; }
.footer-tel-block {
    margin-top: 12px;
}
.footer-tel-label { font-size: 10px; color: rgba(255,255,255,.4); }
.footer-tel-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
}
.footer-hours { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }
.footer-nav-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 4px; }
.footer-nav-col ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.footer-nav-col ul li a::before {
    content: "›";
    color: var(--red);
    font-size: 18px;
    line-height: 1;
}
.footer-nav-col ul li a:hover { color: var(--white); padding-left: 6px; }
.footer-addr h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .1em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-addr address {
    font-style: normal;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 2;
}
.footer-banners {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.footer-banners a {
    display: block;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--trans);
}
.footer-banners a:hover { border-color: rgba(255,255,255,.4); }
.footer-banners img { height: 36px; width: auto; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.35);
}

/* ================================================================
   SP BOTTOM BAR
   ================================================================ */
.sp-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 10px rgba(0,0,0,.09);
}
.sp-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.sp-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    line-height: 1;
    transition: var(--trans);
    border: none;
    background: none;
    cursor: pointer;
}
.sp-bar-btn:nth-child(1) { background: var(--red); color: var(--white); }
.sp-bar-btn + .sp-bar-btn { border-left: 1px solid var(--border); }
.sp-bar-btn:hover { opacity: .8; }
.sp-bar-icon { font-size: 20px; line-height: 1; }

/* Back to top */
#pc-backtop {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 800;
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans), transform var(--trans);
    transform: translateY(10px);
}
#pc-backtop.is-visible {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}
#pc-backtop:hover { background: var(--red); transform: translateY(-3px); }
#pc-backtop svg { fill: var(--white); width: 18px; height: 18px; display: block; }

/* ================================================================
   PAGE: CONTACT
   ================================================================ */
.contact-wrap {
    max-width: 760px;
    margin-inline: auto;
    padding: 64px 24px;
}
.contact-intro {
    background: var(--bg);
    border-left: 4px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-bottom: 36px;
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.9;
}
/* CF7 overrides */
.wpcf7 .wpcf7-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.wpcf7 table tr { display: flex; flex-direction: column; margin-bottom: 14px; }
.wpcf7 table tr th {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    padding: 0 0 8px 0;
    width: 100%;
    text-align: left;
}
.wpcf7 table tr td { padding: 0; width: 100%; }
.wpcf7 table tr td input[type="text"],
.wpcf7 table tr td input[type="email"],
.wpcf7 table tr td input[type="tel"],
.wpcf7 table tr td select,
.wpcf7 table tr td textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    background: var(--white);
    color: var(--text);
    font-family: inherit;
    transition: border-color var(--trans);
    max-width: 100%;
    box-sizing: border-box;
}
.wpcf7 table tr td input:focus,
.wpcf7 table tr td select:focus,
.wpcf7 table tr td textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13,31,60,.08);
}
.wpcf7 table tr td textarea { min-height: 140px; resize: vertical; }
.wpcf7 .submit_btn { text-align: center; margin-top: 28px; }
.wpcf7 .submit_btn input[type="submit"] {
    padding: 14px 60px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--trans);
}
.wpcf7 .submit_btn input[type="submit"]:hover { background: var(--red-dark); }
.contact-policy {
    margin-top: 36px;
    font-size: 13px;
    color: var(--text-mid);
}
.contact-policy h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.policy-scroll {
    height: 180px;
    overflow-y: scroll;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    background: var(--bg);
    line-height: 1.85;
}

/* ================================================================
   PAGE: OASIS — intro grid & banners
   ================================================================ */
.oasis-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}
.oasis-intro-title {
    font-size: clamp(18px, 2.8vw, 24px);
    font-weight: 700;
    color: var(--navy);
    border-left: 4px solid var(--red);
    padding-left: 14px;
    margin-bottom: 18px;
    line-height: 1.4;
}
.oasis-banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.oasis-banner-item img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.oasis-banner-item a:hover img { opacity: .88; }

/* promise-t for HTML content (no strong/span split) */
.promise-t span { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }

/* ================================================================
   PAGE: FAQ — static (always-open) layout
   ================================================================ */
.faq-static-list { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.faq-static-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-static-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--white);
}
.faq-static-a {
    padding: 18px 22px 24px 66px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.9;
}
.faq-static-a > * + * { margin-top: 10px; }

/* ================================================================
   PAGES: OASIS / SALE — Promise/Point cards
   ================================================================ */
.point-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.point-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--trans);
}
.point-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.point-card-hd {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 18px;
    text-align: center;
}
.point-label { font-size: 10px; color: rgba(255,255,255,.55); letter-spacing: .12em; font-weight: 700; }
.point-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin: 4px 0;
}
.point-card-bd { padding: 22px; }
.point-card-bd h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.point-card-bd p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }
.point-card-img { width: 100%; display: block; }
.point-card-img-ph {
    width: 100%; aspect-ratio: 4/3;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--text-light);
}
.promise-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.promise-item {
    flex: 0 0 calc(25% - 10.5px);
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--trans);
    overflow: hidden;
}
.promise-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.promise-n {
    width: 52px;
    min-height: 100%;
    background: linear-gradient(180deg, var(--red) 0%, #c0000a 100%);
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Georgia', serif;
    letter-spacing: -.02em;
}
.promise-t {
    padding: 14px 14px 14px 14px;
    flex: 1;
}
.promise-t strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 5px; line-height: 1.5; }
.promise-t span { font-size: 12px; color: var(--text-mid); line-height: 1.8; }

/* ================================================================
   PAGE: PRICE
   ================================================================ */
.price-pack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.price-pack-item {
    text-align: center;
    padding: 28px 14px;
    border-right: 1px solid var(--border);
    background: var(--white);
    transition: var(--trans);
}
.price-pack-item:last-child { border-right: none; }
.price-pack-item:hover { background: var(--bg); }
.pp-icon { font-size: 34px; margin-bottom: 10px; }
.price-pack-item h3 { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.price-pack-item p { font-size: 12px; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.price-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius);
}
.price-tag .unit { font-size: 11px; font-weight: 400; }
.price-tbl-wrap { overflow-x: auto; margin-top: 20px; }
.price-tbl {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}
.price-tbl th {
    background: var(--navy);
    color: var(--white);
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}
.price-tbl td {
    padding: 10px 14px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    color: var(--text);
}
.price-tbl tr:last-child td { border-bottom: none; }
.price-tbl tr:nth-child(even) td { background: var(--bg); }
.price-total-box {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--white);
}
.price-total-box > h3 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--white);
}
.price-total-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.ptg-item {
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
}
.ptg-label { font-size: 11px; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.ptg-price { font-size: 20px; font-weight: 700; color: var(--white); }
.ptg-price small { font-size: 11px; font-weight: 400; }
.price-note { font-size: 12px; color: rgba(255,255,255,.55); text-align: center; margin-top: 14px; }

/* ================================================================
   PAGE: FAQ
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    background: var(--white);
    transition: background var(--trans);
    user-select: none;
}
.faq-q:hover { background: var(--bg); }
.faq-qmark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-qtxt { font-size: 15px; font-weight: 600; color: var(--navy); flex: 1; line-height: 1.4; }
.faq-toggle {
    font-size: 22px;
    color: var(--red);
    transition: transform var(--trans);
    line-height: 1;
    flex-shrink: 0;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-a {
    display: none;
    padding: 18px 22px 22px 66px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.9;
}
.faq-a.is-open { display: block; }
.faq-a > * + * { margin-top: 10px; }
.faq-cmp-tbl {
    width: 100%;
    border: 1px solid var(--border);
    border-collapse: collapse;
    margin-top: 14px;
    font-size: 13px;
}
.faq-cmp-tbl th { background: var(--navy); color: var(--white); padding: 9px 12px; text-align: center; }
.faq-cmp-tbl td { padding: 9px 12px; border: 1px solid var(--border); vertical-align: top; line-height: 1.7; }
.faq-cmp-tbl tr:nth-child(even) td { background: var(--bg); }

/* FAQ: 定義ボックス（ユーザー車検とは / 代行車検とは） */
.faq-def-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 10px;
}
.faq-def-box {
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 13.5px;
    line-height: 1.8;
}
.faq-def-box h4 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 6px;
}
.faq-def-box--org {
    background: #fff8f0;
    border: 1px solid #f0a050;
}
.faq-def-box--org h4 { color: #c06000; }
/* FAQ: プロ整備ハイライト */
.faq-highlight {
    background: #fff0f0;
    border: 1px solid var(--red);
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text);
}
.faq-highlight h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}
/* FAQ: 警告テキスト */
.faq-warn {
    background: var(--bg);
    border-left: 4px solid var(--red);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--text-mid);
}

/* ================================================================
   PAGE: INSPECTION
   ================================================================ */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.equip-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--trans);
}
.equip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.equip-card-img { width: 100%; display: block; }
.equip-card-img-ph {
    width: 100%; aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: rgba(255,255,255,.3);
}
.equip-card-bd { padding: 14px 16px; }
.equip-card-bd h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.equip-card-bd p { font-size: 12.5px; color: var(--text-mid); line-height: 1.7; }
.insp-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 32px;
}
.repair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.repair-cat h4 {
    background: var(--navy);
    color: var(--white);
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: var(--radius) var(--radius) 0 0;
}
.repair-cat table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}
.repair-cat table td {
    padding: 9px 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.repair-cat table td:last-child { text-align: right; white-space: nowrap; }
.repair-cat table tr:last-child td { border-bottom: none; }
.repair-cat table tr:nth-child(even) td { background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-dark);
}
.gallery-item img { width: 100%; display: block; }
.gallery-cap {
    padding: 9px 12px;
    font-size: 12.5px;
    color: var(--text-mid);
    background: var(--white);
    border-top: 1px solid var(--border);
}

/* ================================================================
   PAGE: INFORMATION
   ================================================================ */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 28px;
}
.map-wrap iframe { display: block; width: 100%; border: none; }

/* ================================================================
   PAGE: PP
   ================================================================ */
.pp-wrap { max-width: 820px; margin-inline: auto; }
.pp-block { margin-bottom: 40px; }
.pp-block h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    border-left: 4px solid var(--red);
    padding-left: 14px;
    margin-bottom: 18px;
    line-height: 1.4;
}
.pp-block h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 18px 0 8px;
}
.pp-block p, .pp-block li {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.95;
}
.pp-block ul { margin-left: 18px; list-style: disc; }
.pp-block a { color: var(--navy-mid); }
.pp-block a:hover { text-decoration: underline; }

/* ================================================================
   RESPONSIVE — 900px
   ================================================================ */
@media (max-width: 900px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > .footer-brand { grid-column: 1 / -1; }
    .price-pack { grid-template-columns: repeat(2, 1fr); }
    .price-pack--4 { grid-template-columns: repeat(2, 1fr); }
    .price-pack--4 .price-pack-item { border-bottom: 1px solid var(--border); }
    .price-total-grid { grid-template-columns: repeat(2, 1fr); }
    .insp-2col { grid-template-columns: 1fr; }
    .point-grid { grid-template-columns: repeat(2, 1fr); }
    .price-discount-tbl th { width: auto; }
}

/* ================================================================
   RESPONSIVE — 768px (mobile)
   ================================================================ */
@media (max-width: 768px) {
    :root { --hh: 60px; }

    /* Header: hide desktop elements, show hamburger */
    #main-menu-container { display: none; }
    .hdr-tel { display: none; }
    .hdr-cta { display: none; }
    #menu-button { display: flex; }

    /* Body bottom padding for SP bar */
    body { padding-bottom: 56px; }
    .sp-bar { display: block; }
    #pc-backtop { bottom: 68px; right: 14px; width: 40px; height: 40px; }

    /* Layouts */
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .service-grid { grid-template-columns: 1fr; }
    .point-grid { grid-template-columns: 1fr; }
    .equip-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .repair-grid { grid-template-columns: 1fr; }
    .insp-2col { grid-template-columns: 1fr; }
    .price-pack { grid-template-columns: repeat(2, 1fr); }
    .price-total-grid { grid-template-columns: 1fr 1fr; }

    /* Hero */
    .hero-text { padding: 48px 0 70px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }

    /* Section */
    .sec { padding: 48px 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-nav-col, .footer-addr { display: none; }

    /* CTA */
    .cta-tel-row { flex-direction: column; gap: 12px; }
    .cta-btns { flex-direction: column; align-items: center; }

    /* Contact */
    .wpcf7 .wpcf7-form { padding: 24px 18px; }
    .contact-wrap { padding: 40px 16px; }

    /* FAQ */
    .faq-a { padding-left: 22px; }
    .faq-static-a { padding-left: 22px; }
    .faq-def-grid { grid-template-columns: 1fr; }
    /* OASIS */
    .oasis-intro-grid { grid-template-columns: 1fr; }
    .oasis-banner-row { grid-template-columns: 1fr; }

    /* Table */
    .info-tbl th { width: auto; white-space: normal; }
    .promise-item { flex: 0 0 calc(50% - 7px); }
}

@media (max-width: 480px) {
    .promise-item { flex: 0 0 100%; }
    .equip-grid { grid-template-columns: 1fr; }
    .price-pack { grid-template-columns: 1fr; }
    .price-pack--4 { grid-template-columns: 1fr; }
    .price-total-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .price-total-box { padding: 24px 16px; }
    .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
    .stat-num { font-size: 20px; }
    .price-discount-tbl th,
    .price-discount-tbl td { display: block; width: 100%; }
    .price-discount-tbl th { border-bottom: none; padding-bottom: 4px; }
}
