  .listLinks_type8 {
    background: #f6f6f6;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    z-index: 9;
}
.listLinks_type8::before {
    content: "";
    position: absolute;
    background: linear-gradient(
        rgba(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.5),
        rgba(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 1)
    );
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}
.listLinks_type8 .listLinks_case {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1em;
}
.listLinks_type8 .listLinks_ul_wrap {
    position: relative;
    display: block;
    text-align: center;
}
.listLinks_type8 .listLinks_ul {
    display: none;
    padding: 15px 15px 15px 36px;
    position: absolute;
    width: auto;
    background: #fff;
    text-align: left;
    z-index: 999;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.09);
    top: 90%;
    left: 0px;
}
.listLinks_type8 .listLinks_ul::after {
    display: block;
    content: "";
    top: -14px;
    left: 50%;
    margin-left: -12px;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 18px 12px;
    border-color: transparent transparent #ffffff transparent;
}
.listLinks_type8 .listLinks_ul::before {
    display: block;
    content: "";
    top: -16px;
    left: 50%;
    margin-left: -12px;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 18px 12px;
    border-color: transparent transparent #2f2f2f17 transparent;
}
.listLinks_type8 .listLinks_ul_wrap:hover .listLinks_ul {
    display: block;
}
.listLinks_type8 .listLinks_ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    list-style-type: square;
}
.listLinks_type8 .listLinks_ul li::marker {
    color: var(--color-primary);
}
.listLinks_type8 .listLinks_ul li a{
    color: #5E5E5E;
    display: block;
    word-wrap: break-word;
}
.listLinks_type8 .listLinks_ul li a:hover{
    color: var(--color-primary);
}
.listLinks_type8 a.listLinks_wrap {
    display: block;
    color: #1f1f1f;
    text-decoration: none;
    max-width: 145px;
    margin: 0 auto;
}
.listLinks_type8 a.listLinks_wrap .listLinks_box {
    background-color: #EAEAEA;
}
.listLinks_type8 a.listLinks_wrap:hover,
.listLinks_type8 a.listLinks_wrap:focus {
    color: var(--color-primary);
    outline: 0;
}
.listLinks_type8 a.listLinks_wrap:hover,
.listLinks_type8 a.listLinks_wrap:focus {
    color: var(--color-primary);
    outline: 0;
}
.listLinks_type8 .listLinks_wrap img {
    max-width: 135px;
    width: 100%;
    transition: all 0.3s;
    margin: 0px;
    border-radius: 5px;
}
.listLinks_type8 a.listLinks_wrap:hover img,
.listLinks_type8 a.listLinks_wrap:focus img {
    transform: scale(1.1);
}
.listLinks_type8 .listLinks_wrap .title {
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: 15px;
    line-height: 1.3125rem;
}
.listLinks_type8 .access_footer_link:focus {
    background-color: var(--color-white);
}
/**************
RWD s.
***************/
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .listLinks_type8 {
        padding:50px 0;
    }
    .listLinks_type8 a.listLinks_wrap {
        /*margin-bottom: 25px;*/
        padding-bottom: 20px;
    }
    .listLinks_type8 .listLinks_case {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media only screen and (max-width: 480px) {
    .listLinks_type8 .listLinks_case {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/**************
  RWD e.
  ***************/
