/* ================================================
   LP リセット・共通
================================================ */
#content {
    background: #eff1eb;
}

#lp-wrap * {
    box-sizing: border-box;
}

#lp-wrap {
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.fullwide {
    overflow: hidden !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: 100vw;
}

span.text-l {
    margin-left: -10px;
}

span.text-r {
    margin-right: -10px;
}

/* ================================================
   ヘッダーバー
================================================ */
.lp-header {
    background-color: #f0f1ec;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.30);
}

.lp-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-header .header-logo {
    margin: 0;
    display: grid;
    justify-content: space-around;
}

.lp-header .header-logo-sub {
    font-size: clamp(12px, 1.8vw, 16px);
    font-weight: 600;
    color: #666;
    border-bottom: none;
    padding-bottom: 2px;
    text-align: left;
    letter-spacing: 0;
    margin-bottom: 0;
}

.lp-header .header-logo-main {
    font-size: clamp(18px, 1.8vw, 26px);
    color: #1b3156;
    text-align: left;
    font-weight: 700;
    margin-top: -5px;
    margin-bottom: 0;
}

.lp-header__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.lp-header__tel-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1b3156;
}

.lp-header__tel-link:hover {
    opacity: 0.8;
}

.lp-header__tel-icon {
    width: 28px;
    height: auto;
    display: block;
}

.lp-header__tel-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 700;
    color: #1b3156;
    letter-spacing: 0.02em;
    line-height: 1;
}

.lp-header__tel-hours {
    font-size: clamp(12px, 1.1vw, 16px);
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

/* ================================================
   ファーストビュー（FV）
================================================ */
.lp-fv {
    background-color: #eff1eb;
    position: relative;
    /* 基点をここに。lp-fv__rightの absolute 基準 */
    overflow: hidden;
    padding: 48px 0 0;
    min-height: 480px;
}

.lp-fv__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 480px;
    /* position: relative を持たせない → .lp-fv が absolute の基点になる */
}

/* ------------------------------------------------
   左：キャッチコピー（固定）
------------------------------------------------ */
.lp-fv__left {
    padding: 0 30px 90px 0;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.lp-fv__left img {
    width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------------
   右：人物写真スライドエリア
   .lp-fv 基準で left:50% → 画面中央〜右端フルワイド
------------------------------------------------ */
.lp-fv__right {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
}

/* PC用 Swiper */
.lp-fv__swiper {
    width: 100%;
    height: 100%;
}

.lp-fv__swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.lp-fv__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.lp-fv__slide-img--2 {
    object-position: 40% 50% !important;
    /* ← ここで位置を調整 */
}

/* ------------------------------------------------
   SP用：フル写真スライド
------------------------------------------------ */
.lp-fv__sp {
    width: 100%;
    height: 260px;
}

.lp-fv__swiper-sp {
    width: 100%;
    height: 100%;
}

.lp-fv__swiper-sp .swiper-slide {
    width: 100%;
    height: 100%;
}

.lp-fv__swiper-sp .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    display: block;
}

/* ================================================
   レスポンシブ（スマホ）
================================================ */
@media (max-width: 768px) {
    .lp-fv {
        padding: 0;
        min-height: auto;
    }

    .lp-fv__inner {
        grid-template-columns: 1fr;
        padding: 0;
        min-height: auto;
    }

    /* SP：キャッチコピーを下、写真を上に */
    .lp-fv__left {
        padding: 24px 20px 32px;
        justify-content: center;
        order: 2;
    }

    /* 右カラム（PC用スライダー）はSPで非表示 */
    .lp-fv__right {
        position: static;
        display: none;
    }

    /* SP用スライダーを表示 */
    .lp-fv__sp {
        order: 1;
        height: 167px;
    }
}


/* ================================================
   キャンペーンセクション（FV直下）
================================================ */
.lp-campaign {
    display: flex;
    background-color: #f8f8e0;
    justify-content: center;
    border-radius: 50% 50% 0 0 / 80px 80px 0 0;
    margin-top: -25px;
    padding-top: 40px;
    position: relative;
    z-index: 10;
    flex-direction: column;
}

.lp-campaign__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-campaign__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 100px;
}

/* ================================================
   メッセージセクション
================================================ */
.lp-message {
    background-color: #20365a;
    position: relative;
    z-index: 15;
}

.lp-message.fullwide {
    overflow: visible !important;
}

.lp-message__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 0 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.lp-message__img {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 220px;
    line-height: 0;
    z-index: 2;
}

.lp-message__img img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-message__text {
    flex: 1;
    text-align: center;
    padding: 30px 0;
}

.lp-message__text p {
    font-size: 29px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.6;
    letter-spacing: 0.17rem;
}

.lp-message__text h2 {
    font-size: clamp(24px, 3vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.6px;
}

/* ================================================
   CTAセクション
================================================ */
.lp-cta {
    background-color: #f8f8e0;
    padding: 48px 0 64px;
    position: relative;
}

.lp-cta__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.lp-cta__deco img {
    position: absolute;
}

.deco--tl-1 {
    top: 160px;
    left: 119px;
    width: 130px;
}

.deco--tl-2 {
    top: 130px;
    left: 260px;
    width: 90px;
}

.deco--tr-1 {
    top: 130px;
    right: 240px;
    width: 90px;
}

.deco--tr-2 {
    top: 150px;
    right: 96px;
    width: 130px;
}

.deco--bl-1 {
    bottom: 160px;
    left: 119px;
    width: 130px;
}

.lp-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-cta__label-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.lp-cta__label-arc {
    display: block;
    width: 220px;
    height: auto;
    margin: 0 auto 4px;
}

.lp-cta__speech-icon {
    display: block;
    width: 52px;
    height: auto;
    margin: -10px auto 14px;
}

.lp-cta__box {
    border: 4px solid #1b3156;
    padding: 52px 0 32px;
    background: #fff;
    display: block;
}

.lp-cta__heading-wrap {
    position: relative;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 吹き出し見出し（CTA・lp-switchで共用） */
.lp-cta__heading {
    display: block;
    background-color: #1b3156;
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    padding: 0 24px 5px;
    letter-spacing: 0.04em;
    position: relative;
    border-radius: 10px;
    margin-bottom: -76px;
    z-index: 2;
}

.lp-cta__heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 22px solid #1b3156;
}

/* lp-switch内で使う際のサイズ調整用 */
.lp-cta__heading2 {
    padding: 5px 15px;
    margin-bottom: 0;
}

.balloon1 {
    margin-top: -38px;
    margin-bottom: 130px;
}

.lp-cta__buttons-area {
    padding: 32px 0 0;
}

.lp-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.lp-cta__badge {
    flex-shrink: 0;
    width: 155px;
    margin-top: -25px;
}

.lp-cta__badge img {
    width: 135px;
    height: auto;
    display: block;
}

.lp-cta__btn-img {
    display: block;
    height: 89px;
    width: auto;
}

.lp-cta__btn-img:hover {
    transform: translateY(-2px);
}

.lp-cta__notes-wrap {
    margin: 30px;
    border: 1px solid #eff1eb;
    border-radius: 20px;
}

.lp-cta__notes-title {
    background-color: #eff1eb;
    text-align: center;
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 700;
    padding: 10px 20px;
    letter-spacing: 0.06em;
    margin: -1px;
    border-radius: 20px 20px 0 0;
}

.lp-cta__notes-body {
    padding: 20px 40px 28px;
}

.lp-cta__notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-cta__notes-list li {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 700;
    line-height: 1.7;
    padding-left: 1.2em;
    position: relative;
}

.lp-cta__notes-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    font-size: 0.75em;
    top: 0.3em;
}

/* ================================================
   フォトギャラリー
================================================ */
.lp-photos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 249px;
}

.lp-photos__item {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.lp-photos__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* ================================================
   お悩みセクション
================================================ */
.lp-worries__heading-wrap {
    position: relative;
    width: 100%;
    padding-bottom: calc(302 / 1448 * 100%);
    z-index: 1;
}

.lp-worries__heading-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.lp-worries__heading-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(197 / 302 * 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 1;
}

.lp-worries__title {
    font-size: clamp(22px, 4vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-top: 85px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-align: center;
    /* ★ 固定幅 500px → max-width に変更 */
    max-width: 500px;
    width: 100%;
}

.lp-worries__title rt {
    font-size: 0.8em;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #fff;
    margin-bottom: -5px;
}

.lp-worries__subtitle {
    font-size: clamp(16px, 2vw, 32px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
    text-align: center;
}

.lp-worries__body {
    position: relative;
    padding: 215px 20px 80px;
    background-image: url(../images/sec4-bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -135px;
}

.lp-worries__body::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-worries__list {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    /* ★ 固定幅なし・画面幅に収まるように */
    width: fit-content;
    max-width: 100%;
}

.lp-worries__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 50px;
    padding: 14px 28px 14px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.lp-worries__check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: block;
}

.lp-worries__item-text {
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* ================================================
   5つの安心セクション
================================================ */
.lp-reasons {
    padding: 0 0 80px;
}

.lp-reasons__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 0;
}

.lp-reasons__label-wrap {
    align-items: center;
    background-color: #f8f8e0;
    border-radius: 50%;
    padding: 30px 76px 40px;
    /* ★ 固定幅・固定高さ → レスポンシブに */
    width: min(455px, 75vw);
    height: auto;
    min-height: 280px;
    margin: 0 auto;
}

.lp-reasons__label-arc {
    display: block;
    width: min(230px, 70%);
    height: auto;
    margin: 0 auto;
}

.lp-reasons__speech-icon {
    display: block;
    width: 52px;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-reasons__body {
    padding: 60px 12px 30px;
    background-color: #f8f8e0;
    margin-top: -190px;
}

.lp-reasons__heading {
    text-align: center;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-bottom: 45px;
}

.lp-reasons__heading em {
    font-style: normal;
    color: #f2a408;
}

.lp-reasons__inner {
    display: grid;
    justify-content: center;
    margin: 0 auto;
    padding: 0 35px;
}

.lp-reasons__row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.lp-reasons__row--3 {
    grid-template-columns: repeat(3, 1fr);
}

.lp-reasons__row--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc((1000px - 48px) * 2 / 3 + 24px);
    margin-left: auto;
    margin-right: auto;
}

.lp-reasons__card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* ★ 固定幅 330px・固定高さ 475px を削除 */
    height: 475px;
}

.lp-reasons__badge {
    position: absolute;
    top: 0;
    left: 12px;
    width: 40px;
    height: auto;
    display: block;
}

.lp-reasons__icon {
    width: auto;
    height: 76px;
    display: block;
    margin: 16px auto 25px;
}

.lp-reasons__card-title {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.lp-reasons__card-text {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ================================================
   料金セクション
================================================ */
.lp-pay__hero {
    width: 100%;
    line-height: 0;
}

.lp-pay__hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.lp-pay__heading-area {
    background-color: #f7f8f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 0 0 / 80px 80px 0 0;
    margin-top: -80px;
    padding: 100px 20px 40px;
    position: relative;
    z-index: 10;
}

.lp-pay__heading-img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin: 0 auto;
}

.lp-price__area {
    background-color: #f7f8f2;
    padding: 50px 0 100px;
}

.lp-price__inner {
    max-width: 965px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-price__card {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.lp-price__card-left {
    background-color: #1b3156;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px 20px 24px;
    flex: 0 0 54.25%;
}

.lp-price__badge {
    flex-shrink: 0;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: #e8940a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.lp-price__plan-name {
    font-size: clamp(15px, 1.8vw, 22px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
}

.lp-price__card-right {
    background-color: #fff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 32px 25px 24px;
}

/* 金額（CTA・料金・消費税で共通構造） */
.lp-price__amount,
.lp-tax__amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    white-space: nowrap;
    margin: 0;
}

.lp-price__prefix,
.lp-tax__prefix {
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lp-price__number,
.lp-tax__number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1;
    margin: 0 2px;
    background: linear-gradient(356deg, #f0b535, #f48912);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.lp-price__suffix,
.lp-tax__suffix {
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ================================================
   消費税判定セクション
================================================ */
.lp-tax {
    background-color: #f7f8f2;
    padding: 0 0 80px;
}

.lp-tax__label-wrap {
    align-items: center;
    background-color: #f7e3b9;
    border-radius: 50%;
    padding: 30px 76px 40px;
    /* ★ 固定幅・固定高さ → レスポンシブに */
    width: min(455px, 75vw);
    height: auto;
    min-height: 280px;
    margin: 0 auto;
}

.lp-tax__label-arc {
    display: block;
    width: min(230px, 70%);
    height: auto;
    margin: 5px auto;
}

.lp-tax__speech-icon {
    display: block;
    width: 52px;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-tax__body {
    background-color: #f7e3b9;
    padding: 65px 50px 50px;
    margin: -190px auto 0;
    max-width: 1100px;
}

.lp-tax__heading {
    text-align: center;
    font-size: clamp(18px, 2.6vw, 30px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-bottom: 60px;
}

.lp-tax__heading em {
    font-style: normal;
    color: #f2a408;
}

.lp-tax__inner {
    margin: 0 auto;
}

.lp-tax__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 30px;
}

.lp-tax__card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-tax__card-balloon {
    position: relative;
    z-index: 2;
    width: 80%;
    margin-bottom: -30px;
}

.lp-tax__card-balloon__inner {
    border: 2px solid #20365a;
    border-radius: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    position: relative;
}

.lp-tax__card-balloon__inner::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border: solid transparent;
    border-width: 15px 13px 0;
    border-top-color: #20365a;
    z-index: 0;
}

.lp-tax__card-balloon__inner::before {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border: solid transparent;
    border-width: 12px 10px 0;
    border-top-color: #fff;
    z-index: 1;
}

/* A/B バッジ（消費税セクション） */
.lp-tax__badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e8940a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.lp-tax__card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lp-tax__card-subtitle-wrap {
    background-color: #20365a;
    padding: 30px 16px 12px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-tax__card-subtitle {
    color: #fff;
    text-align: center;
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin: 0;
}

.lp-tax__card-subtitle em {
    font-style: normal;
    color: #f2a408;
}

.lp-tax__card-body {
    padding: 24px 24px 28px;
    flex: 1;
}

.lp-tax__card-lead {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 900;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lp-tax__card-lead em {
    font-style: normal;
    color: #f2a408;
}

.lp-tax__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-tax__list li {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 600;
    line-height: 1.6;
    padding-left: 1.2em;
    position: relative;
}

.lp-tax__list li::before {
    content: '●';
    position: absolute;
    left: 0;
    font-size: 1em;
}

.lp-tax__list-note {
    font-size: clamp(14px, 1.1vw, 15px) !important;
    font-weight: 400 !important;
    padding-left: 1.6em !important;
}

.lp-tax__list-note::before {
    content: '' !important;
}

.lp-tax__card-note {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.8;
    margin-top: 16px;
}

/* ================================================
   キャンペーンセクション（乗り換え）
================================================ */
.lp-campaign-sec {
    overflow: visible !important;
    background-color: #f7f8f2;
    position: relative;
}

.lp-campaign-sec__pill-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 32px 20px 0;
}

.lp-campaign-sec__pill {
    display: inline-block;
    background-color: #20365a;
    color: #fff;
    font-size: clamp(17px, 1.5vw, 22px);
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 10px 28px;
    border-radius: 50px;
    position: relative;
    line-height: 1.4;
}

.lp-campaign-sec__pill::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border: solid transparent;
    border-width: 13px 9px 0;
    border-top-color: #20365a;
}

.lp-campaign-sec__main {
    background-color: #f8f8e0;
    border-radius: 50% 50% 0 0 / 80px 80px 0 0;
    padding: 50px 20px 40px;
    position: relative;
    z-index: 2;
}

.lp-campaign-sec__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lp-campaign-sec__img-wrap {
    margin-bottom: 32px;
}

.lp-campaign-sec__img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.lp-campaign-sec__photos {
    width: 100%;
    height: 250px;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.lp-campaign-sec__photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.lp-campaign-sec__photos-item {
    overflow: hidden;
}

.lp-campaign-sec__photos-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* ================================================
   切り替え訴求・代表メッセージセクション
================================================ */
.lp-switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f8e0;
    padding: 64px 0 80px;
}

.lp-switch__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.lp-switch__heading-wrap {
    position: relative;
    margin-bottom: 48px;
}

.lp-switch__row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 56px;
}

.lp-switch__photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.lp-switch__text {
    padding-top: 8px;
}

.lp-switch__text-heading {
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.lp-switch__text-body {
    font-size: clamp(15px, 1.4vw, 20px);
    line-height: 1.9;
    margin-bottom: 10px !important;
    font-weight: 700;
}

.lp-switch__text-body em {
    font-style: normal;
    color: #f2a408;
    font-weight: 700;
}

.lp-switch__text-note {
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.7;
    font-weight: 700;
}

.lp-switch__msg-label {
    display: inline-block;
    background-color: #20365a;
    color: #fff;
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 700;
    padding: 10px 35px 10px 20px;
    letter-spacing: 0.06em;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
    width: 260px;
    text-align: center;
}

.lp-switch__msg-card {
    background: #fff;
    padding: 45px;
    display: grid;
    /* ★ 固定幅 400px → レスポンシブに */
    grid-template-columns: 1fr minmax(200px, 400px);
    gap: 30px;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.lp-switch__msg-heading {
    font-size: clamp(17px, 2.2vw, 26px);
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.lp-switch__msg-heading em {
    font-style: normal;
    color: #f2a408;
}

.lp-switch__msg-body {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.9;
    margin-bottom: 0;
    font-weight: 600;
}

.lp-switch__msg-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.lp-switch__msg-photo {
    /* ★ 固定幅 330px → max-width に変更 */
    width: 100%;
    max-width: 330px;
    height: auto;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.lp-switch__msg-name-wrap {
    position: absolute;
    bottom: -20px;
    left: 25px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    width: 225px;
    height: 60px;
}

.lp-switch__msg-name-label {
    font-size: 16px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-weight: 700;
}

.lp-switch__msg-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* ================================================
   FAQセクション
================================================ */
.lp-faq {
    padding: 72px 0 80px;
}

.lp-faq__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0 48px;
}

.lp-faq__heading {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.5;
    padding-top: 4px;
    position: sticky;
    top: 40px;
}

.lp-faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq__item {
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.10);
}

.lp-faq__q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.lp-faq__q::-webkit-details-marker,
.lp-faq__q::marker {
    display: none;
}

.lp-faq__q-badge {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eff1eb;
    color: #e8940a;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-faq__q-text {
    flex: 1;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.5;
}

.lp-faq__q-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    margin-left: 8px;
}

.lp-faq__q-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1b3156;
    transform: translateY(-50%);
    transition: opacity 0.2s;
}

.lp-faq__q-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #1b3156;
    transform: translateX(-50%);
    transition: opacity 0.2s, transform 0.3s;
}

details[open] .lp-faq__q-icon::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

.lp-faq__a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 24px;
    background: #f0f1ec;
    animation: faq-open 0.25s ease;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-faq__a-badge {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e8940a;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lp-faq__a-text {
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 700;
    line-height: 1.85;
    flex: 1;
}

/* ================================================
   レスポンシブ まとめ
================================================ */
@media (max-width: 900px) {
    .lp-reasons__row--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-reasons__row--2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    span.text-l {
        margin-left: -7px;
    }

    span.text-r {
        margin-right: -7px;
    }

    /* メッセージセクション：スマホでもPC同様の横並び */
    .lp-message__inner {
        padding: 0 10px 0 85px;
    }

    .lp-message__img img {
        width: 96px;
        left: -32px;
        position: relative;
    }

    .lp-message__text {
        padding: 20px 0;
    }

    .lp-message__text h2 {
        letter-spacing: -0.09rem;
    }

    .lp-message__text p {
        font-size: 13px;
        letter-spacing: 0.03rem;
        margin-bottom: 0;
    }

    .lp-switch__msg-name-wrap {
        left: 0;
        width: 165px;
    }

    .lp-switch__msg-name-label {
        font-size: 12px;
    }

    .lp-switch__msg-name {
        font-size: 16px;
    }


    /* キャンペーン */
    .lp-campaign-sec__pill-wrap {
        padding: 15px 10px 0;
    }

    .lp-campaign-sec__pill {
        padding: 10px;
        margin-bottom: 15px;
    }

    .lp-campaign {
        padding: 32px 0;
        border-radius: 50% 50% 0 0 / 30px 30px 0 0;
    }

    .lp-campaign__inner {
        padding: 0 20px;
    }

    .lp-photos__grid {
        height: 64px;
    }

    .lp-photos__item img {
        height: auto;
    }

    /* お悩みセクション */
    .lp-worries__heading-wrap {
        padding-bottom: calc(530 / 1448 * 100%);

    }

    /* 料金 */
    .lp-pay__hero img {
        height: 175px;
    }

    .lp-pay__heading-area {
        border-radius: 30% 30% 0 0 / 30px 30px 0 0;
        margin-top: -40px;
        padding: 30px 20px;
    }

    .lp-price__area {
        padding: 25px 0 50px;
    }

    .lp-price__card-left {
        flex: 0 0 52%;
        padding: 18px 20px;
        justify-content: center;
        gap: 9px;
    }

    .lp-price__badge {
        flex-shrink: 0;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .lp-price__card-right {
        padding: 10px 15px;
        justify-content: center;
    }

    .lp-price__plan-name {
        white-space: normal;
    }

    /* 切り替えのタイミング */
    .lp-switch__row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lp-switch__text-heading {
        text-align: center;
    }

    .lp-switch__msg-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .lp-switch__msg-photo-wrap {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .lp-switch__msg-photo {
        max-width: 280px;
    }

    /* お悩み */
    .lp-worries__title {
        margin-top: 40px;
        margin-bottom: 5px;
    }

    .lp-worries__body {
        padding: 80px 16px 75px;
        margin-top: -50px;
    }

    .lp-worries__item {
        border-radius: 50px;
        padding: 10px 15px;
        gap: 7px;
    }

    .lp-worries__check-icon {
        width: 26px;
        height: 26px;
    }


    /* FAQ */
    .lp-faq {
        padding: 50px 0;
    }

    .lp-faq__inner {
        grid-template-columns: 1fr;
        gap: 24px 0;
    }

    .lp-faq__q {
        gap: 10px;
        padding: 15px 10px;
    }

    .lp-faq__q {
        gap: 10px;
        padding: 20px 10px 24px;
    }

    .lp-faq__a {
        padding: 20px 10px 24px;
    }

    .lp-faq__q-badge {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lp-faq__a-badge {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lp-faq__heading {
        position: static;
        font-size: 22px;
        text-align: center;
    }

    /* ヘッダー */
    .lp-header__inner {
        padding: 12px 10px;
        gap: 10px;
    }

    .lp-header__tel-link {
        gap: 7px;
    }

    .lp-header__tel-number {
        font-size: 20px;
    }

    .lp-header__tel-icon {
        width: 15px;
    }
}

@media (max-width: 640px) {

    /* CTA */
    .lp-cta {
        padding: 36px 15px 48px;
    }

    .lp-cta__badge img {
        width: 109px;
    }

    .deco--tl-1 {
        top: 120px;
        left: -11px;
        width: 81px;
    }

    .deco--tl-2 {
        top: 58px;
        left: 25px;
        width: 47px;
    }

    .deco--tr-1 {
        top: 40px;
        right: 40px;
        width: 53px;
    }

    .deco--tr-2 {
        top: 110px;
        right: -12px;
        width: 90px;
    }

    .lp-cta__buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .lp-cta__badge {
        width: 90px;
        margin-top: 0;
    }

    .lp-cta__btn-img {
        height: auto;
        width: 301px;
        margin: 0 auto;
    }

    .lp-cta__heading {
        font-size: 17px;
        padding: 15px;
    }

    .lp-cta__heading::after {
        bottom: -10px;
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
    }

    .lp-cta__notes-body {
        padding: 20px 15px;
    }

    .lp-photos__item {
        aspect-ratio: 1 / 1;
    }

    /* あなたはどっち */
    .lp-tax {
        padding: 0 15px 50px;
    }

    .lp-tax__grid {
        grid-template-columns: 1fr;
        padding-top: 24px;
    }

    .lp-tax__label-wrap {
        padding: 20px 40px 30px;
    }

    .lp-tax__speech-icon {
        width: 40px;
        margin-top: -5px;
    }

    .lp-tax__body {
        margin-top: -180px;
        padding: 20px 20px 30px;
    }

    .lp-tax__heading {
        margin-bottom: 20px;
    }

    .lp-tax__card-balloon__inner {
        padding: 7px 10px;
    }

    .lp-tax__card-balloon {
        width: auto;
    }

    /* 安心 */
    .lp-reasons {
        padding: 0 0 45px;
    }

    .lp-reasons__label-wrap {
        padding: 14px 32px 8px;
    }

    .lp-reasons__speech-icon {
        width: 40px;
        margin-top: -5px;
    }

    .lp-reasons__body {
        padding: 40px 12px 30px;
        margin-top: -220px;
    }

    .lp-reasons__inner {
        padding: 10px;
    }

    .lp-reasons__row--3,
    .lp-reasons__row--2 {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-reasons__icon {
        width: 56px;
        height: auto;
    }

    .lp-reasons__icon2 {
        width: 51px;
    }

    .lp-reasons__icon3 {
        width: 79px;
    }

    .lp-reasons__icon4 {
        width: 107px;
    }

    .lp-reasons__icon5 {
        width: 97px;
    }

    .lp-reasons__card {
        height: auto;
    }


    /* キャンペーン */
    .lp-campaign-sec__main {
        border-radius: 40% 40% 0 0 / 40px 40px 0 0;
        padding: 48px 16px;
    }

    .lp-campaign-sec__photos {
        height: auto;
    }

    .lp-campaign__img-wrap img {
        margin-bottom: 20px;
    }

    /* 切り替え */
    .lp-switch {
        padding: 48px 0 60px;
    }

    .lp-switch__inner {
        padding: 0 15px;

    }

    .lp-switch__msg-card {
        padding: 24px 18px;
    }

    .lp-switch__msg-label {
        padding: 8px 35px 8px 20px;
        width: 175px;
    }

    .lp-switch__msg-heading {
        text-align: center;
    }

}

@media (max-width: 500px) {
    .lp-price__card {
        flex-direction: column;
        border-radius: 16px;
    }

    .lp-price__card-left {
        flex: none;
        padding: 16px 8px;
        justify-content: center;
        gap: 9px;
    }

    .lp-price__card-right {
        padding: 16px 20px;
        justify-content: center;
    }
}

/* ================================================
   フッター
================================================ */
.lp-footer {
    padding: 0;
    background: #234072;
}

.lp-footer.fullwide {
    overflow: hidden !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: 100vw;
}

.lp-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    /* 左：ロゴ＋住所 / 右：リンク */
    align-items: end;
    /* 右リンクを下端に揃える */
    gap: 0 40px;
}

/* ================================================
   左：ロゴ＋住所エリア
================================================ */
.lp-footer__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ロゴ・事務所名 */
.footer-logo {
    display: inline-grid;
    grid-template-columns: 1fr;
    width: fit-content;
}

.footer-logo-sub {
    font-size: clamp(12px, 1.3vw, 16px);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.06em;
    margin: 0;
    padding-left: 3px;
}

.footer-logo-main {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0;
}

/* 住所・連絡先 */
.lp-footer__address {
    color: #fff;
    font-size: clamp(13px, 1.3vw, 16px);
    font-style: normal;
    display: flex;
    flex-direction: column;
}

.lp-footer__address p {
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin: 0;
    color: #fff;
}

.lp-footer__tel a {
    color: #fff;
    text-decoration: none;
}

.lp-footer__tel a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ================================================
   右：プライバシーリンクエリア
================================================ */
.lp-footer__links {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    padding-bottom: 4px;
}

.lp-footer__links a {
    color: #fff;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.lp-footer__links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* | セパレーター */
.lp-footer__links-sep {
    color: #fff;
    margin: 0 12px;
    font-size: 13px;
}

/* ================================================
   コピーライト
================================================ */
.lp-footer__copy {
    grid-column: 1 / -1;
    /* 2列にまたがる */
    text-align: center;
    font-size: 12px;
    color: #7a9abf;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.04em;
}

/* ================================================
   レスポンシブ（スマホ）
================================================ */
@media (max-width: 768px) {
    .lp-footer__inner {
        grid-template-columns: 1fr;
        /* 1列に */
        padding: 40px 24px 28px;
        gap: 32px 0;
        align-items: start;
    }

    .footer-logo-sub {
        padding-left: 10px;
    }

    .lp-footer__links {
        flex-direction: column;
        /* 縦並び */
        align-items: center;
        gap: 12px;
    }

    .lp-footer__links-sep {
        display: none;
        /* | を非表示 */
    }

    .lp-footer__links a {
        font-size: 13px;
    }

    .lp-footer__left {
        align-items: center;
        /* 中央揃え */
        text-align: center;
    }

    .lp-footer__copy {
        margin-top: 0;
    }
}

/* ================================================
   追尾ボタン（スマホのみ表示）
================================================ */
.lp-sticky-btn {
    display: none;
    /* PCでは非表示 */
}

@media (max-width: 768px) {

    .lp-sticky-btn {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        width: 100%;
    }

    .lp-sticky-btn__item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 10px;
        font-size: clamp(14px, 4vw, 17px);
        font-weight: 900;
        text-decoration: none;
        letter-spacing: 0.04em;
        color: #fff;
        transition: opacity 0.2s;
    }

    .lp-sticky-btn__item:hover,
    .lp-sticky-btn__item:active {
        transform: scale(1.03);
        color: #fff !important;
    }

    /* LINE（緑） */
    .lp-sticky-btn__item--line {
        background-color: #6da21a;
        border-radius: 20px 0 0;
    }

    /* フォーム（オレンジ） */
    .lp-sticky-btn__item--form {
        background-color: #ec6e5a;
        border-radius: 0 20px 0 0;
    }

    /* アイコン */
    .lp-sticky-btn__icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        display: block;
    }

    /* 追尾ボタン分の余白をページ下部に確保 */
    body {
        padding-bottom: 60px;
    }
}

/* ================================================
   表示・非表示ユーティリティ
================================================ */

/* --- ① PC用の設定 --- */
/* 基本はスマホ版を表示させない */
.sp-only {
    display: none;
}

/* --- ② スマホ用の設定（画面幅が767px以下のとき） --- */
@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
        /* PC版を隠す */
    }

    .sp-only {
        display: block;
        /* スマホ版を表示する */
    }
}