@charset "utf-8";

.title{
    height: calc(100vh - 90px);
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/access/fv.png);
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
}

.title h1{
    font-family: "classico-urw", sans-serif;
    font-size: 32px;
    font-weight: 400;
}

.title-text{
    margin: 0 auto;
}

.main h2{
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
}

.contact{
    width: 1200px;
    max-width: 90%;
    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
}

.form-area{
    background-color: #D1B799;
    border: 1px solid #aaaaaa;
    margin-top: 25px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.form-area dt{
    width: 200px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
}

.form-area dt .required::after{
    content: '必須';
    font-size: 11px;
    color: #eb4f32;
    margin-left: 10px;
}

.form-area dd{
    width: calc(100% - 200px);
    padding: 15px 0;
}

.input-text{
    width: 100%;
    max-width: 280px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}

.select-box{
    width: 200px;
    height: 40px;
}

.radio-button{
    display: block;
    margin-top: 20px;
}

.radio-button:first-child{
    margin-top: 0;
}

.radio-button input{
    margin-right: 8px;
}

.message{
    width: 100%;
    height: 260px;
    padding: 10px;
    line-height: 1.5;
}

.button .confirm-text{
    font-size: 14px;
    line-height: 22px;
    margin-top: 30px;
    text-align: center;
}

.button .submit-button{
    width: 1200px;
    margin: 50px auto 0px auto;
    display: block;
}

.submit-button{
    width: 100%;
    max-width: 240px;
    background-color: #CC765B;
    display: inline-block;
    min-width: 180px;
    line-height: 80px;
    border-radius: 40px;
    font-family: "classico-urw", sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

.submit-button:hover{
    background-color: #EF6236;
}

.footer{
    margin-top: 100px;
}

@media (max-width: 800px){
    .map,
    .contact{
        width: 500px;
        margin-top: 45px;
    }

    .form-area dt,
    .form-area dd{
        width: 100%;
    }

    .form-area dt{
        padding-bottom: 0;
    }

    .submit-button{
        width: 100%;
    }

}