@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
*/

/* スマホハンバーガーメニュー非表示 */
.l-header .l-header__menuBtn{visibility: hidden;}

/* ボタン内改行キャンセル */
.my-button-nobr{
  white-space : nowrap;
}

.swell-block-accordion__title {
    background: #e8d2c7; /* 好きな色を指定 */
}

.is-special-color .swell-block-accordion__title {
    background: #89898933 !important; /* 好きな色を指定 */
}

/* フォーム全体の外枠 */
.lp-consultation-form {
    max-width: 1200px; /* PC版サイト幅 */
    margin: 0 auto;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    background-color: #f0f8f5; /* 淡い薄緑 */
    padding: 10px 40px 20px 40px;
    border-radius: 12px;
}

/* ヘッダーエリア */
.lp-consultation-form .form-header {
    text-align: center; /* PCでは中央寄せ */
    margin-bottom: 50px;
}

.lp-consultation-form .header-desc {
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: normal;
}

.lp-consultation-form .completion-time {
    font-weight: normal;
    letter-spacing: 0.05em;
}

/* 各セクション共通 */
.lp-consultation-form .form-section,
.lp-consultation-form .phone-section {
    margin-bottom: 50px;
}

/* STEPバッジ */
.lp-consultation-form .step-badge {
    display: inline-block;
    background-color: #dcdcdc;
    color: #000;
    font-weight: normal;
    padding: 6px 20px;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

/* ラベル */
.lp-consultation-form label,
.lp-consultation-form .section-label {
    display: block;
    margin-bottom: 10px;
    font-weight: normal;
}

.lp-consultation-form .form-row {
    margin-bottom: 30px;
}

/* テキスト入力欄 */
.lp-consultation-form input[type="text"],
.lp-consultation-form input[type="email"],
.lp-consultation-form input[type="tel"] {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #777;
    border-radius: 4px;
    box-sizing: border-box;
    font-weight: normal;
}

/* チェックボックス（縦並び） */
.lp-consultation-form .checkbox-group span.wpcf7-list-item {
    display: block;
    margin: 0 0 15px 0;
}

.lp-consultation-form .checkbox-group input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 12px;
}

.lp-consultation-form .checkbox-group span.wpcf7-list-item-label {
    vertical-align: middle;
    font-weight: normal;
}

/* 電話番号セクションの説明文 */
.lp-consultation-form .phone-note {
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: normal;
}

/* フッター・送信ボタンエリア */
.lp-consultation-form .form-footer {
    text-align: center; /* PCでは中央寄せ */
    margin-top: 60px;
}

.lp-consultation-form .privacy-check {
    margin-bottom: 30px;
    color: #666;
    display: inline-block;
    font-weight: normal;
}

/* 送信ボタンラッパー */
.lp-consultation-form .submit-btn-wrapper {
    text-align: center;
    width: 100%;
}

/* ▼▼▼ 送信ボタンのデザイン ▼▼▼ */
.lp-consultation-form input[type="submit"] {
    background-color: #2cb676;
    color: white;
    font-size: 20px;
    font-weight: bold; /* ボタンのみ太字 */
    padding: 20px 0;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    
    /* ボタン自体の中央配置 */
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.lp-consultation-form input[type="submit"]:hover {
    background-color: #249e66;
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lp-consultation-form .footer-note {
    color: #666;
    margin-top: 15px;
    font-weight: normal;
}

/* ▼▼▼ レスポンシブ調整（960px以下） ▼▼▼ */
@media (max-width: 960px) {
    .lp-consultation-form {
        padding: 30px 20px;
        border-radius: 0;
    }
    
    /* ▼▼▼ スマホ時の左寄せ指定 ▼▼▼ */
    /* ヘッダーエリア、フッターエリア、プライバシー、注意書きを左寄せに上書き */
    .lp-consultation-form .form-header,
    .lp-consultation-form .header-desc,
    .lp-consultation-form .form-footer,
    .lp-consultation-form .privacy-check,
    .lp-consultation-form .footer-note {
        text-align: left !important;
    }
    
    /* プライバシーチェックのインラインブロック解除（幅いっぱいに広げて左寄せにするため） */
    .lp-consultation-form .privacy-check {
        display: block; 
    }

    .lp-consultation-form .step-badge {
        padding: 5px 15px;
    }

    /* ボタンのスタイル（中央配置は維持） */
    .lp-consultation-form input[type="submit"] {
        max-width: 100%;
        padding: 15px 0;
        font-size: 18px;
        /* margin: 0 auto; は継承されるので中央配置のまま */
    }
}

.w-beforeFooter {
    margin: -6em auto 3em;
    overflow: hidden;
}