/* #LP-A ヒーロー：ダーク背景＋スーツ人物 */
.lp-hero {
    position: relative;
    width: 100%;
    /* モバイル向け高さ調整：svhを基本としつつ、最低高さを確保 */
    min-height: 100svh;
    padding: 10svh 5.33vw;
    height: 100svh;
    overflow: hidden;
    background-color: #01081c;
    /* 画像ロード前の背景色 */
    isolation: isolate;
}



/* 人物画像 */
.lp-hero__person {
    position: absolute;
    right: -10%;
    bottom: 13.33vw;
    /* 画像を上側に上げるための設定値 */
    width: 68%;
    /* 画面幅に対する割合 (85% * 0.8) */
    max-width: 106.67vw;
    z-index: -1;
    display: flex;
    align-items: flex-end;
}

.lp-hero__person-img {
    width: 100%;
    height: auto;
    display: block;
    /* フェードインアニメーション用 */
    opacity: 0;
    transform: translateY(5.33vw);
    animation: fadeUpPerson 1.2s ease-out 0.2s forwards;
}



/* テキストコンテンツ */
.lp-hero__content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 10;
    text-align: center;
}

.lp-hero__heading {
    color: #fff;
    font-family: var(--font-main);
    font-weight: normal;
    /* 明朝体で高級感を演出 */
    text-shadow: var(--text-shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    /* 行間を広めに */
}

.hero-line {
    display: block;
    line-height: 1.4;
    white-space: nowrap;
    font-size: 4vw;
}

/* 強調レベル1：1.25倍 */
.hero-highlight-1 {
    font-size: 1.7em;
}

/* 強調レベル2：1.6倍 */
.hero-highlight-2 {
    font-size: 2em;
}

/* スクロールダウン */
.scroll-down--hero {
    position: absolute;
    bottom: 5.33vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0.8;
    z-index: 10;
    gap: 2.13vw;
    animation: pulse 2s infinite;
}

.scroll-down__text {
    font-size: 4vw;
    /* SCROLLのテキストサイズ */
    letter-spacing: 0.2em;
}

.scroll-down__icon {
    font-size: 8vw;
    /* SCROLLのアイコンサイズ */
}



/* アニメーション用クラス */
.hero-animate .lp-hero__heading {
    opacity: 0;
    animation: fadeInText 1.5s ease-out 0.5s forwards;
}