.tax_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.4rem;
}
.tax_list__item {
  margin-top: 1em;
  margin-right: 1em;
}
.tax_list__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  padding: 0.8em 1.25em;
  color: #333;
  background-color: #f9f9f9;
  box-shadow: -6px -6px 14px rgba(255, 255, 255, 0.7), -6px -6px 10px rgba(255, 255, 255, 0.5), 6px 6px 8px rgba(255, 255, 255, 0.075), 6px 6px 10px rgba(55, 84, 170, 0.15);
  border-radius: 30px;
  transition-duration: 0.3s;
}
.tax_list__link:hover, .tax_list__link:focus {
  box-shadow: -2px -2px 6px rgba(255, 255, 255, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.4), 2px 2px 2px rgba(255, 255, 255, 0.05), 2px 2px 4px rgba(55, 84, 170, 0.1);
}
.tax_list__link:hover .tax_list__count, .tax_list__link:focus .tax_list__count {
  color: #666;
  background-color: transparent;
  border-color: #666;
}
.tax_list__count {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.8em;
  font-weight: 700;
  line-height: 1;
  width: 2em;
  height: 2em;
  color: #fff;
  background-color: #666;
  border: 1px solid transparent;
  border-radius: 50%;
  transition-duration: 0.3s;
}

.relation_section,
.tax_section {
  width: 100%;
  margin-top: 60px;
}

.relation_section_title,
.tax_section_title {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}

.relation_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.relation_list__item {
  width: 15%;
  margin-top: 15px;
}
.relation_list__item--empty {
  visibility: hidden;
  margin-top: 0;
}
.relation_list__link {
  display: block;
  border-radius: 20px;
  box-shadow: -6px -6px 14px rgba(255, 255, 255, 0.7), -6px -6px 10px rgba(255, 255, 255, 0.5), 6px 6px 8px rgba(255, 255, 255, 0.075), 6px 6px 10px rgba(55, 84, 170, 0.15);
  overflow: hidden;
  transition-duration: 0.3s;
}
.relation_list__link:hover, .relation_list__link:focus {
  box-shadow: -2px -2px 6px rgba(255, 255, 255, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.4), 2px 2px 2px rgba(255, 255, 255, 0.05), 2px 2px 4px rgba(55, 84, 170, 0.1);
}

.relation_post_link {
  display: block;
  width: 500px;
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  background-color: #f9f9f9;
  text-decoration: none;
  text-align: center;
  padding: 0.8em 0.4em;
  margin: 30px auto 0;
  border-radius: 30px;
  box-shadow: -6px -6px 14px rgba(255, 255, 255, 0.7), -6px -6px 10px rgba(255, 255, 255, 0.5), 6px 6px 8px rgba(255, 255, 255, 0.075), 6px 6px 10px rgba(55, 84, 170, 0.15);
  transition-duration: 0.3s;
}
.relation_post_link:hover, .relation_post_link:focus {
  box-shadow: -2px -2px 6px rgba(255, 255, 255, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.4), 2px 2px 2px rgba(255, 255, 255, 0.05), 2px 2px 4px rgba(55, 84, 170, 0.1);
}

.section_404__text {
  font-size: 1.6rem;
}
.section_404__text p {
  display: block;
}
.section_404__link_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.section_404__link {
  display: block;
  width: max-content;
  padding: 0.5em 1.5em;
  margin: 20px 10px;
  font-size: 1.8rem;
  color: #fff;
  background-color: #333;
  border: 1px solid #333;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
}

.top_read {
  margin: 30px auto 60px;
}
.top_read__text {
  font-size: 1.8rem;
  line-height: 1.6;
}

.top_read_list {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top_read_list__item {
  width: 32%;
  margin-top: 15px;
  text-align: center;
}
.top_read_list__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(55, 84, 170, 0.25), inset -5px -5px 10px #f3f3f3, inset 2px 2px 5px transparent, inset -5px -5px 10px transparent;
  transition-duration: 0.5s;
}
.top_read_list__link:hover, .top_read_list__link:focus {
  box-shadow: 2px 2px 5px transparent, inset -5px -5px 10px transparent, inset 2px 2px 5px rgba(55, 84, 170, 0.25), inset -5px -5px 10px #f9f9f9;
}

.product_list_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  color: #333;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.product_list_loading__text {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1em;
}
.product_list_loading__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_list_loading__icon > div {
  background-color: #666;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
}

.product_list_loading__icon > div:nth-child(1) {
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.product_list_loading__icon > div:nth-child(2) {
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.product_list_loading__icon > div:nth-child(3) {
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.product_list_loading__icon > div:nth-child(4) {
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.product_list_loading__icon > div:nth-child(5) {
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

@keyframes line-scale {
  0% {
    transform: scaley(1);
  }
  50% {
    transform: scaley(0.4);
  }
  100% {
    transform: scaley(1);
  }
}
.adult_mode {
  position: fixed;
  z-index: 8;
  bottom: 15px;
  right: 15px;
  margin: auto;
  width: max-content;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 2px 2px 5px rgba(55, 84, 170, 0.25), inset -5px -5px 10px #f3f3f3, inset 2px 2px 5px transparent, inset -5px -5px 10px transparent;
  font-size: 1.5rem;
  color: #333;
}
.adult_mode__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.adult_mode__close {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #fff;
  background-color: #333;
  border: 1px solid #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
}
.adult_mode__close:hover, .adult_mode__close:focus {
  color: #333;
  background-color: #fff;
}
.adult_mode__text {
  text-align: center;
}
.adult_mode__button {
  position: relative;
  display: block;
  width: 80px;
  height: 40px;
  margin: 0 8px;
  border-radius: 25px;
  background-color: #f9f9f9;
  box-shadow: 2px 2px 5px rgba(55, 84, 170, 0.25), inset -5px -5px 10px #f3f3f3, inset 2px 2px 5px transparent, inset -5px -5px 10px transparent;
  transition-duration: 0.3s;
}
.adult_mode__button::before {
  position: absolute;
  display: block;
  content: "";
  top: 2px;
  left: 3px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background-color: #555;
  transition-duration: 0.5s;
}
.adult_mode__button--false::before {
  left: 41px;
  background-color: #999;
}

.adult_mode__button_wrap {
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pp_section {
  width: 100%;
  margin-top: 40px;
}
.pp_section__title {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.pp_section__content {
  font-size: 1.6rem;
}
.pp_section__content p, .pp_section__content ul, .pp_section__content ol, .pp_section__content li {
  margin-top: 0.5em;
}
.pp_section__content a {
  color: #333;
}

@media screen and (max-width: 900px) {
  .relation_list__item {
    width: 30%;
    margin-top: 1.25%;
  }
}
@media screen and (max-width: 600px) {
  .tax_list {
    justify-content: space-between;
  }
  .tax_list__item {
    width: 49%;
    margin-top: 0.5em;
    margin-right: 0;
  }
  .tax_list__link {
    justify-content: space-between;
  }
  .tax_list__text {
    width: calc(100% - 3em);
  }
  .tax_list__count {
    width: 2em;
  }
  .section_404__link_wrap {
    margin-top: 20px;
  }
  .section_404__link {
    width: 100%;
    margin: 20px 0 0;
  }
  .top_read__text {
    font-size: 1.6rem;
  }
  .top_read_list__item {
    width: 100%;
  }
}

/*# sourceMappingURL=other.css.map */
