/* -------------- */
/* general */
/* -------------- */
body {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  /* background-color: #000; */
  color: #fff;
  font-size: 15px;
  line-height: 2;
}
section {
  padding: 4rem 1rem 4rem;
}
.inner {
  width: calc(100% - 1rem);
  margin: 0 auto;
}
p:not(:last-child) {
  margin-bottom: 1rem;
}
img {
  width: 100%;
}
section h2 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (min-width : 750px) {
  .inner {
    width: 750px;
  }
}

/* -------------- */
/* button */
/* -------------- */
.btn01 {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 10rem;
  font-size: 1.1rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: 20px 20px;
  margin-bottom: 1rem;
  transition: 0.3s ease;
}
.btn01.color01 {
  color: #000;
  background-color: #D6CDE9;
  background-image: url("../img/arrow_black.svg");
}
.btn01.color02 {
  color: #fff;
  background-color: #000;
  background-image: url("../img/arrow_white.svg");
}
.btn01.color03 {
  color: #000;
  background-color: #E6CDE9;
  background-image: url("../img/arrow_black.svg");
}
.btn01.color01.back {
  color: #000;
  background-color: #D6CDE9;
  background-image: url("../img/arrow_black_back.svg");
  background-position: 10% 50%;
}
@media screen and (min-width : 750px) {
  .btn01 {
    width: 25rem;
    margin: 0 auto 1rem;
  }
  .btn01:hover {
  opacity: 0.7;
  background-position: 92% 50%;
  }
  .btn01.color01.back:hover {
      opacity: 0.7;
      background-position: 8% 50%;
  }
}
.video {
  margin-bottom: 2rem;
}
.video iframe {
  width: 100%;
  height: calc((100vw - 2rem) * 9 / 16);
}
@media screen and (min-width : 750px) {
  .video iframe {
    height: calc(750px * 9 / 16);
  }
}

/* -------------- */
/* gnav */
/* -------------- */
.pcnav {
  display: none;
}
.spnav {
  z-index: 99;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  padding: 6rem 2rem 2rem;
  text-align: center;
  transition: 1s ease;
  opacity: 1;
}
.spnav.hide {
  top: -100vh;
  opacity: 0;
}
.spnav ul li {
  padding: 1rem;
}
.spnav h1 {
  font-size: 1.2rem;
}
.menu_btn {
  z-index: 100;
  position: fixed;
  top: 1.2rem;
  right: 0.7rem;
  /* background: #000; */
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  border-radius: 3px;
}
.menu_btn span::before {
  display: block;
  content: "";
  background-color: #fff;
  width: 3rem;
  height: 3px;
  border-radius: 3px;
  rotate: 45deg;
  translate: 0 1.5rem;
  transition: 0.3s ease;
}
.menu_btn span::after {
  display: block;
  content: "";
  background-color: #fff;
  width: 3rem;
  height: 3px;
  border-radius: 3px;
  rotate: -45deg;
  translate: 0 1.4rem; 
  transition: 0.3s ease;
}
.menu_btn.hide span::before{
  display: block;
  content: "";
  background-color: #fff;
  width: 3rem;
  height: 3px;
  border-radius: 3px;
  rotate: 0deg;
  translate: 0 1rem;
}
.menu_btn.hide span::after {
  display: block;
  content: "";
  background-color: #fff;
  width: 3rem;
  height: 3px;
  border-radius: 3px;
  rotate: 0deg;
  translate: 0 2.25rem; 
}
@media screen and (min-width : 750px) {
  .pcnav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
  }
  .pcnav .inner {
    display: flex;
    width: 750px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  .spnav, .menu_btn {
    display: none;
  }
  .pcnav ul {
    display: flex;
    width: 80%;
  }
  .pcnav ul li {
    width: 20%;
  }
  .pcnav ul li a {
    display: block;
    text-align: center;    
  }
}

/* -------------- */
/* header */
/* -------------- */
header {
  height: 100vh;
  padding-top: 23vh;
  background-color: #000;
}
header h1 {
  width: 300px;
  margin: 0 auto 10vh;
}
header ul {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
header ul li {
  height: 3.5rem;
  width: 3.5rem;
}
header ul li a {
  display: block;
  transition: 0.3s ease;
}

@media screen and (min-width : 750px) {
  header ul li a:hover {
  translate: 0 -5px;
}
header h1 {
  width: 50vh;
}
}
/* -------------- */
/* new */
/* -------------- */
#new {
  background-color: #000;
}


/* -------------- */
/* about */
/* -------------- */
#about {
  background-color: #E9CDD4;
  color: #000;
}
#about .user_icon {
  width: 10rem;
  margin: 0 auto 1.5rem;
}
#about .name {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 0;
}
#about .role {
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}
/* -------------- */
/* music */
/* -------------- */
#music {
  background-color: #000;
}
#music .music_list {
  margin-bottom: 3rem;
}
#music .music_list li {
  display: flex;
  background-color: rgba(217, 217, 217, 0.2);
  /* gap: 1rem; */
  margin-bottom: 1rem;
  height: 5rem;
}
#music .music_list li .img_scale {
  overflow: hidden;
  height: 5rem;
  width: 5rem;
}
#music .music_list li img {
  display: block;
}
#music .music_list li dl {
width: calc(100% - 5rem);
padding: 1rem;
position: relative;
}
#music .music_list li dt {
  line-height: 1.2;
}
#music .music_list li dd {
  font-size: 0.8rem;
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 1rem;

}
@media screen and (min-width : 750px) {
  #music .music_list a {
    transition: 0.3s ease;
  }
  #music .music_list a:hover li {
    background-color: rgba(217, 217, 217, 0.3);
    
  }
  #music .music_list a img{
    transition: 0.3s ease;
  }
  #music .music_list a:hover img {
    scale: 1.1;    
  }
  #music .music_list li dl {
  width: calc(750px - 5rem);
  padding: 1rem;
  }
}

/* -------------- */
/* parallax */
/* -------------- */
.parallax {
  height: 80vh;
}
.parallax_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-position: 50% 50%;
  z-index:-1;
}
/* -------------- */
/* special */
/* -------------- */
#special {
  background-color: #000;
}

#special .special_bnr {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width : 750px) {
  #special .special_bnr {
    width: 400px;
    margin: 0 auto 2rem;
  }
}

/* -------------- */
/* link */
/* -------------- */
#link {
  color: #000;
  background-color: #CDD3E9;
}
/* -------------- */
/* footer*/
/* -------------- */
footer {
  background-color: #000;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* -------------- */
/* music index*/
/* -------------- */
body.music_index {
  background-color: #000;
}
.music_index header {
  height: auto;
}
.music_index header h2 {
  font-size: 1.3rem;
  text-align: center;
}

/* -------------- */
/* music detail*/
/* -------------- */
body.music_detail {
  background-color: #000;
}

.music_detail header {
  height: auto;
}
.music_detail header h2 {
  font-size: 1.3rem;
  text-align: center;
}
.music_detail header h2 + p {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 2rem;
}
.music_detail .external_link {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.music_detail .external_link a {
  display: block;
  height: 3.5rem;
  width: 3.5rem;
  transition: 0.3s ease;
}
.music_detail h3.tab {
  background-color: #D6CDE9;
  padding: 1.2rem;
  display: flex;
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.music_detail h3.tab img {
  display: block;
  height: 30px;
  width: 30px;
  transition: 0.3s ease;
}

.music_detail h3.tab.active img {
  rotate: -180deg;
}
.music_detail .tab_content {
  display: none;
  margin-bottom: 2rem;
}
.music_detail .dl_content li {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.music_detail .dl_content li .dl_btn {
  display: block;
  height: 1.7rem;
  width: 1.7rem;
}
.music_detail .dl_content li .dl_btn img {
  height: 1.7rem;
  width: 1.7rem;
  object-fit: contain;
}
@media screen and (min-width : 750px) {
  .music_detail .external_link a:hover {
    translate: 0 -5px;
  }
}


