@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ===== LP Base ===== */
.lp {
    line-height: 1.7;
}

.lp__inner {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0 16px;
}

.lp__fv {
    padding: 56px 0 40px;
}

.lp__badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 14px;
    background: #111;
    color: #fff;
}

.lp__title {
    margin: 14px 0 10px;
    font-size: clamp(24px, 4.5vw, 40px);
    line-height: 1.25;
}

.lp__lead {
    margin: 0 0 18px;
    opacity: .85;
}

.lp__section {
    padding: 48px 0;
}

.lp__section--alt {
    background: #f6f7f9;
}

.lp__h2 {
    font-size: clamp(20px, 3.6vw, 28px);
    margin: 0 0 14px;
}

.lp__h3 {
    font-size: 18px;
    margin: 0 0 6px;
}

.lp__text {
    margin: 0 0 16px;
}

.lp__cta {
    margin-top: 18px;
}

.lp__cta--center {
    text-align: center;
}

.lp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.lp__btn--primary {
    background: #ff6a00;
    color: #fff;
}

.lp__note {
    margin: 8px 0 0;
    font-size: 12px;
    opacity: .75;
}

.lp__note--small {
    margin-top: 10px;
}

.lp__list {
    margin: 0;
    padding-left: 1.2em;
}

.lp__check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp__check li {
    padding-left: 28px;
    position: relative;
    margin: 10px 0;
}

.lp__check li:before {
    content: "✓";
    position: absolute;
    left: 8px;
    top: 0;
    font-weight: 800;
}

.lp__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.lp__card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.lp__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.lp__steps li {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.lp__steps span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 13px;
}

.lp__faq {
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    margin: 10px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.lp__faq summary {
    cursor: pointer;
    font-weight: 700;
}

.lp__section--form .lp__form {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

/* =========================
   LP: PCでもSPと同じ見た目（固定幅）
   ========================= */

/* PCでもビューポートを拡げない */
.lp--fixed {
    background: url(/wp-content/uploads/2026/02/bk_img01-scaled.jpg) center/cover no-repeat fixed;
    min-height: 100vh;
}


/* LP本体を375px固定で中央配置 */
.lp--fixed .lp__inner {
    width: 375px !important;
    max-width: 375px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
}

/* セクションも375に収める（保険） */
.lp--fixed .lp__fv,
.lp--fixed .lp__section {
    width: 375px;
    margin: 0 auto;
}

/* もともとのレスポンシブ（clampやgrid）を“固定”に寄せる */
.lp--fixed .lp__title {
    font-size: 28px;
    /* SPで見せたいサイズに固定 */
    line-height: 1.25;
}

/* 3カラムを1カラム固定に（SP表示と同じにする） */
.lp--fixed .lp__cards {
    grid-template-columns: 1fr !important;
}

/* フォームの横幅を固定 */
.lp--fixed .lp__form {
    width: 100%;
}

/* CF7 */
.lp--fixed .cf7-grid input,
.lp--fixed .cf7-grid textarea {
    font-size: 16px;
    /* iOS拡大防止 */
}


/* SP */
@media (max-width: 768px) {
    .lp__cards {
        grid-template-columns: 1fr;
    }
}