@charset "UTF-8";

#face {
    background: #ccd6e0;
    height: 100vh;
    background-image: url(../privacy/img/top_img.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.face_content {
    margin-left: 25vw;
    padding: 20px;
    width: calc(100% - 25vw);
    position: relative;
}

.face_content .face_txt {
    position: absolute;
    left: 30px;
    bottom: 30px;
    line-height: 2;
}

@media all and (max-width: 1200px) {
    #face {
        min-height: auto;
        height: calc(100vh - 80px);
    }
    
    .face_content {
        margin-left: 0vw;
        padding: 20px;
        width: 100%;
    }
    
}

@media all and (max-width: 767px) {
    #face {
        height: calc(100vh - 50px);
        max-height: 400px;
    }

    .face_content .face_txt {
        left: 0px;
        bottom: 0px;
        line-height: 2;
        font-size: 13px;
        text-align: justify;
        margin: 0 20px 20px;
    }
}

/*------------------------
main
------------------------*/
.h2_common span {
    font-size: 40px;
}

.greeting_wrap {
    display: flex;
    justify-content: center;
}

.greeting_wrap .txt {
    width: 80%;
    line-height: 2;
    text-align: justify;
}

@media all and (max-width: 767px) {
    .h2_common span {
        font-size: 24px;
    }

    .greeting_wrap {
        flex-wrap: wrap;
    }

    .greeting_wrap .txt {
        width: 100%;
        margin-right: 0px;
        font-size: 14px;
    }
}

.privacy_wrap {
    background-color: white;
    width: 80%;
    margin: 3vw auto 0;
    padding: 3em;
}

.privacy_wrap .mt1em {margin-top: 1em}
.privacy_wrap .mt2em {margin-top: 2em}
.privacy_wrap .mb05em {margin-bottom: 0.5em}
.privacy_wrap .mb1em {margin-bottom: 1em}
.privacy_wrap .mb2em {margin-bottom: 2em}

.privacy_box h3 {
    display: flex;
    line-height: 1;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    gap: 0.5em;
    margin-bottom: 1em;
}

.privacy_box h3 span:nth-child(1) {
    font-size: 150%;
    color: #005371;
}

.txt_box .txt {
    line-height: 2;
}

.txt_box h4 {
    font-weight: bold;
    display: flex;
}

.txt_box h4 span:nth-child(1) {
    margin-right: 0.5em;
}

.txt_box h4 span:nth-child(2) {
    flex: 1;
}

.dot_list li {
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.dot_list li:before {
    content: "●";
    margin-right: 0.2em;
    color: #ccd6e0;
}

.dot_list li:not(:last-child) {
    margin-bottom: 0.5em;
}

.madoguchi {
    border: 1px solid #005371;
    padding: 2em;
}

.madoguchi p {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.madoguchi dl {
    display: flex;
    font-size: 90%;
}

.madoguchi dl:not(:last-of-type) {
    margin-bottom: 0.5em;
}

.madoguchi dl dt {
    width: 8em;
}

.madoguchi dl dd {
    flex: 1;
}

@media all and (max-width: 767px) {
    .privacy_wrap {
        width: 100%;
        margin: 5vw auto 0;
        padding: 1em;
        font-size: 13px;
    }

    .privacy_box h3 {
        font-size: 15px;
    }

    .privacy_box h3 span:nth-child(1) {
        font-size: 130%;
    }

    .madoguchi {
        padding: 1em;
    }

    .madoguchi p {
        font-weight: bold;
        margin-bottom: 0.5em;
    }

    .madoguchi dl {
        flex-wrap: wrap;
    }

    .madoguchi dl dt {
        width: 100%;
    }
}