/* スタッフページ */
div.supported_languages {
  color: #36d;
  font-size: 18px;
  font-weight: bold;
  /* line-height: 40px; */
}
div.staff_message {
  margin-top: -5px;
  white-space: pre-line;
  word-wrap: break-word;
}

/* ページャー */
.pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}

.pagenation a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc9b1;
}

.pagenation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.pagenation li {
  margin: 0 2.5px;
  color: #fff;
  font-size: 14px;
}

.pagenation li a {
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
}

.pagenation li a:hover {
  background: #ba995d;
}

.pagenation li.current a {
  background: #ba995d;
  color: #000;
}

.pagenation .prev,
.pagenation .next {
  font-size: 14px;
}

.pagenation .prev i,
.pagenation .next i {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #000;
  color: #fff;
}

.pagenation .prev i:before,
.pagenation .next i:before {
  font-size: 19px;
}

.pagenation .next i {
  margin-left: 5px;
}

.pagenation .prev i {
  margin-right: 5px;
}

.pagenation .prev i:before {
  transform: scale(-1, 1);
}

.pagenation .btn-page {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 3px;
  border-radius: 3px;
  border: 1px solid #d1d1d1;
  box-shadow: inset 0 0 0 1px #fff;
  background: #fff;
  background-image: linear-gradient(#fff, #f3f3f3);
}

.pagenation .btn-page:hover {
  opacity: .7;
  box-shadow: none;
}

.pagenation .active .btn-page {
  border: none;
  background: #ba995d;
  box-shadow: none;
  color: #fff;
  cursor: default;
}

.pagenation .active .btn-page:hover {
  opacity: 1;
}