@charset "UTF-8";

@import url("../../css/style.css");

/*リセット
-------------------------------------*/

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



/*リセット　ここまで
-------------------------------------*/


.formBlock {
    width: 640px;
    margin: auto;
    text-align: left;
    font-size: 1.6rem;
}

.formBlock dt {
    font-weight: 500;
}

.formBlock dd {
margin-bottom: 20px;
}

.formBlock dd,
.formBlock dd ul li {
    font-weight: 300;
}


input[type="text"],
textarea {
    width: 640px;
    height: 30px;
    border: #fce8e8 2px solid;
    box-sizing: border-box;
     height: 30px;
}

textarea {
    height: 150px;
}

input[type="submit"],
input[type="button"] {
    font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif !important;
    font-size: 1.6rem;
    font-weight: 500;
    width: 200px;
    height: 40px;
    color: #fff;
    background-color: #f09495;
    border-radius: 10px;
    margin-right: 10px;
}

input[type="radio"] + span::before {
   display: inline-block;
    content: "";
   height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #888;
    vertical-align: -2px;
    box-sizing: border-box;
    margin-right: 3px; 

}

input[type="radio"]:checked + span::before {
background-image: url(../img/radio.svg) ;
}

input[type="checkbox"] + span::before{
    display: inline-block;
    content: "";
   height: 16px;
    width: 16px;
    border-radius: 3px;
    border: 1px solid #888;
    vertical-align: -2px;
    box-sizing: border-box;
    margin-right: 3px; 
}

input[type="checkbox"]:checked + span::before {
background-image: url(../img/checked.svg) ;
}

input[type="radio"]:hover + span,
input[type="checkbox"]:hover + span {
color: #f09495;
}


.required {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background-color: #f09495;
    border-radius: 3px;
    padding: 0 5px;
    margin-left: 5px;
}

.choices {
    font-weight: 400;
}
