.top-section__content .t-latest-studio-tabe__list {
    display: flex;
    list-style: none;
    justify-content: flex-start;
}

.top-section__content .t-latest-studio-tabe__list .t-latest-studio-tabe__item {
    width: 15%;
    margin-right: 2%;
}

.top-section__content .t-latest-studio-tabe__list .t-latest-studio-tabe__item:nth-child(6) {
    margin-right: 0;
}

.t-latest-studio-wp .t-latest-studio-wp__list {
    display: flex;
    margin: 10px auto;
    counter-reset: point_num;
    justify-content: space-evenly;
    list-style: none;
}

.t-latest-studio-wp .t-latest-studio-wp__list .t-latest-studio-wp__item {
    width: 18%;
    position: relative;
}

.t-studio-card-wp a {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
}

.t-studio-card-wp a:before {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -42px;
    left: -42px;
    background-color: #dcdcdc;
    content: '';
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1;
}

.t-studio-card-wp a:after {
    position: absolute;
    top: 9px;
    left: 10px;
    color: #666;
    font-weight: bold;
    content: counter(point_num) "";
    counter-increment: point_num;
    font-size: 15px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 1;
}

.t-studio-card-wp a .t-studio-card-wp__image {
    position: relative;
    border-radius: 4px;
    padding-top: 90%;
    overflow: hidden;
}

.t-studio-card-wp a .t-studio-card-wp__image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.t-studio-card-wp a .t-studio-card-wp__title {
    margin-top: 13px;
    color: #333;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.23077;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.t-studio-card-wp a .t-studio-card-wp__access {
    margin-top: 5px;
    color: #666;
    font-size: 10px;
    line-height: 1;
}

.t-studio-card-wp a:hover .t-studio-card-wp__title {
    color: #4493d0;
}

.t-studio-card-wp:nth-of-type(1) a:before {
    background-color: #c8af37;
}

.t-studio-card-wp:nth-of-type(2) a:before {
    background-color: #b4b4b4;
}

.t-studio-card-wp:nth-of-type(3) a:before {
    background-color: #c89678;
}

.t-studio-card-wp:nth-of-type(-n+3) a:after {
    color: #fff;
}



/*================スマホ================*/
@media screen and (max-width: 559px){
    .t-latest-studio-wp .t-latest-studio-wp__list {
        justify-content: flex-start;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .t-latest-studio-wp .t-latest-studio-wp__list::-webkit-scrollbar {
        display: none;
    }

    .t-latest-studio-wp .t-latest-studio-wp__list .t-latest-studio-wp__item {
        width: 35%;
        position: relative;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .t-studio-card-wp a .t-studio-card-wp__title {
        font-size: 12px;
    }
}