@charset "utf-8";

#news-lower {
    margin-top: 6.25rem;
}

#news-lower h1 {
    margin: 0;
}

#news-lower h1 a {
    color: #8EB0B5;
    margin: 0;
    font-size: 7.75rem;
    font-weight: 800;
    letter-spacing: 1.2rem;
    font-family: "inter", sans-serif;
}

@media screen and (max-width: 1000px) {
    #news-lower h1 a {
        font-size: 4rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 500px) {
    #news-lower h1 a {
        font-size: 2.8rem;
    }
}

#news-lower h1:hover a {
    color: #B2CFD4;
    transition: .5s;
}

#archive-news,
#single-news {
    margin-top: 6.25rem;
    padding-bottom: 6.25rem;
}

@media screen and (max-width:1000px) {
    #archive-news,
    #single-news {
    margin-top: 3.13rem;
    padding-bottom: 3.13rem;
}
}

.news_left {
    width: 64%;
}

@media screen and (max-width:768px) {
    .news_left {
        width: 100%;
        margin-bottom: 6.25rem;
    }
}

.news_lower_list {
    margin-bottom: 3.13rem;
    padding-bottom: 3.13rem;
    border-bottom: 1px solid #C1C1C1;
}

.news-lower_category_date {
    display: flex;
    align-items: center;
    margin-bottom: 0.88rem;
}

@media screen and (max-width:768px) {
    .news-lower_category_date {
        margin-bottom: 0.88rem;
    }
}

.news-lower_category {
    margin-right: 1.25rem;
    padding: 0 0.38rem;
    background-color: #8EB0B5;
    font-size: 0.88rem;
    color: #fff;
    border-radius: 0.31rem;
    line-height: 1.26rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-lower_category:hover {
    opacity: .7;
    transition: .5s;
}

.news-lower_category a {
    color: #fff;
}

.news-lower_title {
    margin-bottom: 0.62rem;
    line-height: 1.8em;
}

@media screen and (max-width:768px) {
    .news-lower_title {
        margin-bottom: 0.88rem;
    }
}

/* Archive News */

.pager_box {
    display: flex;
    align-items: center;
    width: 100%;
}

.pager_box a {
    width: 2rem;
    height: 2rem;
    border-radius: 0.31rem;
    background-color: #8EB0B5;
    margin-right: 1rem;
    text-align: center;
    color: #fff;
}

.pager_box .current {
    margin-right: 1rem;
}

/* Single News */

#single-news .news-lower_title {
    padding-bottom: 1.88rem;
    border-bottom: 1px dashed #C1C1C1;
    line-height: 1.8em;
}

#single-news .single-news_img_box {
    width: 100%;
    height: auto;
}

#single-news img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.62rem;
    margin-bottom: 1.88rem;
}

.single-news_content {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #C1C1C1;
}

.single-news_link_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-news_link_area .btn_01 {
    color: #fff;
}

.single-news_link_area .btn_01:hover  {
    color: #8EB0B5;
    transition: .5s;
}

.single-news_link_area .btn_01::after {
    display: none;
}

.single-news_link_area .before_btn {
    display: flex;
    align-items: center;
}

.single-news_link_area .after_btn {
    display: flex;
    align-items: center;
}

.single-news_link_area .before_btn .arrow_l {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    margin: 8.8px 0;
    border-radius: 9999px;
    background-color: #555;
    margin-right: 10px;
}

.single-news_link_area .before_btn:hover .arrow_l {
    background-color: #8EB0B5;
    transition: .5s;
}

.single-news_link_area .after_btn .arrow_r {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    margin: 8.8px 0;
    border-radius: 9999px;
    background-color: #555;
    margin-left: 10px;
}

.single-news_link_area .after_btn:hover .arrow_r {
    background-color: #8EB0B5;
    transition: .5s;
}

.single-news_link_area .before_btn .arrow_l::before,
.single-news_link_area .before_btn .arrow_l::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 15px;
    height: 2px;
    border-radius: 9999px;
    background-color: #555;
    transform-origin: 1px 50%;
}

.single-news_link_area .before_btn:hover .arrow_l::before,
.single-news_link_area .before_btn:hover .arrow_l::after {
    background-color: #8EB0B5;
    transition: .5s;
}

.single-news_link_area .after_btn .arrow_r::before,
.single-news_link_area .after_btn .arrow_r::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 5px;
    width: 15px;
    height: 2px;
    border-radius: 9999px;
    background-color: #555;
    transform-origin: calc(100% - 1px) 50%;
}

.single-news_link_area .after_btn:hover .arrow_r::before,
.single-news_link_area .after_btn:hover .arrow_r::after {
    background-color: #8EB0B5;
    transition: .5s;
}

.single-news_link_area .arrow_l::before {
    transform: rotate(45deg);
}

.single-news_link_area .arrow_l::after {
    transform: rotate(-45deg);
}

.single-news_link_area .arrow_r::before {
    transform: rotate(45deg);
}

.single-news_link_area .arrow_r::after {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .single-news_link_area .before_btn,
    .single-news_link_area .after_btn {
        font-size: 0;
        padding: 0;
    }

    .single-news_link_area .before_btn .arrow_l,
    .single-news_link_area .after_btn .arrow_r {
        font-size: 16px;
    }
}

/* Page Nation */

#archive-news .navigation.pagination {
    position: initial;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    right: initial;
    top: initial;
    opacity: 1;
    visibility: initial;
    transition: none;
}


/* Side Bar */

aside {
    width: 27.5%;
    position: sticky;
    top: 6.25rem;
}

@media screen and (max-width:768px) {
    aside {
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: space-between;
    }
}

.side-bar_content_box {
    background-color: #fff;
    padding: 3.13rem;
    box-sizing: border-box;
    border-radius: 0.62rem;
    border: 1px solid #8EB0B5;
    background-color: #fff;
}

@media screen and (max-width:768px) {
    .side-bar_content_box {
        padding: 1.25rem;
        width: 48%;
    }
}

.side-bar_category_box {
    margin-bottom: 3.13rem;
}

@media screen and (max-width:768px) {
    .side-bar_category_box {
        margin-bottom: 0;
    }
}

.side-bar_title {
margin-bottom: 0.88rem;
}

.side-bar_category_box li a {
    position: relative;
}

.side-bar_category_box li a::after {
    background-color: currentColor;
    bottom: -6px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
    width: 100%;
}

.side-bar_category_box li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

.side-bar_content_box li a time {
    position: relative;
}

.side-bar_content_box li a time::after {
    background-color: currentColor;
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  width: 100%;
}

.side-bar_content_box li a time:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

.cap-color {
    color: #E6C014;
    font-size: 1.2em;
}

.link-line {
    text-decoration: underline;
}

.link-line:hover {
    opacity: .6;
    transition: .3s;
}


/* EXTRA */

#single-news h3 {
    font-size: 1.25rem;
    line-height: 1.8em;
    margin-bottom: 1.25rem;
}

@media screen and (max-width:768px) {
    #single-news h3 {
    margin-bottom: 0.62rem;
}
}