/*
/*
/* ----------トグルボタンがブラックのドロップダウン2----------*/

.h2-pink {
    padding: 12px 30px;
    background: #E2ABC6;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

.s_form {
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 10px 50px 10px;
}
.contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    padding: 50px 20px;
}
.form-item {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    font-size: 15px;
}
.req {
    background-color: #E287AE;
    color: #fff;
    border-radius: 0px;
    padding: 2px 4px;
    width: 34px;
    font-size: 12px;
    border-radius: 4px;
}
.form-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-a {
    width: 100%;
}
.form-a input[type="text"],
.form-a input[type="email"],
.form-a input[type="tel"] {
    font-size: 15px;
    width: 100%;
    height: 56px;
    border-radius: 4px;
    border: 0px;
    padding: 10px;
    border: solid 2px #e0e0e0;
}
.form-a input[type="text"]:focus,
.form-a input[type="email"]:focus,
.form-a input[type="tel"]:focus {
    outline: none; /* デフォルトのアウトラインを削除 */
    border: 2px solid #E2ABC6; /* 新しい枠線の色 */
}
.form-c {
    display: flex;
    flex-direction: column;
}
/* チェックボックスをカスタマイズする基本スタイル */
.form-c div {
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    display: block;
    font-size: 15px;
    user-select: none;
}
.form-c label {
    display: flex;
    align-items: center;
    gap: 4px;
}
/* ラジオボタン本体を非表示にする */
input[type="radio"] {
    display: none;
}
/* ラジオボタンが非選択状態のときのカスタムスタイル */
input[type="radio"] + .checkmark {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #f4f4f4;
    border: 2px solid #ddd;
    position: relative;
}
/* ラジオボタンが選択状態のときのカスタムスタイル */
input[type="radio"]:checked + .checkmark {
    background-color: #E287AE;
    border: 2px solid #E287AE;
}
/* 選択状態のときに中心に表示される円 */
input[type="radio"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.form-a textarea {
    width: 100%;
    height: 200px;
    font-size: 15px;
    border: solid 2px #e0e0e0;
    border-radius: 4px;
    padding: 10px;
}
.form-a textarea:focus {
    outline: none; /* デフォルトのアウトラインを削除 */
    border: 2px solid #E2ABC6; /* 新しい枠線の色 */
}
.confirmButton {
    width: 100%;
    background-color: #E2ABC6; /* ボタンの背景色 */
    color: #fff; /* テキスト色 */
    padding: 16px 30px; /* パディング */
    border: solid 2px #E2ABC6; /* 境界線を削除 */
    border-radius: 4px; /* 角の丸み */
    cursor: pointer; /* カーソルをポインターに */
    font-size: 16px; /* フォントサイズ */
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* アニメーション効果 */
}
.confirmButton:hover {
background-color: #fff; /* ホバー時の背景色 */
color: #E2ABC6;
}
/* ---------------------デバイス最適化-------------------------- */
@media screen and (max-width:967px) {
    .form-item {
        font-size: 14px;
    }
    .contactForm {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 30px;
        padding: 30px 10px;
    }
}
