@charset "UTF-8";

.page_ttl p {
    padding-left: 100px;
}

.page_ttl p::before {
    content: '';
    width: 89px;
    height: 70px;
    background: url(/img/assistant/icon-page_ttl.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

.download_link {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.download_link a {
    margin: 0;
    max-width: 240px;
    padding: 15px 30px;
    background: #F58C8C;
    justify-content: space-between;
}

.download_link a:hover {
    background: #001254;
}

.traning_head {
    margin-bottom: 110px;
}

.work_body {
    position: relative;
    margin-bottom: 40px;
}

.work_body img {
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.work_cnt ul li {
    position: relative;
    padding-left: 30px;
    font-size: 20px;
}

.work_cnt ul li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/img/assistant/icon-work_list.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 9px;
}

.external_link_list {
    display: flex;
    justify-content: left;
    gap: 0 40px;
    flex-wrap: wrap;
}

.external_link_list li {
    padding: 10px;
    border-bottom: solid 1px #D8D8D8;
    width: 48%;
}

.external_link_list li:nth-child(1),
.external_link_list li:nth-child(2) {
    border-top: solid 1px #D8D8D8;
}

.external_link_list li a {
    width: fit-content;
    position: relative;
    padding-left: 20px;
    color: #00C1C1;
    text-decoration: underline;
}

.external_link_list li a:hover {
    text-decoration: none;
}

.content .inner {
    max-width: 960px;
}

.content_cnt.flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

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

    .page_ttl p::before {
        width: 49px;
        height: 40px;
    }

    .page_ttl p {
        padding-left: 60px;
    }

    .sec_ttl {
        margin-bottom: 20px;
    }
    
    .work_cnt ul li {
        font-size: 16px;
    }

    .work_body {
        display: flex;
        flex-flow: column;
        gap: 20px;
        align-items: center;
    }

    .work_body img {
        position: unset;
    }

    .external_link_list li {
        width: 100%;
    }

    .external_link_list li:nth-child(2) {
        border-top: none;
    }

    .download_link {
        gap: 10px;
    }

    .content_cnt.flex {
        flex-flow: column;
    }

    .content_cnt.flex img {
        width: 60%;
        height: auto;
    }
}