/* =========================
   Contact Page
========================= */

:root {
    --base: #ffffff;
    --main: #74CBBB;
    --accent: #FCE576;
    --text: #222222;
    --border: #e5e5e5;
}

.section--contact {
    padding: 0 5rem 0 5rem;
    text-align: left;
}

.section__title {
    text-align: center;
}

.contact-lead {
    text-align: center;
    margin-bottom: 50px;
}

.contact-lead p {
    font-size: 15px;
    line-height: 2;
    color: #000;
}

/* フォーム外枠 */
.contact-form-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 50px;
    border: 1px solid var(--main);
    background: #fff;
}

/* CF7が入る想定の箱 */
.contact-form-placeholder {
    width: 100%;
}

/* 下部注記 */
.contact-note {
    margin-top: 40px;
    text-align: center;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.9;
    color: #333;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {

    .section--contact {
        padding: 60px 0 80px;
    }

    .contact-form-wrap {
        padding: 24px;
    }

}

/* =========================
   Contact Form (CF7)
   直線的・シンプルデザイン
========================= */

.contact-form-wrap {
    max-width: 720px;
    margin: 0 auto;
}

/* 各フォーム行 */
.form-group {
    margin-bottom: 24px;
}

/* ラベル */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* 必須表記 */
.form-group .required {
    color: var(--main);
    font-size: 13px;
    margin-left: 4px;
}

/* input / textarea 共通 */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 0;
    /* 直線的 */
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

/* フォーカス時 */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main);
}

/* textarea */
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ラジオボタン */
.radio-group {
    margin-right: 8px;
}

.form-group input[type="radio"] {
    accent-color: var(--main);
    margin-right: 6px;
}

/* プライバシーポリシーリンク */
.form-group a {
    color: var(--main);
    text-decoration: none;
    font-size: 14px;
}

.form-group a:hover {
    text-decoration: underline;
}

/* 送信ボタン */
.wpcf7-submit {
    display: inline-block;
    min-width: 220px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--main);
    border: none;
    border-radius: 0;
    /* 直線的 */
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.wpcf7-submit:hover {
    opacity: 0.85;
}

/* エラー表示 */
.wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
    color: #d32f2f;
}

.wpcf7-response-output {
    margin-top: 24px;
    padding: 16px;
    border-radius: 0;
    font-size: 14px;
}

/* スマホ微調整 */
@media (max-width: 600px) {
    .form-group label {
        font-size: 14px;
    }

    .wpcf7-submit {
        width: 100%;
    }
}

/* =========================
   Privacy Policy
========================= */

.privacy {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333;
}

.privacy .container {
    max-width: 900px;
    margin: 0 auto;
}

/* ---------- Header ---------- */

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    display: inline-block;
    padding: 14px 36px;
}

/* ---------- Intro ---------- */

.privacy-intro {
    padding: 28px 32px;
    margin-bottom: 56px;
    line-height: 1.9;
    font-size: 15px;
}

/* ---------- Section ---------- */

.privacy-section {
    margin-bottom: 56px;
}

.privacy-section h2 {
    font-size: 22px;
    font-weight: 700;
    padding: 12px 20px;
    margin-bottom: 24px;
    border-left: 5px solid var(--main);
}

/* ---------- Content ---------- */

.privacy-content {
    font-size: 15px;
    line-height: 1.9;
}

.privacy-content p {
    margin: 16px 0;
}

/* ---------- Box / List ---------- */

.privacy-box {
    padding: 24px 28px;
}

.privacy-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.privacy-box li {
    position: relative;
    padding-left: 1.5em;
    margin: 8px 0;
    line-height: 1.8;
    font-size: 15px;
}

.privacy-box li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {

    .privacy {
        padding: 60px 16px;
    }

    .privacy-title {
        font-size: 24px;
        padding: 12px 24px;
    }

    .privacy-intro {
        padding: 20px;
        font-size: 14px;
    }

    .privacy-section h2 {
        font-size: 18px;
        padding: 10px 14px;
    }

    .privacy-content,
    .privacy-box li {
        font-size: 14px;
    }

    .privacy-box {
        padding: 20px;
    }
}