全体 body {
    font-family: "Zen Maru Gothic", "Noto Sans JP", "Montserrat", "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

img {
    max-width: 100%;
    height: auto;
}

span[lang="en"] {
    font-family: "Montserrat", serif;
}



/* 幅 */

@media screen and (max-width:768px) {
    .wrapper {
        width: 100%;
        margin: 0;
    }
}

/* メインビジュアル */
.contact_wrapper {
    width: 100%;
    margin-left: auto;
}

.mv {
    position: relative;
    height: 90vh;
    background-image: url(../image/mv_contact.jpeg);
    background-size: cover;
    border-bottom-left-radius: 50px;
}

.mv_title {
    position: absolute;
    top: 50%;
    left: 25%;
    margin-left: 20px;
    transform: translate(-50%, -50%);
    color: #BB9E71;
    text-align: center;
}

.mv_title h2 {
    text-transform: capitalize;
    font-size: 72px;
}

@media screen and (max-width:768px) {
    .mv {
        margin-left: 5%;
    }

    .contact_wrapper {
        width: 100%;
        margin-left: 0;
    }

    .mv_title h2 {
        font-size: 41px;
    }
}

@media screen and (max-width:570px) {
    .mv {
        background-image: url(../image/mv_contact_sp.png);
        background-position: center;
        height: 60vh;
    }
}

/* お問い合わせフォーム */

main {
    width: 87%;
    max-width: 945px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact_info {
    margin-top: 80px;
}

.contact_info a {
    color: #BB9E71;
    text-decoration: underline;
}

.contact_info p {
    font-size: 18px;
}

.contact_info_text {
    margin-top: 25px;
    line-height: 180%;
}

.contact_form {
    margin-top: 50px;
}

.contact_form_list {
    display: flex;
    margin-top: 30px;
    align-items: flex-start;
}

.contact_form_item {
    display: flex;
    align-items: center;
}

.form_required {
    width: 100%;
    max-width: 50px;
    margin-right: 20px;
    padding: 9px 8px;
    background-color: #BB9E71;
    color: #fff;
    border-radius: 30px;
}

.contact_form p {
    width: 180px;
    padding: 10px;
    font-weight: 600;
}

.tel {
    display: none;
}

.contact_form_tel {
    margin-left: 69px;
}

.contact_form input {
    font-size: 16px;
    width: 70%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
}


textarea {
    width: 70%;
    min-width: 214px;
    height: 200px;
    overflow: auto;
    background-color: #fff;
    border: 1px solid #ccc;
}



/* 全体のスタイル */


.consent-area {
    margin: 0 auto;

    font-size: 14px;
    width: 70%;
}

.custom-checkbox {
    font-size: 20px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* チェックボックス本体は非表示 */
.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

/* チェックマークの外枠 */
.custom-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #BB9E71;
    border-radius: 4px;
    position: relative;
    transition: background-color 0.2s;
}

/* チェックされたときの見た目 */
.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: #BB9E71;
}

/* チェックマークの中身（✓） */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
    width: 500px;
}

/* チェックされたら✓を表示 */
.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
    opacity: 1;
}

/* 必須の赤文字 */
.checkbox-required {
    color: red;
}


/* プライバシーポリシーリンク */
.consent-area a {
    display: inline-block;
    margin-top: 6px;
    color: #BB9E71;
    text-decoration: underline;
}

.privacy__policy-link {
    font-size: 15px;
    margin-top: 16px;
}

.submit_btnarea {
    text-align: center;
    margin-top: 30px;
}

.submit__button {
    background-color: #BB9E71;
    /* メインカラー */
    color: white;
    /* 文字色 */
    border: none;
    /* 枠線なし */
    padding: 12px 70px;
    /* 内側余白 */
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    /* 角丸 */
    cursor: pointer;
    /* ポインター */
    transition: background-color 0.3s;
    ;
}

.submit__button:hover {
    background-color: #fff;
    color: #BB9E71;
    border: 1px solid #BB9E71;
}

.submit__button:active {
    transform: scale(0.98);
    /* クリック時に少し小さく */
}

@media screen and (max-width:768px) {
    .contact_info {
        margin-top: 40px;
    }

    .contact_form_list {
        flex-direction: column;
    }

    .contact_form input {
        margin-top: 15px;
    }

    textarea {
        width: 100%;
        min-width: 200px;
        margin-top: 15px;
    }
}

/* スマホテキストサイズ・空欄幅 */
@media screen and (max-width:570px) {
    .contact_info p {
        font-size: 12px;
    }

    .contact_info_text {
        font-size: 12px;
    }

    .contact_form input {
        margin-top: 0;
        padding: 2px;
    }

    .form_required {
        font-size: 12px;
        max-width: 40px;
        padding: 4px 8px;
    }

    .contact_form_list {
        font-size: 12px;
        margin-top: 14px;
    }

    .custom-checkbox {
        font-size: 12px;
        margin-top: 30px;
    }

    .privacy__policy-link {
        margin-top: 5px;
        font-size: 10px;
    }

    .submit__button {
        padding: 8px 43px;
        font-size: 12px;
    }

}

footer {
    margin-top: 90px;
}

@media (max-width: 768px) {
    .footer_inner {
        display: block;
        padding: 45px 80px 30px 80px;
        max-width: none;
        margin: 0 auto;
    }

    footer {
        margin-top: 25px;
    }
}