.sortRegionWrapper {
  margin-top: 50px;
}
.sortRegionWrapper .sortRegionSection + .sortRegionSection {
  margin-top: 70px;
}
.sortRegionWrapper .sortIconInformation {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.sortRegionWrapper .sortIconInformation span {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0 5px;
  font-size: 14px;
}
.sortRegionWrapper .sortIconInformation span img {
  width: 22px;
  height: auto;
}

.sortRegionName {
  width: 100%;
  margin: 10px 0 0;
  background: #9e0000;
  color: #FFF;
  padding: 12px 20px;
  box-sizing: border-box;
  font-size: 26px;
  font-family: "Libre Baskerville", serif;
}

.sortByType {
  width: 100%;
  padding: 8px 20px;
  background: #DDD;
  box-sizing: border-box;
}
.sortByType ul {
  display: flex;
  align-items: center;
  gap: 0 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sortByType ul li {
  position: relative;
}
.sortByType ul li a {
  color: #000;
  position: relative;
}

.sortBySection + .sortBySection {
  margin-top: 40px;
}

.sortBySection h2 {
  font-size: 24px;
  margin: 30px 0 0;
}
.sortBySection .listType1 ul li {
  margin: 0 0 10px 0;
}

.sortListInner {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.sortListInner p {
  color: #000!important;
}
.not-active .sortListInner p {
  color: #c8c8c8!important;
}

.sortListInner .sortLinkBox {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 12px;
  flex-shrink: 0;
}
.sortListInner .sortLinkBox a.linkToEnglish {
  background-image: url(/library/lists/images/icon_english.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 16px;
}
.sortListInner .sortLinkBox a.linkToJapanese {
  background-image: url(/library/lists/images/icon_japanese.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 16px;
}
.sortListInner .sortLinkBox span {
  width: 1px;
  height: 16px;
  background: #000;
}
.sortListInner .sortLinkBox img {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.messageNodata {
  margin: 20px 0;
  font-weight: bold;
  font-size: 16px;
}

/* smooth scroll */
/* スムーズスクロールの設定 */
html {
  scroll-behavior: smooth;
}

/* -------------------------------------- */
/* 全体（デフォルト）の設定 - タブレット・PC向け */
/* -------------------------------------- */
.page-top-btn {
  /* 固定表示の必須設定 */
  position: fixed;
  
  /* PC・タブレットでの位置とサイズ */
  right: 20px; 
  bottom: 20px; 
  width: 60px;
  height: 60px;
  font-size: 14px; /* 文字のサイズ */
  
  /* 他のデザイン設定 */
  z-index: 999; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}