/* jp-pages.css - Japanese service pages (mowing / kanri)
   Loaded AFTER style.css. Does not modify the existing English site. */

:root {
    --jp-green: #15803d;
    --jp-green-dark: #166534;
    --jp-ink: #1f2937;
}

/* === Japanese typography === */
.jp {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium",
                 "Yu Gothic", "Meiryo", "Noto Sans JP", sans-serif;
    line-height: 1.85;
    letter-spacing: 0.02em;
    color: var(--jp-ink);
}
.jp h1, .jp h2, .jp h3, .jp h4 { line-height: 1.5; letter-spacing: 0.01em; }
.jp p { margin-bottom: 1em; }
.jp .lead { font-size: 1.08rem; }

/* Keep Japanese phrases from breaking awkwardly mid-word */
.jp h1, .jp h2, .jp .lead { word-break: normal; overflow-wrap: anywhere; line-break: strict; }
.nw { white-space: nowrap; }

/* === Page hero === */
.jp-hero {
    position: relative;
    background-color: #0f172a;
    background-image: linear-gradient(rgba(15,23,42,0.58), rgba(15,23,42,0.72)), url('mowing-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 90px 20px 80px;
    text-align: center;
}
.jp-hero.kanri {
    background-image: linear-gradient(rgba(15,23,42,0.62), rgba(15,23,42,0.74)), url('house.jpg');
}
.jp-hero .inner { max-width: 900px; margin: 0 auto; }
.jp-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.jp-hero .lead { font-size: 1.15rem; opacity: 0.95; margin-bottom: 32px; }
.jp-hero .eyebrow {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
}

/* === CTA buttons === */
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--jp-green);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(21,128,61,0.45);
    transition: transform .2s, box-shadow .2s;
    line-height: 1.25;
}
.btn-tel:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(21,128,61,0.6); }
.btn-tel .num { font-size: 1.3rem; letter-spacing: 0.04em; }
.btn-tel small { display: block; font-size: 0.7rem; opacity: 0.9; font-weight: 600; }
.btn-mail {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.55);
    color: #fff; text-decoration: none; font-weight: 700;
    padding: 16px 30px; border-radius: 50px; transition: .2s;
}
.btn-mail:hover { background: rgba(255,255,255,0.22); }
.on-light .btn-mail { background: #fff; border-color: var(--primary); color: var(--primary); }
.on-light .btn-mail:hover { background: #f1f5f9; }

/* === Section scaffolding === */
.sec { padding: 70px 20px; }
.sec-alt { background: #f1f5f9; }
.sec-dark { background: var(--primary); color: #e2e8f0; }
.sec-dark h2, .sec-dark h3 { color: #fff; }
.wrap { max-width: 1100px; margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 45px; }
.sec-head h2 { font-size: 1.9rem; color: var(--primary); margin-bottom: 10px; }
.sec-dark .sec-head h2 { color: #fff; }
.sec-head p { color: #64748b; }
.sec-dark .sec-head p { color: #94a3b8; }

/* === Feature cards === */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.feat {
    background: #fff; border-radius: 14px; padding: 32px 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border-top: 4px solid var(--jp-green);
}
.feat .ic {
    width: 58px; height: 58px; border-radius: 50%;
    background: #dcfce7; color: var(--jp-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 16px;
}
.feat h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.feat p { font-size: 0.95rem; color: #475569; margin: 0; }

/* === Price table === */
.price-tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.price-tbl th, .price-tbl td { padding: 16px 18px; text-align: left; border-bottom: 1px solid #e2e8f0; }
.price-tbl thead th { background: var(--primary); color: #fff; font-weight: 700; font-size: 0.95rem; }
.price-tbl tbody tr:nth-child(even) { background: #f8fafc; }
.price-tbl .amt { font-weight: 800; color: var(--jp-green); font-size: 1.18rem; white-space: nowrap; }
.price-tbl .sub { display: block; font-size: 0.82rem; color: #64748b; font-weight: 400; }
.price-tbl tbody tr:last-child td { border-bottom: none; }

.badge-free {
    display: inline-block; background: #dcfce7; color: var(--jp-green-dark);
    font-weight: 700; font-size: 0.85rem; padding: 4px 12px; border-radius: 50px;
}

.note-list { list-style: none; margin-top: 24px; padding: 0; }
.note-list li { position: relative; padding-left: 22px; margin-bottom: 9px; font-size: 0.92rem; color: #475569; }
.note-list li::before { content: '※'; position: absolute; left: 0; color: #94a3b8; }

.callout {
    background: #fffbeb; border-left: 5px solid var(--accent);
    padding: 22px 24px; border-radius: 6px; margin-top: 30px;
}
.callout h4 { color: #92400e; margin-bottom: 8px; font-size: 1.05rem; }
.callout p { margin: 0; font-size: 0.95rem; color: #78350f; }

.callout-green {
    background: #f0fdf4; border-left: 5px solid var(--jp-green);
    padding: 22px 24px; border-radius: 6px; margin-top: 30px;
}
.callout-green h4 { color: var(--jp-green-dark); margin-bottom: 8px; font-size: 1.05rem; }
.callout-green p { margin: 0; font-size: 0.95rem; color: #14532d; }

/* === Use case chips === */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; }
.case {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
    padding: 22px 20px; text-align: center; transition: .25s;
}
.case:hover { border-color: var(--jp-green); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.07); }
.case i { font-size: 1.7rem; color: var(--jp-green); margin-bottom: 12px; display: block; }
.case strong { display: block; color: var(--primary); font-size: 1rem; margin-bottom: 4px; }
.case span { font-size: 0.85rem; color: #64748b; }

/* === Machine / photo gallery === */
.gal { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; margin-top: 34px; }
.gal figure { margin: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,0.18); background: #1e293b; }
.gal img { width: 100%; height: 230px; object-fit: cover; display: block; }
.gal figcaption { padding: 12px 16px; font-size: 0.85rem; color: #cbd5e1; }

.split { display: flex; gap: 46px; align-items: center; flex-wrap: wrap; }
.split > div { flex: 1; min-width: 300px; }
.split img { width: 100%; border-radius: 14px; box-shadow: var(--shadow); display: block; }

/* === Steps === */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 24px; }
.step { position: relative; background: #fff; border-radius: 12px; padding: 30px 24px 24px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.step::before {
    counter-increment: s; content: counter(s);
    position: absolute; top: -16px; left: 24px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--jp-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem;
}
.step h4 { color: var(--primary); font-size: 1.05rem; margin: 6px 0 8px; }
.step p { font-size: 0.9rem; color: #64748b; margin: 0; }

/* === FAQ === */
.faq details {
    background: #fff; border-radius: 10px; margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); overflow: hidden;
}
.faq summary {
    cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--primary);
    list-style: none; position: relative; padding-right: 50px; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    font-size: 1.4rem; color: var(--jp-green); font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: '\2212'; }
.faq .ans { padding: 0 22px 20px; color: #475569; font-size: 0.95rem; }
.faq .ans p:last-child { margin-bottom: 0; }

/* === Area === */
.area-box { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.area-box h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 10px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 6px; }
.area-tags span { background: #f1f5f9; color: #475569; padding: 5px 13px; border-radius: 50px; font-size: 0.85rem; }

/* === Final CTA === */
.final-cta { background: linear-gradient(135deg, #14532d 0%, #166534 100%); color: #fff; text-align: center; padding: 70px 20px; }
.final-cta h2 { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.final-cta p { color: #dcfce7; margin-bottom: 30px; }
.final-cta .btn-tel { background: #fff; color: var(--jp-green-dark); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.final-cta .btn-tel:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.4); }

/* === Cross link === */
.xlink {
    display: flex; align-items: center; justify-content: space-between; gap: 26px;
    background: #fff; border: 2px solid #e2e8f0; border-radius: 14px;
    padding: 28px 32px; flex-wrap: wrap; margin-top: 20px;
}
.xlink h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 6px; }
.xlink p { color: #64748b; font-size: 0.95rem; margin: 0; }
.xlink .btn { padding: 13px 28px; font-size: 0.95rem; }

/* === Mobile === */
@media (max-width: 768px) {
    .jp-hero { padding: 60px 18px 55px; }
    .jp-hero h1 { font-size: 1.75rem; }
    .jp-hero .lead { font-size: 1rem; }
    .sec { padding: 50px 18px; }
    .sec-head h2 { font-size: 1.5rem; }
    .btn-tel, .btn-mail { width: 100%; justify-content: center; }
    .cta-row { flex-direction: column; }
    .price-tbl th, .price-tbl td { padding: 12px 10px; font-size: 0.88rem; }
    .price-tbl .amt { font-size: 1.05rem; }
    .gal img { height: 200px; }
    .split { gap: 28px; }
    .xlink { flex-direction: column; text-align: center; }
    .area-box { padding: 24px 20px; }
}

/* === Work examples (施工例) === */
.works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 24px; }
.work {
    margin: 0; background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    display: flex; flex-direction: column;
}
.work img { width: 100%; height: 250px; object-fit: cover; display: block; }
.work figcaption {
    padding: 16px 18px 20px; font-size: 0.9rem; color: #475569; flex: 1;
}
.work .tag {
    display: inline-block; background: #e2e8f0; color: #475569;
    font-size: 0.75rem; font-weight: 700; padding: 3px 12px;
    border-radius: 50px; margin-right: 10px; vertical-align: 2px;
}
.work .tag.done { background: #dcfce7; color: var(--jp-green-dark); }

@media (max-width: 768px) {
    .work img { height: 220px; }
}

/* === Rate blocks (料金区分) === */
.rate-block { margin-bottom: 34px; }
.rate-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.rate-no {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
    background: var(--jp-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.15rem; line-height: 1;
}
.rate-head h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 4px; }
.rate-head p { font-size: 0.92rem; color: #64748b; margin: 0; }
.rate-block .price-tbl td { padding: 13px 18px; }
.hero-note { font-size: 0.85rem; color: #cbd5e1; margin-top: 18px; }

@media (max-width: 768px) {
    .rate-head { gap: 12px; }
    .rate-no { width: 34px; height: 34px; font-size: 1rem; }
    .rate-head h3 { font-size: 1.05rem; }
}

/* === Estimate calculator === */
.calc {
    background: #fff; border-radius: 16px; padding: 34px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.calc-row { margin-bottom: 30px; }
.calc-row > label {
    display: block; font-weight: 700; color: var(--primary);
    font-size: 1.02rem; margin-bottom: 12px;
}
.calc-area { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.calc-area input[type=number] {
    width: 150px; font-size: 1.6rem; font-weight: 800; color: var(--jp-green);
    border: 2px solid #e2e8f0; border-radius: 10px; padding: 8px 14px;
    font-family: inherit; -moz-appearance: textfield;
}
.calc-area input[type=number]:focus { outline: none; border-color: var(--jp-green); }
.calc-area .unit { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.calc-area .tsubo { font-size: 0.92rem; color: #64748b; margin-left: auto; }

input[type=range] {
    width: 100%; -webkit-appearance: none; appearance: none;
    height: 6px; border-radius: 3px; background: #e2e8f0; outline: none;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--jp-green); cursor: pointer; border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
input[type=range]::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--jp-green); cursor: pointer; border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.calc-hint { font-size: 0.85rem; color: #94a3b8; margin: 8px 0 0; }

.calc-opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 10px; }
.opt {
    background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 10px;
    padding: 14px 10px; cursor: pointer; font-family: inherit;
    font-size: 0.97rem; font-weight: 700; color: var(--text-dark);
    transition: .18s; text-align: center; line-height: 1.4;
}
.opt small { display: block; font-size: 0.78rem; font-weight: 500; color: #94a3b8; margin-top: 3px; }
.opt:hover { border-color: #cbd5e1; }
.opt.active { background: #f0fdf4; border-color: var(--jp-green); color: var(--jp-green-dark); }
.opt.active small { color: var(--jp-green); }

.calc-out {
    background: #0f172a; border-radius: 12px; padding: 26px 28px; margin-top: 34px; color: #e2e8f0;
}
.calc-total { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.calc-label { font-size: 0.95rem; color: #94a3b8; font-weight: 700; }
.calc-amt { font-size: 2.5rem; font-weight: 800; color: #86efac; line-height: 1.1; }
.calc-break { list-style: none; padding: 0; margin: 18px 0 0; border-top: 1px solid rgba(255,255,255,0.12); }
.calc-break li {
    display: flex; justify-content: space-between; gap: 14px;
    padding: 9px 0; font-size: 0.92rem; color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.calc-break li.minnote { color: #fcd34d; }
.calc-note { font-size: 0.83rem; color: #94a3b8; margin: 16px 0 0; line-height: 1.7; }
.calc-cta { margin-top: 20px; text-align: center; }
.calc-big h4 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.calc-big p { color: #cbd5e1; font-size: 0.95rem; margin: 0; }

/* === Business info table (kanri) === */
.info-tbl td { vertical-align: top; }
.info-tbl .lbl {
    background: #e8edf3; font-weight: 700; color: var(--primary);
    width: 30%; white-space: nowrap; font-size: 0.93rem;
}

@media (max-width: 768px) {
    .calc { padding: 24px 18px; }
    .calc-area input[type=number] { width: 120px; font-size: 1.35rem; }
    .calc-area .tsubo { margin-left: 0; width: 100%; }
    .calc-out { padding: 20px 18px; }
    .calc-amt { font-size: 2rem; }
    .calc-opts { grid-template-columns: 1fr; }
    .info-tbl .lbl { width: 34%; font-size: 0.85rem; }
}

/* === Equipment cards (使用機材) === */
.kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.kit {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 26px 22px;
}
.kit-ic {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(134,239,172,0.15); color: #86efac;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 14px;
}
.kit h3 { font-size: 1.02rem; color: #fff; margin-bottom: 6px; line-height: 1.45; }
.kit .kit-use {
    font-size: 0.8rem; color: #86efac; font-weight: 700;
    margin-bottom: 10px; letter-spacing: 0.02em;
}
.kit p { font-size: 0.89rem; color: #94a3b8; margin: 0; line-height: 1.75; }

/* === Finish levels (仕上がり) === */
.finish-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 22px; }
.fin {
    position: relative; background: #fff; border-radius: 14px;
    padding: 34px 24px 26px; box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border-top: 4px solid var(--jp-green);
}
.fin-no {
    position: absolute; top: -16px; left: 22px;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--jp-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem;
}
.fin h3 { font-size: 1.12rem; color: var(--primary); margin-bottom: 4px; }
.fin .fin-res {
    font-size: 0.85rem; color: var(--jp-green); font-weight: 700;
    margin-bottom: 12px; padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}
.fin p { font-size: 0.92rem; color: #475569; margin: 0; }
.fin-note {
    display: inline-block; background: #f1f5f9; color: #64748b;
    font-size: 0.78rem; font-weight: 700; padding: 2px 10px;
    border-radius: 50px; margin-left: 6px; white-space: nowrap;
}

/* === Annual contract === */
.annual-wrap { display: flex; gap: 34px; align-items: flex-start; flex-wrap: wrap; }
.annual-main { flex: 1 1 460px; min-width: 300px; }
.annual-pt {
    display: flex; gap: 18px; align-items: flex-start;
    background: #fff; border-radius: 12px; padding: 22px 24px;
    margin-bottom: 14px; box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.annual-pt > i {
    flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
    background: #dcfce7; color: var(--jp-green);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.annual-pt h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 5px; }
.annual-pt p { font-size: 0.92rem; color: #475569; margin: 0; }

.annual-side {
    flex: 0 1 330px; min-width: 280px;
    background: var(--primary); color: #e2e8f0;
    border-radius: 14px; padding: 28px 26px;
}
.annual-side h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.annual-side .check-list li { color: #cbd5e1; font-size: 0.92rem; margin-bottom: 11px; }
.annual-side .check-list li::before { color: #86efac; }
.annual-note {
    font-size: 0.85rem; color: #94a3b8; margin: 18px 0 0;
    padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12);
}
.annual-side .btn-tel small { font-size: 0.68rem; }
.annual-side .btn-tel .num { font-size: 1.15rem; }

/* === Calculator service gate === */
.calc-gate { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gate {
    background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 12px;
    padding: 20px 16px; cursor: pointer; font-family: inherit;
    text-align: center; transition: .18s; line-height: 1.5;
}
.gate i { display: block; font-size: 1.5rem; color: #94a3b8; margin-bottom: 8px; transition: .18s; }
.gate strong { display: block; font-size: 1.08rem; color: var(--text-dark); font-weight: 800; }
.gate small { display: block; font-size: 0.78rem; color: #94a3b8; margin-top: 4px; }
.gate:hover { border-color: #cbd5e1; }
.gate.active { background: #f0fdf4; border-color: var(--jp-green); }
.gate.active i, .gate.active strong { color: var(--jp-green-dark); }
.gate.active small { color: var(--jp-green); }
.calc-break li.disc { color: #86efac; }

@media (max-width: 480px) {
    .calc-gate { grid-template-columns: 1fr; }
}

/* === Two services === */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 26px; }
.svc {
    background: #fff; border-radius: 16px; padding: 32px 30px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.07);
    display: flex; flex-direction: column;
    border-top: 5px solid var(--jp-green);
}
.svc-kusa { border-top-color: var(--accent); }
.svc-head { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.svc-head i {
    flex: 0 0 auto; width: 54px; height: 54px; border-radius: 12px;
    background: #dcfce7; color: var(--jp-green);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.svc-kusa .svc-head i { background: #fef3c7; color: #b45309; }
.svc-head h3 { font-size: 1.5rem; color: var(--primary); margin: 0; }
.svc-sub { font-size: 0.85rem; color: #94a3b8; margin: 0; font-weight: 600; }
.svc-lead { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 16px; }
.svc .check-list { margin-bottom: 24px; flex: 1; }
.svc .check-list li { font-size: 0.93rem; color: #475569; }
.svc-kusa .check-list li::before { color: var(--accent); }
.svc-btn {
    display: block; text-align: center; text-decoration: none;
    background: var(--jp-green); color: #fff; font-weight: 700;
    padding: 13px 20px; border-radius: 50px; transition: .2s; font-size: 0.95rem;
}
.svc-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(21,128,61,0.35); }
.svc-kusa .svc-btn { background: var(--accent); }
.svc-kusa .svc-btn:hover { box-shadow: 0 6px 16px rgba(217,119,6,0.4); }
.svc-note {
    text-align: center; color: #64748b; font-size: 0.93rem;
    margin: 30px auto 0; max-width: 680px;
}

/* === Header: long Japanese brand name must not wrap or crowd the nav === */
.jp .logo {
    font-size: 1.15rem;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 8px;
}
.jp .logo img { height: 38px; }
.jp .nav-links { gap: 22px; }
.jp .nav-links a { white-space: nowrap; }

@media (max-width: 900px) {
    .jp .logo { font-size: 1rem; }
    .jp .logo img { height: 32px; }
}
@media (max-width: 768px) {
    .jp .nav-links { gap: 0; }
    .jp .nav-links li { width: 100%; }
    .jp .nav-links a { display: block; padding: 10px 0; }
}

/* === Green Pilot lockup in the header === */
.logo-mark { padding: 4px 0; }
.logo-mark img { height: 40px; width: auto; }
@media (max-width: 900px) { .logo-mark img { height: 34px; } }
@media (max-width: 400px) { .logo-mark img { height: 28px; } }
