/*=============================================*/
/*header */
/*=============================================*/
#gnav li.link .menu {
  right: 0;
}

/***************************/
/** pagination */
/***************************/
.pagination {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F1EEF0;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  transition: all 0.3s;
}
.pagination li a {
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pagination li:has(.current) {
  background-color: #C81133;
}
.pagination li:has(.current) .current {
  font: inherit;
  color: #FFF;
}
.pagination li:has(a):hover {
  background-color: #CCC;
}

/***************************/
/** search */
/***************************/
.mod-search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
}
.mod-search-form label {
  width: calc(100% - 60px);
  height: 100%;
}
.mod-search-form label input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 1.6rem;
  outline: none;
}
.mod-search-form label input::-moz-placeholder {
  color: #666;
}
.mod-search-form label input::placeholder {
  color: #666;
}
.mod-search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.mod-search-form button:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/ico/ico-search.svg) no-repeat center/contain;
}/*# sourceMappingURL=en_customize.css.map */