/* #LP-A イントロ：写真＋丸ラベル3つ */
.intro-feature {
    position: relative;
    /* 背景画像設定: 画像を上寄せ・リピートなしにし、下部に背景色スペースを作る */
    background: url("../../assets/images/lp-a/hero-feature.webp") top center / 100% auto no-repeat;
    background-color: var(--intro-bg-dark);

    /* 高さ: スマホ基準で十分な高さを確保 */
    min-height: 150vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    /* パディング: 下部を大きくして黒背景スペースを確保 */
    padding: 15vw 1.25em 10vw;
    isolation: isolate;
}

/* Gradient Overlay */
/* Gradient Overlay */
.intro-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    /* 下部の黒背景へスムーズにつなげるグラデーション */
    background: linear-gradient(to bottom,
            var(--intro-bg-dark) 0%,
            rgba(1, 8, 28, 0.3) 15%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(1, 8, 28, 0.8) 70%,
            var(--intro-bg-dark) 90%);
    z-index: -1;
}

/* Top Copy Area */
.intro-top-copy {
    position: absolute;
    top: 20vw;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 4vw;
    line-height: 1.3;
    text-shadow: var(--text-shadow-lg);
    pointer-events: none;
    letter-spacing: 0.05em;
    z-index: 2;
}

.intro-top-copy p {
    margin: 0;
    margin-bottom: 0.5em;
}

.intro-top-copy p:last-child {
    margin-bottom: 0;
}

/* "外資系戦略ファーム" Label */
.intro-sub-label {
    font-size: 0.8em;
    display: block;
    width: fit-content;
    margin: 0 auto;
    /* 中央から少し左へずらす */
    transform: translateX(30%);
    opacity: 0.9;
    text-shadow: var(--text-shadow-lg);
}

.intro-highlight {
    color: var(--gold);
    font-size: 2em;
    text-shadow: var(--text-shadow-lg);
}

/* Logo Area */
.intro-logo {
    position: absolute;
    top: 85vw;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 31.25em;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-logo__img {
    width: 100%;
    height: auto;
    /* drop-shadow: 0 8px 16px -> 0 0.5em 1em */
    filter: drop-shadow(0.5em 0.5em 1em rgba(0, 0, 0, 0.8));
}

.intro-logo-text {
    margin-top: 0.5em;
    /* 10px */
    color: #fff;
    font-size: 5vw;
    text-shadow: var(--text-shadow-lg);
    white-space: nowrap;
}

.intro-logo-text-highlight {
    font-size: 1.7em;
    color: var(--gold);
    text-shadow: var(--text-shadow-lg);
    margin-left: 0.1em;
}

/* Bottom Pillars (Images) */
.intro-pill-row {
    display: flex;
    gap: 3vw;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    z-index: 2;
}

.intro-pill {
    width: 28vw;
    height: auto;
    aspect-ratio: 1;
    filter: drop-shadow(0.25em 0.25em 0.375em rgba(0, 0, 0, 0.8));
    object-fit: cover;
    flex: 0 0 auto;
}

/* Tablet/Desktop adjustments */
@media (min-width: 640px) {
    .intro-feature {
        min-height: 187.5vw;
        padding-bottom: 46.88vw;
        background-size: 100vw auto;
    }

    .intro-top-copy {
        top: 12.5vw;
        font-size: 3.91vw;
    }

    .intro-logo {
        top: 93.75vw;
    }

    .intro-pill-row {
        gap: 2.34vw;
    }

    .intro-pill {
        width: 28.13vw;
    }
}