@charset "UTF-8";


.pagination-container ul {	
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pagination li {
    margin: 0;
}

.pagination li:first-child {
	border-top: none;
}

.pagination-container ul li a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  color: #111;
  font-weight: 500;
  transition: all 0.15s linear;
  margin-top: 20px;
}

.page.navi-active a {
  background: #9F0038;
  color: #fff;
  pointer-events: none;
}



/*
nav.pagination-container ul {
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    filter: drop-shadow(0px 1px 3px #ccc);
    transition: 0.3s;
    border-radius: 0px;
    overflow: hidden;
}
.pagination li {
    margin: 0;
}
nav.pagination-container ul li a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    padding: 15px 18px 13px;
    background: #FFF;
    line-height: 1;
    border-right: solid 1px #eee;
}
li.first {
    border-radius: 5px 0 0 5px;
}
li.last {
    border-radius: 0 5px 5px 0;
}
li.page.navi-active a {
    background: #ebfcfe;
    transform: scale(1.2);
}
.pagenation_block dl {
    border-bottom: solid 1px #ddd;
}
*/