@charset "UTF-8";

#contact-form {
    background: #fffae8;
    color: #000;
    padding: 0 20px 100px;
}

#contact-form * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact-form .inner {
    margin: 0 auto;
}

#form-input .title-h3 {
    margin-bottom: 50px;
}

#form-input dl {
    display: flex;
    flex-wrap: wrap;
}

#form-input dl dt {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
    font-weight: bold;
    font-size: 16px;
}

#form-input dl dt span {
    background: #be0000;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    display: block;
}

#form-input dl dt:not(:last-of-type) {
    margin-bottom: 20px;
}

#form-input dl dd {
    width: calc(100% - 250px);
}

#form-input dl dd input,
#form-input dl dd textarea,
#form-input dl dd select {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    background-color: #fff;
}

#form-input dl dd input:focus,
#form-input dl dd textarea:focus,
#form-input dl dd select:focus {
    outline: none;
}

#form-input dl dd textarea {
    height: 150px;
}

#form-input dl dd:not(:last-of-type) {
    margin-bottom: 20px;
}

#form-input .privacypolicy {
    margin-top: 60px;
}

#form-input .privacypolicy .privacypolicy-area {
    background-color: #fff;
    border: 1px solid #bbb;
    padding: 15px;
    height: 200px;
    overflow: auto;
}

#form-input .privacypolicy .agree-txt {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    font-size: 16px;
}

#form-input .privacypolicy .agree-txt input {
    margin-right: 5px;
}

#form-input .privacypolicy .agree-txt input+label {
    cursor: pointer;
}

#form-input .submit {
    text-align: center;
    margin-top: 40px;
}

#form-input .submit button {
    appearance: none;
    border: none;
    box-shadow: none;
    display: block;
    background-color: #007a3e;
    color: #fff;
    width: 150px;
    height: 40px;
    cursor: pointer;
    margin: 0 auto;
}

#form-input .submit button:hover {
    opacity: .7;
}

#form-input .submit button:disabled {
    background-color: #bbb;
}

#form-input .submit button:disabled:hover {
    opacity: 1;
    cursor: default;
}

#form-confirm .title-h3 {
    margin-bottom: 50px;
}

#form-confirm dl {
    display: flex;
    flex-wrap: wrap;
}

#form-confirm dl dt {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
    font-weight: bold;
    font-size: 18px;
}

#form-confirm dl dt span {
    background-color: #be0000;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    display: block;
}

#form-confirm dl dt:not(:last-of-type) {
    margin-bottom: 20px;
}

#form-confirm dl dd {
    width: calc(100% - 250px);
}

#form-confirm dl dd:not(:last-of-type) {
    margin-bottom: 20px;
}

#form-confirm .btns {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#form-confirm .back {
    margin-right: 20px;
}

#form-confirm .back [data-button="back"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #007a3e;
    width: 150px;
    height: 40px;
    cursor: pointer;
    border-color: transparent;
}

#form-confirm .back [data-button="back"]:hover {
    opacity: .7;
}

#form-confirm .submit [type=submit] {
    appearance: none;
    border: none;
    box-shadow: none;
    display: block;
    background-color: #007a3e;
    color: #fff;
    width: 150px;
    height: 40px;
    cursor: pointer;
}

#form-confirm .submit [type=submit]:hover {
    opacity: .7;
}

#contact-thanks {
    background-color: #fffae8;
    color: #000;
    padding: 0 20px 100px;
}

#contact-thanks * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact-thanks .inner {
    margin: 0 auto;
}

#contact-thanks .message {
    text-align: center;
}

#contact-thanks .btn {
    margin-top: 40px;
}

#contact-thanks .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007a3e;
    color: #fff;
    width: 150px;
    height: 40px;
    margin: 0 auto;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    #form-input dl {
        flex-direction: column;
    }

    #form-input dl dt {
        width: 100%;
        font-size: 14px;
        margin-bottom: 10px;
        padding-right: 0;
        justify-content: flex-start;
    }

    #form-input dl dt span {
        margin-left: 15px;
        font-size: 10px;
    }

    #form-input dl dt:not(:last-of-type) {
        margin-bottom: 10px;
    }

    #form-input dl dd {
        width: 100%;
    }

    #form-confirm dl {
        flex-direction: column;
    }

    #form-confirm dl dt {
        width: 100%;
        font-size: 14px;
        margin-bottom: 10px;
        padding-right: 0;
        justify-content: flex-start;
    }

    #form-confirm dl dt span {
        margin-left: 15px;
        font-size: 10px;
    }

    #form-confirm dl dt:not(:last-of-type) {
        margin-bottom: 10px;
    }

    #form-confirm dl dd {
        width: 100%;
        background-color: #fff;
        padding: 10px;
    }
}

/*# sourceMappingURL=contact.css.map */