@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------------------------
   ページャー
   ---------------------------------------------------------------------------*/
.pagination {
   position: relative;
  list-style-type: none;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px auto;
}
   @media screen and (max-width: 600px) {
      .pagination{
         margin: 50px auto 20px auto;
      } 
   }


.pagination li {
  margin-right: 5px;
  list-style-type: none;
}

.pagination a {
  padding: 5px 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: rgba(29,32,136,1.00);
  border: 1px solid rgba(29,32,136,1.00);
  border-radius: 3px;
  background-color: rgba(255,255,255,1.00);
}

   @media screen and (max-width: 480px) {
      .pagination a{
         padding: 5px 8px;
      } 
   }


.pagination a.active {
  background-color: rgba(255,45,180,1.00);
  color: white;
}

.pagination a:hover:not(.active) {
  background-color: rgba(0,181,238,1.00);
  color: white;
}

.pagination .first-page a{
   background-color: rgba(194,2,199,1.00);
   color: rgba(255,255,255,1.00);
}

.pagination .last-page a{
   background-color: rgba(194,2,199,1.00);
   color: rgba(255,255,255,1.00);
}


.pagination .prev-page a{
   background-color: rgba(210,30,150,1.00);
   color: rgba(255,255,255,1.00);
}
.pagination .next-page a{
   background-color: rgba(210,30,150,1.00);
   color: rgba(255,255,255,1.00);
}


/* ---------------------------------------------------------------------------
   メニューフィルター
   ---------------------------------------------------------------------------*/
.memu_filter ol{
   position: relative;
   width: 90%;
   display: flex;
   justify-content: flex-start;
   flex-wrap: wrap;
   margin-top: 60px;
}
   @media screen and (max-width: 1024px) {
      .memu_filter ol{
         margin: auto;
         padding: 10px 0;
      } 
   }


.memu_filter li{
   position: relative;
   width: 90%;
   font-weight: 600;
   box-sizing: border-box;
   margin-bottom: 20px;
   font-size: 110%;
}
   @media screen and (max-width: 1024px) {
      .memu_filter li{
         width: auto;
         min-width: 120px;
         text-align: center;
         padding: 5px 20px;
         font-size: 100%;
         margin-bottom: 0;
      } 
   }
   @media screen and (max-width: 600px) {
      .memu_filter li{
         padding: 2px 10px;
         font-size: 90%;
         min-width: 80px;
         margin-bottom: 0;
      } 
   }

.memu_filter li a{
   color: rgba(0,0,0,1.00);
   padding-left: 60px;
   display: block;
}
   @media screen and (max-width: 1024px) {
      .memu_filter li a {
         padding-left: 0;
         box-sizing: border-box;
         display: block;
      } 
   }


.memu_filter li.selected a{
   color: rgba(255,255,255,1.00);
}
   @media screen and (max-width: 1024px) {
      .memu_filter li.selected a {
         color: rgba(255,255,255,1.00);
      } 
   }



.memu_filter li.selected{
   background-color: rgba(0,0,0,1.00);
   border-top-right-radius: 20px;
   border-bottom-right-radius: 20px;
}
   @media screen and (max-width: 1024px) {
      .memu_filter li.selected {
         background-color: rgba(0,0,0,1.00);
         border-radius: 0;
      } 
   }


.memu_filter li.selected a:before {
   content: "";
   position: absolute;
   left: 0;
   top: 0.4em;
   background-image: url("../images/tmp/k_select.png");
   background-repeat: no-repeat;
   width: 16px;
   height: 16px;
   background-size: contain;
   vertical-align: middle;
}
   @media screen and (max-width: 1024px) {
      .memu_filter li.selected a:before {
         background-image:none;
      } 
   }



.memu_filter li div{
   position: relative;
   display: block;
   background-color: rgba(255,255,255,1.00);
   text-align: center;
   padding: 4px 15px;
   border-radius: 3px;
}
   @media screen and (max-width: 700px) {
      .memu_filter li div{
         padding: 4px 3px;
      } 
   }

.memu_filter li div a{
   display: block;
   color: rgba(0,0,0,1.00);
}


.memu_filter li div.selected{
   background-color: rgba(29,32,136,1.00);
   color: rgba(255,255,255,1.00);
}

.memu_filter li div.selected a{
   color: rgba(255,255,255,1.00);
}



