@charset "UTF-8";
@media (min-width: 1200px) {
  .pc_none {
    display: none !important;
  }
}
@media (max-width: 520px) {
  .sp_none {
    display: none !important;
  }
}
/* まずはリセット */
* {
  margin: 0;
  padding: 0;
  color: #393939;
}

html {
  scroll-behavior: smooth;
}

h1 {
  padding: 0 30px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 521px) {
  h1 {
    padding: 0 60px;
  }
}

.review_all .href {
  cursor: pointer;
}
@media (min-width: 1200px) {
  .review_all .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
  }
}
.review_all .flex::after {
  display: block;
  content: "";
  width: calc((100% - 80px) / 3);
}
.review_all .flex .item {
  position: relative;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.review_all .flex .item:hover {
  opacity: 0.65;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.review_all .flex .item:hover .new {
  top: -30px;
}
.review_all .flex .item:not(:first-of-type) {
  margin-top: 80px;
}
@media (min-width: 1200px) {
  .review_all .flex .item:not(:first-of-type) {
    margin-top: 0;
  }
}
@media (min-width: 521px) {
  .review_all .flex .item {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 40px;
  }
}
@media (min-width: 1200px) {
  .review_all .flex .item {
    width: calc((100% - 80px) / 3);
    margin: 0;
  }
  .review_all .flex .item:nth-of-type(n + 4) {
    margin-top: 80px;
  }
}
.review_all .flex .item .new {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  transition: all 0.3s;
}
.review_all .flex .item .new img {
  width: 70px;
}
.review_all .flex .item .img {
  position: relative;
}
.review_all .flex .item .img img {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 50%, 20% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 50%, 20% 100%, 0% 100%);
}
@media (min-width: 521px) {
  .review_all .flex .item .img img {
    border-radius: 40px 40px 0 0;
  }
}
.review_all .flex .item .img .other {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  padding: 0 1em 0 0;
}
.review_all .flex .item .img .other .genre {
  font-size: clamp(11px, 11px + (16 - 11) * (100vw - 320px)/(520 - 320), 16px);
}
@media (min-width: 1200px) {
  .review_all .flex .item .img .other .genre {
    font-size: clamp(10px, 10px + (16 - 10) * (100vw - 1200px)/(1920 - 1200), 16px);
  }
}
.review_all .flex .item .text {
  padding: 1em;
}
@media (min-width: 521px) {
  .review_all .flex .item .text {
    padding: 1em 2em 2em;
  }
}
.review_all .flex .item .text h3 {
  font-style: oblique;
  font-size: 24px;
  margin-bottom: 1em;
}
.review_all .flex .item .text h2 {
  font-family: "Noto Serif JP";
  font-size: 16px;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  max-width: 800px;
  margin: 60px auto 100px;
  padding: 0 30px;
}
@media (min-width: 521px) {
  .tab {
    padding: 0 60px;
  }
}
.tab .tab_genre,
.tab .tab_release {
  background-color: #e3e3e3;
  font-weight: bold;
  text-align: center;
  padding: 1em 2em;
  order: -1;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  transition: all 0.3s;
}
.tab .tab_genre:hover,
.tab .tab_release:hover {
  opacity: 0.65;
}
.tab .tab_content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab .tab_input:checked + .tab_genre + .tab_content,
.tab .tab_input:checked + .tab_release + .tab_content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: opacity 0.6s;
}
.tab input[name=tab_item] {
  display: none;
}
.tab .tab_input:checked + .tab_genre {
  color: #ffffff;
  background: #58c3e0;
}
.tab .tab_input:checked + .tab_release {
  color: #ffffff;
  background: #58e075;
}

.genre_all,
.release_all {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
.genre_all li,
.release_all li {
  width: calc((100% - 10px) / 2);
  box-sizing: border-box;
}
@media screen and (max-width: 1199.9px) {
  .genre_all li:nth-of-type(n + 3),
  .release_all li:nth-of-type(n + 3) {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .genre_all li,
  .release_all li {
    width: calc((100% - 20px) / 3);
  }
  .genre_all li:nth-of-type(n + 4),
  .release_all li:nth-of-type(n + 4) {
    margin-top: 10px;
  }
}
.genre_all li a,
.release_all li a {
  display: block;
  color: #ffffff;
  padding: 1em 1.5em;
  font-size: clamp(10px, 10px + (16 - 10) * (100vw - 320px)/(520 - 320), 16px);
  transition: all 0.3s;
}
.genre_all li a:hover,
.release_all li a:hover {
  margin-top: 3px;
}

.genre_all li a {
  background-color: #58c3e0;
  border-bottom: 5px solid #3a7c8f;
}
.genre_all li a:hover {
  background: #85cee3;
  border-bottom: 2px solid #3a7c8f;
}
.genre_all li .current {
  background-color: #4ba6c0;
}

.release_all li a {
  background-color: #58e075;
  border-bottom: 5px solid #338445;
}
.release_all li a:hover {
  background: #81e095;
  border-bottom: 2px solid #338445;
}
.release_all li .current {
  background-color: #4cc065;
}/*# sourceMappingURL=archive-review.css.map */