@charset "UTF-8";

/* =========================================
contact
============================================*/
.container{
    display: block;
}
.section--contact p{
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    line-height: normal;
    text-align: center;
}
.contact-form{
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
}
.contact-form label {
    margin-top: 18px;
    font-family: "Noto Serif";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
}
.contact-form label:first-child{
    margin-top: 52px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px; 
    color: var(--primary-black);
    background-color: var(--primary-white);
    font-size: 14px;
}
.contactForm{
    padding: 22px 4.2% 92px;
}
.pcBr{
    display: none;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form button {
    min-width: 180px;
    padding: 20px 12.7%;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    font-family: "Noto Serif";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: normal;
    border: none;
    cursor: pointer;
    transition: background-color 0.4s;

}
.submit-btn{
    margin: 62px auto 0;
}
.submit-btn:hover{
    opacity: 0.7;
}
.privacy-policy label{
    font-family: "Noto Serif JP";
    font-size: 1.4rem;
}
.privacy-policy {
    margin: 30px auto;
}
.privacy-policy a {
    color: var(--primary-black); 
    text-decoration: underline; 
}
.privacy-policy input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 3px; 
    cursor: pointer; 
    position: relative; 
}
.privacy-policy input[type="checkbox"]:checked {
    background-color: var(--primary-white); 
}
.privacy-policy input[type="checkbox"]:checked::after {
    content: '✓'; 
    color: var(--primary-black); 
    position: absolute; 
    left: 3px; 
    top: -2px; 
    font-size: 16px; 
}

/* contact PC */
@media screen and (min-width:769px){
    .pcBr{
        display: block;
    }
    /* CSSアニメーション　クリック時 */
    .submit-btn:active{
        opacity: 0.7;
    }
}
