.contents-core {
    background-color: rgba(253, 242, 212, 0.95);
    width: 100%;
    display: flex;
    justify-content: center;
    border: solid 2px;
    border-radius:20px 20px 0 0;

}

.contents-f {
    width: 65%;
    margin: auto 0;
}

.contents-wrapper {
    display: flex;
    flex-direction: column;
}

.form-contents {
    display: flex;
    flex-direction: column;
}

.form-subject,
.content {
    line-height: 3;
    align-items: center;
    justify-content: left;
}

.form-subject{
    display:flex;
    flex-direction:row;
}

.sub-wrapper{
    display:flex;
    flex-direction:row;
    padding-left:0;
}

.form-title-wrapper{
    width:100%;
    background-color: rgba(253, 242, 212, 0.95);
    margin-bottom:10px;
    display: flex;
    justify-content: center;
    border: solid 2px;
    border-radius:20px 20px 0 0;

}

.form-title{
    width: 65%;

}

.form-sub{
    margin-bottom:0;
}

.contact-text{
    font-size: xx-large;
    color:rgb(0, 0, 0);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    line-height: 1.1;
}

.required{
    color:red;
}

input[type="text"],
input[type="email"],
select {
    height: 40px;
}

textarea {
    height: 100px;
}

@media(max-width:576px) {

    input[type="text"],
    input[type="email"],
    select,
    textarea {
        width: 100%;
        line-height: 2;
    }

    .contents-f {
        width: 90%;
        margin: auto 0;
    }
}