@charset "UTF-8";

.link_body {
    margin-bottom: 100px;
}

.link_body:last-child {
    margin-bottom: 0;
}

.link_body_ttl {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}

.link_list {
    margin-bottom: 50px;
}

.link_list li a {
    display: block;
    width: 100%;
    padding: 25px 0 25px 30px;
    border-bottom: solid 1px #B6B0A3;
    text-decoration: underline;
    color: #938055;
    font-weight: bold;
    position: relative;
}

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

.link_list li:first-child a {
    border-top: solid 1px #B6B0A3;
}

.link_list li a::before {
    content: '';
    width: 12px;
    height: 9px;
    background: url(/img/second/icon-accordion.svg) no-repeat center;
    background-size: cover;
    transform: rotate(90deg);
    position: absolute;
    left: 10px;
    top: 35px;
}


@media screen and (max-width:767px) {
    
    .link_list li a {
        padding: 15px 20px 15px 30px;
    }

    .link_list li a::before {
        top: 25px;
    }
}