/*
Theme Name: Houtei Souzoku LP Theme
Description: LPのデザインをベースにしたお問い合わせフォーム用テーマ
Version: 1.0
Author: Your Name
*/

/* LP由来のカスタムスタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
}

.hero-bg {
    /* スマホ用の設定 */
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('Gemini_Generated_Image_txh8nitxh8nitxh8.png');
    background-size: cover;
    background-position: center;
}

/* PC用の設定 */
@media (min-width: 768px) {
    .hero-bg {
        background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('Gemini_Generated_Image_txh8nitxh8nitxh8.png');
    }
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.8);
}

.hero-person-mask {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%), 
                        linear-gradient(to top, transparent 0%, black 30%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 50%), 
                        linear-gradient(to top, transparent 0%, black 30%);
    mask-composite: intersect;
}

@supports not (mask-composite: intersect) {
    .hero-person-mask {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
        mask-image: linear-gradient(to right, transparent 0%, black 60%);
    }
}

/* Contact Form 7 用の基本スタイル調整 
   Tailwindのリセットにより枠線等が消えるのを防ぐ設定 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
    border: 1px solid #cbd5e1; /* slate-300 */
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
    background-color: #fff;
}

.wpcf7 input[type="submit"] {
    background-color: #d97706; /* accent */
    color: white;
    font-weight: bold;
    padding: 1rem 3rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    display: block;
    margin: 1rem auto;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #b45309; /* amber-700 */
}

/* 必須項目のラベル */
.wpcf7-list-item-label {
    margin-left: 0.5em;
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
    font-size: 0.875rem;
    color: #dc2626; /* red-600 */
}