@charset "utf-8";

/*==========================
topics content
==========================*/

body {
    background-color: var(--base-white);
}

.footer__group {
    background-color: var(--base-beige);
}

.frame {
    margin: 131px 13.3vw 51px;
}

.content__title {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.24px;
    position: relative;
}

.content__line {
    width: 100%;
    height: 0.3px;
    background-color: var(--accent-black);
    margin-top: 19.5px;
}

.daycategory {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.content__day {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.14;
    letter-spacing: 0.14px;
}

.content__category {
    color: #6D6D6D;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.14;
    letter-spacing: 0.14px;
}

.content__txt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.14px;
    margin-top: 34px;
}

.content__img {
    margin-top: 41px;
}

.pagenavi {
    margin-top: 77px;
}

.pagenavi__frame {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 19vw;
}

.pagenavi__item {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: 0.14px;
}

.category__frame {
    margin-top: 105px;
    position: relative;
}

.category__frame::before {
    content: '';
    display: block;
    width: 100%;
    height: 0.3px;
    background-color: var(--accent-black);
    position: absolute;
    top: -29px;
    bottom: 0px;
    right: 0;
    left: 0; 
}

.category__title {
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.2px;
}

.category {
    margin-top: 23px;
}

.category__list {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: 0.14px;
    margin-top: 12px;
}


@media screen and (min-width:835px) {

    .frame {
        margin: 189px 7.4vw 0px 15.6vw;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: row-reverse;
        gap: 14.7vw;
    }

    .content {
        width: 55vw;
    }

    
    .content__title {
        font-size: 3.2rem;
        line-height: 1.4;
        letter-spacing: 0.32px;
    }

    .content__line {
        width: 100%;
        height: 0.3px;
        background-color: var(--accent-black);
        margin-top: 15px;
    }
    
    .daycategory {
        gap: 26px;
        margin-top: 20px;
    }

    .content__day {
        font-size: 1.6rem;
        line-height: 1.87;
        letter-spacing: 0.16px;
    }

    .content__category {
        font-size: 1.6rem;
        line-height: 1.87;
        letter-spacing: 0.16px;
    }

    .content__txt {
        font-size: 1.6em;
        line-height: 2.18;
        letter-spacing: 0.16px;
        margin-top: 84px;
    }

    .content__img {
        margin-top: 78px;
        width: 55vw;
    }

    
    .pagenavi {
        margin: 157px 0px;
    }

    .pagenavi__frame {
        gap: 23vw;
    }

    .pagenavi__item {
        font-size: 1.6rem;
        line-height: 1.25;
        letter-spacing: 0.16px;
    }
    
    .category__frame {
        margin-top: 0px;
        position: relative;
    }

    .category__frame::before {
        display: none;
    }

    .category {
        margin-top: 35px;
    }

    .category__list {
        margin-top: 15px;
    }

}