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

.seach_box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc((1200px - 5.5rem) / 12), 1fr));
    gap: .5rem;
}

.seach_box>a {
    color: #3AA3CD;
    border: 1px solid #3AA3CD;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    text-decoration: none;
}

.seach_box>a.active {
    background: #3AA3CD;
    color: #fff;
}

.main,
.seach_box {
    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;
}

.live {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc((1200px - 6rem) / 3), 1fr));
    gap: 2rem;
}

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

.live .thumb {
    position: relative;
}

.live .thumb .time {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: .25rem .5rem;
    font-size: 12px;
    border-radius: 5px;
}

.live .thumb img {
    border-radius: 10px;
    border: 1px solid #f2f2f2;

}

.live .hastags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding-top: .5rem;
}

.live .hastags li {
    border: 1px solid #3AA3CD;
    color: #3AA3CD;
    padding: .25rem 1rem;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
}

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

.live .b>.time {
    padding-top: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #CDCDCD;
}
.main .more_load {
    margin-top: .5rem;
    border: 1px solid #3AA3CD;
    color: #3AA3CD;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 20%;
    margin-inline: auto;
    padding: .5rem;
    margin-bottom: 60px;
    margin-top: 30px;
}

.main .more_load:hover {
    background: #3AA3CD;
    color: #fff;
}

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

}