@charset "UTF-8";
/* CSS Document */
.disco {
  padding: 60px 0 100px;
}
@media (min-width: 769px) {
  .disco {
    padding: 180px 0 100px;
  }
  h3 {
    margin-bottom: 100px;
  }
}
/* discoのジャンル選択ボタン */
.disco-nav {
  max-width: 300px;
  margin: 0 auto;
}
.disco-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 600px;
  margin: 0 auto;
}
.disco-nav-list {
  width: 49.999%;
}
.disco-nav-text {
  cursor: pointer;
}
.disco-nav-text.active, .disco-nav-text:hover {
  color: #F0A775;
  border-bottom: solid 2px #F0A775;
}
.disco-nav-list:nth-child(1), .disco-nav-list:nth-child(2) {
  margin-bottom: 50px;
}
.is-hide {
  display: none;
}
@media (min-width: 600px) {
  .disco-nav {
    max-width: none;
    margin: unset;
  }
  .disco-nav ul {
    flex-wrap: nowrap;
  }
  .disco-nav-list:nth-child(1), .disco-nav-list:nth-child(2) {
    margin-bottom: 0;
  }
}
/* discoの内容 */
.disco-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 740px;
  margin: 0 auto;
}
.disco-item {
  position: relative;
}
.disco-detail {
  position: absolute;
  color: #F0A775;
  bottom: 0;
  right: 0;
}
.disco-detail p {
  border-bottom: solid 1px #F0A775;
  padding-right: 15px;
}
.disco-detail-soldout {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 100%;
}
.disco-detail-arrow::before {
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #F0A775;
  border-right: 2px solid #F0A775;
  transform: rotate(45deg);
}
@media (min-width: 740px) {
  .disco-container {
    justify-content: unset;
  }
}
@media (min-width: 1110px) {
  .disco-container {
    max-width: 1110px;
  }
}
.disco-item-container {
  margin-top: 50px;
}
.disco-item-container:hover {
  opacity: 0.8;
}
.disco-item-container.none:hover {
  opacity: unset;
}
@media (min-width: 500px) {
  .disco-item-container {
    margin: 50px 35px 0;
  }
}
.disco-item-img-wrap {
  width: 300px;
  height: 300px;
  margin: 50px auto 0;
  cursor: pointer;
}
.disco-item-img-wrap.none {
  cursor: default;
}
.disco-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.disco-item {
  width: 300px;
  text-align: left;
  margin: 0 auto;
  cursor: pointer;
}
.disco-item.none {
  cursor: default;
  position: relative;
}
.disco-item-category {
  padding-top: 10px;
  color: #F0A775;
  font-weight: 500;
}
.disco-item-title, .disco-item-date {
  color: #333333;
}
.disco-item-title {
  font-size: 2.4rem;
  font-weight: 500;
  padding-top: 15px;
}
.disco-item-date {
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding-top: 30px;
}
/* DISCOの購入/再生リスト */
.batsu {
  display: block;
  position: absolute;
  top: 30px;
  right: 5%;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.batsu::before, .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 26px;
  background: #333333;
}
.batsu::before {
  transform: translate(-50%, -50%)rotate(45deg);
}
.batsu::after {
  transform: translate(-50%, -50%)rotate(-45deg);
}
.disco-item-detail-jacket12, .disco-item-detail-jacket11, .disco-item-detail-jacket10, .disco-item-detail-jacket09, .disco-item-detail-jacket08, .disco-item-detail-jacket07, .disco-item-detail-jacket06, .disco-item-detail-jacket05, .disco-item-detail-jacket04, .disco-item-detail-jacket03, .disco-item-detail-jacket02, .disco-item-detail-jacket01 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #333333;
  background-color: rgba(233, 233, 233, .95);
  z-index: 1000;
  padding: 50px 0;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}
.disco-detail-list {
  text-align: left;
  width: 300px;
  margin: 0 auto 20px;
}
.disco-detail-item {
  display: flex;
  width: 300px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 20px;
  margin: 0 auto 30px;
}
.disco-detail-item:last-child {
  margin: 0 auto;
  transition-duration: .4s;
}
.disco-detail-item:hover:last-child {
  transform: scale(1.1);
}
.disco-detail-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #F0A775;
  font-size: 2.0rem;
}
.disco-detail-item-img {
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  max-width: 300px;
  margin: 0 auto 30px;
  transition-duration: .4s;
}
.disco-detail-item-img:hover {
  transform: scale(1.1);
}
.disco-detail-item-img a {
  width: 100%;
  padding: 10px 50px;
}
.disco-detail-item-img img {
  height: 40px;
  max-height: 100%;
  max-width: inherit;
  margin: 0 auto;
}