@charset "UTF-8";
/* CSS Document */
/*トップページのランキングcss*/
.toprank {
    padding: 40px 0;
    background-image: url("../images/ranking-bg-pc.jpg");
    background-size: cover;
    background-position: center;
}
.toprank h3 {
    margin-top: 0;
    color: #fff;
}
.toprank .ttlunderline {
    border: 1px solid #fff;
}
.top-ranking {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.rank-host {
    transition: all .5s;
    position: relative;
}
.rank-host:hover {
    transform: scale(1.1);
}
.rank-host a {
    display: block;
}
.top-ranking .rank,
.top-ranking .name {
    text-align: center;
}
.top-ranking .rank {
    margin-bottom: 8px;
    font-size: 18px;
    color: #fff;
}
.top-ranking .name {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 0;
    background-color: rgba(23,60,95,.8);
    color: #fff;
    margin-top: 8px;
    font-size: 14px;
}
#fixed-widget {
    width: 19%;
}
#fixed-widget:first-of-type .rank::before {
    content: "";
    display: inline-block;
    background: url(../images/ic-no1.png) no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    margin-right: 4px;
    
}
.infosocial.pc {
    display: flex;
    justify-content: space-between;
}
.infosocial.pc li {
    margin: 0;
}
@media screen and (max-width:430px) {
    .toprank {
        background-size: 100%;
    }
    .top-ranking {
        flex-wrap: wrap;
        padding: 0 15px;
    }
    #fixed-widget {
        width: 48%;
    }
    #fixed-widget:not(:last-of-type) {
        margin-bottom: 20px;
    }
}