@charset "utf-8";
/* CSS Document */
/*フォームパーツのみのcss*/
.hiss {
    color: #c40500;
    font-size: 0.8em;
    margin-left: 0.5em;
}
input[type=text], input[type=number], input[type=email], input[type=tel], input[type=mail], input[type=password], input[type=date], input[type=time] {
    padding: 4px;
    border-radius: 0;
    outline: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: solid 1px #cccccc;
    /* width: 100%;*/
    box-sizing: border-box;
    font-size: 1.6rem;
    color: var(--col_main);
}
/*textarea*/
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-radius: 0;
    border: solid 1px #cccccc;
    padding: 4px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.6rem;
    height: 10em;
    /*resize:none; エリアの拡大禁止*/
    max-width: 100%;
    resize: vertical;
    max-height: 300px;
}
/*サイズ*/
.size_20 {
    width: 20%;
}
.size_30 {
    width: 30%;
}
.size_40 {
    width: 40%;
}
.size_50 {
    width: 50%;
}
.size_60 {
    width: 60%;
}
.size_70 {
    width: 70%;
}
.size_80 {
    width: 80%;
}
.size_80 {
    width: 80%;
}
.size_90 {
    width: 90%;
}
.size_100 {
    width: 100%;
}
.size_50_sp100 {
    width: 50%;
}
.size_60_sp100 {
    width: 60%;
}
.size_70_sp100 {
    width: 70%;
}
.size_80_sp100 {
    width: 80%;
}
.size_90_sp100 {
    width: 90%;
}
@media screen and (max-width: 960px) {
    .size_50_sp100 {
        width: 100%;
    }
    .size_60_sp100 {
        width: 100%;
    }
    .size_70_sp100 {
        width: 100%;
    }
    .size_80_sp100 {
        width: 100%;
    }
    .size_90_sp100 {
        width: 100%;
    }
}
/*ボタン
--------------------------------------------------------------------*/
.fom_btn_area {
    display: flex;
    justify-content: center;
}
.fom_btn_area > * + * {
    margin-left: 5%;
}
/*form_area
--------------------------------------------------------------------*/
.form_area table p + p {
    margin-top: 0.5em;
}
.form_area th, .form_area td {
    word-break: break-all;
}
.add_btn {
    border: solid 1px var(--col_main);
    padding: 0.5em;
    background: var(--bg_gray_l);
    font-size: 0.9em;
    margin-left: 1em;
}
.form_area .table_02 td {
    padding: 1em 1em 1.2em 1em;
}
.radio_block > * + * {
    margin-top: auto !important;
}
.radio_block {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 5% !important;
}
.radio_block > * {
    width: 20%;
}
@media screen and (max-width: 960px) {
    .radio_block > * {
        width: 30%;
    }
}
@media screen and (max-width: 680px) {
    .radio_block > * {
        width: 47%;
    }
}
/*form_area table
--------------------------------------------------------------------*/
.form_table {
    width: 100%;
    table-layout: fixed;
}
.form_table th, .form_table td {
    padding: 1em;
    border-bottom: 1px solid #d9d9d9;
}
.form_table th {
    background: #f2f2f2;
}
@media screen and (max-width: 680px) {
    .form_table th, .form_table td {
        display: block;
        width: auto;
    }
    .form_table td {
        padding: 1em 0 1.5em 0;
    }
}