@charset "UTF-8";
.wrapper {
    background-color: #F2F6FD;
}
.contact {
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}
.contact__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
@media screen and (max-width: 767px) {
    .contact {
        padding: 30px 5% 50px;
    }
    .contact__inner {
        padding: 0;
    }
}
.contact__visual {
    position: relative;
    padding: 0 50px 50px;
    border: 10px solid #fff;
}
.contact__visual h3 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    background-color: #F2F6FD;
    color: #024b9e;
    font-size: 45px;
    font-weight: 700;
    white-space: nowrap;
}
.contact__visual h3 span {
    width: 38px;
    min-width: 38px;
}
.contact__visual-inner {
    max-width: 836px;
    margin: 0 auto;
}
.contact__visual-text1 {
    margin-top: 50px;
    font-size: 20px;
    text-align: center;
}
.contact__visual-text2 {
    margin-top: 50px;
    font-size: 20px;
    line-height: 1.8;
}
.contact__visual a {
    display: block;
    margin-top: 33px;
    padding-top: 33px;
    border-top: 4px dotted #fff;
}
@media screen and (max-width: 767px) {
    .contact__visual {
        padding: 0 20px 20px;
    }
    .contact__visual h3 {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,-50%);
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 20px;
        background-color: #F2F6FD;
        color: #024b9e;
        font-size: 20px;
        font-weight: 700;
        white-space: nowrap;
    }
    .contact__visual h3 span {
        width: 18px;
        min-width: 18px;
    }
    .contact__visual-inner {
        max-width: 836px;
        margin: 0 auto;
    }
    .contact__visual-text1 {
        margin-top: 30px;
        font-size: 16px;
        text-align: center;
    }
    .contact__visual-text2 {
        margin-top: 20px;
        font-size: 16px;
    }
    .contact__visual a {
        display: block;
        margin-top: 33px;
        padding-top: 33px;
        border-top: 4px dotted #fff;
    }
}
/* -------------------------------- */
.contact__area {
    position: relative;
    margin-top: 80px;
    padding: 60px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2;
}
.contact__title {
    max-width: 696px;
    margin: 0 auto;
}
.contact__caution-text {
    margin-top: 6px;
    line-height: 1.8;
    text-align: center;
}
.contact form {
    max-width: 920px;
    margin: 0 auto;
    margin-top: 50px;
}
.contact form ul {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.5);
}
.contact form ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.contact form ul li > label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}
.contact form ul li > label .contact__text {
}
.contact ul li > label .optional {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 20px;
    background-color: #DBDBDB;
    color: #6A6A6A;
    font-size: 12px;
    letter-spacing: .07em;
    border-radius: 10px;
}
.contact form ul li > label .required {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 26px;
    background-color: #e65f27;
    color: #fff;
    font-size: 12px;
    letter-spacing: .07em;
    border-radius: 5px;
}
.contact__field {
    flex: 1;
}
.contact__field input[type="tel"] ,
.contact__field input[type="email"] ,
.contact__field input[type="text"] {
    display: block;
    width: 100%;
    height: 64px;
    margin-top: 12px;
    padding: 22px;
    background-color: #f3f3f3;
    font-size: 19px;
    border-radius: 12px;
}
.contact__field textarea {
    display: block;
    width: 100%;
    height: 288px;
    margin-top: 12px;
    padding: 22px;
    background-color: #f3f3f3;
    font-size: 19px;
    border-radius: 12px;
}
input::placeholder, textarea::placeholder {
    color: #777;
    font-size: 16px;
}
input:focus::placeholder, textarea:focus::placeholder {
    color: #ddd;
}
.contact ul li .radio {
    display: flex;
    align-items: center;
    gap: 55px;
    margin-top: 20px;
}
.contact ul li .radio.mt0 {
    margin-top: 0;
}
.contact ul li .radio input {
    display: none;
}
.contact ul li .radio label {
    position: relative;
    padding-left: 45px;
    font-size: 20px;
    cursor: pointer;
}
.contact ul li .radio label::before,
.contact ul li .radio label::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.contact ul li .radio label::before {
    left: 0;
    width: 28px;
    height: 28px;
    border: 1px solid #777;
    border-radius: 6px;
}
.contact ul li .radio input:checked + label::before {
    background-color: #024b9e;
    border-color: #024b9e;
}
.contact ul li .radio input:checked + label::after {
    content: "\f00c";
    left: 8px;
    color: #fff;
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.contact ul li .select {
    position: relative;
    margin-top: 12px;
    background: linear-gradient(#f7f7f7,#ddd);
    border: 1px solid #dddddd;
    border-radius: 8px;
    overflow: hidden;
}
.contact ul li .select::after {
    position: absolute;
    content: "\f0d7";
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    background: linear-gradient(#6d6c6c,#343434);
    color: #fff;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.contact ul li .select select {
    display: block;
    width: 100%;
    height: 51px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
}
.other_os {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 839px;
    margin: 0 auto;
}
.other_os input {
    margin-top: 0!important;
}
.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: 335px;
    height: 98px;
    margin: 40px auto 0;
    background-color: #024b9e;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .08em;
    text-align: center;
    border-radius: 135px;
    transition: .3s;
}
.contact form button:hover {
	opacity: .5;
    transition: .3s;
}
.contact form button img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%);
    width: 20px;
}
.contact__caution {
    max-width: 920px;
    margin: 50px auto 0;
}
.contact__caution .ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 33px;
    background-color: #F2F6FD;
    border-radius: 12px;
}
.contact__caution dl {
    display: flex;
    flex-direction: column;
    margin-top: 9px;
}
.contact__caution dl dd {
    position: relative;
    padding-left: 20px;
    line-height: 1.8;
}
.contact__caution dl dd::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
    color: #21a5a6;
    font-size: 16px;
}
@media screen and (max-width: 767px) {
    .contact__area {
        position: relative;
        margin-top: 30px;
        padding: 16px;
    }
    .contact__title {
    }
    .contact__caution-text {
        margin-top: 6px;
        line-height: 1.8;
        text-align: center;
    }
    .contact form {
        max-width: 920px;
        margin: 0 auto;
        margin-top: 30px;
    }
    .contact form ul {
        display: flex;
        flex-direction: column;
        max-width: 900px;
        margin: 0 auto;
        border-top: 1px solid rgba(255,255,255,0.5);
    }
    .contact form ul li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.5);
    }
    .contact form ul li > label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
    }
    .contact form ul li > label .contact__text {
    }
    .contact ul li > label .optional {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 20px;
        background-color: #DBDBDB;
        color: #6A6A6A;
        font-size: 12px;
        letter-spacing: .07em;
        border-radius: 10px;
    }
    .contact form ul li > label .required {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 26px;
        background-color: #e65f27;
        color: #fff;
        font-size: 12px;
        letter-spacing: .07em;
        border-radius: 5px;
    }
    .contact__field {
        flex: 1;
    }
    .contact__field input[type="tel"] ,
    .contact__field input[type="email"] ,
    .contact__field input[type="text"] {
        display: block;
        width: 100%;
        height: 64px;
        margin-top: 12px;
        padding: 16px;
        background-color: #f3f3f3;
        font-size: 16px;
        border-radius: 12px;
    }
    .contact__field textarea {
        display: block;
        width: 100%;
        height: 288px;
        margin-top: 12px;
        padding: 22px;
        background-color: #f3f3f3;
        font-size: 19px;
        border-radius: 12px;
    }
    input::placeholder, textarea::placeholder {
        color: #777;
        font-size: 16px;
    }
    input:focus::placeholder, textarea:focus::placeholder {
        color: #ddd;
    }
    .contact ul li .radio {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    .contact ul li .radio.mt0 {
        margin-top: 0;
    }
    .contact ul li .radio input {
        display: none;
    }
    .contact ul li .radio label {
        position: relative;
        padding-left: 45px;
        font-size: 16px;
        cursor: pointer;
    }
    .contact ul li .radio label::before,
    .contact ul li .radio label::after {
        position: absolute;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
    }
    .contact ul li .radio label::before {
        left: 0;
        width: 28px;
        height: 28px;
        border: 1px solid #777;
        border-radius: 6px;
    }
    .contact ul li .radio input:checked + label::before {
        background-color: #024b9e;
        border-color: #024b9e;
    }
    .contact ul li .radio input:checked + label::after {
        content: "\f00c";
        left: 8px;
        color: #fff;
        font-size: 14px;
        font-family: "Font Awesome 5 Free";
        font-weight: bold;
    }
    .contact ul li .select {
        position: relative;
        margin-top: 12px;
        background: linear-gradient(#f7f7f7,#ddd);
        border: 1px solid #dddddd;
        border-radius: 8px;
        overflow: hidden;
    }
    .contact ul li .select::after {
        position: absolute;
        content: "\f0d7";
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 100%;
        background: linear-gradient(#6d6c6c,#343434);
        color: #fff;
        font-size: 16px;
        font-family: "Font Awesome 5 Free";
        font-weight: bold;
    }
    .contact ul li .select select {
        display: block;
        width: 100%;
        height: 51px;
        padding: 0 20px;
        font-size: 16px;
        font-weight: 600;
    }
    .other_os {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 839px;
        margin: 0 auto;
    }
    .other_os input {
        margin-top: 0!important;
    }
    .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: 335px;
        height: 98px;
        margin: 40px auto 0;
        background-color: #024b9e;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        letter-spacing: .08em;
        text-align: center;
        border-radius: 135px;
        transition: .3s;
    }
    .contact form button:hover {
        opacity: .5;
        transition: .3s;
    }
    .contact form button img {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0,-50%);
        width: 20px;
    }
    .contact__caution {
        max-width: 920px;
        margin: 50px auto 0;
    }
    .contact__caution .ttl {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 33px;
        background-color: #F2F6FD;
        border-radius: 12px;
    }
    .contact__caution dl {
        display: flex;
        flex-direction: column;
        margin-top: 9px;
    }
    .contact__caution dl dd {
        position: relative;
        padding-left: 20px;
        line-height: 1.8;
    }
    .contact__caution dl dd::after {
        position: absolute;
        top: 0;
        left: 0;
        content: "・";
        color: #21a5a6;
        font-size: 16px;
    }

}