@charset "UTF-8";

.page_works .slide {
    margin: 0 auto;
}

.page_works .slide + .slide {
    margin-top: 60px;
}

.wp-pagenavi {
    clear: both;
    text-align:center;
    margin-top: 100px;

}

.wp-pagenavi a, .wp-pagenavi span {
    color: #999;
    background-color: #FFF;
    border: solid 1px #e0e0d2;
    padding: 8px 15px;
    margin: 0 2px;
    white-space: nowrap;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-align: center;
    text-decoration:none;
}

.wp-pagenavi a:hover {
    color:#FFF; 
    background-color:#F44747; 
    border-color:#F44747;
}

.wp-pagenavi span.current {
    color: #FFF;
    background-color: #F44747;
    border-color: #F44747;
    font-weight: bold;
}

.category_box {
    margin-bottom: 100px;
}

.category_box .box + .box {
    margin-top: 40px;
}

.category_box .box .title {
    position: relative;
    padding-left: 50px;
    position: relative;
    margin-bottom: 10px;
}

.category_box .box .title:before {
    content: "";
    width: 30px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
}

.category_box .box ul {
    gap: 2em;
}

.category_box .box ul li a {
    display: block;
    color: #fff;
    position: relative;
    padding-right: 20px;
    transition: .3s;
}

.category_box .box ul li.active a,
.category_box .box ul li a:hover {
    color: #F44747;
}

.category_box .box ul li.active a::after,
.category_box .box ul li a:hover::after {
    border-color: #F44747;
}

.category_box .box ul li a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
    transition: .3s;
}

@media (max-width: 750px) {

    .page_works .slide + .slide {
        margin-top: 10vw;
    }

}