@charset "UTF-8";

.new-sidebar {
    width: 280px;
    position: relative;
    margin-bottom: 70px;
}
.new-sidebar>*:not(:last-child) {margin-bottom: 35px;}
.new-sidebar .application-banner {
    width: 280px;
    height: 140px;
}
.new-sidebar .application-banner:hover .application-banner-image {transform: scale(0.9);}
.new-sidebar .application-banner-image {transition: transform .3s;}
.new-sidebar .sidebar-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}
.new-sidebar .article-li:not(:last-child) {margin-bottom: 15px;}
.new-sidebar .article-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.new-sidebar .article-link:hover .image {transform: scale(1.1);}
.new-sidebar .article-link .image-wrap {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.new-sidebar .article-link .image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transition: 0.3s;
    object-fit: cover;
    height: 70px;
}
.new-sidebar .article-link .right {
    font-size: 12px;
    line-height: 20px;
    color: #2d2d2d;
    text-align: left;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0;
    transition: opacity 0.3s;
}
.new-sidebar .article-link:hover .right {opacity: 0.7;}
.new-sidebar .sidebar-ranking .article-li:nth-child(1) .image-wrap:before,
.new-sidebar .sidebar-ranking .article-li:nth-child(2) .image-wrap:before,
.new-sidebar .sidebar-ranking .article-li:nth-child(3) .image-wrap:before {
    content: '';
    display: block;
    width: 20px;
    height: 28px;
    position: absolute;
    left: 6px;
    top: 0;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.new-sidebar .sidebar-ranking .article-li:nth-child(1) .image-wrap:before {background-image: url('/wp-content/themes/sango-theme-child/img/balloon_numbering01.png');}
.new-sidebar .sidebar-ranking .article-li:nth-child(2) .image-wrap:before {background-image: url('/wp-content/themes/sango-theme-child/img/balloon_numbering02.png');}
.new-sidebar .sidebar-ranking .article-li:nth-child(3) .image-wrap:before {background-image: url('/wp-content/themes/sango-theme-child/img/balloon_numbering03.png');}
.new-sidebar .sidebar-mini-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
}
.new-sidebar .keyword-ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.new-sidebar .keyword-li {margin-bottom: 6px;}
.new-sidebar .keyword-li:not(:last-child) {margin-right: 6px;}
.new-sidebar .sidebar-goals-banner {
    border-radius: 10px;
    transition:  transform 0.3s;
    display: inline-block;
}
.new-sidebar .sidebar-goals-banner:hover {transform: scale(0.9);}
.new-sidebar .category-li {
    width: 100%;
    border-bottom: 1px solid #707070;
}
.new-sidebar .category-link {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 15px 10px 13px 18px;
    box-sizing: border-box;
    font-size: 12px;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
}
.new-sidebar .category-link:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #d9d9d9;
    padding-right: 10px;
    transition: 0.3s;
    translate: 0 -2px;
}
.new-sidebar .category-link:hover:before {transform: translateX(3px);}
.new-sidebar .sidebar-topic {
    display: flex;
    flex-direction: column;
}
.new-sidebar .sidebar-topic .common-arrow-button {margin: 15px 0 0 auto;}
.new-sidebar .sidebar-category {width: 100%;}
.new-sidebar .sidebar-search {margin-bottom: 20px;}
@media screen and (max-width: 1000px) {
    .new-sidebar {
        width: 100%;
        max-width: 700px;
        margin: 0 auto 40px;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}