@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* Contact Form 7 カスタムスタイル - 薄いグリーン系 */
.wpcf7 {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
    border: 1px solid #d4edda;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.wpcf7 p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 15px;
    border: 2px solid #c3e6cb;
    border-radius: 6px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: #28a745;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
}

.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background: linear-gradient(45deg, #90ee90, #98fb98);
    color: #155724;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: linear-gradient(45deg, #7de97d, #90ee90);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(125, 233, 125, 0.4);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .wpcf7 {
        margin: 20px 10px;
        padding: 20px 15px;
    }
    
    .wpcf7 p {
        margin-bottom: 20px;
    }
    
    .wpcf7 input[type="submit"] {
        width: 100%;
        padding: 16px;
    }
}