/*
Theme Name: ohara-theme
Description: Kadence child theme
Author: ohara
Template: kadence
Version: 1.0.0
*/
/* 容器 */
.ohara-contact-wrap {
    max-width: 700px;
    margin: 0 auto;
}

/* 提示信息 */
.ohara-contact-message {
    margin-bottom: 20px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 6px;
}

.ohara-contact-message.success {
    background: #f3f7f1;
    color: #2d4a2d;
    border: 1px solid #d9e7d4;
}

.ohara-contact-message.error {
    background: #fff3f3;
    color: #a33a3a;
    border: 1px solid #f0caca;
}

/* 每一行 */
.ohara-contact-form .ohara-form-row {
    margin-bottom: 22px;
}

/* label */
.ohara-contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: #2d2a26;
    font-family: "Noto Serif JP", serif;
}

.ohara-contact-form .req {
    color: #e45a5a;
}

/* 输入框 */
.ohara-contact-form input[type="text"],
.ohara-contact-form input[type="email"],
.ohara-contact-form textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: #fff;
    color: #2d2a26;
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 12px;
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
}

/* 输入框高度 */
.ohara-contact-form input[type="text"],
.ohara-contact-form input[type="email"] {
    height: 44px;
}

/* 文本域 */
.ohara-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* 按钮 */
.ohara-submit-btn {
    display: inline-block;
    min-width: 120px;
    height: 44px;
    border: 1px solid #b89b6d;
    border-radius: 6px;
    background: #b89b6d;
    color: #fff;
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* hover */
.ohara-submit-btn:hover {
    background: #a88d5c;
}

/* 手机端 */
@media (max-width: 768px) {
    .ohara-contact-wrap {
        padding: 0 16px;
    }

    .ohara-contact-form label {
        font-size: 15px;
    }

    .ohara-contact-form input,
    .ohara-contact-form textarea {
        font-size: 14px;
    }

    .ohara-submit-btn {
        width: 100%;
    }
}