@charset "utf-8";
/* DOWNLOADS CSS
---------------------------------- */
.link-area-ttl{
    position: relative;
}
.link-area-ttl::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fabe00;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}
.link-area-ttl span{
    background-color: #fff;
    padding-right: 20px;
}
.link-btn{
    margin-bottom: 15px;
}
.link-btn:last-child{
    margin-bottom: 0px;
}
.link-btn > a {
    color: #9a6105;
    text-decoration: underline;
}
.link-btn > a:hover{
    text-decoration: none;
}
.link-area{
    padding-bottom: 60px;
}
.link-area:last-child{
    padding-bottom: 0;
}

.yel-sq{
    padding-left: 25px;
    position: relative;
}
.yel-sq::before{
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background-color: #fabe00;
    position: absolute;
    top: 0.8em;
    left: 0;
    transform: translateY(-50%);
}

@media(max-width:480px){
    .link-area-ttl.mb20{
        margin-bottom: 30px;
    }
    .link-area-ttl::before{
        top: calc(100% + 5px);
        transform: translateY(0);
    }
    .yel-sq{
        padding-left: 20px;
    }
    .yel-sq::before{
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 2px;
    }
}