@charset "UTF-8";

/*
================================================================================
 NexusLink (work-8) — 戦略メモ（Task 1 & 4）
================================================================================
【Task 1 ブランド・情報設計】
1. カラーパレット（16進）
   · ネイビー #141f2f — 誠実・ガバナンスの芯
   · ミストグレー #f4f6f9 / ライン #dfe4eb — 透明感と余白の気品
   · アクセントブルー #2563eb — 知性・デジタル信頼（補助 #1d4ed8）
2. サイト構造：Hero（ビジョン）→ Message（価値）→ Business（4軸）→ Company（実体）
   → News（鮮度）→ Contact（転換）。各事業は CPT で拡張し LP から一覧・詳細へ内部リンク。
3. タイポ：Noto Sans JP — B2B で可読性とニュートラルさを両立。

【Task 4 SEO・運用】
1. 1ドメイン多事業：ハブページ（本LP）から各事業詳細・お知らせへ内部リンク。
   キーワードは「社名 + 事業名 + 用途（例：営業代行 B2B）」で H2/H3 と本文を対応付け、
   重複を避けるため詳細は子ページに寄せるハブ＆スポーク型が有効。
2. CPT「Nexus 事業」「Nexus お知らせ」で編集権限を分けやすく、ブロックエディタ対応。
3. 「企業の顔」として、信頼シグナル（沿革・所在地・統一ビジュアル）と更新頻度（News）
   が採用・初回商談前のリサーチに直結。問い合わせ CTA を全画面で一貫配置。
================================================================================
*/

.work-8-body {
    --nl-navy: #141f2f;
    --nl-navy-mid: #1c2d45;
    --nl-white: #ffffff;
    --nl-mist: #f4f6f9;
    --nl-line: #dfe4eb;
    --nl-muted: #6b7c93;
    --nl-blue: #2563eb;
    --nl-blue-dark: #1d4ed8;
    --nl-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --nl-header-h: 72px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: var(--nl-navy);
    background: var(--nl-white);
    -webkit-font-smoothing: antialiased;
}

.work-8-body.nl-drawer-open {
    overflow: hidden;
}

.nl-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    padding: 12px 20px;
    background: var(--nl-blue);
    color: var(--nl-white);
    font-weight: 600;
    text-decoration: none;
}

.nl-skip-link:focus {
    left: 12px;
    top: 12px;
}

/* ----- Header ----- */
.nl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.35s var(--nl-ease), box-shadow 0.35s var(--nl-ease);
}

.nl-header.is-scrolled {
    border-color: var(--nl-line);
    box-shadow: 0 8px 32px rgba(20, 31, 47, 0.06);
}

.nl-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(clamp(20px, 4vw, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(20px, 4vw, 40px), env(safe-area-inset-right, 0px));
    padding-top: 0;
    padding-bottom: 0;
    height: var(--nl-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nl-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.nl-header__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--nl-navy), var(--nl-blue));
    flex-shrink: 0;
}

.nl-header__wordmark {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.nl-header__name {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.04em;
}

.nl-header__name-ja {
    font-size: 10px;
    font-weight: 500;
    color: var(--nl-muted);
    letter-spacing: 0.08em;
}

.nl-nav {
    display: none;
}

.nl-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 22px);
}

.nl-nav__list a {
    text-decoration: none;
    color: var(--nl-navy-mid);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.35s var(--nl-ease);
}

.nl-nav__list a:hover {
    color: var(--nl-blue);
}

.nl-header__cta {
    padding: 10px 18px !important;
    border-radius: 999px;
    background: var(--nl-navy) !important;
    color: var(--nl-white) !important;
    transition: background 0.35s var(--nl-ease), transform 0.35s var(--nl-ease) !important;
}

.nl-header__cta:hover {
    background: var(--nl-blue-dark) !important;
}

.nl-menu-btn {
    display: flex;
    position: relative;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nl-menu-btn__bar {
    position: absolute;
    left: 11px;
    top: 21px;
    width: 22px;
    height: 2px;
    background: var(--nl-navy);
    border-radius: 2px;
    transform-origin: center center;
    transition: transform 0.45s var(--nl-ease);
}

.nl-menu-btn__bar:first-child {
    transform: translateY(-5px);
}

.nl-menu-btn__bar:last-child {
    transform: translateY(5px);
}

.nl-menu-btn[aria-expanded='true'] .nl-menu-btn__bar:first-child {
    transform: translateY(0) rotate(45deg);
}

.nl-menu-btn[aria-expanded='true'] .nl-menu-btn__bar:last-child {
    transform: translateY(0) rotate(-45deg);
}

.nl-drawer {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--nl-header-h);
    background: var(--nl-white);
    padding: 28px max(24px, env(safe-area-inset-right, 0px)) max(28px, calc(env(safe-area-inset-bottom, 0px) + 16px)) max(24px, env(safe-area-inset-left, 0px));
    z-index: 999;
    border-top: 1px solid var(--nl-line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.45s var(--nl-ease), transform 0.45s var(--nl-ease), visibility 0s linear 0.45s;
}

.nl-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.45s var(--nl-ease), transform 0.45s var(--nl-ease), visibility 0s;
}

.nl-drawer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nl-drawer__nav a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--nl-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--nl-line);
    transition: color 0.35s var(--nl-ease), padding-left 0.35s var(--nl-ease);
}

.nl-drawer__nav a:hover {
    color: var(--nl-blue);
    padding-left: 8px;
}

@media (min-width: 960px) {
    .nl-nav {
        display: block;
    }
    .nl-menu-btn {
        display: none;
    }
    .nl-drawer {
        display: none !important;
    }
}

/* ----- Layout ----- */
.nl-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: max(clamp(20px, 4vw, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(20px, 4vw, 40px), env(safe-area-inset-right, 0px));
    padding-top: 0;
    padding-bottom: 0;
}

.nl-main {
    overflow-x: hidden;
}

.nl-section {
    padding-block: clamp(3.5rem, 8vw, 7.5rem);
}

@media (min-width: 768px) {
    .nl-section {
        padding-block: clamp(4rem, 9vw, 8.5rem);
    }
}

.nl-section-head {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    max-width: 800px;
}

.nl-section-head--light {
    color: var(--nl-white);
}

.nl-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--nl-blue);
    margin: 0 0 14px;
}

.nl-eyebrow--on-dark {
    color: rgba(255, 255, 255, 0.65);
}

.nl-heading-lg {
    font-size: clamp(1.5rem, 4.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    margin: 0;
}

.nl-heading-lg--on-dark {
    color: var(--nl-white);
}

.nl-section-lead {
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.85;
    color: var(--nl-muted);
}

.nl-section-lead--on-dark {
    color: rgba(255, 255, 255, 0.72);
}

/* ----- Hero ----- */
.nl-hero {
    position: relative;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--nl-header-h) + clamp(32px, 8vw, 72px)) 0
        max(clamp(48px, 10vw, 100px), calc(env(safe-area-inset-bottom, 0px) + 2.5rem));
}

/* スマホ：下端寄せだと視線が下がりすぎるため、コンテンツを上寄せ */
@media (max-width: 767px) {
    .nl-hero {
        align-items: flex-start;
        min-height: min(90vh, 780px);
        padding-top: calc(var(--nl-header-h) + clamp(20px, 3vw, 24px));
        padding-bottom: max(clamp(52px, 11vw, 80px), calc(env(safe-area-inset-bottom, 0px) + 3.25rem));
    }
}

.nl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nl-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) brightness(0.88);
}

.nl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20, 31, 47, 0.88) 0%, rgba(20, 31, 47, 0.45) 48%, rgba(20, 31, 47, 0.25) 100%);
}

.nl-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.nl-hero__eyebrow {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.nl-hero__title {
    margin: 0 0 24px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.nl-hero__title-line {
    display: block;
    font-size: clamp(4rem, 9vw, 4.75rem);
    color: var(--nl-white);
}

.nl-hero__title-line--accent {
    background: linear-gradient(90deg, #fff 0%, rgba(147, 197, 253, 0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nl-hero__lead {
    margin: 0 0 28px;
    max-width: 520px;
    font-size: clamp(16px, 3.6vw, 17px);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
}

.nl-hero__br {
    display: none;
}

@media (min-width: 480px) {
    .nl-hero__br {
        display: inline;
    }
}

.nl-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 32px;
}

.nl-chip {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.nl-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 479px) {
    .nl-hero__cta {
        flex-direction: column;
        width: 100%;
    }

    .nl-hero__cta .nl-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----- Buttons ----- */
.nl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.35s var(--nl-ease), box-shadow 0.35s var(--nl-ease), background 0.35s var(--nl-ease);
    position: relative;
    overflow: hidden;
}

.nl-btn--primary {
    background: var(--nl-blue);
    color: var(--nl-white);
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.35);
}

.nl-btn--primary:hover {
    background: var(--nl-blue-dark);
    transform: translateY(-2px);
}

.nl-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--nl-white);
}

.nl-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.nl-btn--wide {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: auto;
}

/* ----- Message ----- */
.nl-message {
    background: var(--nl-mist);
}

.nl-message__body {
    max-width: 720px;
    font-size: 15px;
    line-height: 2;
    color: var(--nl-navy-mid);
}

.nl-message__body p {
    margin: 0 0 1.25em;
}

.nl-message__body p:last-child {
    margin-bottom: 0;
}
.nl-message__more .nl-text-link {
    text-align: center;
}

/* ----- Business cards ----- */
.nl-business {
    background: var(--nl-white);
}

.nl-business__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(20px, 4vw, 28px);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .nl-business__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .nl-business__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nl-card__inner {
    height: 100%;
    border: 1px solid var(--nl-line);
    border-radius: 16px;
    background: var(--nl-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.45s var(--nl-ease), box-shadow 0.45s var(--nl-ease), transform 0.45s var(--nl-ease);
}

.nl-card__inner:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 20px 50px rgba(20, 31, 47, 0.08);
    transform: translateY(-4px);
}

.nl-card__inner--static {
    position: relative;
    padding-top: 8px;
}

.nl-card__index {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--nl-line);
}

.nl-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.nl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--nl-ease);
}

.nl-card__inner:hover .nl-card__img {
    transform: scale(1.04);
}

.nl-card__body {
    padding: clamp(20px, 4vw, 26px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nl-card__title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.nl-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.nl-card__title a:hover {
    color: var(--nl-blue);
}

.nl-card__excerpt {
    margin: 0 0 18px;
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--nl-muted);
    flex: 1;
}

.nl-card__more {
    font-size: 13px;
    font-weight: 600;
    color: var(--nl-blue);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.nl-card__more:hover {
    text-decoration: underline;
}

.nl-business__archive {
    margin: clamp(2rem, 5vw, 3rem) 0 0;
    text-align: center;
}

.nl-text-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--nl-blue);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.nl-text-link:hover {
    text-decoration: underline;
}

/* ----- Company table ----- */
.nl-company {
    background: var(--nl-mist);
}

.nl-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--nl-line);
    background: var(--nl-white);
}

.nl-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 14px;
}

.nl-table th,
.nl-table td {
    padding: clamp(14px, 3vw, 18px) clamp(16px, 3vw, 24px);
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--nl-line);
}

.nl-table tr:last-child th,
.nl-table tr:last-child td {
    border-bottom: none;
}

.nl-table th {
    width: 32%;
    min-width: 120px;
    font-weight: 600;
    color: var(--nl-navy);
    background: rgba(244, 246, 249, 0.85);
}

.nl-table td {
    color: var(--nl-navy-mid);
    line-height: 1.7;
}

@media (max-width: 520px) {
    .nl-table th,
    .nl-table td {
        display: block;
        width: 100%;
    }
    .nl-table th {
        padding-bottom: 6px;
    }
}

/* ----- News ----- */
.nl-news__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--nl-line);
}

.nl-news__item {
    position: relative;
    border-bottom: 1px solid var(--nl-line);
    padding: clamp(18px, 3vw, 22px) 0;
}

.nl-news__date {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--nl-muted);
    margin-bottom: 8px;
}

.nl-news__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.nl-news__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.nl-news__title a:hover {
    color: var(--nl-blue);
}

.nl-news__item--placeholder .nl-news__title {
    color: var(--nl-navy-mid);
}

.nl-news__more {
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

/* ----- Contact ----- */
.nl-contact {
    background: linear-gradient(165deg, var(--nl-navy) 0%, #0c1420 100%);
    color: var(--nl-white);
}

.nl-contact__inner {
    max-width: 720px;
}

.nl-form-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.nl-form-alert--success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

.nl-form-alert--error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
}

.nl-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nl-form__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .nl-form__grid {
        grid-template-columns: 1fr 1fr;
    }
    .nl-field--full {
        grid-column: 1 / -1;
    }
}

.nl-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.nl-req {
    color: #f87171;
}

.nl-field input,
.nl-field select,
.nl-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--nl-white);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.35s, background 0.35s;
}

.nl-field input::placeholder,
.nl-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.nl-field input:focus,
.nl-field select:focus,
.nl-field textarea:focus {
    outline: none;
    border-color: var(--nl-blue);
    background: rgba(255, 255, 255, 0.1);
}

.nl-field select {
    cursor: pointer;
}

.nl-form__submit {
    margin-top: 28px;
}

@media (max-width: 479px) {
    .nl-contact .nl-form__submit .nl-btn--wide {
        max-width: none;
        width: 100%;
    }
}

.nl-form__submit .nl-btn--primary {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

/* ----- Subpages (message / company / recruit / contact) ----- */
.nl-subpage {
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

/* お問い合わせページのみ：フッター直前の余白を詰める */
.nl-subpage--contact {
    padding-bottom: 0;
}

.nl-subhero {
    padding-top: calc(var(--nl-header-h) + clamp(28px, 5vw, 40px));
    padding-bottom: clamp(1.75rem, 5vw, 3.5rem);
    background: var(--nl-mist);
    border-bottom: 1px solid var(--nl-line);
}

.nl-subhero--dark {
    background: linear-gradient(165deg, var(--nl-navy) 0%, #0c1420 100%);
    color: var(--nl-white);
    border-bottom: none;
}

.nl-subhero__title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
    color: var(--nl-navy);
}

.nl-subhero__title--light {
    color: var(--nl-white);
}

.nl-subhero__lead {
    margin: 0;
    font-size: 16px;
    color: var(--nl-muted);
    line-height: 1.65;
}

.nl-subhero--dark .nl-subhero__lead,
.nl-subhero__lead--light {
    color: rgba(255, 255, 255, 0.78);
}

.nl-subpage__body {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3.25rem);
    padding-top: clamp(2.5rem, 6vw, 3.75rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.nl-subpage__body > .nl-heading-md:first-child,
.nl-subpage__body > section > .nl-heading-md:first-child {
    margin-top: 0;
}

.nl-subpage__back {
    margin-top: 0;
    padding-top: clamp(0.5rem, 2vw, 1rem);
}

.nl-subpage-table-wrap {
    margin-top: 0.5rem;
}

.nl-heading-md {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--nl-navy);
}

.nl-prose {
    font-size: 15px;
    line-height: 1.9;
    color: var(--nl-navy-mid);
}

.nl-prose > *:first-child {
    margin-top: 0;
}

.nl-prose p,
.nl-prose ul,
.nl-prose ol {
    margin: 0 0 1.25rem;
}

.nl-prose h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2.25rem 0 1rem;
    color: var(--nl-navy);
}

.nl-prose__lead {
    font-size: 17px;
    line-height: 1.85;
    color: var(--nl-navy);
}

.nl-prose__list {
    padding-left: 1.25rem;
}

.nl-prose__list li {
    margin-bottom: 0.5rem;
}

.nl-prose__list--ol {
    list-style: decimal;
}

.nl-prose__timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nl-prose__timeline li {
    padding: 10px 0;
    border-bottom: 1px solid var(--nl-line);
}

.nl-prose__timeline time {
    font-weight: 700;
    color: var(--nl-navy);
    margin-right: 0.5rem;
}

.nl-table thead th {
    background: var(--nl-mist);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--nl-line);
    color: var(--nl-navy);
}

.nl-map-placeholder {
    margin-top: 2.5rem;
    padding: clamp(3rem, 10vw, 5rem) 24px;
    border-radius: 16px;
    border: 1px dashed var(--nl-line);
    background: var(--nl-white);
    text-align: center;
    color: var(--nl-muted);
}

.nl-map-placeholder__label {
    margin: 0 0 8px;
    font-weight: 600;
    color: var(--nl-navy-mid);
}

.nl-map-placeholder__note {
    margin: 0;
    font-size: 13px;
}

.nl-recruit__cta {
    margin-top: 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 480px) {
    .nl-recruit__cta {
        justify-content: flex-start;
    }
}

.nl-recruit__cta .nl-btn {
    width: 100%;
    max-width: 320px;
}

@media (min-width: 480px) {
    .nl-recruit__cta .nl-btn {
        width: auto;
        max-width: none;
    }
}

.nl-contact--page {
    padding-top: 40px;
}

.nl-contact--page .nl-contact__inner {
    padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
    margin-inline: auto;
    background: rgba(6, 12, 22, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nl-contact--page .nl-subpage__back {
    padding-top: 0;
    margin-top: clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
}


@media (min-width: 480px) {
    .nl-contact--page .nl-subpage__back {
        text-align: left;
    }
}

.nl-text-link--on-dark {
    color: rgba(255, 255, 255, 0.9);
}

.nl-text-link--on-dark:hover {
    color: var(--nl-white);
}

/* ----- LP: recruit + contact CTA strip ----- */
.nl-recruit__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    font-size: 15px;
    line-height: 1.75;
    color: var(--nl-navy-mid);
}

.nl-recruit__highlights li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.nl-recruit__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--nl-blue);
}

.nl-recruit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
}

@media (max-width: 639px) {
    .nl-recruit__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nl-recruit__actions .nl-btn {
        width: 100%;
        justify-content: center;
    }
}

.nl-btn--outline {
    background: transparent;
    border: 1.5px solid var(--nl-navy);
    color: var(--nl-navy);
}

.nl-btn--outline:hover {
    background: var(--nl-navy);
    color: var(--nl-white);
    border-color: var(--nl-navy);
    transform: translateY(-2px);
}

/* .nl-cta-strip 本体は下部「Animation」ブロックで定義（グラデーション＋余白） */

.nl-cta-strip__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
    background: rgba(6, 12, 22, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: clamp(1.5rem, 5vw, 2.25rem) clamp(1.25rem, 4vw, 2rem);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
    .nl-cta-strip__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.nl-cta-strip__title {
    margin: 0 0 8px;
    margin-bottom: 1.5rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.nl-cta-strip__lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 600px;
}

.nl-cta-strip__action {
    margin: 0;
    flex-shrink: 0;
}

.nl-cta-strip__action .nl-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 767px) {
    .nl-cta-strip__inner {
        align-items: stretch;
        width: 90%;
    }

    .nl-cta-strip__action {
        width: 100%;
    }

    .nl-cta-strip__action .nl-btn {
        width: 100%;
        justify-content: center;
    }
}

.nl-section-lead--link {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.nl-message__more {
    margin: 1.5rem 0 0;
}

.nl-company__more {
    margin-top: 1.5rem;
    text-align: center;
}

/* ----- Reveal ----- */
.nl-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.85s var(--nl-ease), transform 0.85s var(--nl-ease);
}

.nl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Ripple ----- */
.nl-link-ripple {
    position: relative;
    overflow: hidden;
}

.nl-ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    animation: nlRipple 0.55s var(--nl-ease) forwards;
}

@keyframes nlRipple {
    to {
        transform: scale(28);
        opacity: 0;
    }
}

/* ----- Footer ----- */
.nl-footer {
    background: #0a0f18;
    color: rgba(255, 255, 255, 0.55);
    padding: clamp(40px, 8vw, 56px) 0;
    font-size: 13px;
}

.nl-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: max(clamp(20px, 4vw, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(20px, 4vw, 40px), env(safe-area-inset-right, 0px));
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 640px) {
    .nl-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.nl-footer__logo {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 18px;
    color: var(--nl-white);
    letter-spacing: 0.06em;
}

.nl-footer__tagline {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.nl-footer__copy {
    margin: 0 0 6px;
}

.nl-footer__note {
    margin: 0;
    font-size: 11px;
    opacity: 0.75;
}

/* ----- Archive / single (nexus CPT) ----- */
.nl-archive {
    padding-top: calc(var(--nl-header-h) + 32px);
    padding-bottom: clamp(4rem, 10vw, 6rem);
}

.nl-archive__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin: 0 0 8px;
}

.nl-archive__lead {
    color: var(--nl-muted);
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    font-size: 15px;
    line-height: 1.75;
}

.nl-archive-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nl-archive-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    border-bottom: 1px solid var(--nl-line);
    padding: clamp(18px, 4vw, 22px) 0;
}

.nl-archive-list li article {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

@media (min-width: 600px) {
    .nl-archive-list li article {
        flex-direction: row;
        align-items: baseline;
        gap: 2rem;
    }

    .nl-archive-list li article .nl-news__date {
        flex-shrink: 0;
        min-width: 86px;
        margin-bottom: 0;
    }
}

.nl-archive__pagination {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: 0.5rem;
}

.nl-archive .pagination,
.nl-archive .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.nl-archive .page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nl-archive .page-numbers a,
.nl-archive .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0 0.65rem;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    color: var(--nl-navy-mid);
    border: 1px solid var(--nl-line);
    background: var(--nl-white);
}

.nl-archive .page-numbers a:hover {
    color: var(--nl-blue);
    border-color: rgba(37, 99, 235, 0.35);
}

.nl-archive .page-numbers .current {
    background: var(--nl-navy);
    color: var(--nl-white);
    border-color: var(--nl-navy);
}

.nl-archive-list a {
    font-weight: 600;
    color: var(--nl-navy);
    text-decoration: none;
    font-size: 17px;
}

.nl-archive-list a:hover {
    color: var(--nl-blue);
}

.nl-archive-list__excerpt {
    margin: 0.5rem 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--nl-muted);
}

.nl-single {
    padding-top: calc(var(--nl-header-h) + 40px);
    padding-bottom: clamp(4rem, 10vw, 6rem);
}

.nl-single__meta {
    font-size: 13px;
    color: var(--nl-muted);
    margin-bottom: 12px;
}

.nl-single__content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--nl-navy-mid);
}

.nl-single__content > *:first-child {
    margin-top: 0;
}

.nl-back {
    display: inline-block;
    margin-top: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--nl-blue);
    text-decoration: none;
}

.nl-back:hover {
    text-decoration: underline;
}

/* ===================================================================
   Animation Upgrade v2 — シンプル & ハイレベル
   =================================================================== */

/* --- Hero: overflow clip for parallax + Ken Burns --- */
.nl-hero {
    overflow: hidden;
}

.nl-hero__bg {
    top: -80px;
    bottom: -80px;
    will-change: transform;
}

@keyframes nlHeroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

.nl-hero__img {
    animation: nlHeroZoom 22s ease-in-out forwards;
    will-change: transform;
}

/* --- Scroll hint --- */
.nl-hero__scroll-hint {
    position: absolute;
    bottom: max(clamp(20px, 4vw, 36px), calc(env(safe-area-inset-bottom, 0px) + 12px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.nl-hero__scroll-hint.is-hidden {
    opacity: 0;
}

.nl-hero__scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    transform-origin: top center;
    animation: nlScrollLine 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes nlScrollLine {
    0%   { transform: scaleY(0); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

/* --- Header brand mark: shimmer on hover --- */
.nl-header__mark {
    position: relative;
    overflow: hidden;
}

.nl-header__mark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 70%
    );
    transform: translateX(-120%);
    transition: transform 0.7s var(--nl-ease);
}

.nl-header__brand:hover .nl-header__mark::after {
    transform: translateX(120%);
}

/* --- Nav links: animated underline --- */
.nl-nav__list a:not(.nl-header__cta) {
    position: relative;
}

.nl-nav__list a:not(.nl-header__cta)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--nl-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--nl-ease);
    border-radius: 2px;
}

.nl-nav__list a:not(.nl-header__cta):hover::after,
.nl-nav__list a.is-active::after {
    transform: scaleX(1);
}

.nl-nav__list a.is-active {
    color: var(--nl-blue);
}

/* --- Eyebrow: left-line accent --- */
.nl-eyebrow,
.nl-hero__eyebrow {
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.nl-eyebrow::before,
.nl-hero__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}

/* --- Text link: animated underline from left --- */
.nl-text-link {
    position: relative;
    display: inline-block;
}

.nl-text-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.42s var(--nl-ease);
}

.nl-text-link:hover {
    text-decoration: none;
}

.nl-text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* --- Hero chips: staggered entrance --- */
.nl-hero__chips .nl-chip {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.55s var(--nl-ease), transform 0.55s var(--nl-ease);
}

.nl-hero__chips.is-visible .nl-chip {
    opacity: 1;
    transform: none;
}

.nl-hero__chips.is-visible .nl-chip:nth-child(1) { transition-delay: 0s; }
.nl-hero__chips.is-visible .nl-chip:nth-child(2) { transition-delay: 0.07s; }
.nl-hero__chips.is-visible .nl-chip:nth-child(3) { transition-delay: 0.14s; }
.nl-hero__chips.is-visible .nl-chip:nth-child(4) { transition-delay: 0.21s; }
.nl-hero__chips.is-visible .nl-chip:nth-child(5) { transition-delay: 0.28s; }

/* --- Business card: stagger support + refined hover --- */
.nl-card__inner:hover {
    box-shadow:
        0 24px 56px rgba(20, 31, 47, 0.1),
        inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

/* Static card index: larger & more decorative */
.nl-card__index {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--nl-line);
    line-height: 1;
    top: 16px;
    right: 18px;
    opacity: 0.6;
}

/* --- News: horizontal layout on desktop --- */
@media (min-width: 600px) {
    .nl-news__item article {
        display: flex;
        align-items: baseline;
        gap: 2rem;
    }

    .nl-news__date {
        flex-shrink: 0;
        margin-bottom: 0;
        min-width: 86px;
    }
}

/* News item: 左バー＋余白はマウス操作時のみ（タップでレイアウトがずれないように） */
@media (hover: hover) and (pointer: fine) {
    .nl-news__item {
        transition: padding-left 0.38s var(--nl-ease), border-bottom-color 0.38s var(--nl-ease);
    }

    .nl-news__item::before {
        content: '';
        position: absolute;
        left: 0;
        top: clamp(18px, 3vw, 22px);
        bottom: clamp(18px, 3vw, 22px);
        width: 2px;
        background: var(--nl-blue);
        border-radius: 2px;
        transform: scaleY(0);
        transform-origin: bottom center;
        transition: transform 0.38s var(--nl-ease);
    }

    .nl-news__item:hover::before {
        transform: scaleY(1);
        transform-origin: top center;
    }

    .nl-news__item:hover {
        padding-left: 16px;
        border-bottom-color: rgba(37, 99, 235, 0.25);
    }
}

/* --- CTA strip: animated gradient --- */
@keyframes nlCtaGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nl-cta-strip {
    color: var(--nl-white);
    padding: clamp(2.75rem, 7vw, 4.75rem) 0;
    background: linear-gradient(
        165deg,
        #0e1628 0%,
        var(--nl-navy) 28%,
        #0a101a 55%,
        #152238 100%
    );
    background-size: 240% 240%;
    animation: nlCtaGradient 20s ease infinite;
}

/* --- Button: press feedback --- */
.nl-btn:active {
    transform: translateY(0) scale(0.97);
    transition-duration: 0.1s;
}

/* --- Footer: top gradient accent --- */
.nl-footer {
    position: relative;
}

.nl-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.4) 50%, transparent 100%);
}

/* ===================================================================
   Motion safety
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
    .nl-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .nl-card__inner,
    .nl-btn,
    .nl-card__img {
        transition: none !important;
    }

    .nl-hero__img {
        animation: none;
    }

    .nl-hero__scroll-hint::after {
        animation: none;
    }

    .nl-cta-strip {
        animation: none;
        background-size: 100% 100%;
    }

    .nl-hero__chips .nl-chip {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .nl-news__item {
        transition: none;
    }

    .nl-news__item::before {
        transition: none;
    }

    .nl-text-link::after {
        transition: none;
    }
}
