header:not(.webx-lp-header-logos),
footer:not(.webx-lp-footer),
#menu-box,
#sp-nav-wrap-fly {
    display: none !important;
}


/* 全体のラッパー（背景のグラデーション） */
.webx-lp-wrapper {
    /* background: radial-gradient(ellipse at 50% 50%, rgba(4, 16, 108, 0.95) 0%, rgba(6, 24, 159, 0.95) 19%, rgba(64, 16, 184, 0.95) 36%, rgba(124, 54, 220, 0.95) 50%, rgba(178, 129, 237, 0.95) 68%, rgba(239, 230, 247, 0.95) 86%); */
    background: radial-gradient(116.27% 50% at 50% 50%, rgba(4, 16, 108, 0.95) 0%, rgba(6, 24, 159, 0.95) 18.75%, rgba(64, 16, 184, 0.95) 36.06%, rgba(124, 54, 220, 0.95) 50.49%, rgba(178, 129, 237, 0.95) 68.28%, rgba(239, 230, 247, 0.95) 85.59%);
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    box-sizing: border-box;
}

/* メインコンテナ（白〜薄紫のグラデーション背景） */
.webx-lp-container {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #EFE8FA 100%);
    border-radius: 15px;
    padding: 30px 20px 40px;
    box-sizing: border-box;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* ヘッダーロゴ群 */
.webx-lp-header-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 30px;
    gap: 20px;
}

.webx-lp-logo-left img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
}

.webx-lp-logo-divider {
    width: 1px;
    height: 70px;
    background-color: #D1D1D1;
}

.webx-lp-logo-right {
    display: flex;
    flex-direction: column;
}

.webx-lp-logo-right img {
    width: auto;
    height: 50px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    max-inline-size: none;
}

/* 導入テキスト */
.webx-lp-intro-text {
    text-align: center;
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* フォームカード部分 */
.webx-lp-form-card {
    max-width: 700px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    padding: 40px 20px;
    margin-bottom: 50px;
}

.webx-lp-form-title {
    text-align: center;
    color: #04106C;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.webx-lp-input-group {
    margin-bottom: 25px;
}

.webx-lp-input-label {
    display: block;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.webx-lp-link {
    color: #3EAEFF;
    text-decoration: underline;
}

/* サービス紹介セクション共通 */
.webx-lp-service-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    max-width: 700px;
    align-items: center;
    padding: 0 10px;
}

.webx-lp-service-section:last-child {
    margin-bottom: 0px;
}

.webx-lp-service-catch {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

.webx-lp-service-catch.blue {
    color: #4A8DCB;
}

.webx-lp-service-catch.darkblue {
    color: #1B365E;
}

.webx-lp-service-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.webx-lp-service-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 20px;
    width: 100%;
}

.webx-lp-service-note {
    font-size: 11px;
    line-height: 1.6;
    color: #6A6A6A;
    margin-bottom: 25px;
    width: 100%;
}

/* サービスサイトへボタン */
.webx-lp-service-btn {
    display: flex;
    justify-content: space-between;
    /* 変更: 要素を両端に広げる */
    align-items: center;
    width: 100%;
    max-width: 320px;
    background: #000000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px 30px;
    /* 変更: 左右に30pxの余白を設ける */
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    box-sizing: border-box;
    /* 変更: paddingを幅に含める */
}

/* テキストを正確に中央に保つためのダミースペーサー */
.webx-lp-service-btn::before {
    content: "";
    display: block;
    width: 10px;
    /* 右側の矢印とほぼ同じ幅を指定 */
}

/* 矢印アイコン (CSSで描画) */
.webx-lp-chevron {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
}

/* フッター */
.webx-lp-footer {
    margin-top: 20px;
    text-align: center;
    color: #6A6A6A;
    font-size: 13px;
}

.webx-lp-service-btn:hover {
    color: #ffffff;
}

/* スマホ向け微調整 */
@media screen and (max-width: 1279px) {
    .webx-lp-intro-text {
        font-size: 13px;
        letter-spacing: 0;
    }

    .webx-lp-logo-right img {
        height: 35px;
    }

    .webx-lp-form-title {
        font-size: 20px;
    }

    .webx-lp-service-section {
        align-items: normal;
    }

    .webx-lp-service-catch {
        text-align: left;
    }

    .webx-lp-service-btn {
        font-size: 16px;
    }
}