/* セキュアなコンタクトフォーム用CSS - 既存デザインに合わせたスタイル */

/* フォーム全体のスタイル - 既存のcontact.cssと同様の見た目 */
.contact form {
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* フィールドセット - 既存のdlスタイルに合わせる */
fieldset {
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

legend {
    display: none; /* 既存デザインではlegendは表示しない */
}

/* フォームグループ - 既存のdlスタイルに合わせる */
.form-group {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin: 0;
}

/* ラベル - 既存のdtスタイルに合わせる */
.form-group label {
    display: block;
    width: 14rem;
    text-align: left;
    padding: 2rem 0;
    border-bottom: 1px solid #333;
    color: #0467b5;
    font-weight: normal;
    margin: 0;
}

.form-group:first-of-type label {
    border-top: 1px solid #333;
}

label.required::after {
    content: "※";
    color: tomato;
    font-weight: normal;
}

/* 入力フィールド - 既存のスタイルに合わせる */
input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 30rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    transition: none;
    box-sizing: border-box;
    background: #fff;
}

textarea {
    width: 80%;
    height: 10rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    transition: none;
    box-sizing: border-box;
    background: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0064b3;
    box-shadow: none;
}

/* エラー状態 */
input.error,
textarea.error,
select.error {
    border-color: #d32f2f;
    background-color: #ffebee;
}

input.error:focus,
textarea.error:focus,
select.error:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* ラジオボタングループ - 既存のスタイルに合わせる */
.contact dd label {
    margin-right: 2rem;
    font-weight: normal;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    width: auto;
    text-align: left;
    border-bottom: none;
}

.contact dd label:hover {
    background-color: transparent;
}

.contact dd label input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
}

.contact dd label input[type="radio"]:checked + span {
    font-weight: normal;
}

/* ヘルプテキスト - 非表示にする */
.help-text {
    display: none;
}

/* エラーメッセージ */
.error-text {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: none;
}

.error-text[style*="block"] {
    display: block !important;
}

/* ボタン - 既存のスタイルに合わせる */
.form-actions {
    display: block;
    margin-top: 2rem;
    text-align: center;
}

.btn-primary,
.btn-secondary {
    background: #0064B3;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: none;
}

.btn-primary:before {
    content: "＞";
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: none;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

.btn-secondary:before {
    content: none;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    transform: none;
}

/* 確認画面のスタイル */
.confirm-dl {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.confirm-dl dt {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
}

.confirm-dl dd {
    margin-bottom: 1rem;
    padding-left: 1rem;
    color: #555;
}

/* 成功・エラーメッセージ */
.success-message,
.error-message {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.success-message {
    background-color: #e8f5e8;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.error-message {
    background-color: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
}

/* お問い合わせ先情報 */
.contact-info {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0064b3;
    padding-bottom: 0.5rem;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #555;
}

.contact-details a {
    color: #0064b3;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .contact form {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .radio-group {
        gap: 0.25rem;
    }
    
    .radio-label {
        padding: 0.25rem;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .contact form {
        padding: 0.5rem;
        margin: 0 0.5rem;
    }
    
    fieldset {
        padding: 1rem;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* アクセシビリティ向上 */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        border-width: 3px;
    }
    
    .btn-primary {
        border: 2px solid #000;
    }
}

/* フォーカス表示の強化 */
input:focus,
textarea:focus,
select:focus,
button:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 3px solid #0064b3;
    outline-offset: 2px;
}

/* スクリーンリーダー用の非表示テキスト */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
