@charset "utf-8";

.contactmenu {
    background-image: url(../img/contact/mc_noisemint1200bk.jpg);
    padding-bottom: 100px;
}

.contactmenu-innner {
    max-width: 800px;
    margin: 0 auto;
}

.contacttitle {
    font-size: 28px;
    color: #F3AF7F;
    padding-top: 60px;
}

.contacttitle span {
    font-size: 15px;
    margin-left: 10px;
}

.contact {
    background-color: #fff;
    box-shadow: 5px 5px #faee8c;
    border-radius: 25px;
    padding: 30px;
    text-align: center;

}

h2 {
    margin-top: 30px;
    font-size: 20px;
}

p {
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    text-align: left;
}

p span {
    color: red;
    font-size: 16px;
}

.form-area {
    margin-top: 25px;
    margin-left: 30px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.form-area dt {
    width: 170px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    text-align: left;
}

.form-area dd {
    width: calc(100% - 200px);
    padding: 15px 0;
    text-align: left;
}

.form-area dt .required::after {
    content: "必須";
    font-size: 11px;
    color: #eb4f32;
    margin-left: 10px
}

.input-text {
    width: 100%;
    max-width: 450px;
    height: 40px;
    padding: 0 10 0;
}

.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;
}

.confirm-text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 30px;
}

.submit-button {
    background-color: #faee8c;
    display: inline-block;
    /* display: inline-block;→ブロック要素とインライン要素のハイブリット。要素は横並びだがサイズ指定ができる */
    min-width: 180px;
    /* min-width: 180px;→最小で180px→180pxより小さくならない。 */
    line-height: 48px;
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    margin: 50px;
}

.submit-button:hover {
    background-color: #faee8c;
}