﻿:root {
    --ink: #0b2c3a;
    --deep: #0c4f63; /* 濃い青緑 */
    --deep2: #073b4b;
    --bg: #ffffff;
    --muted: #6b7280;
    --line: #e5e7eb;
    --alt: #f7f7f8;
    --container: 1100px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,"Segoe UI",sans-serif;
    color: #111827;
    background: #fff;
    line-height: 1.7
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}

/* ===== Header (2段) ===== */
.siteHeader__top {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.headerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.brand__name {
    font-weight: 800;
    letter-spacing: .02em;
    font-size: x-large;
}

.brand__sub {
    font-size: 12px;
    color: var(--muted)
}

.headerTop__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.telBox {
    text-align: right;
    min-width: 220px
}

.telBox__num {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink)
}

.telBox__time {
    font-size: 12px;
    color: var(--muted)
}

.ctaBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 0;
    border: 1px solid var(--deep);
    background: var(--deep);
    color: #fff;
    font-weight: 700
}

.ctaBtn--ghost {
    background: #fff;
    color: var(--deep)
}

.langSwitch {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: var(--muted)
}

    .langSwitch a {
        border-bottom: 1px solid transparent
    }

        .langSwitch a:hover {
            border-bottom-color: var(--muted)
        }

.siteHeader__nav {
    background: var(--deep2)
}

.navRow {
    padding: 0
}

.gnav {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    color: #fff
}

    .gnav a {
        opacity: .95
    }

        .gnav a:hover {
            opacity: 1;
            text-decoration: underline
        }

/* ===== Hero Split ===== */
.heroSplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px
}

.heroSplit__left {
    background: var(--deep);
    color: #fff;
    display: flex;
    align-items: center
}

.heroSplit__inner {
    max-width: 520px;
    margin-left: auto;
    padding: 70px 310px;
    margin-right: 20px;
}

.heroSplit__title {
    font-size: 44px;
    line-height: 1.2;
    margin: 0 0 18px;
    font-weight: 900
}

.heroSplit__lead {
    margin: 0;
    color: #dbe7ee;
    font-size: 14px
}

.heroSplit__cta {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap
}

.heroBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #fff;
    background: #fff;
    color: var(--deep);
    font-weight: 800
}

.heroBtn--ghost {
    background: transparent;
    color: #fff
}

.heroSplit__right {
    position: relative
}

.heroSplit__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

/* ===== Section Center ===== */
.sectionCenter {
    padding: 80px 0
}

.sectionCenter--alt {
    background: #f6f6f6
}

.sectionCenter__title {
    text-align: center;
    font-size: 44px;
    letter-spacing: .06em;
    margin: 0 0 12px;
    color: var(--deep2);
    font-weight: 900
}

.sectionCenter__desc {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: left;
    color: #374151
}

.sectionCenter__more {
    display: flex;
    justify-content: center;
    margin-top: 22px
}

.pillLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    border: 1px solid var(--deep2);
    border-radius: 999px;
    color: var(--deep2);
    font-weight: 800
}

/* ===== Media Band (スクショの帯＋画像) ===== */
.mediaBand {
    position: relative;
    max-width: 980px;
    margin: 28px auto 0;
    height: 330px
}

.mediaBand__band {
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 46%;
    height: 46%;
    background: var(--deep);
    /* 追加 */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ← 左寄せ */
    text-align: center; /* ← 左寄せ */
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .05em;
    line-height: 1.6;
    padding: 30px 40px; /* ← 左余白を少し広めに */
    z-index: 0;
}

.mediaBand__band_lower {
    position: absolute;
    right: 0;
    bottom: -18px;
    width: 46%;
    height: 46%;
    background: var(--deep);
    /* �ǉ� */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* �� ���� */
    text-align: inherit; /* �� ���� */
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .05em;
    line-height: 1.6;
    padding: 20px 20px 20px 130px; /* �� ���]���������L�߂� */
    z-index: 0;
}

.mediaBand__img {
    position: absolute;
    right: 0;
    top: 0;
    width: 66%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
    z-index: 1
}

.mediaBand--reverse .mediaBand__band {
    left: auto;
    right: 0
}

.mediaBand--reverse .mediaBand__img {
    right: auto;
    left: 0
}

/* ===== Service Grid ===== */
.serviceGrid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 0;
    border: 1px solid var(--line);
    background: #fff
}

.serviceCard {
    display: block;
    border-right: 1px solid var(--line)
}

    .serviceCard:last-child {
        border-right: none
    }

.serviceCard__img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative
}

.serviceCard__label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 160px;
    width: 110px;
    height: 88px;
    background: var(--deep2);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 800
}

.serviceCard__labelTop {
    font-size: 12px;
    letter-spacing: .06em;
    opacity: .9
}

.serviceCard__num {
    font-size: 22px
}

.serviceCard__body {
    padding: 52px 22px 22px
}

.serviceCard__title {
    font-weight: 900;
    text-align: center;
    margin: 0 0 10px;
    color: #0f172a
}

.serviceCard__text {
    color: #4b5563;
    font-size: 13px;
    text-align: center
}

/* ===== Company Table ===== */
.profileTable {
    width: 100%;
    max-width: 980px;
    margin: 28px auto 0;
    border-collapse: collapse;
    border: 1px solid var(--line)
}

    .profileTable th, .profileTable td {
        padding: 14px 16px;
        border-top: 1px solid var(--line);
        vertical-align: top
    }

    .profileTable th {
        width: 240px;
        background: #f3f4f6;
        text-align: left
    }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .heroSplit {
        grid-template-columns: 1fr
    }

    .heroSplit__inner {
        max-width: none;
        margin: 0;
        padding: 54px 22px
    }

    .heroSplit {
        min-height: auto
    }

    .heroSplit__right {
        height: 300px
    }

    .heroSplit__img {
        position: relative;
        height: 300px
    }

    .serviceGrid {
        grid-template-columns: 1fr
    }

    .serviceCard {
        border-right: none;
        border-top: 1px solid var(--line)
    }

        .serviceCard:first-child {
            border-top: none
        }

    .mediaBand {
        height: 280px
    }

    .mediaBand__img {
        width: 100%
    }

    .mediaBand__band {
        display: none
    }

    .gnav {
        gap: 14px;
        flex-wrap: wrap
    }

    .telBox {
        text-align: left;
        min-width: auto
    }
}

/* ===== Footer Banner (画像3枚の帯) ===== */
.footerBanner {
    background: var(--deep2, #073b4b);
    padding: 34px 0;
}

.footerBanner__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0;
    max-width: 980px;
}

.footerBanner__item {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.footerBanner__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.0) contrast(1.02);
    transform: scale(1.02);
}

.footerBanner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,.15));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    color: #fff;
    font-weight: 800;
}

    .footerBanner__overlay span {
        padding: 10px 18px;
        border-radius: 999px;
        background: rgba(0,0,0,.18);
        backdrop-filter: blur(2px);
    }

/* ===== Main Footer ===== */
.siteFooter {
    background: #fff;
    border-top: 1px solid var(--line,#e5e7eb)
}

.siteFooter__main {
    padding: 46px 0 54px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footerBrand {
    display: inline-block
}

.footerBrand__jp {
    font-weight: 900;
    letter-spacing: .02em
}

.footerBrand__en {
    font-size: 12px;
    color: var(--muted,#6b7280);
    margin-top: 2px
}

.footerInfo {
    margin-top: 16px;
    color: #111827;
    font-size: 14px;
    line-height: 1.9
}

.footerSocial {
    margin-top: 18px;
    display: flex;
    gap: 12px
}

.footerSocial__icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--line,#e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-weight: 800;
    font-size: 13px;
}

.siteFooter__col {
    display: grid;
    gap: 14px
}

.footerLink {
    color: #111827;
    font-size: 14px
}

    .footerLink:hover {
        text-decoration: underline
    }

/* ===== Bottom Bar ===== */
.siteFooter__bottom {
    background: var(--deep2, #073b4b);
    color: #fff;
}

.siteFooter__copy {
    text-align: center;
    padding: 18px 0;
    font-size: 12px;
    opacity: .95;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .footerBanner__inner {
        grid-template-columns: 1fr;
        max-width: none
    }

    .footerBanner__item {
        height: 160px
    }

    .siteFooter__main {
        grid-template-columns: 1fr;
        gap: 28px
    }
}
/* ===== Hero Slider additions ===== */
.heroSplit__right {
    position: relative;
    overflow: hidden
}

.heroSplit__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
}

    .heroSplit__img.is-active {
        opacity: 1
    }


.heroDots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

    .heroDots button {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.8);
        background: rgba(255,255,255,.2);
        cursor: pointer;
    }

        .heroDots button.is-active {
            background: rgba(255,255,255,.9);
        }

/* スマホ時：バッジ位置調整 */
@media (max-width: 980px) {
    .heroDots {
        bottom: 10px
    }
}
/* ===== Smooth transition: left text ===== */
.heroSplit__inner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .45s ease, transform .45s ease;
    will-change: opacity, transform;
}

    .heroSplit__inner.is-leaving {
        opacity: 0;
        transform: translateY(8px);
    }

    .heroSplit__inner.is-entering {
        opacity: 0;
        transform: translateY(-8px);
    }

/* ===== Smooth transition: images (crossfade + slight zoom) ===== */
.heroSplit__img {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .95s ease, transform 5s ease; /* 5秒でじわっと */
    will-change: opacity, transform;
}

    .heroSplit__img.is-active {
        opacity: 1;
        transform: scale(1.00);
    }
/* ===== Left text: crossfade layers ===== */
.heroSplit__inner--stack {
    position: relative;
    min-height: 320px; /* 高さの揺れを抑える（必要なら調整） */
}

.heroLayer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .75s ease, transform .75s ease;
    will-change: opacity, transform;
}

    .heroLayer.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* 旧テキストは少しだけ残して消える（上品） */
    .heroLayer.is-leaving {
        opacity: 0;
        transform: translateY(-6px);
    }

/* スマホは高さ調整 */
@media (max-width: 980px) {
    .heroSplit__inner--stack {
        min-height: 360px;
    }
}
.serviceCard {
    position: relative; /* ← これが無いとラベルが浮きやすい */
    display: block;
    overflow: hidden;
}

.serviceCard__img {
    height: 220px; /* お好みで */
    background-size: cover;
    background-position: center;
}

/* ラベルを画像の上に重ねる */
.serviceCard__label {
    position: absolute;
    left: 50%;
    top: 160px; /* 画像の下寄りに出す */
    transform: translateX(-50%);
    width: 92px;
    height: 92px;
    background: var(--deep2, #073b4b);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 3; /* ← 画像より前 */
    pointer-events: none; /* ← カード全体クリックを邪魔しない */
}

.serviceCard__labelTop {
    font-size: 12px;
    letter-spacing: .08em;
    opacity: .9;
    font-weight: 800;
}

.serviceCard__num {
    font-size: 22px;
    font-weight: 900;
}
/* ===== Sub pages ===== */
.subHero {
    background: var(--deep);
    color: #fff;
    padding: 80px 0 70px;
}

.subHero__eyebrow {
    font-size: 14px;
    letter-spacing: .14em;
    opacity: .8;
    margin-bottom: 14px;
}

.subHero__title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 18px;
    font-weight: 900;
}

.subHero__lead {
    max-width: 860px;
    margin: 0;
    color: #dbe7ee;
    font-size: 15px;
    line-height: 1.9;
}

.pageSection {
    padding: 80px 0;
}

.pageSection--alt {
    background: #f6f6f6;
}

.pageContainer {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: start;
}

.pageContainer--reverse {
    grid-template-columns: 1fr 420px;
}

    .pageContainer--reverse .pageImageBlock {
        order: 2;
    }

    .pageContainer--reverse .pageContent {
        order: 1;
    }

.pageImageBlock__img {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
}

.pageContent p {
    margin: 0 0 18px;
    color: #374151;
    line-height: 1.95;
}

.pageTitle {
    font-size: 30px;
    line-height: 1.35;
    margin: 0 0 24px;
    color: var(--deep2);
    font-weight: 900;
}

.pageTitle--center {
    text-align: center;
}

.serviceNumber {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: var(--deep2);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .08em;
}

.serviceList {
    margin: 22px 0 22px 0;
    padding-left: 1.2em;
    color: #374151;
}

    .serviceList li {
        margin-bottom: 10px;
    }

.contactPanel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 40px;
    text-align: center;
}

.contactPanel__title {
    margin: 0 0 12px;
    font-size: 28px;
    color: var(--deep2);
    font-weight: 900;
}

.contactPanel__text {
    margin: 0 0 22px;
    color: #4b5563;
    line-height: 1.9;
}

.contactPanel__links {
    display: flex;
    justify-content: center;
}

.mvvGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}

.mvvCard {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
}

.mvvCard__label {
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: 10px;
    font-weight: 700;
}

.mvvCard__title {
    font-size: 24px;
    margin: 0 0 16px;
    color: var(--deep2);
    font-weight: 900;
}

.mvvCard p {
    margin: 0;
    color: #374151;
    line-height: 1.9;
}

@media (max-width: 980px) {
    .subHero {
        padding: 56px 0 50px;
    }

    .subHero__title {
        font-size: 32px;
    }

    .pageContainer,
    .pageContainer--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

        .pageContainer--reverse .pageImageBlock,
        .pageContainer--reverse .pageContent {
            order: initial;
        }

    .pageImageBlock__img {
        height: 280px;
    }

    .mvvGrid {
        grid-template-columns: 1fr;
    }

    .contactPanel {
        padding: 28px 20px;
    }
}
.contactPage {
    max-width: 780px;
    margin: 0 auto;
}

.contactForm {
    display: grid;
    gap: 24px;
}

.formRow {
    display: grid;
    gap: 8px;
}

.formLabel {
    font-weight: 800;
    color: var(--deep2);
}

.req {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
    background: #dc2626;
    border-radius: 999px;
}

.formInput,
.formTextarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.7;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .formInput:focus,
    .formTextarea:focus {
        border-color: var(--deep);
        box-shadow: 0 0 0 3px rgba(12, 79, 99, 0.12);
    }

.formTextarea {
    resize: vertical;
    min-height: 180px;
}

.formSubmit {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.formAlert {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

    .formAlert ul {
        margin: 0;
        padding-left: 1.2em;
    }

.confirmActions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hpField {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.heroLayer {
    pointer-events: none;
}

    .heroLayer.is-active {
        pointer-events: auto;
    }
/* =========================
   MVV Cards
   ========================= */
.mvvGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.mvvCard {
    position: relative;
    background: #fff;
    border: 1px solid #d9e1e7;
    padding: 34px 34px 38px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    /* 上部アクセントライン */
    .mvvCard::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--deep2), var(--deep));
    }

    /* 右上の薄い装飾 */
    .mvvCard::after {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(12, 79, 99, 0.05);
    }

    .mvvCard:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(11, 44, 58, 0.10);
        border-color: #bdd0da;
    }

.mvvCard__label {
    position: relative;
    display: inline-block;
    margin-bottom: 22px;
    padding-bottom: 10px;
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 800;
    color: #5c7086;
    text-transform: uppercase;
}

    .mvvCard__label::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 42px;
        height: 2px;
        background: var(--deep);
    }

.mvvCard__title {
    position: relative;
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.25;
    color: var(--deep2);
    font-weight: 900;
}

.mvvCard p {
    position: relative;
    margin: 0;
    color: #334155;
    line-height: 2.0;
    font-size: 15px;
}

/* Valuesだけ少し読みやすく */
.mvvCard:last-child p {
    line-height: 2.1;
}

/* スマホ */
@media (max-width: 980px) {
    .mvvGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvvCard {
        padding: 26px 22px 30px;
    }

    .mvvCard__title {
        font-size: 24px;
    }
}
.mvvGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
    align-items: stretch;
}

.mvvCard {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* =========================
   Apple-like MVV
   ========================= */
.pageSection--mvv {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
    padding: 96px 0 110px;
}

.mvvIntro {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.mvvIntro__eyebrow {
    font-size: 12px;
    letter-spacing: .24em;
    font-weight: 700;
    color: #7a8696;
    margin-bottom: 14px;
}

.mvvIntro__title {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #0b2239;
}

.mvvIntro__lead {
    margin: 0 auto;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.95;
    color: #5d6b7b;
}

.mvvGrid--apple {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.mvvCard--apple {
    position: relative;
    min-height: 640px;
    padding: 34px 34px 38px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(249,251,253,.98) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 1px rgba(15, 23, 42, 0.02), 0 18px 40px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

    .mvvCard--apple:hover {
        transform: translateY(-6px);
        border-color: rgba(12, 79, 99, 0.16);
        box-shadow: 0 1px 1px rgba(15, 23, 42, 0.03), 0 24px 56px rgba(15, 23, 42, 0.10);
    }

    .mvvCard--apple::before {
        content: "";
        position: absolute;
        top: -70px;
        right: -40px;
        width: 180px;
        height: 180px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(12,79,99,.11) 0%, rgba(12,79,99,0) 72%);
        pointer-events: none;
    }

    .mvvCard--apple::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 28px;
        padding: 1px;
        background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,0));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.mvvCard__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.mvvCard__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(12, 79, 99, 0.08);
    color: var(--deep2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.mvvCard__label {
    font-size: 13px;
    letter-spacing: .22em;
    font-weight: 700;
    color: #6b7888;
}

.mvvCard__title {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -.03em;
    font-weight: 800;
    color: #0b2239;
}

.mvvCard__text {
    margin: 0;
    font-size: 17px;
    line-height: 2.0;
    color: #314256;
    white-space: normal;
}

    .mvvCard__text strong {
        color: #10253a;
        font-weight: 700;
    }

@media (max-width: 1180px) {
    .mvvGrid--apple {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .mvvCard--apple {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .pageSection--mvv {
        padding: 72px 0 84px;
    }

    .mvvIntro__title {
        font-size: 34px;
    }

    .mvvIntro__lead {
        font-size: 15px;
        line-height: 1.85;
    }

    .mvvCard--apple {
        padding: 26px 22px 28px;
        border-radius: 22px;
    }

    .mvvCard__title {
        font-size: 28px;
    }

    .mvvCard__text {
        font-size: 15px;
        line-height: 1.9;
    }
}
.mapBlock {
    margin-top: 24px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #fff;
}

    .mapBlock iframe {
        display: block;
        width: 100%;
        height: 450px;
    }