@charset "utf-8";
/* CSS Document */
.link_list{
    background-color: #ffffff;
    padding: 20px;
    margin: 25px 0;
}
.link_list .title {
    text-align: center;
    padding: 15px 0;
}
.link_list .title .title_ch span {
    font-size: 165%;
    font-weight: bold;
    padding: 0 10px;
    border-right: 1px #b0b0b0 solid;
    color: #35073e;
}

.link_list .title .title_ch span:nth-child(2n+2) {
    color: #773683;
}
.link_list .title .title_en{
    color: #187096;
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
}
.link_list .title p {
  margin: 0;
    display: block;
    padding: 10px 0 0 0;
    text-align: center;
}
.link_list .more {
    text-align: center;
}
.link_list .more a::before {content: "";width: 0;height: 0;border-style: solid;border-width: 5px 0 5px 9px;border-color: transparent transparent transparent #6b6b6b;position: absolute;right: 15px;top: 50%;}

.link_list .more a {
    color: #6c6c6c;
    padding: 20px 40px 10px 40px;
    display: inline-block;
    border-bottom: 1px #b9b9b9 solid;
    position: relative;
    letter-spacing: 2px;
    text-decoration: none;
}

.link_list .more a:hover {
    color: #773683;
}

.link_list .more a:hover::after {content: "";width: 100%;}

.link_list .more a::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #773683;
    display: block;
    right: 0;
    bottom: -1px;
    width: 0;
    transition: all 200ms ease-out;
}
.link_list .more a:hover::before {border-color: transparent transparent transparent #773683;}


.link_list ul{
    margin: 0;
    padding: 0;
}

.link_list ul li {
    list-style-type: none;
    position: relative;
}
.link_list .list a:hover {
   background-color: rgb(239 231 241);
   text-decoration: none;
}

.link_list ul li a {
    padding: 10px 20px 10px 30px;
    color: #000000;
    position: relative;
    letter-spacing: 2px;
    font-size: 105%;
    display: block;
    border-bottom: 1px #d1d1d1 solid;
}

.link_list ul li a::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: solid 1px #773683;
    border-right: solid 1px #773683;
    -webkit-transform: rotate(45deg) translate(0, -50%);
    transform: rotate(45deg) translate(0, -50%);
    position: absolute;
    left: 11px;
    top: 50%;
}

.link_list ul li a i {
    position: absolute;
    left: 15px;
    top: 12px;
}
.link_list ul li:nth-child(2n+1) a {/* background-color: rgb(29, 46, 138); */}

@media (min-width: 576px){
.link_list ul li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
}