@charset "UTF-8";
.news,
.single,
.date {
    background: url(../../img/common/pc_bg.png) no-repeat top center / cover;
}
.news h2,
.entries h2 {
    color: var(--color1);
    padding-bottom: 30px;
}
.news .item {
    padding-bottom: 15px;
}
.news .item img {
    height: 160px;
    width: 100%;
    display: block;
    object-fit: cover;
}
.news .item .txt p {
    width: 100%;
    color: #333;
}
.news .item_wrap .item a,
.date .item_wrap .item a {
    position: relative;
    transition: all .4s ease 0s;
    top: 0;
}
.news .item_wrap .item a:hover,
.date .item_wrap .item a:hover {
    top: -15px;
}
.wp-pagenavi {
    margin-bottom: 45px;
	color: #333;
    display: flex;
    justify-content: center;
}
.wp-pagenavi a {
    color: #333;
}
.wp-pagenavi a:hover {
	color: var(--color1);
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    padding: 0;
    width: 30px;
    height: 30px;
	transition: .03s;
	display: flex;
	align-items: center;
	justify-content: center;
    border: none;
    transition: all .3s;
    font-weight: bold;
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .previouspostslink {
    margin-right: 5px;
}

.wp-pagenavi .current {
	background-color: var(--color1);
    color: var(--color_wt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-pagenavi .page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	background-color: #dbdbdb;
}
.wp-pagenavi a,
.wp-pagenavi span {
    margin: 0;
}
.wp-pagenavi .page:hover {
    opacity: 0.8;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
    display: none;
}
.news .btn_to_top a,
.single .btn_to_top a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    background-color: var(--color_wt);
    border: 2px solid var(--color1);
    color: var(--color1);
    transition: all .4s ease 0s;
    padding: 20px 0;
    width: 40%;
}
.news .btn_to_top a::after,
.single .btn_to_top a::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--color1);
}
.news .btn_to_top a:hover,
.single .btn_to_top a:hover {
    background-color: var(--color1);
    color: var(--color_wt);
}
.single .wp-block-image {
    padding-bottom: 30px;
}

@media screen and (max-width: 1229px) {
    .news .lists {
        padding-bottom: 45px;
    }
    .news .btn_to_top a,
    .single .btn_to_top a {
        width: 75%;
        padding: 15px 0;
    }
    .news .item .img img {
        height: 230px;
    }
}

@media screen and (max-width: 767px) {
    .news .sec_mv .head,
    .date .sec_mv .head,
    .single .sec_mv .head {
        font-size: 30px;
    }
    .news .item_wrap {
        margin: 0 auto;
    }
    .news h2,
    .entries h2 {
        padding-bottom: 15px;
    }
    .news .lists {
        padding: 0 15px;
    }
    .item_wrap {
        width: 80%;
    }
    .wp-pagenavi {
        margin-top: 0;
    }
    .news .item {
        width: 80%;
        padding-bottom: 0;
    }
    .news .item .img img {
        height: 40vw;
    }
    .news .btn_to_top a,
    .single .btn_to_top a {
        width: 75%;
        padding: 10px 0;
    }
}

/* SIDE BAR
------------------------------------------- */
.monthly-list li {
    border-top: 1px solid #333;
}
.monthly-list li:last-child {
    border-bottom: 1px solid #333;
}
.monthly-list li a {
    display: block;
    width: 100%;
    padding: 25px 15px;
    padding-right: 0;
    box-sizing: border-box;
    font-weight: bold;
    position: relative;
}
.monthly-list li a:hover {
    opacity: 0.7;
}
.monthly-list li a:before {
    position: absolute;
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 15px;
    color: var(--color1);
    transition: all .4s ease 0s;
}
.monthly-list li a:hover::before {
    right: 0;
}
.tags-list li a::before {
    content: none;
}

/* ENTRIES
-------------------------------------------- */
.entries__ttl {
    font-size: 24px;
    color: var(--color1);
}
.entries__date p {
    font-size: 14px;
}
.entries__img {
    width: 100%;
}
.entries h3 {
    padding: 15px 30px;
    position: relative;
    font-size: 30px;
}
.entries h3::before,
.entries h3::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
}
.entries h3::before {
    border-top: 3px solid var(--color2);
    border-left: 3px solid var(--color2);
    top: 0;
    left: 0;
}
.entries h3::after {
    border-bottom: 3px solid var(--color2);
    border-right: 3px solid var(--color2);
    bottom: 0;
    right: 0;
}
.entries h4 {
    font-size: 26px;
    padding-bottom: 15px;
    position: relative;
}
.entries h4::before,
.entries h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
}
.entries h4::before {
    width: 100%;
    height: 4px;
    background-color: #e5e5e5;
}
.entries h4::after {
    width: 30%;
    height: 4px;
    background-color: var(--color2);
}
.entries h5 {
    font-size: 24px;
    position: relative;
    padding-left: 15px;
}
.entries h5::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background-color: var(--color2);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.wp-block-image img {
    margin: 0 auto;
}
.wp-block-columns {
    padding-bottom: 60px;
}
.wp-block-column > p:not(:last-child) {
    padding-bottom: 45px;
}
.wp-block-column > .wp-block-heading {
    margin-top: 0;
}
.wp-block-heading {
    margin: 45px 0 15px;
}
.entries .btn {
    max-width: 400px;
    width: 100%;
}
@media screen and (max-width: 1229px) {
    .entries h3 {
        padding-inline: 15px;
    }
}
@media screen and (max-width: 767px) {
    .entries__ttl {
        padding-bottom: 0;
        line-height: 1.5;
    }
    .entries__tag a {
        font-size: 12px;
    }
    .entries h2 {
        padding-bottom: 15px;
        font-size: 26px;
    }
    .entries h3 {
        padding: 15px;
        font-size: 24px;
    }
    .entries h4 {
        font-size: 20px;
    }
    .entries h5 {
        font-size: 18px;
    }
    .entries__btn {
        width: 70%;
    }
}

/*
    DATE
--------------------------------------------------- */
