@charset "UTF-8";
/* =====================================================================
   パナソニック ホームズ 来場予約LP
   - PC コンテンツ幅: 1000px / SP: 767px以下 可変
   ===================================================================== */

/* ---------- variables ---------- */
:root {
    --navy: #3d4866;
    --navy-dark: #353f5a;
    --gold: #b59a6b;
    --gold-text: #b2935c;
    --cream: #FAF8F5;
    --gray-bg: #f0efed;
    --tag-bg: #eae3d5;
    --text: #333333;
    --text-light: #6b6b6b;
    --heading: #2c3242;
    --inner: 1000px;
}

/* ---------- reset / base ---------- */
.lp *,
.lp *::before,
.lp *::after {
    box-sizing: border-box;
}

.lp {
    margin: 0;
    font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    overflow-x: hidden;
}

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

.lp a {
    color: inherit;
    text-decoration: none;
}

.lp h1,
.lp h2,
.lp h3,
.lp p {
    margin: 0;
}

/* ---------- layout ---------- */
.lp-container {
    width: 90%;
    max-width: var(--inner);
    margin-inline: auto;
}

/* .lp-container--narrow { max-width: 840px; } */

/* ---------- utilities ---------- */
.u-pc {
    display: block;
}

.u-sp {
    display: none;
}

/* ---------- スクロールでフワッと表示 ---------- */
.js-fadeup {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s ease, transform .9s ease;
    will-change: opacity, transform;
}

.js-fadeup.is-inview {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-fadeup {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- section heading ---------- */
.lp-sec-head {
    text-align: center;
    margin-bottom: 70px;
}

.lp-sec-head__title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .08em;
    color: var(--heading);
}

.lp-sec-head__sub {
    margin-top: 24px !important;
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: .04em;
}

/* ---------- 共通 tag ---------- */
.lp-tag {
    display: inline-block;
    background: #EFEFEF;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 6px 16px;
    border-radius: 4px;
}

/* ---------- 共通 CTA（画像ボタン） ---------- */
.lp-cta {
    display: inline-block;
    transition: opacity .25s;
}

.lp-cta:hover {
    opacity: .82;
}

.lp-cta img {
    width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .15));
}

.lp-cta:hover img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0));
}

.lp-cta--center {
    display: block;
    max-width: 800px;
    margin-inline: auto;
}

/* =====================================================================
   MV
   ===================================================================== */
.lp-mv {
    background-image: url(../img/mv_pc.webp);
    background-size: cover;
    background-position: center;
    aspect-ratio: 571/190;
    padding: 5vw;
}

.lp-mv__inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lp-mv__body {
    flex: 1 1 44%;
}

.lp-mv__title {
    font-size: 3.9vw;
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1.4;
    color: var(--navy);
}

.lp-mv__title-sub {
    display: block;
    font-size: 1.8vw;
    margin-top: 1vw;
    letter-spacing: .1em;
}

.lp-mv__lead {
    margin-top: 28px;
    font-size: 1vw;
    line-height: 2;
    letter-spacing: .04em;
    color: #4a4f5c;
    margin-top: 2vw !important;
}

.lp-cta--mv {
    margin-top: 2vw;
    max-width: 30vw;
    width: 100%;
    transform: translateX(-1vw);
}

.lp-mv__img {
    flex: 1 1 56%;
}

.lp-mv__img img {
    width: 100%;
    border-radius: 4px;
}

.lp-mv__btn-sp {
    margin-top: 28px;
}

/* =====================================================================
   イントロ
   ===================================================================== */
.lp-intro {
    padding: 100px 0 30px;
}

.lp-intro__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.lp-intro__icons {
    flex: 1 1 55%;
}

.lp-intro__text {
    flex: 1 1 42%;
    font-size: 17px;
    line-height: 2;
    letter-spacing: .04em;
    color: #4a4f5c;
}

/* =====================================================================
   WEB予約特典
   ===================================================================== */
.lp-present {
    padding-bottom: 72px;
}

.lp-present__inner {
    max-width: 1050px;
    width: 90%;
    margin-inline: auto;
}

.lp-present img {
    width: 100%;
}

/* =====================================================================
   展示場で確かめたい4つのこと
   ===================================================================== */
.lp-points {
    padding: 80px 0;
}

.lp-points__list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.lp-point {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* 奇数：テキスト左／画像右、偶数：画像左／テキスト右 */
.lp-point:nth-child(odd) {
    flex-direction: row-reverse;
}

.lp-point__img {
    flex: 1 1 50%;
}

.lp-point__img img {
    width: 100%;
}

.lp-point__body {
    flex: 1 1 50%;
}

.lp-point__num {
    /* font-family: "Montserrat", sans-serif; */
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .14em;
    color: var(--gold-text);
}

.lp-point__num span {
    font-size: 28px;
    font-weight: 600;
}

.lp-point__title {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: .04em;
    color: var(--heading);
}

.lp-point__text {
    margin-top: 8px !important;
    font-size: 16px;
    letter-spacing: .09em;
    line-height: 1.9;
    color: var(--text-light);
}

.lp-point__body .lp-tag {
    margin-top: 22px;
}

/* =====================================================================
   ネイビーCTAバンド
   ===================================================================== */
.lp-cta-band {
    background: var(--navy);
    padding: 40px 0;
}

/* =====================================================================
   毎日の暮らしを、展示場で想像してみよう
   ===================================================================== */
.lp-rooms {
    background: var(--cream);
    padding: 100px 0;
}

.lp-rooms__list {
    display: flex;
    gap: 32px;
}

.lp-room {
    flex: 1 1 0;
    min-width: 0;
}

.lp-room__img {
    margin-bottom: 22px;
}

.lp-room__img img {
    width: 100%;
}

.lp-room__title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--heading);
}

.lp-room__text {
    margin-top: 8px !important;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}

.lp-room__pt {
    margin-top: 16px !important;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-left: 22px;
}

.lp-room__pt::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    width: 11px;
    height: 6px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: translateY(-70%) rotate(-45deg);
}

.lp-room__tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* =====================================================================
   展示場で分かること
   ===================================================================== */
.lp-understand {
    padding: 100px 0;
}

.lp-understand__list {
    display: flex;
}

.lp-understand__item {
    flex: 1 1 0;
    text-align: center;
    padding: 0 16px;
}

.lp-understand__item+.lp-understand__item {
    border-left: 1px solid #e3e1dd;
}

.lp-understand__icon {
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-understand__icon img {
    width: auto;
    max-height: 77px;
}

.lp-understand__label {
    margin-top: 10px !important;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .04em;
}

/* =====================================================================
   エリア検索（共通ウィジェット）
   ===================================================================== */
.lp-area {
    background: var(--gray-bg);
    padding: 0 0 72px;
}

.lp-area #gpsMapJS {
    max-width: var(--inner);
    margin-inline: auto;
    padding-inline: 24px;
}

.area-model{
    margin-top: -100px;
    max-width: var(--inner);
    margin-inline: auto;
    padding-inline: 24px;
}

.area-model #area-selector-heading{
    word-break: break-word!important;
}

/* =====================================================================
   展示場見学はWEB予約から（フロー）
   ===================================================================== */
.lp-flow {
    background: #fff;
    padding: 80px 0 88px;
    border-radius: 48px 48px 0 0;
    margin-top: -48px;
    position: relative;
    z-index: 2;
}

.lp-flow__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
}

.lp-flow__card {
    flex: 1 1 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    padding: 45px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column-reverse;
}

.lp-flow__main {
    flex: 1 1 auto;
    min-width: 0;
}

.lp-flow__badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 0px 8px 2px;
    border-radius: 7px;
    margin-bottom: 7px;
}

.lp-flow__title {
    font-size: 20px;
    font-weight: 600;
}

.lp-flow__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8;
}

.lp-flow__icon {
    flex: 0 0 auto;
    width: auto;
    height: 95px;
    margin-bottom: 20px;
}

.lp-flow__icon img {
    width: auto;
    height: 100%;
    max-height: 95px;
}

.lp-flow__arrow {
    align-self: center;
    color: #9aa0ad;
    font-size: 22px;
    flex: 0 0 auto;
    padding: 0 4px;
}

.lp-flow__note {
    margin-top: 48px !important;
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
}

/* =====================================================================
   よくある質問
   ===================================================================== */
.lp-faq {
    background: var(--gray-bg);
    padding: 100px 0;
}

.lp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-faq__item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
    overflow: hidden;
}

.lp-faq__q {
    position: relative;
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 23px;
    padding: 24px 28px;
    font: inherit;
    text-align: left;
}

/* 区切り線（疑似要素）。質問テキストの左端〜右パディングに合わせてインセット。
   left = パディング28 + Qマーク幅 + gap23。インセット量は left/right の値で調整可能 */
.lp-faq__q::after {
    content: "";
    position: absolute;
    left: 72px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: #eee;
    opacity: 0;
    transition: opacity .3s;
}

.lp-faq__item.is-open .lp-faq__q::after {
    opacity: 1;
}

.lp-faq__mark {
    font-size: 30px;
    line-height: 1;
    flex: 0 0 auto;
}

.lp-faq__mark--a {
    color: var(--gold-text);
}

.lp-faq__qtext {
    flex: 1 1 auto;
    font-size: 20px;
    font-weight: 500;
    color: var(--heading);
    letter-spacing: .02em;
}

.lp-faq__icon {
    flex: 0 0 auto;
    position: relative;
    width: 18px;
    height: 18px;
}

.lp-faq__icon::before,
.lp-faq__icon::after {
    content: "";
    position: absolute;
    background: #8a8a8a;
    transition: transform .3s, opacity .3s;
}

.lp-faq__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.lp-faq__icon::after {
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    transform: translateX(-50%);
}

.lp-faq__item.is-open .lp-faq__icon::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

.lp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.lp-faq__a-inner {
    display: flex;
    gap: 23px;
    padding: 22px 28px 26px;
}

.lp-faq__a-inner p {
    font-size: 16px;
    line-height: 1.9;
    padding-top: 2px;
}

/* =====================================================================
   フッターCTA
   ===================================================================== */
.lp-fcta {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: 80px 0 88px;
}

.lp-fcta__head.lp-container {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 56px;
    max-width: 1170px;
}

.lp-fcta__head-text {
    width: 610px;
    position: relative;
    z-index: 2;
}

.lp-fcta__title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .06em;
}

.lp-fcta__lead {
    margin-top: 22px !important;
    font-size: 16px;
    line-height: 1.95;
    color: rgba(255, 255, 255, .82);
}

.lp-fcta__head-img {
    position: absolute;
    z-index: 0;
    width: 65%;
    right: 0;
}

.lp-fcta__head-img img {
    width: 100%;
}

.lp-fcta__actions.lp-container {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1200px;
}

.lp-fcta__col {
    flex: 1 1 50%;
    position: relative;
}

.lp-fcta__col--visit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-fcta__col--visit .lp-cta {
    width: 100%;
    max-width: 580px;
}

.lp-fcta__note {
    margin-top: 18px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .85);
    text-align: center;
    margin-top: -15px !important;
}

.lp-fcta__catalog-lead {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
    position: relative;
}

.lp-fcta__catalog-img {
    width: 160px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-5%);
    display: block;
    z-index: 3;
}

.lp-fcta__catalog-text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .03em;
    position: absolute;
    text-align: right;
    right: 0;
}

.lp-catalog-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 17px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    transition: opacity .25s, transform .25s;
}

.lp-catalog-btn:hover {
    opacity: .9;
}

.lp-catalog-btn__icon {
    flex: 0 0 auto;
    display: flex;
    color: var(--navy);
}

.lp-catalog-btn__text {
    flex: 1 1 auto;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #3D4866;
    padding-left: 22%;
}

.lp-catalog-btn__arrow {
    flex: 0 0 auto;
    font-size: 16px;
    color: var(--navy);
}

.lp-room__note {
    text-align: right;
    font-size: 13px;
    margin-top: 16px !important;
}

@media screen and (max-width: 1200px) {
    .lp-fcta__catalog-img {
        width: 14vw;
        transform: translateY(-2%);
    }

    .lp-fcta__catalog-text {
        font-size: 1.2vw;
    }

    .lp-catalog-btn {
        padding: 1.5vw 2.7vw;
    }

    .lp-catalog-btn__text {
        font-size: 2vw;
        padding-left: 24%;
    }

    .lp-catalog-btn__arrow {
        font-size: 1.6vw;
    }

    .lp-fcta__note {
        font-size: 1.5vw;
        margin-top: -1vw !important;
    }

    .lp-fcta__actions.lp-container {
        gap: 2vw;
    }
}

@media screen and (min-width: 768px) {
    .lp-catalog-btn__icon svg {
        display: none;
    }
}

/* =====================================================================
   SP（767px以下）
   ===================================================================== */
@media screen and (max-width: 767px) {
    .lp-mv {
        background-image: url(../img/mv_sp.webp);
        aspect-ratio: 375/460;
        margin-bottom: 100px;
        position: relative;
    }

    .lp {
        font-size: 15px;
    }

    .u-pc {
        display: none;
    }

    .u-sp {
        display: block;
    }

    .lp-container {
        padding-inline: 20px;
    }

    /* section heading */
    .lp-sec-head {
        margin-bottom: 36px;
    }

    .lp-sec-head__title {
        font-size: 25px;
        line-height: 1.5;
    }

    .lp-sec-head__sub {
        font-size: 13.5px;
        margin-top: 14px;
    }

    /* MV */
    .lp-mv {
        padding-top: 12vw;
        padding-bottom: 0;
        margin-bottom: 32vw;
    }

    .lp-mv__inner {
        flex-direction: column;
        gap: 28px;
        align-items: stretch;
    }

    .lp-mv__title {
        font-size: 9.2vw;
        letter-spacing: .04em;
    }

    .lp-mv__title-sub {
        font-size: 5.7vw;
        margin-top: 1vw;
    }

    .lp-mv__lead {
        margin-top: 3vw !important;
        font-size: 3vw;
        line-height: 1.9;
    }

    .lp-mv__img {
        margin: 0 -20px;
    }

    .lp-mv__img img {
        border-radius: 0;
    }

    /* イントロ */
    .lp-intro {
        padding: 30px 0;
    }

    .lp-intro__inner {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .lp-intro__text {
        text-align: center;
        font-size: 14px;
        letter-spacing: 0;
    }

    /* present */
    .lp-present {
        padding-bottom: 16px;
    }

    .lp-present__inner {
        width: 100%;
    }

    /* points */
    .lp-points {
        padding: 56px 0;
    }

    .lp-points .lp-container {
        padding-inline: 0;
        width: 100%;
    }

    .lp-points__list {
        gap: 44px;
    }

    .lp-point,
    .lp-point:nth-child(odd) {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
    }

    .lp-point__img {
        flex: 0 0 40%;
    }

    .lp-point__body {
        flex: 1 1 auto;
        padding-right: 20px;
    }

    .lp-point__num {
        font-size: 12px;
    }

    .lp-point__num span {
        font-size: 20px;
    }

    .lp-point__title {
        margin-top: 6px;
        font-size: 15px;
        line-height: 1.5;
    }

    .lp-point__text {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .lp-point__body .lp-tag {
        margin-top: 16px;
        background: #EFEFEF;
        color: #333333;
        font-size: 12px;
        padding: 5px 12px;
    }

    /* CTAバンド */
    .lp-cta-band {
        padding: 28px 0 16px;
    }

    .lp-cta-band .lp-container {
        padding-inline: 0;
    }

    /* rooms */
    .lp-rooms {
        padding: 56px 0;
    }

    .lp-rooms .lp-container {
        padding-inline: 12px;
    }

    .lp-rooms__list {
        flex-direction: column;
        gap: 44px;
    }

    .lp-room__title {
        font-size: 16px;
        font-weight: 500;
    }

    .lp-room__text {
        font-size: 14px;
    }

    .lp-room__pt {
        font-size: 14px;
        font-weight: 500;
    }

    .lp-room__tags .lp-tag {
        background: #E5DACA;
        font-size: 12px;
        padding: 4px 12px;
    }

    /* understand */
    .lp-understand {
        padding: 56px 0;
    }

    .lp-understand .lp-container {
        padding-inline: 12px;
    }

    .lp-understand__list {
        flex-direction: column;
    }

    .lp-understand__item {
        display: flex;
        align-items: center;
        gap: 24px;
        text-align: left;
        padding: 22px 4px;
        border-bottom: 1px solid #EFEFEF;
    }

    .lp-understand__item+.lp-understand__item {
        border-left: none;
    }

    .lp-understand__icon {
        height: auto;
        flex: 0 0 64px;
    }

    .lp-understand__icon img {
        max-height: 52px;
    }

    .lp-understand__label {
        margin-top: 0;
        font-size: 20px;
        font-weight: 400;
        margin-top: 0 !important;
    }

    /* area */
    .lp-area {
        padding: 0;
    }

    .lp-area #gpsMapJS {
        padding-inline: 20px;
    }

    /* flow */
    .lp-flow {
        padding: 56px 0 64px;
        border-radius: 32px;
        margin-top: -32px;
        position: relative;
        z-index: 2;
    }

    .lp-flow .lp-container {
        padding-inline: 0;
    }

    .lp-flow__list {
        flex-direction: column;
        gap: 0;
    }

    .lp-flow__card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 22px 20px;
        gap: 14px;
    }

    .lp-flow__icon {
        width: 20%;
        height: auto;
        margin-bottom: 0;
    }

    .lp-flow__icon img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .lp-flow__arrow {
        transform: rotate(90deg);
        padding: 14px 0;
    }

    .lp-flow__note {
        margin-top: 36px;
        font-size: 14px;
        text-align: left;
        padding-inline: 20px;
    }

    .lp-flow__badge {
        display: inline-block;
        font-size: 14px;
        padding: 2px 12px 2px;
        border-radius: 0;
    }

    .lp-flow__title {
        font-size: 16px;
        font-weight: 500;
    }

    .lp-flow__text {
        font-size: 14px;
    }

    /* faq */
    .lp-faq {
        padding: 100px 0 56px;
        position: relative;
        margin-top: -32px;
    }

    .lp-faq .lp-container {
        padding-inline: 0;
    }

    .lp-faq__list {
        gap: 16px;
    }

    .lp-faq__q {
        padding: 18px 20px;
        gap: 12px;
    }

    .lp-faq__q::after {
        left: 20px;
        right: 20px;
    }

    .lp-faq__mark {
        font-size: 19px;
    }

    .lp-faq__qtext {
        font-size: 15px;
    }

    .lp-faq__a-inner {
        padding: 18px 20px 22px;
        gap: 12px;
    }

    .lp-faq__a-inner p {
        font-size: 14px;
    }

    /* footer cta */
    .lp-fcta {
        padding: 64px 0 64px;
    }

    .lp-fcta .lp-container {
        padding-inline: 0;
        width: 100%;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 0;
    }

    .lp-fcta__head {
        flex-direction: column-reverse;
        gap: 28px;
        text-align: center;
        margin-bottom: 40px;
        padding-top: 56px;
    }

    .lp-fcta__head-text {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-fcta__head-img {
        margin: 0;
        width: 100%;
        position: relative;
    }

    .lp-fcta__title {
        font-size: 25px;
        line-height: 1.5;
        font-weight: 500;
    }

    .lp-fcta__lead {
        font-size: 14px;
        text-align: left;
        padding-inline: 20px;
    }

    .lp-fcta__actions {
        flex-direction: column;
        gap: 40px;
    }

    .lp-fcta__catalog-lead {
        flex-direction: row;
        justify-content: center;
        gap: 18px;
        margin-bottom: 22px;
    }

    .lp-fcta__catalog-img {
        flex: initial;
        width: 40%;
        transform: translateY(0);
        position: relative;
        top: 0;
    }

    .lp-fcta__catalog-text {
        font-size: 15.5px;
        width: 60%;
        position: relative;
        text-align: left;
    }

    .lp-catalog-btn {
        padding: 18px 22px;
    }

    .lp-catalog-btn__text {
        font-size: 17px;
        padding-left: 0;
    }

    .lp-catalog-btn__arrow {
        font-size: 14px;
    }

    .lp-mv__btn-sp {
        position: absolute;
        bottom: -31vw;
        width: 90%;
        padding: 0;
    }

    .lp-fcta__col.lp-fcta__col--catalog {
        width: 90%;
        margin-top: -30px;
        margin-inline: auto;
    }

    .lp-fcta__col.lp-fcta__col--visit {
        width: 96%;
        margin-inline: auto;
        transform: translateY(-47%);
    }

    .lp-fcta__note {
        font-size: 14px;
        margin-top: -10px !important;
    }
}