@charset "UTF-8";

.page_hd {
    position: unset;
    width: 100%;
    padding: 0;
    margin: 70px 0 10px;
}

.info_body {
    margin-bottom: 100px;
}

.info_list {
    margin-bottom: 40px;
}

.info_list li a {
    display: block;
    padding: 18px 40px 18px 10px;
    border-bottom: solid 1px #E2DCD7;
    position: relative;
}

.info_list li a::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/img/cmn/icon-arrrow_cmnbtn.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.5s;
}

.info_list li a:hover::before {
    transform: translate(5px, -50%);
}

.info_list li:first-child a {
    border-top: solid 1px #E2DCD7;
}

.info_date {
    color: #6C9D0F;
}

.info_ttl {
    font-size: 20px;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page,
.current {
    font-size: 20px;
    font-weight: bold;
    background: #fff;
    padding: 0 13px;
    border-radius: 3px;
    transition-duration: 0.5s;
}

.current {
    color: #6C9D0F;
    background: #E2DCD6;
}

.pages {
    display: none;
}

.page:hover {
    color: #6C9D0F;
    background: #E2DCD6;
}


/* single */

.info_date.-single {
    margin-bottom: 60px;
}

.info_cnt {
    padding-bottom: 70px;
    margin-bottom: 40px;
    border-bottom: solid 1px #E2DCD7;
}

.info_cnt strong {
    font-weight: bold;
}

.info_cnt hr {
    width: 100%;
    height: 1px;
    background: #602D08;
    margin: 10px 0;
}

.info_nav_buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.prev_btn,
.next_btn {
    position: relative;
}

.prev_btn {
    padding-left: 30px;
}

.next_btn {
    padding-right: 30px;
}

.prev_btn::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/img/cmn/icon-arrrow_cmnbtn.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.next_btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/img/cmn/icon-arrrow_cmnbtn.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


@media screen and (max-width:767px) {
    
    .info_list li a {
        padding: 18px 20px 18px 0;
    }

    .info_list li a::before {
        transform: unset;
        top: 25px;
    }

    .info_ttl {
        font-size: 18px;
    }

    .page_ttl {
        font-size: 22px;
        line-height: 35px;
    }

    .info_nav_buttons .cmn_btn {
        max-width: 130px;
        padding: 10px 15px;
    }

    .info_nav_buttons a {
        font-size: 14px;
    }
}