/* ══════════════════════════════
   お問い合わせページ 完全版CSS
══════════════════════════════ */

/* ── ヘッダーエリア ── */
.contact-hero {
    text-align: center;
    padding: 56px 24px 36px;
    background: linear-gradient(180deg, #f2f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 0.5px solid #ddeadd;
}
.contact-hero::before,
.contact-hero::after {
    content: '✿';
    position: absolute;
    font-size: 140px;
    opacity: 0.07;
    color: #4a7a4a;
    top: -10px;
    line-height: 1;
}
.contact-hero::before { left: -20px; }
.contact-hero::after  { right: -20px; }

.contact-title {
    font-size: clamp(32px, 7vw, 52px);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #3a5c3a;
    margin: 0 0 6px;
    font-family: Georgia, serif;
    line-height: 1;
}
.contact-subtitle {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: #7a9a7a;
    margin: 0 0 16px;
}
.contact-lead {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #666;
    line-height: 2;
}

/* ── フォームエリア ── */
.wpcf7 {
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px) clamp(16px, 5vw, 48px);
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1.5px solid #d0d0d0;
    border-radius: 12px;
    background: #f2f2f2;
    font-size: 16px;
    color: #444;
    outline: none;
    -webkit-appearance: none;
    transition: border-color 0.2s, background 0.2s;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #7aaa7a;
    background: #ffffff;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #bbb;
    font-size: 14px;
}
.wpcf7 textarea {
    height: 130px;
    resize: none;
    line-height: 1.8;
}
.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 15px;
    background: #4a7a4a;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 0.2em;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.wpcf7 input[type="submit"]:hover {
    background: #3a6a3a;
}

/* ── スマホ専用調整 ── */
@media (max-width: 600px) {
    .contact-hero {
        padding: 36px 16px 24px;
    }
    .contact-hero::before,
    .contact-hero::after {
        font-size: 80px;
    }
    .wpcf7 {
        padding: 24px 16px;
    }
}