/* ----- 問い合わせフォーム ----- */
.form_wrapper {
    width: 90%;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 20px;
    color: #000;
    background-color: #fff;
    border: 2px solid #00A0E9;
}
.form_title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 2rem;
}
.form_intro {
    text-align:center;
    margin:-10px auto 10px;
    padding: 0.5em 0;
    color: #84d40a;
    /* background-color: #fffcf7;
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff; */
    font-weight: bold;
    font-size:1.3rem;
}
.form_block {
    margin: 0 auto;
    font-size: 1.6rem;
}
.fb_flex {
    display: flex;
    justify-content: space-between;
}
.fbf_title {
    font-weight: bold;
}
.fbf_select {
    margin-right: 4px;
    border: 1px solid #444;
}
.fb_up {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 0.25em 0;
    border-bottom:1px solid #000;
    font-weight: bold;
}
.fb_down {
    margin-bottom: 10px;
}
.date input, .date label {
    margin-bottom: 10px;
}
.date label {
    margin-left: 5px;
}
.date input:hover, .date label:hover {
    cursor: pointer;
}
.form_button {
    display: block;
    width: 180px;
    margin: 20px auto;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;;
    border-radius: 20px;
}

.form_button:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.form_button input {
    display: block;
    width: 180px !important;
    height: 40px !important;
    margin: 0 auto;
    border: 1px solid #ff9d26;
    background-color: #ff9d26;
    border-radius: 20px;
    box-shadow: 2px 2px 2px #dd871e;
}
.form_button input:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* -----テキストラジオ----- */
input {
    width: 100%;
    font-size: 16px;
    padding: 4px 6px;
    border: 1px solid #666;
}
input.t_input[type=radio]  {
    display: none;
}
.t_radio {
    min-width: 92px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px #ccc;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    padding: 6px 4px;
    margin-right: 5px;
    margin-bottom: 8px;
    background-color: #fbfff2;
    border: 1px solid #ccc;
    vertical-align: middle;
    text-align: left;
    cursor: pointer;
}
/* ホバー中の背景 */
input:checked + label {
    background-color: #ffca89;
    color:#191970;
}
/* 選択中の背景 */
.t_radio:hover {
    background-color: #ffca89;
}

/* 選択中の枠線 */
input.t_input[type=radio]:checked+label{
    border:2px solid #ff9d26;
    box-shadow: 3px 3px 2px #fff;
}
input.t_input[type=radio]:checked + .t_radio:after {
    opacity: 1;
}

.t_radio2 {
    min-width: 92px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px #ccc;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    padding: 6px 4px;
    margin-right: 5px;
    margin-bottom: 8px;
    /* background-color: #fbfff2; */
    border: 1px solid #ccc;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}

/* 選択中の文字CSS */
input[type="radio"]:checked + .t_radio2 {
    font-weight: bold;
    color: #4d2f08;
}

/* ホバー中の背景 */
input:checked + label {
    background-color: #ffca89;
    color:#191970;
}
/* 選択中の背景 */
.t_radio2:hover {
    background-color: #ffca89;
}

/* 選択中の枠線 */
input.t_input[type=radio]:checked+label{
    border:2px solid #ff9d26;
    box-shadow: 3px 3px 2px #fff;
}
input.t_input[type=radio]:checked + .t_radio2:after {
    opacity: 1;
}

/* 入力中の枠線 */
input.input_txt[type=text]:focus, textarea:focus {
    outline: 2px solid #ff9d26 !important;
    border: none !important;
}



#entrybtn {
    color: #fff;
    font-weight: bold;
}
.radio_large {
    width: 100%;
    padding: 6px 10px;
}
.fb_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 10px;
}
.lh25 {
    line-height: 2.5;
}
.radio_small {
    /* padding: 6px 10px; */
    padding: 6px 0;
}

/* テキストエリア */
.textarea_large {
    width: 100%;
    height: 50px;
}

/* プライバシーポリシー */
.formContents__privacy__title {
    font-size: 12px;
    letter-spacing: 0.7px;
    color: #666666;
    font-weight: 700;
    text-align: center;
}
.formContents__privacy__text {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.7px;
    text-align: center;
}
.privacyForm__innerBlock {
    width: 80%;
    margin: 6px auto;
    border: 1px solid #999;
    padding: 5px;
    max-height: 80px;
    overflow-y: scroll;
    text-align: left;
}
.c2 {
    text-align: center;
    margin-top: 20px;
}
.form_entry_btn {
    height: 40px;
    width: 200px;
    margin-top: 6px;
    font-size: 16px;
    border-radius: 25px;
    color: #003953;
    border: 1px solid #003953;
}
.form_unit_error_msg {
	color:red;
}

.privacyForm__title {
    margin-top: 1em;
}

@media screen and (min-width: 600px) {
    /* お問合せ */
    .form_wrapper {
        margin: 30px auto;
        padding: 50px ;
    }
    .form_title {
        margin-bottom: 30px;
        font-size: 2.4rem;
    }
    .form_intro {
        text-align:center;
        margin:-20px auto 0;
        /* padding: 0.5em 0; */
        color: #84d40a;
        font-size:1.8rem;
    }
    .form_block {
        font-size: 2rem;
    }
    .kyujin_colum_p {
        font-size: 1.6rem;
    }
    .detail_index {
        padding: 2px 6px ;
        font-size: 2rem;
    } 
    .detail_content p {
        padding: 4px 0 ;
    }
    .fbf_select {
        margin-right: 8px;
        padding: 2px 4px;
    }
    .fb_up {
        margin-bottom: 20px;
        border-bottom:1px solid #003953;
    }
    .fb_down {
        margin-bottom: 20px;
    }
    .privacyForm__innerBlock {
        max-height: 100px; 
        padding: 20px;
    }
    .privacyForm__title {
        margin-bottom: 20px;
        padding: 0;
        text-align: center;
        border: 1px solid #999;
        border-radius: 20px;
        font-size: 1.6rem 
    }
    .privacyForm__text {
        font-size: 1.4rem;
    }

    /* テキストエリア */
    .textarea_large {
        height: 70px;
    }

    .fb_grid {
        grid-template-columns: 1fr 1fr;
    }
}