@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

html {
  scroll-behavior: smooth;
}


body {
  font-size:14px;
  /* font-family: 'M PLUS 1p','Noto Sans JP', sans-serif, Arial; */
  margin-block-end:-5px;
  margin-bottom:-5px;  
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #000;
  color: #fff;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}


p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 6px;
}

.wrapper {
  max-width: 1140px;
  margin: 130px auto 0;
  padding: 0 40px;
}

@media screen and (max-width: 960px){
  .wrapper {
    max-width: 960px;
    margin: 80px auto 0;
    padding: 0 20px;
  }
}


.s {
  font-size: 0.6rem;
}



/* header=========================== */

#header h1 {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  margin-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
}
#header img{
 position:absolute;
 top:0;
 left: 5%;
 padding-top: 10px;
 padding-bottom: 10px;
 height: 130px;
}

@media screen and (max-width: 960px){
  #header h1 {
    position: relative;
    top: 0;
    width: 100%;
    height: 100px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0);
    z-index: 0;
  }
  #header img{
   position:absolute;
   top:80%;
   transform: translate(-50%, -50%);
   left: 50%;
   padding-top: 0;
   padding-bottom: 10px;
   height: 130px;
  }
}

/* tsubatics solo========================== */

.lib-title {
  font-size: 1.25rem;
  margin-block-end:-5px;
  margin-bottom:-5px;  
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

@media screen and (max-width: 960px){
  .lib-title {
    margin-top: 80px;
  }
}

  .lib-title p{
margin-bottom: 20px;
}

  .sp-video-top,
  .sp-video-conts {
    display: none;
  }

.modal-window-conts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  margin-bottom: 30px;
  min-width: 0;
}


.thumb {
  opacity: 0.6;
  transition: all 1s;
}

  .thumb:hover {
  opacity: 1;
}
  .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;	
}


.library-top {
  display: block;
  margin: 0 auto 40px;
  font-size: 3rem;
  margin-block-end:-5px;
  margin-bottom:-5px;  
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}



.video-conts {
  background: rgba(0, 0, 0, 0.6);
  width: 90%;
  padding: 20px;
  position: absolute;
  top: 40px;
  left: 0;
  right:0;
  margin: 0 auto;
  text-align: center;
   visibility: hidden; /* 非表示にしておく */
  opacity: 0; /* 非表示にしておく */
    transition: all .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.video-conts.active {
  visibility: visible;
  opacity: 1;
  padding: 40px 20px;
  margin-top: 130px;
}

.videoPlayer {
  width: 90%;
  height: auto;
  margin: 0 auto;
}




/* close button */
.video-wrap {
  position: relative;
}

.video-close {
  position: absolute;
  bottom: 100%;
  right: 3%;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  transition: all .8s;
  padding: 0;
}

.video-close:hover {
  opacity: 0.8;
  color: #fff;
  transition: all .5s;
}


@media (max-width: 960px) {

  .modal-window-conts {
    display: none;
  }

  .sp-video-top {
    display: block;
  width: 100%;
  margin: 0 0 20px;
  }

  .sp-video-top video {
    width: 100%;
    height: auto;
    }
  
  .sp-video-conts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-rows: 1fr 1fr; */
  grid-gap: 10px;
  }
  
  .sp-video-conts video {
  width: 100%;
  height: auto;
  }
  
  
  #sp-play {
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
}


/* youtube contents====================== */


.yt-conts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  margin-bottom: 10px;
  object-fit: cover;
}

img.videoThumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;	
  opacity: 0.6;
  transition: all 1s;
}

img.videoThumb:hover {
  opacity: 1;
}

.modalContent {
   margin:  0 auto;
  text-align: center;
  animation: fadeIn 0.7s ease 0s 1 normal;
  position: relative;
  top: 20%;
  width: 100%;
    aspect-ratio: 16 / 9;
  max-width: 640px;
height: 480px;
}
.modalContent iframe {
  position: absolute;
  text-align: center;
  top: 40px;
  left: 0;
  right:0;
  width: 640px;
  height: 480px;
}




button.closeBtn {
  display: block;
  position: absolute;
  bottom: 90%;
  right: 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border: none;
 padding: 0;
}
button.closeBtn:before {
  content: '\00D7';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: inherit;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 5px;
}

@keyframes fadeIn {
0% {
  opacity: 0;
  transform: translateY(30px);
}
100% {
  opacity: 1;
}
}

@keyframes fadeOut {
0% {
  opacity: 1;
}
100% {
  opacity: 0;
  transform: translateY(60px);
}
}

@media screen and (max-width: 960px){
  a.playicon {
    display: block;
    position: relative;
  }
  a.playicon::before{
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url("../img/yt_play_icon.png");
    background-size: cover;
  }
}


@media (max-width: 428px) {
  .yt-conts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 20px;
  }
  img.videoThumb {
    width: 100%;
    height: auto;
  }
.modalContent {
margin:  0 auto;
  top: 15%;
  width: 100%;
  max-width: 640px;
}
.modalContent iframe {
  width: 100%;
  height: 100%;
}
}

/* band =========================================== */

.band-name {
  margin-top: 20px;
  font-size: 1rem;
  margin-block-end:-5px;
  margin-bottom:-5px;  
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

    p.band-name,
  p.band-detail {
  margin-bottom: 0;
}

.band-detail {
  font-size: 0.8rem;
  margin-block-end:-5px;
  margin-bottom:-5px;  
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

@media screen and (max-width: 960px){
  .band-detail {
    font-weight: 400;
  }
}

/* go to top========================================= */
.gotop {
  z-index: 1000;
  position: fixed;
  bottom: 2%;
  right: 15px;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.gotop.show {
  opacity: 1;
  visibility: visible;
}

.gotop:hover {
  transform: translateY(-10px) scale(1.2);
}

.gotop img {
 background-color: rgba(0, 0, 0, 0);
 width: 60px;
 height: 60px;
}


/* footer============================================ */

#footer {
  margin-top: 80px;
  padding-bottom: 40px;
}

#footer ul {
  display: flex;
  justify-content: center;
  vertical-align: middle;
}
#footer li {
 padding: 0 10px;
 margin: 0;
}
#footer li:nth-child(4){
margin-top: 8px;
margin-bottom: 8px;
}

#footer .logo {
  width: 70px;
  height: auto;
}
#footer .x {
  width: 30px;
  height: auto;
}
#footer .insta {
  width: 30px;
  height: auto;
}
#footer .note {
  width: 50px;
  height: auto;
}

