/* #LP-B 専用スタイル */

/* ヒーロー：1画面固定 */
.lp-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    /* 画面高さ固定 */
    overflow: hidden;
    /* スクロール防止 */
    background-color: #01081c;
    /* ダーク背景 */
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* テキストコンテンツ */
.lp-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    /* 垂直方向はflexで中央揃え済み */
}

/* ヘッディングレイアウト */
.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: 8vw;
    /* 少し大きめに調整 */
}

/* 強調："覚悟"など */
.hero-highlight-2 {
    font-size: 1.3em;
    /* 2倍サイズ */
}

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

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

/* フッター：絶対配置で最下部に固定 */
.lp-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5.33vw;
    text-align: center;
    color: #fff;
    font-size: 3.4vw;
    z-index: 20;
    /* 背景色なし（ヒーロー背景に重ねる） */
}