/**
 * Contact Form 7 スタイル
 */

/* フォーム全体 */
.wpcf7 {
    max-width: 600px;
    margin: 0 auto;
}

/* ラベル */
.wpcf7 label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}

/* テキスト入力・メール入力 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus {
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* テキストエリア */
.wpcf7 textarea {
    width: 100%;
    min-height: 200px;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7 textarea:focus {
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* フォームグループの余白 */
.wpcf7 p {
    margin-bottom: 1.5em;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
    display: inline-block;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #555;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .wpcf7 input[type="submit"] {
        width: 100%;
    }
}

/* custom-css-jsプラグインから移行 */
input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

span.wpcf7-spinner {
    display: none;
}

.cf-wrapper {
    text-align: center;
}
