article {
    padding-top: 40px;
    width: min(calc(100% - 2rem), 1200px);
    margin-inline: auto;
}

.main {
    padding-top: 40px;
}

.main .ttl_label {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-left: 1rem;
    padding-block: .25rem;
    border-left: 7px solid #3AA3CD;
    margin-bottom: 30px;
}
.main .thm,
.main .live{
    padding-bottom: 60px;
}

.main .thm{
    width: 50%;
}
.thm .bottom{
    display:flex;
    align-items:center;
    justify-content: space-between;
}
.thm .bottom .icon{
    display:flex;
    align-items:center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #3AA3CD;
    padding: .5rem;
}
.live {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc((1200px - 120px) / 3), 1fr));
    gap: 60px;
}

.live .thumb {
    text-decoration: none;
    color: #333;
}

.live .hastags,
.thm .hastags{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}
.live .hastags,
.thm .bottom{
    padding-top: .5rem;
}
.live .hastags li,
.thm .hastags li {
    border: 1px solid #3AA3CD;
    color: #3AA3CD;
    padding: .25rem 1rem;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
}

.live .ttl,
.thm .ttl {
    padding-top: .5rem;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}


@media (max-width:768px) {
    .main .live{
        display: block;
    }
    .main .b:not(:last-child){
        padding-bottom: 2rem;
    }
    .main .more_load{
        width: 80%;
    }
    .main .thm{
        width: 100%;
    }
}