#discography .contentBlock {
  width: 1000px;
  min-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
}

@media (max-width: 560px) {
  #discography .contentBlock {
    width: 100%;
    min-width: auto;
  }
}

#discography .contentBlock .tabList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 450px;
  margin: 0 auto 60px;
  font-weight: bold;
}

#discography .contentBlock .tabList__item {
  display: block;
  cursor: pointer;
  padding: 0 5px 10px;
}

@media (max-width: 560px) {
  #discography .contentBlock .tabList__item {
    margin: 20px 15px;
  }
}

#discography .contentBlock .tabList .is-active {
  border-bottom: 3px solid #000;
}

@media (max-width: 560px) {
  #discography .contentBlock .tabList {
    width: 70%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

#discography .contentBlock .list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

#discography .contentBlock .list__item {
  flex-basis: 30%;
  margin-bottom: 60px;
}

#discography .contentBlock .list__item img {
  width: 100%;
}

#discography .contentBlock .list__item .ttl {
  font-weight: 500;
  margin: 15px 0;
  line-height: 1.2em;
}

#discography .contentBlock .list__item .info {
  display: flex;
  align-items: center;
}

#discography .contentBlock .list__item .info__label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  padding: 5px 10px;
  background: #000;
  color: #fff;
  margin-right: 10px;
}

#discography .contentBlock .list__item .info__date {
  font-size: 12px;
  color: #959595;
}

@media (max-width: 560px) {
  #discography .contentBlock .list__item {
    margin-bottom: 40px;
  }
}

@media (max-width: 560px) {
  #discography .contentBlock .list {
    flex-direction: column;
  }
}

.discography--details .contentBlock {
  box-sizing: border-box;
  padding-bottom: 2%;
}

.discography--details .contentBlock img {
  display: block;
  width: 45%;
  margin: 0 auto;
}

@media (max-width: 560px) {
  .discography--details .contentBlock img {
    width: 100%;
  }
}

.discography--details .contentBlock .ttl {
  font-size: 26px;
  line-height: 1.5em;
  width: 100%;
  margin: 60px auto;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #959595;
}

@media (max-width: 560px) {
  .discography--details .contentBlock .ttl {
    font-size: 20px;
  }
}

.discography--details .contentBlock .txt {
  width: 100%;
  margin: 0 auto;
  line-height: 2em;
}

@media (max-width: 560px) {
  .discography--details .contentBlock .txt {
    word-break: break-word;
  }
}