/* ===== ベース ===== */
.isa-top-hero-text {
    position: relative;
    padding: clamp(2px, 2.4vw, 5px) clamp(6px, 1.4vw, 13px);
}

.isa-top-hero-text__inner {
}

/* メインタイトル */
.isa-top-hero-text__title {
    margin: 3px 0 clamp(7px, 4vw, 49px);
    font-weight: 800;
    font-size: clamp(23px, 6vw, 86px);
    line-height: 1.2;
    letter-spacing: -1px;
    color: #222;
    text-align: left;
}

/* [ ] で囲った部分の色（テーマカラー） */
.isa-top-hero-text__title .isa-top-hero-text__em {
    color: #198fce; /* テーマカラーが無ければ青系 */
}

/* ===== リード文（行ごとに白帯） ===== */
.isa-top-hero-text__lead-wrap {
    display: flex;              /* ← 縦積みレイアウトにする */
    flex-direction: column;     /* ← 上から下に並べる */
    gap: clamp(1px, 1vw, 8px);           /* ← 各行の間隔 */
    align-items: flex-start;    /* ← 左寄せ（中央にしたければ center に） */
}

.isa-top-hero-text__lead-line {
    display: inline-flex;
    align-items: center;
    padding: clamp(1px, 1vw, 1px) 5px;
    font-size: clamp(15px, 4.3vw, 54px);
    font-weight: 700;
    line-height: 1.3;
    background-color: #ffffff;
    color: #198fce;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 0, 0, .05);
    letter-spacing: 0px;
}

@media (min-width: 1024px) {
    .isa-top-hero-text {
        padding: 32px 24px;
    }

    .isa-top-hero-text__inner {
        max-width: 600px;
    }
}
