/* ------------------------------------------------------------
   Benlux International - Base Styles
   Theme: Navy × Sky (A) / Twilight Hero
------------------------------------------------------------ */

/* ============================================================
   1) Theme Tokens
============================================================ */
:root
{
    --bg: #F7FAFC;
    --surface: #FFFFFF;
    --text: #0F172A;
    --muted: #475569;

    --primary: #1D4ED8;
    --primary-2: #38BDF8;

    --border: #E2E8F0;

    --shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    --radius: 16px;

    --container: 1120px;

    --hero-img: url("../img/hero.webp");
    --parallax-img: url("../img/parallax.webp");

    --font-sans: "Manrope", "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ============================================================
   2) Base
============================================================ */
*
{
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: linear-gradient(180deg, var(--bg) 0%, #FFFFFF 70%);
    line-height: 1.7;
}

a
{
    color: var(--primary);
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}

.container
{
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.skip-link
{
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus
{
    left: 12px;
    top: 12px;
    background: var(--surface);
    color: var(--text);
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 9999;
}

/* Screen reader only */
.sr-only
{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   3) Header
============================================================ */
.site-header
{
    position: sticky;
    top: 0;
    background: rgba(247, 250, 252, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 50;
}

.header-inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 18px;
    position: relative;
}

.brand
{
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark
{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, var(--primary-2), var(--primary));
    box-shadow: 0 10px 22px rgba(29, 78, 216, 0.25);
}

.brand-name
{
    font-weight: 800;
    letter-spacing: 0.2px;
}

.brand-legal
{
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.site-nav
{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.site-nav a
{
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 10px;
}

.site-nav a:hover
{
    background: rgba(56, 189, 248, 0.10);
    text-decoration: none;
}

.site-nav .nav-cta
{
    color: var(--surface);
    background: var(--primary);
}

.site-nav .nav-cta:hover
{
    background: #1741B6;
}

.lang-btn
{
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
}

.lang-btn:hover
{
    background: rgba(15, 23, 42, 0.03);
}

/* ============================================================
   Mobile Nav (Hamburger)
============================================================ */
.nav-toggle
{
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-toggle:hover
{
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.nav-toggle:active
{
    transform: translateY(1px);
}

.nav-toggle-line
{
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: transform 0.20s ease, opacity 0.18s ease, top 0.20s ease, width 0.20s ease;
}

.nav-toggle-line:nth-child(2)
{
    top: 15px;
}

.nav-toggle-line:nth-child(3)
{
    top: 21px;
}

.nav-toggle-line:nth-child(4)
{
    top: 27px;
}

/* Open state: 3 lines -> X */
.nav-toggle.is-open .nav-toggle-line:nth-child(2)
{
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3)
{
    opacity: 0;
    width: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(4)
{
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 960px)
{
    .nav-toggle
    {
        display: inline-flex;
    }

    .site-nav
    {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;

        padding: 12px;
        margin: 0 16px;

        background: rgba(247, 250, 252, 0.92);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 60;

        transform-origin: top center;
        transform: translateY(-8px) scale(0.98);
        opacity: 0;
        transition: transform 0.20s ease, opacity 0.20s ease;
    }

    .site-nav.is-open
    {
        display: flex;
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .site-nav a,
    .site-nav .lang-btn
    {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ============================================================
   4) Buttons
============================================================ */
.btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active
{
    transform: translateY(1px);
}

.btn-primary
{
    background: var(--primary);
    color: var(--surface);
    box-shadow: 0 14px 28px rgba(29, 78, 216, 0.18);
}

.btn-primary:hover
{
    background: #1741B6;
    text-decoration: none;
}

.btn-ghost
{
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover
{
    background: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.btn-ghost-dark
{
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost-dark:hover
{
    background: rgba(255, 255, 255, 0.20);
    text-decoration: none;
}

/* ============================================================
   5) Hero (Twilight)
============================================================ */
.hero
{
    padding: 84px 0 64px;
    position: relative;
    overflow: hidden;
    min-height: 76vh;
    display: grid;
    align-items: center;
}

.hero-photo .hero-bg
{
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(1.02) contrast(1.02);
    will-change: transform;
}

.hero-photo .hero-overlay
{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.16), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.16), transparent 55%),
        linear-gradient(90deg,
            rgba(2, 6, 23, 0.62) 0%,
            rgba(2, 6, 23, 0.34) 45%,
            rgba(2, 6, 23, 0.14) 100%
        );
}

/* Hero content grid */
.hero-inner
{
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: stretch;
}

/* Glass panel tune (Hero overlay box) */
.hero-photo .hero-inner
{
    background: rgba(2, 6, 23, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 18px;
}

.hero-eyebrow
{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-weight: 800;
    font-size: 13px;
}

.hero-pill
{
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-dot
{
    opacity: 0.7;
}

.hero-muted
{
    color: rgba(255, 255, 255, 0.80);
}

.hero-title
{
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    margin: 0 0 12px;
    letter-spacing: -0.6px;
    color: #FFFFFF;
}

.hero-lead
{
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    margin: 0 0 18px;
    max-width: 72ch;
}

.hero-tags
{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 18px;
}

.hero-tag
{
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    font-size: 12px;
}

.hero-actions
{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-meta
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.meta-item
{
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 12px 12px;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
}

.meta-label
{
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    font-weight: 800;
}

.meta-value
{
    font-weight: 900;
    font-size: 13px;
    margin-top: 4px;
    color: #FFFFFF;
}

.meta-value a
{
    color: #FFFFFF;
    text-decoration: none;
}

.meta-value a:hover
{
    text-decoration: underline;
}

/* Hero card */
.hero-card
{
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.24);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.hero-card::before
{
    content: "";
    position: absolute;
    inset: -60px -60px auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.28), rgba(29, 78, 216, 0.06) 60%, transparent 70%);
    transform: rotate(10deg);
}

.hero-card-inner
{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
}

.hero-card-title
{
    font-weight: 900;
    letter-spacing: -0.2px;
    color: #FFFFFF;
}

.hero-card-lines .line
{
    height: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    margin-top: 10px;
}

.hero-card-lines .line:nth-child(1)
{
    width: 78%;
}

.hero-card-lines .line:nth-child(2)
{
    width: 92%;
}

.hero-card-lines .line:nth-child(3)
{
    width: 62%;
}

.hero-card-badge
{
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.16);
    border: 1px solid rgba(56, 189, 248, 0.26);
    font-weight: 900;
    font-size: 12px;
    color: #FFFFFF;
}

/* ============================================================
   6) Sections / Layout
============================================================ */
.section
{
    padding: 52px 0;
}

.section-alt
{
    background: rgba(226, 232, 240, 0.35);
    border-top: 1px solid rgba(226, 232, 240, 0.65);
    border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}

.section-head
{
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.section-title
{
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.2px;
}

.section-lead
{
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

.grid-3
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.grid-2
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* ============================================================
   7) Cards / Panels
============================================================ */
.card,
.panel,
.table-card,
.contact-card
{
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
}

.card
{
    padding: 18px;
}

.card-title
{
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -0.1px;
}

.card-text
{
    margin: 0;
    color: var(--muted);
}

.panel
{
    padding: 18px;
}

.panel-title
{
    margin: 0 0 10px;
    font-size: 16px;
}

.list
{
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.list li
{
    margin: 8px 0;
}

/* ============================================================
   Service thumbs（WebP画像版）
============================================================ */
.card-media
{
    padding: 0;
    overflow: hidden;
}

.card-media-top
{
    padding: 14px 14px 0;
}

.card-media .card-title,
.card-media .card-text
{
    padding: 0 18px;
}

.card-media .card-text
{
    padding-bottom: 18px;
}

.card-thumb
{
    height: 140px; /* 少し存在感アップ */
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 12px 18px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ちょい高級感ホバー */
.card-media:hover .card-thumb
{
    transform: scale(1.04);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

/* 画像指定 */
.thumb-1
{
    background-image: url("../img/01_art.webp");
}

.thumb-2
{
    background-image: url("../img/02_wagyu.webp");
}

.thumb-3
{
    background-image: url("../img/03_choice.webp");
}

@media (max-width: 768px)
{
    .card-thumb
    {
        height: 200px;
        border-radius: 16px;
    }
}

/* ============================================================
   8) Company Table
============================================================ */
.table-card
{
    padding: 18px;
}

.info-table
{
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-table .row
{
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(226, 232, 240, 0.35);
    border: 1px solid rgba(226, 232, 240, 0.75);
}

.info-table dt
{
    font-weight: 900;
}

.info-table dd
{
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

/* ============================================================
   9) Contact
============================================================ */
.contact-card
{
    padding: 18px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
}

.contact-box
{
    border: 1px solid rgba(29, 78, 216, 0.18);
    border-radius: 14px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(29, 78, 216, 0.06), rgba(56, 189, 248, 0.04));
}

.contact-label
{
    color: var(--muted);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-value
{
    font-size: 18px;
    font-weight: 900;
    margin-top: 6px;
}

.contact-note
{
    color: var(--muted);
    margin-top: 8px;
    font-size: 13px;
}

.notice
{
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 16px;
    background: #FFFFFF;
}

.notice-title
{
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: -0.1px;
}

.notice-text
{
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* ============================================================
   10) Parallax Band (No Gray Gap - Strong Safe Area)
============================================================ */
.parallax-band
{
    position: relative;
    min-height: 500px;

    background-image: var(--parallax-img);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
    overflow: hidden;

    /* ここで “グレー下地” を絶対に出さない */
    background-color: #050A14;
}

/* Desktop: keep hidden. Mobile: enabled via media query below */
.parallax-bg
{
    display: none;
    pointer-events: none;
}

.parallax-overlay
{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.40) 55%, rgba(15, 23, 42, 0.15) 100%);
    z-index: 1;
}

.parallax-inner
{
    position: relative;
    z-index: 2;
    padding: 46px 0;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
}

.parallax-title
{
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.2px;
}

.parallax-sub
{
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

/* Mobile: enable JS parallax layer for iOS/Safari */
@media (max-width: 960px)
{
    .parallax-band
    {
        background-image: none;
        background-attachment: scroll;
    }

    .parallax-bg
    {
        display: block;
        position: absolute;

        /* のりしろをさらに増やす（iOSのズレ対策） */
        left: -60px;
        right: -60px;
        top: -260px;
        bottom: -260px;

        background-image: var(--parallax-img);
        background-size: cover;
        background-position: center 35%;

        /* 拡大も強める（端が見えないように） */
        transform: translate3d(0, 0, 0) scale(1.45);
        will-change: transform;

        /* iOSの謎の描画抜け対策 */
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;

        z-index: 0;
    }
}


/* ============================================================
   11) Footer
============================================================ */
.site-footer
{
    padding: 22px 0;
    border-top: 1px solid var(--border);
    background: rgba(247, 250, 252, 0.75);
}

.footer-inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.footer-brand
{
    font-weight: 900;
}

.footer-sub
{
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

/* ============================================================
   12) Responsive
============================================================ */
@media (max-width: 960px)
{
    .hero
    {
        padding: 72px 0 52px;
        min-height: 72vh;
    }

    .hero-photo .hero-overlay
    {
        background:
            radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.14), transparent 55%),
            linear-gradient(180deg, rgba(2, 6, 23, 0.62) 0%, rgba(2, 6, 23, 0.40) 55%, rgba(2, 6, 23, 0.24) 100%);
    }

    .hero-inner
    {
        grid-template-columns: 1fr;
    }

    .hero-meta
    {
        grid-template-columns: 1fr;
    }

    .grid-3
    {
        grid-template-columns: 1fr;
    }

    .grid-2
    {
        grid-template-columns: 1fr;
    }

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

    .info-table .row
    {
        grid-template-columns: 1fr;
    }

    /* Mobile: enable JS parallax layer for iOS/Safari */
    .parallax-band
    {
        background-image: none;
        background-attachment: scroll;
    }

    .parallax-bg
    {
        display: block;
        position: absolute;
        inset: 0;
        background-image: var(--parallax-img);
        background-size: cover;
        background-position: center;
        transform: translate3d(0, 0, 0) scale(1.06);
        will-change: transform;
        z-index: 0;
    }

    .parallax-overlay
    {
        z-index: 1;
    }

    .parallax-inner
    {
        z-index: 2;
    }
}

/* ============================================================
   HERO CLEAN (design-first)
============================================================ */
.hero-inner-clean
{
    grid-template-columns: 1fr;
    max-width: 920px;
}

/* 透明度を上げて「ごちゃつき」を消す（ガラス板を薄く） */
.hero-photo .hero-inner.hero-inner-clean
{
    background: rgba(2, 6, 23, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 26px;
    padding: 26px 26px;
}

/* ============================================================
   CENTER ALIGN TUNING (CSS only)
   - Hero / Section head / Cards / Contact
============================================================ */

/* HERO：中身をセンター寄せで“整理された印象”にする */
.hero-inner-clean .hero-copy
{
    text-align: center;
}

.hero-inner-clean .hero-eyebrow
{
    justify-content: center;
}

.hero-inner-clean .hero-lead
{
    margin-left: auto;
    margin-right: auto;
}

.hero-inner-clean .hero-tags
{
    justify-content: center;
}

.hero-inner-clean .hero-actions
{
    justify-content: center;
}

.hero-trustline
{
    justify-content: center;
}

/* セクション見出し：センター寄せ */
.section-head
{
    text-align: center;
    justify-items: center;
}

.section-lead
{
    margin-left: auto;
    margin-right: auto;
}

/* サービスカード：センター寄せ（本文の横幅は制御して読みやすく） */
.grid-3 .card-media
{
    text-align: center;
}

.card-media .card-title,
.card-media .card-text
{
    text-align: center;
}

.card-media .card-text
{
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

/* About：パネルはセンター寄せ、ただしリストは左揃えで読みやすさ維持 */
.panel
{
    text-align: center;
}

.panel .list
{
    text-align: left;
    display: inline-block;
}

/* Contact：導線をセンター寄せで“迷いゼロ”に */
.contact-card
{
    align-items: stretch;
}

.contact-box,
.notice
{
    text-align: center;
}

.contact-note,
.notice-text
{
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

/* タイトル/本文の余白強化 */
.hero-inner-clean .hero-title
{
    margin-bottom: 14px;
}

.hero-inner-clean .hero-lead
{
    margin-bottom: 18px;
    max-width: 68ch;
}

/* 下に“信頼の一言”だけ置く（静かに効く） */
.hero-trustline
{
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
    font-size: 13px;
}

.hero-trust-dot
{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.85);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}

.hero-trust-text
{
    letter-spacing: 0.2px;
}

/* モバイル時の余白 */
@media (max-width: 960px)
{
    .hero-photo .hero-inner.hero-inner-clean
    {
        padding: 18px;
        border-radius: 20px;
    }
}

/* Smaller phones: tap targets + hero buttons full-width */
@media (max-width: 520px)
{
    .site-nav a
    {
        font-size: 13px;
        padding: 10px 10px;
    }

    .lang-btn
    {
        font-size: 12px;
        padding: 10px 12px;
    }

    .hero
    {
        padding: 64px 0 42px;
        min-height: 68vh;
    }

    .hero-photo .hero-inner.hero-inner-clean
    {
        padding: 16px;
        border-radius: 18px;
    }

    .hero-lead
    {
        font-size: 15px;
        line-height: 1.75;
    }

    .btn
    {
        width: 100%;
    }

    .parallax-band
    {
        min-height: 320px;
    }

    .parallax-title
    {
        font-size: 18px;
    }

    .parallax-sub
    {
        font-size: 13px;
    }
}

.brand-logo
{
    height: 52px;
    width: auto;
    display: block;
}

@media (max-width: 960px)
{
    .brand-logo
    {
        height: 42px;
    }
}
