@charset "UTF-8";
.wrapper {
    padding-top: 150px;
    background-color: #fefaf7;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .wrapper {
        padding-top: 120px;
    }
}
.mv-sub__visual {
    background: url("/_common/img/contact/mv.webp") 50% 50% / cover no-repeat;
}
.contact {
    padding: 160px 5%;
}
.contact__inner {
    max-width: 880px;
    margin: 0 auto;
}
.contact h2 {
	font-size: 28px;
	letter-spacing: .05em;
}
.contact h2.mt {
    margin-top: 80px;
}
@media screen and (max-width: 767px) {
    .contact {
        padding: 60px 24px 100px;
    }
    .contact h2 {
        font-size: 20px;
    }
    .contact h2.mt {
        margin-top: 60px;
    }
}
/* -------------------------------- */
.tel {
    margin-top: 30px;
}
.tel a {
    display: block;
    padding: 45px;
    background-color: #fff;
    color: #333;
    text-align: center;
    border: 5px solid #f0ede4;
    border-radius: 10px;
}
.tel__number {
    font-size: 46px;
    letter-spacing: .1em;
}
.tel__number i {
    font-size: 36px;
}
.tel__date {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    letter-spacing: .05em;
}
@media screen and (max-width: 767px) {
    .tel {
    }
    .tel a {
        padding: 30px 0;
    }
    .tel__number {
        font-size: 26px;
    }
    .tel__number i {
        font-size: 18px;
    }
}
/* -------------------------------- */
.contact__policy {
    margin-top: 26px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    letter-spacing: .05em;
    line-height: 2;
}
.contact form {
    margin-top: 40px;
}
.contact ul {
    border-top: 1px solid #dfe2ea;
}
.contact ul li {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #dfe2ea;
}
.contact ul li label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 6px;
    width: 272px;
    min-width: 272px;
    padding: 0 40px 0 16px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
.contact ul li label .contact__text {
    letter-spacing: .05em;
}
.contact ul li label .required {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 24px;
    background-color: #e47d6e;
    color: #fff;
    font-size: 14px;
    letter-spacing: .05em;
    border-radius: 12px;
}
.contact ul li label .required.optional {
    background-color: #f9ecec;
    color: #e47d6e;
}
.contact__field {
    width: 100%;
}
.contact__field input {
    display: block;
    width: 100%;
    height: 37px;
    padding: 10px;
    background-color: #fff;
    font-size: 16px;
    border: 1px solid #dfe2ea;
    border-radius: 10px;
}
.contact__field textarea {
    display: block;
    width: 100%;
    height: 182px;
    padding: 10px;
    background-color: #fff;
    font-size: 16px;
    border: 1px solid #dfe2ea;
    border-radius: 10px;
}
input::placeholder, textarea::placeholder {
    color: #6A6A6A;
    font-size: 16px;
}
input:focus::placeholder, textarea:focus::placeholder {
    color: #aaa;
}
.contact form .recaptcha {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
}
.contact form button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 70px;
    margin: 40px auto 0;
    background-color: #e47d6e;
    color: #fff;
    letter-spacing: .05em;
    text-align: center;
    border-radius: 35px;
    transition: .3s;
}
.contact form button::after {
	position: absolute;
	content: '\f061';
	top: 50%;
	right: 25px;
	transform: translate(0,-50%);
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
}
.contact form button:hover {
	opacity: .5;
    transition: .3s;
}
.contact__caution {
    margin-top: 80px;
    padding: 25px;
    background-color: #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    letter-spacing: .05em;
    line-height: 2;
    border: 2px solid #f0ede4;
    border-radius: 20px;
}
@media screen and (max-width: 767px) {
    .contact form {
        margin-top: 20px;
    }
    .contact ul li {
        flex-direction: column;
    }
    .contact ul li label {
        justify-content: flex-start;
        width: 100%;
        min-width: initial;
        padding: 0 0 10px;
    }
    .contact form .recaptcha {
        margin: 20px auto 0;
    }
    .contact form button {
        max-width: 100%;
        height: 60px;
        margin: 20px auto 0;
    }
    .contact__caution {
        margin-top: 40px;
    }
}