/* ============================================================
   theme.css — Deep Emerald × Airy Editorial
   style.css / pages.css の後に読み込むアクセント定義層。
   ダーク面（ヒーロー・CTA・フッター）とライト面（コンテンツ）を
   交互に置く「サンドイッチ構造」。
   ============================================================ */


:root {
    --emerald-deep: #0b2418;
    --emerald: #0b3b24;
    --emerald-bright: #1a5c3d;
    --gold: #d4af37;
    --gold-dark: #aa8525;
    --gold-line: rgba(212, 175, 55, 0.45);
    --cream: #f4f1e8;
    --paper-line: #e5e1d3;
    --text-main: #1c2a22;
    --font-serif-jp: 'Shippori Mincho', 'Noto Serif JP', serif;

    /* base tokens override */
    --color-gray: #f5f3ec;
    --color-text: #1c2a22;
    --color-text-light: #5d6d5e;
    --glass-bg: #ffffff;
    --glass-border: var(--paper-line);
    --glass-shadow: 0 4px 24px rgba(28, 42, 34, 0.06);
}

body {
    background-color: #ffffff;
}

::selection {
    background: rgba(212, 175, 55, 0.3);
}

/* ---------- Facet texture for dark bands ---------- */

.page-hero,
.cta-band,
.footer {
    position: relative;
}

.page-hero::before,
.cta-band::before,
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0% 28%, transparent 28.2%),
        linear-gradient(245deg, rgba(0, 0, 0, 0.12) 0% 22%, transparent 22.2%),
        linear-gradient(65deg, rgba(255, 255, 255, 0.02) 0% 45%, transparent 45.2%);
    pointer-events: none;
}

/* ---------- Header (white / solid) ---------- */

.header {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--paper-line);
    box-shadow: none;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(28, 42, 34, 0.07);
}

.nav-list a {
    color: var(--emerald);
    font-weight: 500;
}

.nav-list a::after {
    background: var(--gold);
    height: 1px;
}

.nav-contact {
    background: var(--emerald);
    color: #ffffff !important;
    border-radius: 6px;
    padding: 12px 26px !important;
    box-shadow: none;
}

.nav-contact:hover {
    background: var(--emerald-bright);
    transform: none;
    box-shadow: 0 6px 18px rgba(11, 59, 36, 0.25);
}

.hamburger span {
    background-color: var(--emerald);
}

/* ---------- Typography ---------- */

.section-title,
.page-hero-title,
.hero-sub,
.philosophy-head,
.message-title,
.recruit-section-title,
.recruit-copy,
.cta-band h2,
.feature-card h3,
.axis-card h3,
.link-card h3,
.shop-info h3,
.req-card h4,
.contact-route h3 {
    font-family: var(--font-serif-jp);
    font-weight: 600;
}

.section-title {
    font-size: 2.3rem;
    color: var(--emerald);
    padding-bottom: 0;
    padding-top: 34px;
    margin-bottom: 70px;
    letter-spacing: 0.1em;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 2px;
    background: var(--gold);
}

.section-title::after {
    display: none;
}

.section-title .subtitle {
    color: var(--gold-dark);
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-top: 12px;
}

.recruit-section-title {
    color: var(--emerald);
    font-size: 1.7rem;
}

.recruit-section-title::after {
    background: var(--gold);
    width: 44px;
    height: 2px;
}

/* ---------- Page hero (subpages) ---------- */

.page-hero {
    background: linear-gradient(135deg, #0e2f1e 0%, var(--emerald-deep) 65%);
    text-align: left;
    padding: calc(var(--header-height) + 80px) 30px 64px;
    padding-left: max(30px, calc((100% - 1280px) / 2 + 30px));
    overflow: hidden;
}

/* corporate logo (right side) */
.page-hero::after {
    content: '';
    position: absolute;
    top: calc(50% + 45px);
    left: auto;
    right: 60px;
    transform: translateY(-50%);
    width: 250px;
    height: 215px;
    background: url('/assets/img/logo-mark.webp') center / contain no-repeat;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.page-hero-en {
    color: var(--gold);
    letter-spacing: 0.35em;
    font-size: 0.9rem;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.page-hero-en::after {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    background: var(--gold);
    margin-top: 12px;
}

.page-hero-title {
    color: #ffffff;
    font-size: 2.8rem;
    letter-spacing: 0.14em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.page-hero-lead {
    opacity: 0.88;
    margin-top: 18px;
    letter-spacing: 0.08em;
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
    background: #faf9f4;
    border-bottom: 1px solid var(--paper-line);
}

.breadcrumb a {
    color: var(--emerald);
}

/* ---------- Buttons ---------- */

.btn-map {
    border: 1px solid var(--emerald);
    color: var(--emerald);
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 0.92rem;
}

.btn-map::before {
    background-color: var(--emerald);
}

.btn-map:hover {
    color: #ffffff;
}

.btn-form {
    display: inline-block;
    margin-top: 22px;
    padding: 12px 30px;
    background: var(--emerald);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.btn-form::after {
    content: '›';
    margin-left: 10px;
}

.btn-form:hover {
    background: var(--emerald-bright);
    box-shadow: 0 6px 18px rgba(11, 59, 36, 0.25);
}

.btn-contact,
.btn-entry {
    background: var(--emerald);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(11, 36, 24, 0.25);
}

.btn-contact:hover,
.btn-entry:hover {
    background: var(--emerald-bright);
    color: #ffffff;
}

/* dark band variant: gold outline */
.cta-band .btn-contact,
.recruit-entry .btn-entry {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.cta-band .btn-contact:hover,
.recruit-entry .btn-entry:hover {
    background: var(--gold);
    color: var(--emerald-deep);
}

/* ---------- Cards (unified) ---------- */

.link-card,
.axis-card,
.feature-card,
.value-card,
.contact-route,
.voice-card,
.req-card,
.number-card,
.shop-card {
    background: #ffffff;
    border: 1px solid var(--paper-line);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(28, 42, 34, 0.05);
    backdrop-filter: none;
}

.link-card {
    border-top: 1px solid var(--paper-line);
}

.link-card:hover,
.axis-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(28, 42, 34, 0.1);
}

.card-en,
.axis-label {
    color: var(--gold-dark) !important;
}

.card-arrow {
    color: var(--gold);
}

.value-card::before {
    background: var(--gold);
    height: 3px;
}

/* photo cards (top page contents) */
.link-card.has-photo {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.link-card.has-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 32%;
    display: block;
}

/* 代表写真は顔が収まる位置に */
.link-card.has-photo img[src*="representative"] {
    object-position: center 50%;
}

.link-card.has-photo .card-body {
    padding: 26px 28px 30px;
    position: relative;
    flex: 1;
}

.link-card.has-photo .card-body h3 {
    margin-bottom: 4px;
}

.link-card.has-photo .card-arrow {
    position: absolute;
    right: 26px;
    bottom: 22px;
}

/* numbered cards (地域と防災) */
.link-cards.numbered .link-card {
    text-align: center;
    padding-top: 38px;
}

.link-cards.numbered .card-en {
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: var(--gold) !important;
    margin-bottom: 14px;
}

.link-cards.numbered .link-card h3 {
    font-size: 1.25rem;
    line-height: 1.7;
}

.link-cards.numbered .link-card p {
    text-align: left;
}

.link-cards.numbered .card-arrow {
    position: static;
    display: block;
    margin-top: 16px;
}

/* Mission / Vision (about) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    padding: 55px 45px;
    text-align: center;
    border-top: 3px solid var(--emerald);
}

.feature-card .card-icon {
    display: none;
}

.feature-card .card-en {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 4px 16px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.7rem;
    color: var(--emerald);
    margin-bottom: 22px;
    letter-spacing: 0.15em;
}

.feature-card .feature-head {
    font-family: var(--font-serif-jp);
    font-size: 1.15rem;
    color: var(--emerald);
    line-height: 2;
    margin-bottom: 22px;
}

.feature-card p {
    text-align: justify;
    font-size: 0.95rem;
    line-height: 2.1;
    color: var(--color-text);
}

/* ---------- Top hero ---------- */

.hero {
    height: min(88vh, 780px);
    min-height: 560px;
    justify-content: flex-start;
    text-align: left;
    background:
        linear-gradient(100deg, var(--emerald-deep) 0%, var(--emerald-deep) 28%, rgba(11, 36, 24, 0.86) 44%, rgba(11, 36, 24, 0.18) 72%, rgba(11, 36, 24, 0.4) 100%),
        url('/assets/img/hero-bg.webp') 76% bottom / cover no-repeat,
        var(--emerald-deep);
    padding: 0 30px;
    padding-left: max(30px, calc((100% - 1280px) / 2 + 30px));
}

.hero::before,
.hero::after {
    display: none;
}

.hero-content {
    max-width: 640px;
}

.hero-main {
    font-size: clamp(3rem, 6vw, 5.2rem);
    background: linear-gradient(180deg, #efd88f 0%, var(--gold) 55%, #b8912b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.7rem;
    letter-spacing: 0.22em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 22px;
}

.hero-sub::after {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background: var(--gold);
    margin-top: 26px;
}

.hero-desc {
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    font-size: 0.95rem;
    opacity: 0.88;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero .scroll-down {
    display: none;
}

/* ---------- Sections ---------- */

.philosophy {
    background: #ffffff;
}

.philosophy-head {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--emerald);
    font-size: 1.9rem;
    line-height: 1.9;
}

.axis-card {
    padding: 55px 35px 45px;
}

.axis-card h3 {
    color: var(--emerald);
}

/* ---------- Tables (hairline editorial) ---------- */

.company-table,
.spec-table {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-top: 2px solid var(--gold);
}

.company-table th,
.company-table td,
.spec-table th,
.spec-table td {
    background: none;
    border-bottom: 1px solid var(--paper-line);
    padding: 22px 26px;
}

.company-table th,
.spec-table th {
    background: none;
    color: var(--emerald);
    letter-spacing: 0.08em;
}

/* 沿革 timeline (company) */
.history-table {
    border-top: none;
    max-width: 760px;
}

.history-table tr {
    display: flex;
}

.history-table th {
    flex: 0 0 150px;
    text-align: right;
    padding: 0 30px 44px 0;
    border-bottom: none;
    font-family: var(--font-serif-jp);
    color: var(--emerald);
    white-space: nowrap;
}

.history-table td {
    flex: 1;
    border-bottom: none;
    border-left: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0 0 44px 30px;
    position: relative;
}

.history-table tr:last-child th,
.history-table tr:last-child td {
    padding-bottom: 4px;
}

.history-table td::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 9px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gold);
}

/* ---------- News ---------- */

.news-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

.news-filter button {
    padding: 10px 38px;
    border: 1px solid var(--emerald);
    background: #ffffff;
    color: var(--emerald);
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-base);
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-filter button:hover {
    background: rgba(11, 59, 36, 0.06);
}

.news-filter button.active {
    background: var(--emerald);
    color: #ffffff;
}

.news-item {
    gap: 26px;
    padding: 28px 10px;
}

.news-item::after {
    content: '→';
    margin-left: auto;
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.news-item:hover::after {
    transform: translateX(6px);
}

.news-item:hover {
    background: rgba(212, 175, 55, 0.04);
    padding-left: 18px;
}

.news-date {
    color: var(--color-text-light);
    letter-spacing: 0.1em;
}

.news-tag {
    background: none;
    border: 1px solid var(--emerald);
    color: var(--emerald);
    border-radius: 4px;
    padding: 3px 18px;
    font-weight: 500;
}

.news-tag.tag-recruit {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    background: none;
}

.news-tag.tag-media {
    background: none;
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.news-tag.tag-disaster {
    background: none;
    border-color: var(--emerald-bright);
    color: var(--emerald-bright);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    margin-top: 70px;
    color: var(--emerald);
}

.pagination .page-current {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--emerald);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* ---------- Contact ---------- */

.contact-routes {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
}

.contact-route {
    border-left: 1px solid var(--paper-line);
    text-align: center;
    padding: 45px 28px 38px;
}

.route-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #eef0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.route-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--emerald);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-route h3 {
    font-size: 1.2rem;
    color: var(--emerald);
    letter-spacing: 0.08em;
}

.tel-band {
    max-width: 1180px;
    margin: 70px auto 0;
    background: var(--cream);
    border-radius: 10px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 40px;
    text-align: left;
}

.tel-band .route-icon {
    margin: 0;
    background: #ffffff;
    flex: 0 0 86px;
}

.tel-band .tel-label {
    display: block;
    font-family: var(--font-serif-jp);
    font-size: 1.1rem;
    color: var(--emerald);
    margin-bottom: 4px;
    letter-spacing: 0.12em;
}

.tel-band .tel-number {
    font-family: var(--font-serif-jp);
    font-size: 3rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.tel-band .tel-note {
    color: var(--color-text-light);
    font-size: 0.95rem;
    border-left: 1px solid var(--paper-line);
    padding-left: 36px;
}

/* ---------- Recruit ---------- */

.number-card {
    padding: 42px 20px 36px;
    border-top: 3px solid var(--emerald);
}

.num-label {
    font-family: var(--font-serif-jp);
    color: var(--emerald);
    font-size: 1.8rem;
}

.num-desc {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

/* horizontal timeline on desktop */
@media (min-width: 769px) {
    .timeline {
        max-width: 1100px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0 14px;
        padding: 10px 0 0;
    }

    .timeline::before {
        left: 8%;
        right: 8%;
        top: 6px;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), var(--gold), rgba(212, 175, 55, 0.2));
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0;
    }

    .timeline-item .time {
        width: auto;
        padding: 26px 0 8px;
        text-align: center;
        color: var(--emerald);
        font-family: var(--font-serif-jp);
        font-size: 1.05rem;
    }

    .timeline-item .time::after {
        top: -6px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 13px;
        height: 13px;
        box-shadow: 0 0 0 4px #ffffff;
    }

    .timeline-item .content {
        margin-left: 0;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
        font-size: 0.92rem;
        color: var(--color-text-light);
        line-height: 1.9;
    }
}

.voice-card {
    padding: 34px 28px;
}

.voice-photo .placeholder-img {
    height: 170px;
    border-radius: 8px;
    background: var(--cream);
    color: #b0aa96;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
}

.req-card {
    border-top: 3px solid var(--emerald);
}

.req-card h4 {
    color: var(--emerald);
    text-align: center;
    background: var(--emerald);
    color: #ffffff;
    margin: -50px -50px 30px;
    padding: 16px;
    border-radius: 9px 9px 0 0;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--paper-line);
    border-radius: 8px;
    margin-bottom: 12px;
}

.faq-item:first-child {
    border-top: 1px solid var(--paper-line);
}

.faq-question {
    color: var(--emerald);
}

.recruit-entry {
    background: var(--emerald-deep);
    color: #ffffff;
    position: relative;
}

.recruit-entry::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0% 28%, transparent 28.2%),
        linear-gradient(245deg, rgba(0, 0, 0, 0.12) 0% 22%, transparent 22.2%);
    pointer-events: none;
}

.recruit-entry .container {
    position: relative;
}

.recruit-entry .btn-entry {
    width: auto;
    padding: 22px 60px;
    font-size: 1.15rem;
}

/* ---------- Business ---------- */

.biz-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.biz-split .content-block > p:first-child,
.biz-split .content-block > h3:first-child {
    margin-top: 0;
}

.biz-split img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 12px 34px rgba(28, 42, 34, 0.14);
}

.biz-split .content-block {
    margin: 0;
}

.ryorin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ryorin-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid var(--paper-line);
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(28, 42, 34, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.ryorin-circle h4 {
    font-family: var(--font-serif-jp);
    color: var(--emerald);
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}

.ryorin-circle p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.9;
}

.ryorin-center {
    text-align: center;
    color: var(--gold-dark);
    font-family: var(--font-serif-jp);
    font-size: 1.05rem;
    letter-spacing: 0.14em;
}

.ryorin-center::before {
    content: '⟲';
    display: block;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    .biz-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .biz-split img {
        height: 260px;
    }

    .ryorin-circle {
        width: 210px;
        height: 210px;
    }
}

/* ---------- CTA band / Footer ---------- */

.cta-band {
    background: var(--emerald-deep);
    padding: 100px 20px;
}

.cta-band h2 {
    letter-spacing: 0.18em;
    font-size: 2rem;
}

.cta-band .container {
    position: relative;
}

.footer {
    background: var(--emerald-deep);
    padding: 80px 0 30px;
}

.footer .container {
    position: relative;
}

.footer-company {
    font-family: var(--font-serif-jp);
    font-size: 1.5rem;
    letter-spacing: 0.14em;
}

.footer-nav a:hover {
    color: var(--gold);
}

.copyright {
    letter-spacing: 0.14em;
}

/* ---------- Stores ---------- */

.shop-photo img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(28, 42, 34, 0.12);
}

.preparing {
    background: rgba(11, 59, 36, 0.03);
    border: 1px dashed rgba(11, 59, 36, 0.3);
    border-radius: 10px;
}

.preparing strong {
    color: var(--emerald);
}

/* ---------- Content blocks ---------- */

.content-block h3 {
    border-left: 3px solid var(--gold);
    color: var(--emerald);
    font-family: var(--font-serif-jp);
}

.lead-text {
    font-family: var(--font-serif-jp);
    color: var(--emerald);
    font-size: 1.2rem;
    line-height: 2.4;
}

/* ---------- Message (representative) ---------- */

.message-title {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--emerald);
    letter-spacing: 0.1em;
}

.message-photo::before {
    border: 1px solid var(--gold);
    top: 20px;
    left: -20px;
}

.message-sign {
    color: var(--emerald);
    font-family: var(--font-serif-jp);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .contact-routes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        /* 下部にロゴ専用の帯を確保し、テキストは全幅を使う */
        padding: calc(var(--header-height) + 55px) 24px 148px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero::after {
        width: 120px;
        height: 104px;
        right: 20px;
        top: auto;
        bottom: 26px;
        transform: none;
        opacity: 0.75;
    }

    /* サブタイトルは全幅を使用（ロゴは下部の専用帯に配置） */
    .page-hero-lead {
        position: relative;
        z-index: 1;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 46px;
    }

    .hero {
        min-height: 560px;
        height: 82vh;
        background:
            linear-gradient(180deg, rgba(11, 36, 24, 0.94) 0%, rgba(11, 36, 24, 0.8) 32%, rgba(11, 36, 24, 0.35) 55%, rgba(11, 36, 24, 0) 78%),
            url('/assets/img/hero-bg.webp') 72% bottom / cover no-repeat,
            var(--emerald-deep);
        align-items: flex-start;
        padding-top: calc(var(--header-height) + 42px);
        padding-bottom: 0;
    }

    .hero-main {
        font-size: 2.5rem;
    }

    .hero-desc {
        max-width: 30em;
    }

    .hero-sub {
        font-size: 1.15rem;
    }

    .contact-routes {
        grid-template-columns: 1fr;
    }

    .tel-band {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .tel-band .tel-number {
        font-size: 2.1rem;
    }

    .tel-band .tel-note {
        border-left: none;
        padding-left: 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 40px 26px;
    }

    .req-card h4 {
        margin: -30px -25px 25px;
    }

    .history-table th {
        flex: 0 0 104px;
        padding-right: 20px;
        font-size: 0.9rem;
    }

    .link-card.has-photo img {
        height: 240px;
    }

    .news-filter button {
        padding: 9px 22px;
        font-size: 0.85rem;
    }
}

/* ===== MVV renewal (2026-07) ===== */
.mvv-band { background: #003018; color: #f4f1e8; padding: 110px 20px 100px; text-align: center; }
.mvv-eyebrow { color: #d5b75f; letter-spacing: 0.3em; font-size: 0.78rem; text-transform: uppercase; margin: 0 0 30px; }
.mvv-title { font-family: 'Shippori Mincho', serif; font-weight: 500; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: 0.14em; color: #ffffff; margin: 0; }
.mvv-title::after { content: ''; display: block; width: 56px; height: 2px; background: #d5b75f; margin: 28px auto 0; }
.mvv-purpose { font-family: 'Shippori Mincho', serif; font-size: clamp(1.05rem, 2.4vw, 1.45rem); letter-spacing: 0.14em; margin: 30px 0 0; }
.mvv-vision-sub { color: #d5b75f; font-size: 0.95rem; letter-spacing: 0.24em; margin: 62px 0 36px; }
.mvv-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1020px; margin: 0 auto; }
.mvv-trust-card { border: 1px solid rgba(213, 183, 95, 0.45); background: rgba(255, 255, 255, 0.04); padding: 36px 28px; text-align: left; }
.mvv-trust-card h3 { color: #d5b75f; font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 1.1rem; letter-spacing: 0.1em; margin: 0 0 16px; }
.mvv-trust-card p { margin: 0; font-size: 0.92rem; line-height: 2; opacity: 0.94; }
.mvv-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 960px; margin: 50px auto 0; }
.mvv-value-card { background: #ffffff; border: 1px solid #e5e1d4; border-top: 3px solid #d5b75f; padding: 38px 34px 34px; }
.mvv-value-num { display: block; color: #d5b75f; font-family: 'Shippori Mincho', serif; letter-spacing: 0.22em; font-size: 0.85rem; }
.mvv-value-card h3 { color: #003018; font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 1.22rem; letter-spacing: 0.08em; margin: 12px 0 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(213, 183, 95, 0.5); }
.mvv-value-card p { margin: 0; font-size: 0.93rem; line-height: 2.05; }
@media (max-width: 768px) {
    .mvv-band { padding: 78px 18px 70px; }
    .mvv-vision-sub { margin: 48px 0 28px; }
    .mvv-trust-grid { grid-template-columns: 1fr; }
    .mvv-values-grid { grid-template-columns: 1fr; }
}

/* ===== Recruit: staff voice 4-up & career next (2026-07) ===== */
.voice-grid.voice-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 980px;
    margin: 0 auto;
}

.voice-grid-4 .voice-photo img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 15px;
}

.career-next {
    max-width: 760px;
    margin: 46px auto 0;
    background: #003018;
    color: #f4f1e8;
    padding: 40px 38px 34px;
    border-top: 3px solid #d5b75f;
}

.career-next-title {
    font-family: var(--font-serif-jp);
    color: #d5b75f;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}

.career-next-lead {
    font-size: 0.92rem;
    margin: 0 0 26px;
    opacity: 0.92;
}

.career-next-steps {
    display: grid;
    gap: 12px;
}

.career-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(213, 183, 95, 0.45);
    border-left: 3px solid #d5b75f;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 20px;
}

.career-step:nth-child(2) { margin-left: 28px; }
.career-step:nth-child(3) { margin-left: 56px; }

.step-rank { font-weight: 700; letter-spacing: 0.04em; }

.step-salary { color: #d5b75f; font-weight: 700; white-space: nowrap; }

.career-next-note {
    font-size: 0.75rem;
    opacity: 0.75;
    margin: 22px 0 0;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .voice-grid.voice-grid-4 { grid-template-columns: 1fr; }
    .career-next { padding: 32px 22px 28px; }
    .career-step:nth-child(2),
    .career-step:nth-child(3) { margin-left: 0; }
    .career-step { flex-direction: column; align-items: flex-start; gap: 4px; }
}

.voice-photo-note {
    max-width: 980px;
    margin: 14px auto 0;
    text-align: right;
    font-size: 0.68rem;
    color: #9aa39c;
    letter-spacing: 0.04em;
}

/* 理念ページの代表写真を控えめに (2026-07) */
.message-photo {
    flex: 0 0 300px;
}

@media (max-width: 768px) {
    .message-photo {
        max-width: 260px;
        margin: 0 auto;
    }
}

/* サブタイトルのスマホ専用改行（PCでは非表示・改行位置の句読点はスマホで非表示） */
.lead-br {
    display: none;
}

@media (max-width: 768px) {
    .lead-br {
        display: inline;
    }

    .lead-cut {
        display: none;
    }
}

/* ===== 店舗情報: 店舗タブ (2026-07) ===== */
.store-tabs {
    padding: 44px 20px 8px;
}

.store-tabs-note {
    text-align: center;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
    color: var(--color-text-light);
}

.store-tabs-note strong {
    color: var(--emerald);
    font-size: 1.15em;
}

.store-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
}

.store-tab {
    display: block;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--emerald);
    border-top: 3px solid var(--gold);
    border-radius: 10px;
    padding: 22px 16px 18px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(28, 42, 34, 0.06);
}

.store-tab:hover {
    background: var(--emerald);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(11, 59, 36, 0.22);
}

.store-tab-name {
    display: block;
    font-family: var(--font-serif-jp);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: var(--emerald);
}

.store-tab-sub {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.store-tab:hover .store-tab-name,
.store-tab:hover .store-tab-sub {
    color: #ffffff;
}

@media (max-width: 600px) {
    .store-tabs {
        padding: 32px 18px 4px;
    }

    .store-tab-grid {
        gap: 12px;
    }

    .store-tab-name {
        font-size: 1.05rem;
    }

    .store-tab-sub {
        font-size: 0.7rem;
    }
}

/* ===== 採用: 上部エントリーCTA (2026-07) ===== */
.recruit-entry-top {
    padding: 46px 20px 10px;
}

.recruit-entry-top .btn-entry {
    display: inline-block;
    max-width: 100%;
}

.entry-top-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    letter-spacing: 0.04em;
}

/* 上部エントリーCTAを最下部と同じ配色に（緑地×金文字） */
.recruit-entry-top .btn-entry {
    background: var(--emerald);
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(11, 36, 24, 0.25);
}

.recruit-entry-top .btn-entry:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--emerald-deep);
}

.btn-entry {
    line-height: 1.6;
}

/* Purpose説明文（理念ページ・帯内） */
.mvv-purpose-desc {
    max-width: 760px;
    margin: 26px auto 0;
    font-size: 0.92rem;
    line-height: 2.1;
    opacity: 0.9;
    text-align: left;
}

/* ===== 理念: Purpose/Vision 分離ブロック (2026-07) ===== */
.mvv-block {
    max-width: 900px;
    margin: 64px auto 0;
    padding-top: 48px;
    border-top: 1px solid rgba(213, 183, 95, 0.35);
}

.mvv-block-label {
    font-family: var(--font-serif-jp);
    font-weight: 600;
    font-size: 2.3rem;
    color: #d5b75f;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 0 26px;
}

.mvv-block-label span {
    display: block;
    margin: 12px 0 0;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: #d5b75f;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .mvv-block-label {
        font-size: 1.75rem;
    }
}

.mvv-block .mvv-trust-grid {
    margin-top: 34px;
}

@media (max-width: 768px) {
    .mvv-block {
        margin-top: 48px;
        padding-top: 36px;
    }
}

/* ===== 理念: Valuesも同一トーンの帯に (2026-07) ===== */
.mvv-values-band {
    padding-top: 0;
}

.mvv-values-band .mvv-block-first {
    margin-top: 0;
}

.mvv-values-band .mvv-values-grid {
    margin-top: 40px;
}

.mvv-values-band .mvv-value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(213, 183, 95, 0.45);
    border-top: 3px solid #d5b75f;
    text-align: left;
}

.mvv-values-band .mvv-value-card h3 {
    color: #d5b75f;
    border-bottom-color: rgba(213, 183, 95, 0.4);
}

.mvv-values-band .mvv-value-card p {
    color: #f4f1e8;
    opacity: 0.94;
}

/* ヒーローの社名を少し大きく (2026-07) */
.hero-desc {
    font-size: 1.25rem;
    letter-spacing: 0.14em;
}
