
.contact{
    padding: 80px 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact__logo{
    width: 265px;
    margin: 0 auto 60px;
}
.contact__ttl{
    font-size: 32px;
    font-weight: 700;
    font-family: "Jost", serif;
    letter-spacing: 0.1em;
    color: #004F8D;
    line-height: 1.3;
    margin-left: 4%;
    margin-bottom: 20px;
}
.contact__subttl{
    font-size: 24px;
    font-family: "Noto Sans JP", serif;
    font-weight: 700;
    color: #000;
    margin-left: 4%;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.contact__intro{
    font-size: 16px;
    margin-left: 4%;
    margin-bottom: 60px;
}

.form__list {
    display: flex;
    flex-direction: column;
    width: 90%;
    min-width: 300px;
    margin: 0 auto 20px;
}

label {
    width: 150px;
    margin-right: 50px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    display: block;
}
select {
    display: block;
    width: 100%;
    padding: 20px 20px;
    background: #F0F0F0;
    border: none;
}
input {
    display: block;
    width: 100%;
    padding: 20px 20px;
    background: #F0F0F0;
    border: none;
}

textarea {
    display: block;
    width: 100%;
    height: 250px;
    padding: 20px 20px;
    background: #F0F0F0;
    border: none;
}

button {
    width: 220px;
    padding: 15px 0;
    display: block;
    position: relative;
    text-align: center;
    margin: 0 auto;
    border-radius: 40px;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    cursor: pointer;
    transition: .3s;
}
button:hover{
    opacity: 0.6;
}
button:before{
    position: absolute;
    content: "";
    display: block;
    top: 25px;
    right: 25px;
    width: 10px;
    height: 1px;
    background: #222;
    transform: rotate(45deg);
    
}
button:after{
    position: absolute;
    content: "";
    display: block;
    top: 32px;
    right: 25px;
    width: 10px;
    height: 1px;
    background: #222;
    transform: rotate(-45deg);

}
.form__text{
    margin-top: 70px;
    margin-bottom: 40px;
    text-align: center;
}
.form__message {
    text-align: center;
    margin: 30px 0;
}

/*thanksページ*/
.send{
    padding: 70px 0 150px;
}
.send__logo{
    width: 265px;
    margin: 0 auto;
}
.send__logo img{
    width: 100%;
    object-fit: cover;
}
.send__icon{
    width: 92px;
    margin: 70px auto 30px;
}
.send__ttl{
    font-size: 24px;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    margin-bottom: 40px;
}
.send__message{
    font-size: 16px;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
}
.send__btn {
    width: 220px;
    padding: 15px 0;
    display: block;
    position: relative;
    text-align: center;
    margin: 0 auto;
    border-radius: 40px;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}
.send__btn:hover{
    opacity: 0.6;
}
.send__btn:before{
    position: absolute;
    content: "";
    display: block;
    top: 25px;
    right: 25px;
    width: 10px;
    height: 1px;
    background: #222;
    transform: rotate(45deg);

}
.send__btn:after{
    position: absolute;
    content: "";
    display: block;
    top: 32px;
    right: 25px;
    width: 10px;
    height: 1px;
    background: #222;
    transform: rotate(-45deg);

}



@media screen and (min-width: 768px) {



    form {
        max-width: 1000px;
        margin: 0 auto;
    }

    .form__list:last-of-type {
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .footer {
        padding: 40px 0;
    }


}

@media screen and (min-width: 1024px) {

    .contact__logo{
        display: none;
    }
    .contact{
        padding: 250px 0 200px;
    }
    .contact__ttl{
        margin-left: unset;
    }
    .contact__subttl{
        margin-left: unset;
        font-size: 28px;

    }
    .contact__intro{
        margin-left: unset;
        font-size: 20px;
    }
    .form__list{
        width: 100%;
    }
    .form__text{
        letter-spacing: 0.1em;
    }
    .send__logo{
        display: none;
    }
    .send{
        padding-top: 300px;
    }
    .send__icon{
        margin-top: 0;
    }
}

@media screen and (min-width: 1300px) {

}