@charset "utf-8";


/* home_kv
--------------------------------------------------------------------*/
#home_kv{
    background-image: url(/csr/ir/online/2023/img/home_kv_pc.jpg);
    background-size: cover;
    width: 100%;
    height: 360px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 1px 16px rgba(0, 0, 0, 0.1);
}
#home_kv .wrapper{
    padding: 120px 70px 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#home_kv .left h1{
    width: 400px;
}

#home_kv .right {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 25px 30px;
    border: 1px solid #b5c1d3;
}
#home_kv .right h2{
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 20px;
    color: var(--main_color);
}
/* #home_kv .right h2::after{
    content: "";
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background-color: var(--main_color);
} */
#home_kv .right .list{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 20px;
}
#home_kv .right .list li{
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}
#home_kv .right .list li::before{
    content: "";
    display: block;
    width: 24px;
    height: 4px;
    border-radius: 20px;
    flex-shrink: 0;
}
#home_kv .right .list li:first-child:before{
    background-color: #00a0e9;
}
#home_kv .right .list li:nth-child(2):before{
    background-color: #e85298;
}
#home_kv .right .list li:last-child:before{
    background-color: #b8d200;
}

#home_kv .right .list a{
    font-size: 1.4rem;
    line-height: 1;
}

#home_kv .right .list a:hover{
    text-decoration: underline;
}


@media screen and (max-width: 768px) {
    #home_kv{
        background-image: url(/csr/ir/online/2023/img/home_kv_sp.jpg);
        height: auto;
    }
    #home_kv .wrapper{
        padding: 58px 15px 25px;
        flex-direction: column;
        align-items: unset;
        gap: 25px;
    }
    #home_kv .left h1{
        width: 238px;
    }
    #home_kv .right {
        margin: auto;
        padding: 30px 20px 25px;
    }
    #home_kv .right h2{
        font-size: 1.8rem;
        gap: 10px;
        margin-bottom: 20px;
    }
    /* #home_kv .right h2::after{
        width: 22px;
        height: 2px;
    } */
    #home_kv .right .list li::before{
        width: 16px;
        height: 2px;
    }
    #home_kv .right .list a{
        font-size: 1.3rem;
    }
}



/* home_container,home_inner
--------------------------------------------------------------------*/
.home_container{
    padding: 90px 0;
}

.home_inner{
    width: calc(100% - 20px);
    max-width: 1000px;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .home_container{
        padding: 40px 0;
    }

}


/* home_head
--------------------------------------------------------------------*/
.home_head{
    margin-bottom: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 30px;
     font-weight: 700;
     font-size: 3.8rem;
     position: relative;
     line-height: 1;
     color:var(--main_color);
}
.home_head::before{
    content: "";
    display: block;
    width: 50px;
    height: 8px;
    border-radius: 20px;
}

#section01 .home_head::before{
    background-color: #00a0e9;
}
#section02 .home_head::before{
    background-color: #e85298;
}
#section03 .home_head::before{
    background-color: #7b59a3;
}
#section04 .home_head::before{
    background-color: #b8d200;
}
#section05 .home_head::before{
    background-color: #f8b500;
}
#section06 .home_head::before{
    background-color: #9fa0a0;
}


@media screen and (max-width: 768px) {
    .home_head{
        margin-bottom: 20px;
        font-size: 2.4rem;
        gap: 10px;
    }
    .home_head::before{
        width: 25px;
        height: 4px;
    }

}


/* .ar2023_top header
--------------------------------------------------------------------*/


.ar2023_top header .link.current{
    background-color: var(--main_color);
}

/* .home_anchor_adjust
--------------------------------------------------------------------*/
.home_anchor_adjust {
    position: relative;
    top: -100px;
}

@media screen and (max-width: 768px) {
    .home_anchor_adjust {
        position: relative;
        top: -50px;
    }

}


/* home_link
--------------------------------------------------------------------*/
.home_link_area{
    margin: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#section04 .home_link_area{
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
}
.home_link_area .link{
    font-size: 1.8rem;
    font-weight: bold;
    height: 55px;
    line-height: 55px;
    text-align: center;
    padding: 0 10px;
    width: calc(50% - 10px);
    background-color: #fff;
    color: var(--main_color);
    border-radius: 30px;
    border: 1px solid var(--main_color);
}

.home_link_area .link.lg{
    width: 100%;
}

.home_link_area .link:hover{
    color: #fff;
    background-color: var(--main_color);
}


@media screen and (max-width: 768px) {
    .home_link_area .link.free{
        width: auto;
        min-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 520px) {

    .home_link_area{
        margin: 0;
        gap: 8px;
    }
    .home_link_area .link{
        font-size: 1.3rem;
        height: 32px;
        line-height: 32px;
        width: calc(50% - 4px);
        padding: 0 5px;
    }
    .home_link_area .link.txt_s{
        font-size: 1.1rem;
        letter-spacing: 0.001em;
    }

    #section04 .home_link_area.under .link.free{
        font-size: 1.1rem;
        padding: 0 10px;
    }

}


/* visual
--------------------------------------------------------------------*/

.visual{
    position: relative;
    padding-top: 32px;
    margin-bottom: 30px;
    display: block;
}

.visual .thumb{
    position: relative;
    width: 75.6%;
    display: block;
    margin-right: auto;
}
.visual.rvs .thumb{
    margin-right: unset;
    margin-left: auto;
}

.visual .txt_area{
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    z-index: 2;
}
.visual.rvs .txt_area{
    right: unset;
    left: 0;
}
#section01 .visual .txt_area{
    background: linear-gradient(60deg, rgba(199,232,250,1) 0%, rgba(199,232,250,1) 24%, rgba(111,194,165,1) 100%);
}
#section02 .visual .txt_area{
    background: linear-gradient(60deg, rgba(250,244,199,1) 0%, rgba(252,126,179,1) 100%);
}
#section04 .visual .txt_area{
    background: linear-gradient(60deg, rgba(199,236,250,1) 0%, rgba(221,244,62,1) 100%);
}

.visual h3{
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 20px;
}
#section01 .visual h3{
    font-size: 3rem;
}
.visual .copy{
    font-size: 1.4rem;
    line-height: 1.6;
}
#section04 .visual .copy{
    margin-left: -2.1em;
}
.visual .btn_arrow{
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 58px;
    height: 58px;
    border: 1px solid var(--main_color);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.visual.rvs .btn_arrow{
    right: unset;
    left: 40px;
}
.visual .btn_arrow::before{
    content:"";
    display: block;
    background-image: url(/csr/ir/online/2023/img/btn_arrow.png);
    background-size: contain;
    width: 23px;
    height: 17px;
}


@media (hover: hover) {
    .visual:hover .btn_arrow{
        background-color: var(--main_color);
    }
    .visual:hover .btn_arrow::before{
        background-image: url(/csr/ir/online/2023/img/btn_arrow_w.png);
    }
}
@media screen and (max-width: 768px) {

    .visual{
        padding-top: 20px;
        margin:  0 -10px 20px;
    }
    .visual .thumb{
        width: 100%;
    }
    .visual .txt_area{
        right: 10px;
    }
    .visual.rvs .txt_area{
        right: unset;
        left: 10px;
    }
    .visual .btn_arrow{
        right: 0;
    }
    .visual.rvs .btn_arrow{
        right: unset;
        left: 0;
    }

}


@media screen and (max-width: 667px) {
    .visual .txt_area{
        width: 165px;
        height: 165px;
    }
    #section01 .visual .txt_area{
        width: 160px;
        height: 160px;
    }
    .visual h3{
        font-size: 1.6rem;
        margin: 0;
    }
    #section01 .visual h3{
        font-size: 2rem;
    }
    .visual .copy{
        display: none;
    }
    .visual .btn_arrow{
        width: 32px;
        height: 32px;
    }
    .visual .btn_arrow::before{
        width: 14px;
        height: 10px;
    }
}


/* section01
--------------------------------------------------------------------*/

#section01{
    background-color: #f2fafe;
}

#section01 .content{
    position: relative;
}
#section01 .home_head{
    margin-bottom: 25px;
}

#section01 .home_link_area{
    margin-bottom: 50px;
}

#section01 .bf_link_area .l_link{
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    height: 180px;
    margin-bottom: 20px;
}


#section01 .bf_link_area .l_link .img_area{
    background-color: #f0f3f8;
    width: 320px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
#section01 .bf_link_area .l_link .img_area img{
    width: 225px;
}
#section01 .bf_link_area .l_link .txt_area{
    background-color: #fff;
    padding: 30px;
    flex: auto;
}
#section01 .bf_link_area .l_link .txt_area h3{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
}
#section01 .bf_link_area .l_link .txt_area h3::after{
    content: "";
    background-color: #00a0e9;
    display: block;
    width: 43px;
    height: 3px;
    border-radius: 20px;
    margin-top: 10px;
}
#section01 .bf_link_area .l_link .txt_area p{
    font-size: 1.4rem;
    line-height: 1.6;
}

#section01 .bf_bottom {
    display: flex;
    gap: 20px;
}

#section01 .bf_bottom .link {
    width: calc((100% - 40px)/3);
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    height: 90px;
}

#section01 .bf_bottom .link img{
    display: block;
    font-size: 0;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    object-fit: cover;
}
#section01 .bf_bottom .link .txt_area {
    background-color: #fff;
    padding: 20px;
    flex: auto;
    display: flex;
    align-items: center;
}
#section01 .bf_bottom .link .txt_area h3{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
}


@media (hover: hover) {
    #section01 .bf_link_area .l_link:hover{
        outline:4px solid #0288c7;
    }
    #section01 .bf_bottom .link:hover{
        outline:4px solid #0288c7;
    }
}

@media screen and (max-width: 920px) {
    #section01 .tab_hidden{
        display: none;
    }
    #section01 .bf_bottom .link .txt_area h3{
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {

    #section01 .home_head{
        margin-bottom: 20px;
    }

    #section01 .bf_bottom {
        width: 300px;
        margin: auto;
        flex-direction: column;
    }
    
    #section01 .bf_bottom .link {
        width: 100%;
        height: 80px;
    }
    
    #section01 .bf_bottom .link img{
        width: 85px;
        height: 80px;
    }
    #section01 .bf_bottom .link .txt_area {
        padding: 15px;
    }


    #section01 .bf_link_area .l_link{
        height: auto;
        flex-direction: column;
        max-width: 490px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #section01 .bf_link_area .l_link .img_area{
        background-color: #f0f3f8;
        width: 100%;
        height: 120px;
    }
    #section01 .bf_link_area .l_link .img_area img{
        width: 145px;
    }
    #section01 .bf_link_area .l_link .txt_area{
        padding: 15px;
    }
    #section01 .bf_link_area .l_link .txt_area h3{
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    #section01 .bf_link_area .l_link .txt_area h3::after{
        margin-top: 10px;
    }
    #section01 .bf_link_area .l_link .txt_area p{
        font-size: 1.2rem;
        line-height: 1.75;
    }

}


@media screen and (max-width: 520px) {
    #section01 .home_link_area{
        margin-bottom: 25px;
    }
    #section01 .bf_link_area .l_link .txt_area h3::after{
        height: 2px;
        width: 21px;
    }
}


/* section02
--------------------------------------------------------------------*/

#section02 .content{
    position: relative;
}


#section02 .vc_link_area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

#section02 .vc_link_area .link {
    width: 490px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    height: 150px;
}


#section02 .vc_link_area .link .img_area{
    background-color: #fff6e9;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
#section02 .vc_link_area .link .img_area img{
    width: 100%;
}

#section02 .vc_link_area .link .txt_area{
    background-color: #fffff2;
    padding: 20px;
    flex: auto;
}
#section02 .vc_link_area .link .txt_area h3{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
}
#section02 .vc_link_area .link .txt_area h3::after{
    content: "";
    background-color: #e85298;
    display: block;
    width: 43px;
    height: 3px;
    border-radius: 20px;
    margin-top: 10px;
}
#section02 .vc_link_area .link .txt_area p{
    font-size: 1.4rem;
    line-height: 1.5;
}

@media (hover: hover) {
    #section02 .vc_link_area .link:hover{
        outline:4px solid #e85298;
    }
}

@media screen and (max-width: 520px) {

    #section02 .vc_link_area {
        gap: 25px;
        margin-bottom: 25px;
    }
    #section02 .vc_link_area .link {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    
    #section02 .vc_link_area .link .img_area{
        background-color: #fff6e9;
        width: 100%;
        height: 120px;
    }
    #section02 .vc_link_area .link .img_area img{
        width: auto;
        height: 120px;
    }
    
    #section02 .vc_link_area .link .txt_area{
        padding: 15px;
    }
    #section02 .vc_link_area .link .txt_area h3{
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    #section02 .vc_link_area .link .txt_area h3::after{
        height: 2px;
        width: 21px;
    }
    #section02 .vc_link_area .link .txt_area p{
        font-size: 1.2rem;
        line-height: 1.75;
    }

}


/* section03
--------------------------------------------------------------------*/

#section03{
    background-color: #f6f2fb;
}

#section03 .list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#section03 .list.top {
    margin-bottom: 65px;
}
#section03 .list.top .item{
    width: calc((100% - 20px)/2);
}
#section03 .list.under .item{
    width: calc((100% - 40px)/3);
}

#section03 .list .link{
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    transition: ease .3s;
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.09);
    display: block;
    position: relative;
}


#section03 .img_area{
    overflow: hidden;
}
#section03 .img_area img{
    transition: ease .3s;
}
#section03 .link:hover .img_area img{
    transform: scale(1.12);
}

#section03 .txt_area{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(42,80,136,1) 0%, rgba(42,80,136,0) 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 87px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 15px;
    transition: ease .3s;
    font-weight: bold;
}

#section03 .list.top .txt_area{
    font-size: 1.8rem;
}
#section03 .list.under .txt_area{
    font-size: 1.6rem;
    padding-bottom: 20px;
}

#section03 .item:first-child .txt_area{
    line-height: 1.2;
}


@media screen and (max-width: 768px) {

    #section03 .list_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #section03 .list{
        width: 510px;
        max-width: 100%;
    }
    #section03 .list.top {
        margin-bottom: 20px;
    }

    #section03 .list.top .item,
    #section03 .list.under .item{
        width: 100%;
        max-width: 245px;
    }

    #section03 .txt_area{
        min-height: 44px;
        padding:10px 5px;
    }
    
    #section03 .list.top .txt_area{
        font-size: 1.3rem;
    }
    #section03 .list.under .txt_area{
        font-size: 1.3rem;
        padding:10px 5px;
    }

}

@media screen and (max-width: 520px) {
    #section03 .list{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    #section03 .list.top {
        margin-bottom: 15px;
    }

}


/* section04
--------------------------------------------------------------------*/


#section04 .home_head{
    margin-bottom: 25px;
}

#section04 .sb_link_area{
    margin-bottom: 50px;
}

#section04 .sb_link_area .l_link{
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    height: 180px;
    margin-bottom: 20px;
}


#section04 .sb_link_area .l_link .img_area{
    background-color: #e6f6d2;
    width: 320px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#section04 .sb_link_area .l_link .img_area img{
}
#section04 .sb_link_area .l_link .txt_area{
    background-color: #f3fce9;
    padding: 30px;
    flex: auto;
}
#section04 .sb_link_area .l_link .txt_area h3{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
}
#section04 .sb_link_area .l_link .txt_area h3::after{
    content: "";
    background-color: #b8d200;
    display: block;
    width: 43px;
    height: 3px;
    border-radius: 20px;
    margin-top: 10px;
}
#section04 .sb_link_area .l_link .txt_area p{
    font-size: 1.4rem;
    line-height: 1.6;
}

#section04 .sb_bottom {
    display: flex;
    gap: 20px;
}

#section04 .sb_bottom .link {
    width: calc((100% - 40px)/3);
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    height: 90px;
}


#section04 .sb_bottom .link img{
    display: block;
    font-size: 0;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    object-fit: cover;
}
#section04 .sb_bottom .link .txt_area {
    background-color: #f3fce9;
    padding: 20px;
    flex: auto;
    display: flex;
    align-items: center;
}
#section04 .sb_bottom .link .txt_area h3{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
}

#section04 .home_link_area.top{
    margin-bottom: 50px;
}
#section04 .home_link_area.under{
    margin-top: 40px;
}

@media (hover: hover) {
    #section04 .sb_link_area .l_link:hover{
        outline:4px solid #b8d200;
    }
    #section04 .sb_bottom .link:hover{
        outline:4px solid #b8d200;
    }
}

@media screen and (max-width: 920px) {
    #section04 .tab_hidden{
        display: none;
    }
    #section04 .sb_bottom .link .txt_area h3{
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {

    #section04 .home_head{
        margin-bottom: 20px;
    }

    #section04 .sb_link_area{
        margin-bottom: 25px;
    }

    #section04 .sb_bottom {
        width: 300px;
        margin: auto;
        flex-direction: column;
    }
    
    #section04 .sb_bottom .link {
        width: 100%;
        height: 80px;
    }
    
    #section04 .sb_bottom .link img{
        width: 85px;
        height: 80px;
    }
    #section04 .sb_bottom .link .txt_area {
        padding: 15px;
    }

    #section04 .home_link_area.top{
        margin-bottom: 25px;
    }
    #section04 .home_link_area.under{
        margin-top: 25px;
    }


    #section04 .sb_link_area .l_link{
        height: auto;
        flex-direction: column;
        max-width: 490px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #section04 .sb_link_area .l_link .img_area{
        width: 100%;
        height: 120px;
    }
    #section04 .sb_link_area .l_link .img_area img{
        width: auto;
        height: 120px;
    }
    #section04 .sb_link_area .l_link .txt_area{
        padding: 15px;
    }
    #section04 .sb_link_area .l_link .txt_area h3{
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    #section04 .sb_link_area .l_link .txt_area h3::after{
        margin-top: 10px;
    }
    #section04 .sb_link_area .l_link .txt_area p{
        font-size: 1.2rem;
        line-height: 1.75;
    }
}


@media screen and (max-width: 520px) {
    #section04 .sb_link_area .l_link .txt_area h3::after{
        height: 2px;
        width: 21px;
    }


}


/* section05
--------------------------------------------------------------------*/

#section05{
    background-color: #fff9e8;
}

#section05 .list.top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}
#section05 .list.top .item{
    width: calc((100% - 20px)/2);
    
}

#section05 .list.top .link{
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    transition: ease .3s;
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.09);
    display: block;
    position: relative;
}


#section05 .list.top .img_area{
    overflow: hidden;
}
#section05 .list.top .img_area img,
#section05 .od_list .img_area img{
    transition: ease .3s;
}
#section05 .list.top .link:hover .img_area img,
#section05 .od_list .link:hover .img_area img{
    transform: scale(1.12);
}

#section05 .list.top .txt_area{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(42,80,136,1) 0%, rgba(42,80,136,0) 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 87px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 15px;
    transition: ease .3s;
    font-size: 1.8rem;
    font-weight: bold;
}



#section05 .od_content .head_area{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}
#section05 .od_content .head_area h3{
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    width: 100%;
    text-align: center;
}
#section05 .od_content .head_area .bg_txt{
    font-size: 140px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    font-family: "Roboto", sans-serif;
}

#section05 .od_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}
#section05 .od_list .item{
    width: calc((100% - 60px)/4);
}

#section05 .od_list .link{
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    transition: ease .3s;
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.09);
    display: block;
    position: relative;
}

#section05 .od_list .img_area{
    overflow: hidden;
}

#section05 .od_list .txt_area{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(42,80,136,1) 0%, rgba(42,80,136,0) 100%);
    color: #fff;
    line-height: 1;
    min-height: 87px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 15px;
    transition: ease .3s;
    font-size: 2rem;
    font-weight: 600;
}


@media screen and (max-width: 768px) {

    #section05 .list_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #section05 .list{
        width: 510px;
        max-width: 100%;
    }


    #section05 .list.top .item{
        width: 100%;
        max-width: 245px;
    }
    
    #section05 .list.top .txt_area{
        font-size: 1.3rem;
        min-height: 44px;
        padding:10px 5px;
    }

    #section05 .od_content .head_area h3{
        font-size: 18px;
    }
    #section05 .od_content .head_area .bg_txt{
        font-size: 70px;
    }
    #section05 .od_list {
        gap: 15px;
        margin-bottom: 20px;
        justify-content: center;
    }
    #section05 .od_list .item{
        width: calc((100% - 15px)/2);
        max-width: 245px;
    }
    #section05 .od_list .txt_area{
        font-size: 1.3rem;
        min-height: 44px;
        padding: 10px 5px;
    }
}

@media screen and (max-width: 520px) {

    #section05 .list.top{
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
}

/* section06
--------------------------------------------------------------------*/
#section06{
    padding-bottom: 140px;
}

#section06 .cd_link{
    max-width: 920px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#section06 .cd_link .list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#section06 .cd_link .list li:first-child{
    width: 280px;
}
#section06 .cd_link .list03 li:nth-child(2){
    width: 300px;
}

#section06 .link{
    position: relative;
    line-height: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}
#section06 .link:hover{
    text-decoration: underline;
}
#section06 .link::before{
    content: "PDF";
    font-size: .9rem;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    width: 42px;
    height: 18px;
    border-radius: 30px;
    background-color: #bbc6d6;
    margin-right: 10px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    #section06{
        padding-bottom: 60px;
    }
    #section06 .cd_link{
        gap: 15px;
    }
    #section06 .cd_link .list{
        gap: 15px;
    }
    #section06 .link{
        line-height: 1.4;
        font-size: 1.2rem;
    }
    #section06 .link::before{
        width: 32px;
        height: 14px;
        margin-right: 8px;
    }
    #section06 .cd_link .list li:first-child,
    #section06 .cd_link .list03 li:nth-child(2){
        width: 100%;
    }


}