@charset "UTF-8";



/*-------------------- 各種書類 --------------------*/


#doc_comment.section {
    padding: 10vw 0 0 0;
}


#doc_comment .section-inner {
    width: 100%;
}

.documents_text {
    padding-bottom: 5vw;
    text-align: center;
    font-weight: 700;
    color: #58280F;
}

.submission,
.submission1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
}

.submission1 {
    margin-bottom: 0;
}

strong {
    display: block;
    margin: 0 auto;
    max-width: 16em;
    white-space: normal;
    font-size: 1.25em;
    color: #58280F;
}

strong span {
    display: inline-block;
}

.dl.dl1 {
    opacity: 1;
    visibility: inherit;
}

.dl {
    position: relative;
    width: calc(100% / 2 - 1em);
    visibility: hidden;
    text-align: center;
    background: url(../images/dl.webp) no-repeat 95% / 1.5em;
    opacity: 0;
    transition: .2s ease;
}

.submission.ex.active .dl,
.doc.ex.active .dl {
    visibility: visible;
    opacity: 1;
}

.dl a {
    display: block;
    padding: .5em;
}

.dl1 {
    border: .2em #F7D061 solid;
    background-color: #F7D061;
}

.dl2 {
    border: .2em #93D2D3 solid;
    background-color: #93D2D3;
}

.dl3 {
    border: .2em #DDEEAA solid;
    background-color: #DDEEAA;
}

.dl4 {
    border: .2em #F24D2C solid;
    background: #F24D2C url(../images/dl-w.webp) no-repeat 95% / 1.5em;
}
.dl4 strong {
    color: #fff;
}


.doc {
    margin-bottom: 10em;
    text-align: center;
}

.documents_title {
    position: relative;
    display: inline-block;
    margin-bottom: 3.5em;
}

.sub-title {
    line-height: 1.5;
    font-size: 2.25em;
    font-weight: 700;
    color: #58280F;
}

.sub-deco1 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-5em);
    width: 2em;
}
.sub-deco2 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-2.5em);
    width: 1.5em;
}
.sub-deco3 {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(3em);
    width: 2.5em;
}
.sub-deco4 {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(5.5em);
    width: 2em;
}




@media screen and (min-width: 769px){

    .dl:hover {
        background-color: #fff;
    }
    .dl.dl1:hover {
        border: .2em #F7D061 solid;
    }
    .dl.dl2:hover {
        border: .2em #93D2D3 solid;
    }
    .dl.dl3:hover {
        border: .2em #DDEEAA solid;
    }
    .dl4:hover {
        background: #fff url(../images/dl.webp) no-repeat 95% / 1.5em;
    }
    .dl4:hover strong {
        color: #58280F;
    }

}



@media screen and (max-width: 768px){


    #doc_comment.section {
        max-width: 600px;
        margin: 0 auto;
        padding: 20vw 0 0 0;
    }

    .doc {
        margin-bottom: 6em;
    }


    .dl {
        width: 100%;
    }

    .sub-title {
        font-size: 1.71em;
    }

    .documents_text {
        text-align: left;
    }

    .documents_text {
        padding-bottom: 3em;
    }

    strong {
        font-size: 1em;
    }


}








