@charset "UTF-8";

/* ===============================================
# music
=============================================== */

.p-music {
  opacity: 0;
}

.-subLoadComplete .p-music {
  -webkit-animation: ani-fadein 0.8s cubic-bezier(0.02, 0.88, 0.58, 1) 0s 1 normal forwards;
  animation: ani-fadein 0.8s cubic-bezier(0.02, 0.88, 0.58, 1) 0s 1 normal forwards;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
  transition: opacity 0.8s, -webkit-transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
  transition: opacity 0.8s, transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
  transition: opacity 0.8s, transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98), -webkit-transform 0.85s cubic-bezier(0.18, 0.63, 0.19, 0.98);
}

a {
	color: #fff;
}

.p-music {
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-music {
    max-width: 1200px;
    min-height: 260px;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 768px) {
  .p-music {
    padding: 0 4vw;
  }
}

.p-music__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  .p-music__in {
    margin: 40px 3.33333vw 0;
  }
}

@media screen and (max-width: 768px) {
  .p-music__in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .p-music__nav--in {
    width: 322px;
    position: sticky;
    top: 150px;
  }
}

@media screen and (max-width: 768px) {
  .p-music__nav--in {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}

.p-music__nav--subttl>span {
  background: #333;
  padding: 4px;
  display: inline-block;
  line-height: 1;
  font-size: 10px;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .p-music__nav--subttl>span {
    -webkit-transform: translate(0, 3px) scale(0.7);
    transform: translate(0, 3px) scale(0.7);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}

@media screen and (max-width: 768px) {
  .p-music__nav--cont.-half {
    width: calc(50% - 5px);
  }

  .p-music__nav--cont.-half:first-child {
    margin-right: 5px;
  }
}

@media screen and (max-width: 768px) {
  .p-music__nav--cont.-full {
    width: 100%;
  }
}

.p-music__nav--list {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .-full .p-music__nav--list {
    padding: 0;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .p-music__nav--list {
    padding: 5px;
    margin-bottom: 5px;
  }
}

.p-music__nav--item:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p-music__nav--cont.-full .p-music__nav--item {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .-full .p-music__nav--item {
    width: calc(50% - 5px);
    border: 1px solid #333;
    padding: 5px;
  }

  .-full .p-music__nav--item:not(:nth-child(2n)) {
    margin-right: 5px;
  }
}

.p-music__nav--item a {
  position: relative;
  display: block;
  background: #FFF;
  overflow: hidden;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  padding: 16px 20px;
  text-decoration: none;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-music__nav--item a {
    font-size: 10px;
    padding: 6px 9px;
  }
}

.p-music__nav--item a span {
  position: relative;
  color: #000;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  z-index: 11;
}

.p-music__nav--item a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  z-index: 10;
}

.p-music__nav--item a::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  -webkit-mask-size: 9px 9px;
  mask-size: 9px 9px;
  -webkit-mask-image: url(../../assets/img/common/icon/icon-arrow.svg);
  mask-image: url(../../assets/img/common/icon/icon-arrow.svg);
  background-color: #000;
  position: absolute;
  bottom: 10px;
  right: 10px;
  -webkit-transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, background-color .3s ease;
  transition: transform .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  z-index: 11;
}

@media screen and (max-width: 768px) {
  .p-music__nav--item a::after {
    width: 5px;
    height: 5px;
    -webkit-mask-size: 5px 5px;
    mask-size: 5px 5px;
    bottom: 5px;
    right: 5px;
  }
}

.p-music__nav--item a.is-active::before,
.p-music__nav--item a:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.p-music__nav--item a.is-active::after,
.p-music__nav--item a:hover::after {
  -webkit-transform: translate(5px, 5px);
  transform: translate(5px, 5px);
  background-color: #fff;
}

@media screen and (max-width: 768px) {

  .p-music__nav--item a.is-active::after,
  .p-music__nav--item a:hover::after {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
}

.p-music__nav--item a.is-active span,
.p-music__nav--item a:hover span {
  color: #FFF;
}

@media screen and (min-width: 769px) {
  .p-music__content {
    width: calc(100% - 322px - 50px);
    min-height: calc(100vh + 10px);
    margin-left: 50px;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
  }
}

.p-music__content--item {
  display: none;
}

.p-music__content--ttl {
  position: relative;
  margin-bottom: -1px;
}

@media screen and (max-width: 768px) {
  .p-music__content--ttl {
    margin-bottom: -1px;
  }
}

.-op .p-music__content--ttl::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 14.168%;
  background: url("../../assets/img/music/music_ttl_op.svg") no-repeat center center/contain;
}

.-insert .p-music__content--ttl::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 14.168%;
  background: url("../../assets/img/music/music_ttl_insert.svg") no-repeat left center/contain;
}

.-ed .p-music__content--ttl::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 14.168%;
  background: url("../../assets/img/music/music_ttl_ed.svg") no-repeat left center/contain;
}

.p-music__content--detailTop {
  border: 1px solid #333;
  padding: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-music__content--detailTop {
    margin-bottom: 21px;
  }
}

.p-music__overview--in {
  background: #FFF;
  padding: 13px 20px;
  /* margin-bottom: 10px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-music__overview--in {
    padding: 12px 10px;
    margin-bottom: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-music__overview--subttl {
  width: 115px;
}

@media screen and (max-width: 768px) {
  .p-music__overview--subttl {
    margin-right: -10px;
  }
}

.p-music__overview--subttl>span {
  display: block;
  padding: 4px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .p-music__overview--subttl>span {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: left;
    transform-origin: left;
    padding-top: 2px;
  }
}

.p-music__overview--artistName,
.p-music__overview--creditTxt {
  color: #000;
  font-weight: 500;
}

@media screen and (min-width: 769px) {

  .p-music__overview--artistName,
  .p-music__overview--creditTxt {
    width: calc(100% - 115px - 24px);
    margin-left: 24px;
  }
}

@media screen and (max-width: 768px) {

  .p-music__overview--artistName,
  .p-music__overview--creditTxt {
    width: calc(100% - 110px - 5px);
  }
}

.p-music__overview--artistName {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .p-music__overview--artistName {
    font-size: 10px;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .p-music__overview--creditTxt {
    width: calc(100% - 110px - 5px);
    /* margin: -16px 0px; */
  }
}

.p-music__overview--creditTxt span {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .-op .p-music__overview--creditTxt span {
    font-size: 10px;
    width: 150%;
    display: block;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}

.p-music__overview--creditTxt span.-txt-small {
  font-size: 10px;
}

@media screen and (min-width: 769px) {

  .p-music__overview--artistName,
  .p-music__overview--creditTxt {
    width: calc(100% - 115px - 24px);
    margin-left: 24px;
  }
}

@media screen and (max-width: 768px) {

  .p-music__overview--artistName,
  .p-music__overview--creditTxt {
    width: calc(100% - 110px - 5px);
  }
}

.p-music__overview--artistName {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .p-music__overview--artistName {
    font-size: 10px;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .p-music__overview--creditTxt {
    margin: -16px -250px -16px 0px;
    width: 150%;
    display: block;
    font-size: 10px;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  .-op .p-music__overview--creditTxt {
    margin: -26px -250px -26px 0px;
  }
}

.p-music__overview--creditTxt span.-txt-small {
  font-size: 10px;
}

.p-music__overview--creditTxtItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: #000;
  font-weight: 500;
}

.p-music__overview--creditTxtItem>dt {
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-music__overview--creditTxtItem>dt {
    min-width: 70px;
  }
}

.p-music__overview--creditTxtItem>dt::after {
  content: ' ';
  display: block;
  margin: 0 4px;
}

.p-music__overview--creditTxtItem dt,
.p-music__overview--creditTxtItem dd {
  font-size: 12px;
  line-height: 2;
}

@media screen and (max-width: 768px) {

  .p-music__overview--creditTxtItem dt,
  .p-music__overview--creditTxtItem dd {
    font-size: 10px;
  }
}

.p-music__overview--creditTxtItem.-contains {
  margin-top: 8px;
}

.p-music__overview--img img {
  display: block;
  margin: 0 auto;
}

.p-music__artistDetail {  
  font-size: 16px;
  line-height: 2;
}

.p-music__artistDetail img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
  .p-music__artistDetail {   
    font-size: 10px;
    line-height: 2;
  }
}

.p-music__artistDetail--name {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .p-music__artistDetail--name {
    margin-bottom: 12px;
  }
}

.p-music__artistDetail--link {
  display: block;
}

.p-music__artistDetail--link a {
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-music__artistDetail--link a:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .p-music__artistCmt {
    font-size: 12px;
  }
}

.p-music__artistCmt--ttl {
  background: #fff;
  margin-bottom: 32px;
  color: #000;
  text-align: center;
  font-size: 20px;
  letter-spacing: .06em;
  font-family: "Oswald", sans-serif;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .p-music__artistCmt--ttl {
    padding: 12px 0;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1;
  }
}

.p-music__artistCmt--txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 43px;
}

@media screen and (max-width: 768px) {
  .p-music__artistCmt--txt {
    font-size: 10px;
    line-height: 2;
    margin-bottom: 21px;
  }
}

.musicYoutube {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
	margin-top: 50px;
}
.musicYoutube iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
