@charset "UTF-8";
#contents {
    margin-top: 70px;
}
#contact-form {
    width: 90%;
    display: block;
    background-color: #dcdde0;
    padding: 60px;
    margin: 60px auto;
}

#contact-form p {
    color: #000;
}
label {
    margin-top: 40px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.red {
    color: red;
}

input[type="text"],input[type="tel"],input[type="email"] {
    width: 60%;
    height: 50px;
    border: none;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #000;
    padding: 10px;
    min-width: 480px;
}

textarea {
    width: 60%;
    height: 250px;
    border-color: #fff;
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    padding: 10px;
    min-width: 480px;
}
.title {
    text-align: center;
    font-size: 24px;
    margin: 30px auto;
}
.thanks {
    text-align: center;
    font-size: 24px;
    margin: 30px auto;
}
.thanks br {
    display: none;
}
.title-area {
    width: 70%;
    margin: auto;
}
.checkbox {
    width:20px;
    margin-bottom: 0px;
    border-color: #fff;
    margin-left: 30px;
    margin-right: 5px;
    color: #000;
    border: none;
    background-color: #fff;
    border-radius: 5px;
}
.message {
    display:block;
    margin-top: 20px;
}
#submit {
    color: #fff;
    background-color: #000;
    border-radius: 10px;
    display: block;
    margin: 0 auto 150px;
    padding: 10px;
    width: 250px;
    border-color: #000;
}
#back {
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    display: block;
    margin: -120px auto 150px;
    padding: 10px;
    width: 220px;
    border-color: #000;
}
#privacypolicy {
    display: block;
    margin: auto;
    color: #0071bc;
    width: fit-content;
    border-bottom: 3px solid #7c7b7b;
    text-decoration: none;
    font-size: 18px;
}
#accept {
    display: block;
    margin: auto;
    width: fit-content;
    
}

#accept label {
    font-size:13px;
}
input[type="checkbox"] {
    border-radius: 0;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
}
input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    vertical-align: -2px;
    padding: 0;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 5px;
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
}

#honbun {
    margin-bottom: 50px;
}

.contact_above_pc {
    display: block;
    width: 100%;
}
.contact_above_sp {
    display: none;
    width: 100%;
}
#contact {
    font-size: 15vw;
    font-family: var(--fontAlpha);
    margin: -7vw auto;
    max-width: 1060px;
}
.concent_br {
    display: none;
}
.concent_space {
    display: none;
}
@media (max-width:992px) {
    #contact {
        padding-top: 3.5vw;
        padding-left: 10px;
    }
    .contact_above_pc {
        display: none;
    }
    .contact_above_sp {
        display: block;
    }
}
@media (max-width:720px) {
    input[type="text"],input[type="tel"],input[type="email"] {
        width: 100%;
        min-width: unset;
    }
    
    textarea {
        width: 100%;
        min-width: unset;
    }
    .thanks br {
        display: block;
    }
}

@media (max-width:532px) {
    #privacy_check {
        margin-left: 0px;
    }
    .concent_br {
        display: block;
    }
    .concent_space {
        display: inline-block;
    }
    #submit {
        max-width: 250px;
        width: 80%;
    }
}