@charset "UTF-8";
#wrap {
  opacity: 0;
}

/* common */

.-wrapper {
  margin: 0 auto;
  max-width: 888px;
  width: 90%;
}

.-ttl {
  overflow: hidden;
  height: 40px;
}

.-ttl .-txt {
  display: block;
}

.-ttl img {
  width: auto;
  height: 40px;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .-ttl img {
    height: 22px;
  }
}

/* loading */

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: orange;
  z-index: 9001;
}

#loader {
  display: none;
  position: fixed;
  top: 45%;
  left: 50%;
  z-index: 9002;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.loader-spinner {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  background-color: yellow;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  animation: bigcircle 1s linear infinite;
  -webkit-animation: bigcircle 1s 0s linear infinite;
}

@keyframes bigcircle {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: scale(2.0);
    -webkit-transform: scale(2.0);
    -moz-transform: scale(2.0);
    -ms-transform: scale(2.0);
    -o-transform: scale(2.0);
    opacity: 0;
  }
}

@-webkit-keyframes bigcircle {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: scale(2.0);
    -webkit-transform: scale(2.0);
    -moz-transform: scale(2.0);
    -ms-transform: scale(2.0);
    -o-transform: scale(2.0);
    opacity: 0;
  }
}

/* mv */

.mv {
  background-image: url(../img/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  overflow: hidden;
  position: relative;
}

.mv-wrapper {
  margin: 50px 0;
}

.mv-content {
  width: 54%;
  margin: 0 4.7% 0 auto;
}

.mv-copy {
  width: 100%;
  margin: 0 auto 2%;
}

.mv-ttl {
  width: 95%;
  margin: 0 auto;
}

.mv-roadshow {
  width: 30.5%;
  margin: -5.5% auto 44px;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}

.mv-bnr {
  position: absolute;
  bottom: 50px;
  left: 34px;
  display: flex;
}

.mv-bnr-item {
  width: 140px;
  transition: 0.3s;
}

.mv-bnr-item:hover {
  /* opacity: 0.8; */
  filter: brightness(150%);
}

@media screen and (max-width: 768px) {
  .mv {
    background-image: url(../img/mv_sp.jpg);
    background-size: cover;
    background-position: center center;
  }
  .mv-wrapper {
    margin: 6% 0;
  }
  .mv-content {
    margin: 0 auto;
    width: 100%;
  }
  .mv-copy {
    width: 92%;
    margin: 0 auto 80%;
  }
  .mv-ttl {
    width: 100%;
  }
  .mv-roadshow {
    display: none;
  }
  .mv-bnr {
    display: none;
  }
}

/* mv-nav */

.mv-nav {
  width: 65%;
  margin: 0 auto;
}

.mv-nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mv-nav-list-item {
  width: 48.8%;
  text-align: center;
  background-color: #E24C10;
  border: 2px solid #E24C10;
  color: #fff;
  font-size: 1vw;
  letter-spacing: 5px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin: 0 0 2%;
}

.mv-nav-list-item:hover {
  background-color: #fff;
  color: #E24C10;
  border-color: 2px solid #E24C10;
}

.mv-nav-list-item:last-child {
  margin: 0;
}

.nav-btn {
  display: block;
  padding: 5% 0 4%;
}

@media screen and (max-width: 768px) {
  .mv-nav {
    display: none;
  }
}

.mv-billing {
  width: 65%;
  margin: 30px auto;
}

@media screen and (max-width: 768px) {
  .mv-billing {
    display: none;
  }
}

/* .mv-sns */

.mv-sns {
  width: 20%;
  margin: 0 auto;
}

.mv-sns-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mv-sns-list-item {
  width: 22.8%;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.mv-sns-list-item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  animation-duration: 0.5s;
}

@media screen and (max-width: 768px) {
  .mv-sns {
    display: none;
  }
}

.mv-sub-copy {
  width: 98%;
  margin: 47px auto;
}

@media screen and (max-width: 768px) {
  .mv-sub-copy {
    margin: -7% auto 0;
  }
}

/* under */

.under {
  /* display: none; */
}

.under {
  display: block;
  background-color: #451B00;
  overflow: hidden;
}

.under-wrapper {
  padding: 50px 0;
}

.under-roadshow {
  display: none;
}

.under-billing {
  display: none;
}

.under-sns {
  display: none;
}

.under-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 40px 0;
}

.under-nav-item {
  width: calc( 100% / 4 - 6px);
  text-align: center;
  background-color: #E24C10;
  border: 2px solid #E24C10;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin: 0 0 10px 0;
  padding: 13px 0;
  line-height: 1em;
}

.under-nav-item:hover {
  background-color: #fff;
  color: #E24C10;
  border-color: 2px solid #E24C10;
}

.under-bnr {
  display: flex;
  justify-content: center;
}

.under-bnr-item {
  width: 210px;
}

.under-comment {
  display: none;
}

@media screen and (max-width: 768px) {
  .under-wrapper {
    width: 90%;
    padding: 14% 0;
    /* margin: 14% auto; */
  }
  .under-roadshow {
    width: 55.8%;
    margin: 0 auto 11%;
    display: block;
  }
  .under .-order {
    display: flex;
    flex-direction: column;
  }
  /* under-nav */
  .under-nav {
    order: 2;
    margin: 0;
  }
  .under-nav-item {
    width: 49%;
    font-size: 2.4vw;
  }
  .under-nav-item:hover {}
  .under-bnr {
    order: 1;
    margin: 0 0 10% 0;
  }

  .under-bnr {
    flex-direction: column;
    align-items: center;
  }

  .nav-btn {
    padding: 8% 0 7%;
  }
  .under-billing {
    width: 100%;
    margin: 11% 0;
    display: block;
  }
  /* under-sns */
  .under-sns {
    width: 47%;
    margin: 0 auto;
    display: block;
  }
  .under-sns-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .under-sns-list-item {
    width: 23%;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
  }
  .under-sns-list-item:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    animation-duration: 0.5s;
  }
  .under-comment {
    display: flex;
    justify-content: center;
    margin: 15% 0 0 0;
  }
  
  .under-comment-item {
    width: 200px;
  }
}

/* nav */

.nav {
  background-color: #451B03;
}

.nav-wrapper {
  width: 90%;
  max-width: 1080px;
  padding: 50px 0;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 40px 0;
}

.nav-list-item {
  width: calc( 100% / 4 - 6px);
  text-align: center;
  background-color: #E24C10;
  border: 2px solid #E24C10;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin: 0 0 10px 0;
  padding: 13px 0;
  line-height: 1em;
}

.nav-list-item:hover {
  background-color: #fff;
  color: #E24C10;
  border-color: 2px solid #E24C10;
}

.nav-bnr {
  display: flex;
  justify-content: center;
}

.nav-bnr-item {
  margin: 0 8px 0 0;
}

.nav-bnr-item img {
  width: auto;
  height: 80px;
}

.nav-bnr-item:last-child {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .nav-list {
    display: none;
  }

  .nav-bnr-item {
    margin: 0 0 20px 0;
  }

  .nav-bnr-item:last-child {
    margin: 0;
  }
  
}

/* intro */

.intro {
  background-image: url(../img/intro_bg.jpg);
  background-size: 100% auto;
  background-attachment: fixed;
  background-position: center;
  background-color: #000;
  background-repeat: no-repeat;
}

.intro {
  padding: 0 0 0 10%;
}

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

  .intro {
    padding: 0 0 0 6%;
  }  

}

.intro-wrapper {
  padding: 120px 0 90px 0;
  margin: 0;
  width: 67%;
}

.intro-ttl {
  margin: 0 0 50px 0;
}

.intro-catch {
  max-width: 800px;
  margin: 0 0 20px -22px;
  line-height: 0;
}

.intro-subcatch {
  max-width: 520px;
  margin: 0 0 15px -12px;
  line-height: 0;
}

.intro-copy {
  color: #FFDC7C;
  line-height: 2.1em;
  width: 90%;
}

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

  .intro-copy {
    font-size: 13px;
    /* width: 80%; */
  }

}


@media screen and (max-width: 768px) {
  .intro {
    background-image: url(../img/intro_bg.jpg);
    background-size: 100% auto;
    background-attachment: inherit;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-color: #000;
    padding: 0;
  }
  .intro-wrapper {
    padding: 20% 0 42% 0;
    width: 90%;
    margin: 0 auto;
  }
  .intro-ttl {
    margin: 0 0 8% 0;
    text-align: center;
  }
  .intro-catch {
    width: 104%;
    margin: 0 0 5% -2%;
  }
  .intro-subcatch {
    width: 104%;
    margin: 0 0 15px -2%;
  }
  .intro-copy {
    width: 100%;
  }
}

/* story */

.story {
  background-image: url(../img/story_bg.jpg);
  background-size: auto 100%;
  background-position: bottom center;
}

.story-wrapper {
  padding: 120px 0 120px 0;
}

.story-ttl {
  margin: 0 0 60px 0;
  text-align: center;
}

.story-catch {
  line-height: 0;
  margin: 0 0 60px 0;
}

.story-copy {
  width: 61%;
  line-height: 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .story {
    background-image: url(../img/story_bg_sp.jpg);
    background-size: 100% 100%;
    background-position: bottom center;
  }
  .story-wrapper {
    padding: 15% 0 18% 0;
  }
  .story-ttl {
    margin: 0 0 8% 0;
  }
  .story-catch {
    margin: 0 0 10% 0;
  }
  .story-copy {
    width: 100%;
  }
}

/* productionnote */

.productionnote {
  background-image: url(../img/productionnote_bg.jpg);
  background-size: 100% auto;
  background-position: bottom center;
}

.productionnote-wrapper {
  padding: 120px 0 120px 0;
}

.productionnote-ttl {
  margin: 0 0 60px 0;
  text-align: center;
}

.productionnote-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.productionnote-list-item {
  width: calc(100%/3);
  /* margin: 0 0.5%; */
  position: relative;
  padding: 0 1% 0 0;
  font-weight: 700;
}

.productionnote-list-item:nth-child(4), .productionnote-list-item:nth-child(5) {
  transform: translateY(-10%);
}

.productionnote-list-item .-img {
  transition: 0.3s;
  display: block;
}

.productionnote-list-item .-txt {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 1.8em;
  transform: translateY(-56%);
  transition: 0.3s;
}

.productionnote-list-item .-arrow {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  width: 14%;
  margin: 0 auto;
  transition: 0.3s;
}

.productionnote-list-item .-btn:hover .-txt {
  color: #ccc;
}

.productionnote-list-item .-btn:hover .-arrow {
  transform: translateX(5px);
}

.productionnote-list-item .-btn:hover .-img {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .productionnote {
    background-image: url(../img/productionnote_bg_sp.jpg);
    background-size: 100% auto;
    background-position: top center;
  }
  .productionnote-wrapper {
    padding: 15% 0 15% 0;
  }
  .productionnote-ttl {
    margin: 0 0 8% 0;
  }
  .productionnote-list {
    display: block;
  }
  .productionnote-list-item {
    width: 100%;
    padding: 0;
    margin: 0 0 10% 0;
  }
  .productionnote-list-item:last-child {
    margin: 0;
  }
  .productionnote-list-item .-btn {
    display: block;
    background-image: url(../img/productionnote_box.png);
    background-size: 99% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30% 0 0 0;
  }
  .productionnote-list-item:nth-child(4), .productionnote-list-item:nth-child(5) {
    transform: translateY(0);
  }
  .productionnote-list-item .-txt {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 1.8em;
    transform: translateY(-56%);
    transition: 0.3s;
  }
  .productionnote-list-item .-arrow {
    display: none;
  }
  .productionnote-list-item .-img {
    display: none;
  }
}

/* cast */

.cast {
  background-image: url(../img/cast_bg.jpg);
  background-size: 100% auto;
  background-position: bottom center;
}

.cast-wrapper {
  padding: 120px 0 120px 0;
}

.cast-ttl {
  margin: 0 0 60px 0;
  text-align: center;
}

.cast-list-item .-img {
  display: block;
}

.cast-list-item .-name {
  display: block;
}

.cast-list.-large {
  margin: 0 auto 8% auto;
  max-width: 800px;
  width: 100%;
}

.-large .cast-list-item {
  margin: 0 0 8% 0;
}

.-large .cast-list-item:last-child {
  margin: 0;
}

.-large .cast-list-item .-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.-large .cast-list-item:nth-child(even) .-btn {
  flex-direction: row-reverse;
}

.-large .cast-list-item .-img {
  width: 50%;
}

.-large .cast-list-item .-name {
  width: 45%;
}

.cast-list.-middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 8% auto;
  max-width: 850px;
  width: 100%;
  transform: translateX(-25px);
}

.-middle .cast-list-item {
  width: 43.5%;
}

.-middle .cast-list-item .-img {
  margin: 0 0 8% 0;
}

.-middle .cast-list-item .-name {
  width: 73.5%;
  margin: 0 0 0 auto;
}

.cast-list.-small {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.-small .cast-list-item {
  width: 30%;
  margin: 0 0 8% 0;
}

.-small .cast-list-item .-img {
  margin: 0 0 8% 0;
}

.-small .cast-list-item .-name {
  width: 79%;
  margin: 0 0 0 auto;
}

.-small .cast-list-item.-mini {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.cast-list-item .-btn {
  transition: 0.5s;
  filter: brightness(0.8);
}

.cast-list-item .-btn:hover {
  filter: brightness(1);
}

.-small .cast-list-item.-mini .-btn {
  width: 80%;
}

@media screen and (max-width: 768px) {
  .cast {
    background-image: url(../img/cast_bg_sp.jpg);
    background-size: 100% auto;
  }
  .cast-wrapper {
    padding: 15% 0 0 0;
  }
  .cast-ttl {
    margin: 0 0 15% 0;
  }
  .cast-list.-large {
    margin: 0 auto 14% auto;
  }
  .-large .cast-list-item {
    margin: 0 0 14% 0;
  }
  .-large .cast-list-item:last-child {
    margin: 0;
  }
  .-large .cast-list-item .-btn {
    display: block;
  }
  .-large .cast-list-item .-img {
    width: 100%;
    margin: 0 0 8% 0;
  }
  .-large .cast-list-item .-name {
    width: 100%;
  }
  .cast-list.-middle {
    display: block;
    margin: 0 auto 14% auto;
    transform: translateX(0);
  }
  .-middle .cast-list-item {
    width: 100%;
    margin: 0 0 14% 0;
  }
  .-middle .cast-list-item:last-child {
    margin: 0;
  }
  .-middle .cast-list-item .-name {
    width: 100%;
  }
  .cast-list.-small {}
  .-small .cast-list-item {
    width: 47.5%;
    margin: 0 0 16% 0;
  }
  .-small .cast-list-item .-img {
    margin: 0 0 14% 0;
  }
  .-small .cast-list-item .-name {
    width: 100%;
  }
  .-small .cast-list-item.-mini {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .cast-list-item .-btn {
    transition: 0.5s;
    filter: brightness(1);
  }
  .cast-list-item .-btn:hover {
    filter: brightness(1);
  }

  .-small .cast-list-item.-mini .-btn {
    width: 100%;
  }
}

/* staff */

.staff {
  background-image: url(../img/staff_bg.jpg);
  background-size: 100% auto;
  background-position: bottom center;
}

.staff-wrapper {
  padding: 120px 0 120px 0;
}

.staff-ttl {
  margin: 0 0 75px 0;
  text-align: center;
}

.staff-list {
  display: flex;
  justify-content: center;
}

.staff-list-item {
  width: 90%;
  max-width: 294px;
}

.staff-list-item .-img {
  display: block;
  margin: 0 0 8% 0;
}

.staff-list-item .-name {
  display: block;
}

.staff-list-item .-btn {
  transition: 0.5s;
  filter: brightness(0.8);
}

.staff-list-item .-btn:hover {
  filter: brightness(1);
}

@media screen and (max-width: 768px) {
  .staff {
    background-image: url(../img/staff_bg_sp.jpg);
  }
  .staff-wrapper {
    padding: 15% 0 18% 0;
  }
  .staff-ttl {
    margin: 0 0 14% 0;
  }
  .staff-list {
    display: flex;
    justify-content: center;
  }
  .staff-list-item {
    width: 100%;
    max-width: inherit;
  }
  .staff-list-item .-img {
    margin: 0 0 12% 0;
  }
  .staff-list-item .-name {
    display: block;
  }
  .staff-list-item .-btn {
    transition: 0.5s;
    filter: brightness(0.8);
  }
  .staff-list-item .-btn:hover {
    filter: brightness(1);
  }
}

/* music */

.music {
  background-image: url(../img/music_bg.jpg);
  background-size: auto 100%;
  background-position: top center;
}

.music-wrapper {
  padding: 120px 0 120px 0;
  max-width: 800px;
}

.music-ttl {
  margin: 0 0 75px 0;
  text-align: center;
}

.music-catch {
  background-color: #961911;
  color: #E4E1C5;
  font-weight: 900;
  font-size: 25px;
  text-align: center;
  padding: 10px 0;
  line-height: 1em;
  margin: 0 0 20px 0;
  letter-spacing: 10px;
}

.music-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 110px 0;
}

.music-list-item {
  width: 48.5%;
  border: 1px solid #000;
  margin: 0 0 2.5% 0;
}

.music-list-item .-btn {
  display: block;
  padding: 21% 0 0 0;
  position: relative;
  transition: 0.3s;
}

.music-list-item .-btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.music-list-item.-red {
  box-shadow: #961911 2px 2px 0;
}

.music-list-item.-blue {
  box-shadow: #0B4348 2px 2px 0;
}

.music-list-item .-name {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
}

.music-list-item:nth-child(1) .-name {
  width: 68.29%;
}

.music-list-item:nth-child(2) .-name {
  width: 23.19%;
}

.music-list-item:nth-child(3) .-name {
  width: 74.22%;
}

.music-list-item:nth-child(4) .-name {
  width: 39.69%;
}

.music-list-item:nth-child(5) .-name {
  width: 17.52%;
}

.music-list-item:nth-child(6) .-name {
  width: 72.16%;
}

.music-list-item:nth-child(7) .-name {
  width: 45.87%;
}

.music-list-item .-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: transparent 16px solid;
  border-left: transparent 25px solid;
  width: 0;
  height: 0;
}

.music-list-item.-red .-btn:after {
  border-left-color: #961911;
}

.music-list-item.-blue .-btn:after {
  border-left-color: #0B4348;
}

.music-info-ttl {
  color: #961911;
  text-align: center;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-size: 24px;
}

.music-info-copy {
  text-align: center;
  line-height: 1.8em;
  margin: 0 0 15px 0;
}

.music-info-spec {
  text-align: center;
  line-height: 1.8em;
  margin: 0 0 40px 0;
}

.music-info-spec .-bold {
  font-weight: 700;
}

.music-info-btn {
  font-weight: 700;
  display: block;
  width: 200px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 0;
  line-height: 1em;
  transition: 0.3s;
  position: relative;
}

.music-info-btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: 0.3s;
  z-index: 1;
}

.music-info-btn .-txt {
  position: relative;
  z-index: 10;
}

.music-info-btn:hover {
  color: #fff;
}

.music-info-btn:hover:before {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .music {
    background-image: url(../img/music_bg_sp.jpg);
    background-size: 100% auto;
  }
  .music-wrapper {
    padding: 15% 0 17% 0;
  }
  .music-ttl {
    margin: 0 0 12% 0;
  }
  .music-catch {
    font-size: 20px;
    padding: 2% 0;
    margin: 0 0 5% 0;
    letter-spacing: 8px;
    /* font-weight: 500; */
  }
  .music-list {
    display: block;
    margin: 0 0 15% 0;
  }
  .music-list-item {
    width: 100%;
    margin: 0 0 6% 0;
  }
  .music-list-item .-btn {
    padding: 23% 0 0 0;
  }
  .music-list-item .-btn:after {
    border: transparent 14px solid;
    border-left: transparent 20px solid;
  }
  .music-list-item:nth-child(odd) {
    box-shadow: #961911 2px 2px 0;
  }
  .music-list-item:nth-child(even) {
    box-shadow: #0B4348 2px 2px 0;
  }
  .music-list-item:nth-child(odd) .-btn:after {
    border-left-color: #961911;
  }
  .music-list-item:nth-child(even) .-btn:after {
    border-left-color: #0B4348;
  }
  .music-info-ttl {
    margin: 0 0 7% 0;
    font-size: 5vw;
  }
  .music-info-copy {
    margin: 0 0 5% 0;
    font-size: 4vw;
  }
  .music-info-spec {
    font-size: 3.8vw;
    margin: 0 0 10% 0;
  }
  .music-info-spec-item {
    margin: 0 0 1em 0;
  }
  .music-info-spec-item:last-child {
    margin: 0;
  }
  .music-info-btn {
    width: 60%;
    padding: 6% 0;
  }
}

/* img03 */

.imgarea03 {
  position: relative;
}

.imgarea03 .-txt {
  position: absolute;
  left: 2.5%;
  bottom: 5%;
  width: 28.9%;
}

@media screen and (max-width: 768px) {
  .imgarea03 {}
  .imgarea03 .-txt {
    left: 4%;
    bottom: 7%;
    width: 55%;
  }
}