/*
Theme Name: zmd-wave
Theme URI: 
Author: 
Author URI: 
Description: 
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: zmd-wave
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

.wp-block-navigation__responsive-container-open {
    color: #CE572F;
}

.wp-block-navigation__responsive-container-close {
    margin-top: 30px;
    margin-right:10px;
    color: #CE572F;
}

.wp-block-template-part {
    position: sticky;
    top: 0;
    z-index: 2;
}

.entry-content {
    margin-top: 0;
}

footer {
    margin-top: 0;
}
/******************************/
/** コンタクトフォームの装飾 **/
/******************************/

.wpcf7 {
max-width: 600px;
margin: 0 auto;
padding: 0 10px;
}

.wpcf7-form label {
display: block;
width: 100%;
margin-bottom: 10px;
font-size: 16px;
color: #333333;

}
/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
background-color: #CE572F; /* レッド */
color: white;
padding: 2px 5px;
border-radius: 3px;
margin-left: 10px;
font-size: 12px;
}
/* インプットフィールドのスタイル */
.wpcf7-form textarea {
border: 1px solid #cccccc;
border-radius: 5px;
margin-bottom: 20px;
font-size: 16px;
background-color: #ffffff; /* 白 */
}
.wpcf7-form textarea {
width: 100%;
resize: vertical;
}
.wpcf7-form input {
width: 100%;
height: 30px;

}

/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {

background-color: #ce572a;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
border: none;
border-radius: 4px;

height: 45px;
}
.wpcf7-form input[type="submit"]:hover {
background-color: #fff; /* 濃いブルー */
color: #ce572a;
border: 1px solid #ce572a;
}
/* エラーメッセージと成功メッセージのスタイル */
.wpcf7-form .wpcf7-not-valid-tip {
color: red;
font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
color: green;
font-size: 16px;
margin-bottom: 20px;
}