@charset "utf-8";
/* CSS Document */
/*フォームパーツのみのcss*/
.hiss {
    background: var(--col_red);
    color: #fff;
    margin-left: 1em;
    display: inline-block;
    font-size: 1.3rem;
    padding: 0.0em 0.5em;
}
@media screen and (max-width: 680px) {
    
    .hiss {
    font-size: 1.2rem;

}
}
input[type=text], input[type=number], input[type=email], input[type=tel], input[type=mail], input[type=password], input[type=date], input[type=time], input[type=datetime-local] {
    padding: 0.8em 0.8em;
    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;
}
/*textarea*/
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-radius: 0;
    border: solid 1px #cccccc;
    padding: 0.8em 0.8em;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.6rem;
    height: 15em;
    /*resize:none; エリアの拡大禁止*/
    max-width: 100%;
    resize: vertical;
}
/*サイズ*/
.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%;
}