@charset "UTF-8";

.top-image.contact {
    background-image: url("../img/contact/top-image-pc.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (min-width: 768px) {
    .top-image.contact {
        background-image: url("../img/contact/top-image-pc.jpg");
    }
}

.top-image.thanks {
    background-image: url("../img/thanks/top-image-pc.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (min-width: 768px) {
    .top-image.thanks {
        background-image: url("../img/thanks/top-image-pc.jpg");
    }
}

.section-concept-position {
    width: 100%;
}

.section-contact {
    padding: 60px 10px;
}

.section-contact-content-text {
    font-size: 14px;
}

@media (min-width: 768px) {
    .section-contact-content-text {
        font-size: 16px;
    }
}

.section-contact-contents {
    background-color: #fff;
    padding: 30px 20px 10px;
    margin: 0 auto;
}

.section-contact-content {
    margin-bottom: 30px;
}

.section-contact-concept-title {
    color: #606060;
    font-size: 35px;
    line-height: 1.5em;
    font-family: 'Bentham', serif;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .section-contact-concept-title {
        margin-bottom: 60px;
        font-size: 50px;
    }
}

.section-contact-content-text span {
    font-size: 12px;
}

.section-contact-content-text-eng {
    font-family: 'CrimsonText-Roman';
}

.section-contact-content.contact-form {
    width: 100%;
}

@media (min-width: 768px) {
    .section-contact-content-text-eng {
        font-size: 16px;
    }

    .section-contact {
        font-size: 16px;
    }

    .section-contact-contents {
        background-color: #fff;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
        padding: 0;
    }

}

.form#mail_form {
    margin: 0 auto;
}

@media (min-width: 1200px) {

    .section-contact-contents {
        background-color: #fff;
        width: 100%;
        max-width: 529px;
        margin: 0 auto;
    }
}

input[type=checkbox] {
    display: none;
}

.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
    height: 30px;
}

.checkbox01::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    height: 16px;
    left: 0px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}

.checkbox01::after {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    content: '';
    display: block;
    height: 9px;
    left: 5px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}

input[type=checkbox]:checked+.checkbox01::after {
    opacity: 1;
}