@charset "utf-8";
/* ===============================
inquiry
================================== */
.article--inquiry{
    padding: 70px 5.3% 200px;
    border-bottom: #fdfdfd 3px solid;
}
.form__box{
    margin-top: 30px;
}
.form__title{
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 13px;
}
input[type="radio"]{
    width: 14px;
    height: 14px;
    border-radius:50% ;
    background-color:#fdfdfd;
    margin-right: 4px;
    vertical-align: middle;
}
input[type="radio"]:checked{
    position: relative;
}
input[type="radio"]:checked::after{
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(216, 181, 90, 1);
}
label{
    padding-right: 20px;
    font-size: 1.4rem;
}
input[type="text"]{
    width: 100%;
    height: 50px;
    border: 1px solid #fdfdfd;
    padding: 16px;
}
::placeholder{
    font-size: 1.4rem;
}
input[type="text"]:focus,.textarea:focus{
    outline: 2px solid rgba(216, 181, 90, 1);
}
input[type="file"]{
    margin-bottom: 5px;
}
.form__title span{
    font-size: 1rem;
    margin-left: 3px;
}
.textarea{
    width: 100%;
    height: 167px;
    border: 1px solid #fdfdfd;
    padding: 16px;
}
/* tb */
@media screen and (min-width: 768px){
    .article--inquiry{
        padding: 70px 18.3% 300px;
    }
    label,::placeholder{
        font-size: 1.6rem;
    }
    .form__title{
        font-size: 1.8rem;
    }
}/* tb */



