@charset "utf-8";

.form-area{
    background-color: #f5f5f5;
    border: 1px solid;
    margin-top: 25px;
    padding: 25px;
    vertical-align: middle;
    border-collapse: collapse;
    border-spacing: 0;
    margin-left: 15%;
    margin-right: 15%;
}

.form-area dt{
    padding: 15px 0;
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
}

.form-area dt .required::after{
    content: '必須';
    font-size: 11px;
    color: #ed4f32;
    margin-left: 10px;
}

.input-text{
    width: 100%;
    max-width: 280px;
    height: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

.select-box{
    width: 280px;
    height: 25px;
    text-align: center;
}

.radio-button{
    margin-left: 15px;
    margin-right: 15px;
}

.radio-button input{
    margin-right: 5px;
}

.message{
    width: 400px;
    height: 200px;
    padding: 10px;
    line-height: 1.5;
    resize: none;
}

.confirm-text{
    font-size: 15px;
    line-height: 20px;
    margin-top: 20px;
}

.submit-button{
    display: block;
	text-align: center;
	text-decoration: none;
	width: 130px;
    height: 35px;
	margin: auto;
    margin-top: 15px;
	font-weight: bold;
	border: 2px solid #778899;
	color: #778899;
	border-radius: 100vh;
	transition: 0.5s;
    font-size: 15px;
}

.submit-button:hover{
    color: #fff;
	background: #778899;
}

@media(max-width:800px){
    .main h2{
        font-size: 35px;
    }

    .select-box{
        width: auto;
        height: auto;
        text-align: center;
    }

    .message{
        width: auto;
        height: auto;
        padding: 10px;
        line-height: 1.5;
        resize: none;
    }
}