@charset "UTF-8";
*,
img,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #595250;
    line-height: 1;
    background-color: #fff;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 200;
    font-style: normal;
}

img {
    vertical-align: top;
    vertical-align: bottom;
}
/* ここからメイン */
.bag {
    background-color: #edeae3;
}
.max-width {
    max-width: 800px;
    margin: 0 auto;
}
.contact {
    max-width: 1200px;
    padding: 80px;
    margin: 0 auto;
}
.form-area {
    background-color: #fff;
    margin-top: 25px;
    padding: 30px;
    /* display: flex; */
    flex-wrap: wrap;
    /*flex-wrap: wrapいい感じのところで折り返す*/
}
.form-area dt {
    width: 200px;
    padding-top: 40px;
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 2;
}
.form-area dd {
    width: calc(100% - 200px);
}
.form-area dt .required::after {
    content: "必須";
    font-size: 11px;
    color: #eb4f32;
    margin-left: 10px;
}
.form-area dd {
    width: calc(100% - 200px);
}
.input-text {
    width: 135%;
    padding: 20px;
    background-color: #edeae3;
    border: #edeae3;
}
select {
    padding: 20px;
    width: 20%;
    background-color: #edeae3;
    border: #edeae3;
}
.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: 135%;
    height: 260px;
    padding: 10px;
    line-height: 1.5;
    background-color: #edeae3;
    border: #edeae3;
}
.confirm-text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 30px;
}
.submit-button {
    background-color: #fdb0ad;
    color: #fff;
    display: inline-block;
    min-width: 180px;
    padding: 5px;
    line-height: 48px;
    letter-spacing: 1.5px;
    border-radius: 25px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}
.submit-button:hover{
        box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
        transform: scale(0.9);    
}
/* .submit-button:hover {
    background-color: #d8b500;
} */