@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: 0 auto;
  padding: 0 40px;
}

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


.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);
  }
  #header img{
   position:absolute;
   top:80%;
   transform: translate(-50%, -50%);
   left: 50%;
   padding-top: 0;
   padding-bottom: 10px;
   height: 130px;
  }
}


/* hero-aera=========================== */

#hero-area .wrapper {
  max-width: 1280px;
}

#hero-area video {
 width: 100vw;
 max-width: 100%;
 max-height: 100vh;
 object-fit: cover;
 margin-top: 30px;
}

@media screen and (max-width: 960px){
  #hero-area .wrapper {
    max-width: 100%;
  }
  
  #hero-area video {
   width: 100vw;
   max-width: 100%;
   max-height: 100vh;
   object-fit: cover;
   margin-top: 30px;
  }
  
}

/* about==================================== */

#about .about-conts {
  display: flex;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

#about .name {
  width: 20%;
  margin: 0 40px;
}
#about .name .tsubatics {
  font-size: 2.5rem;
  font-weight: bold;
  margin-block-end:-5px;
  margin-bottom:-5px;  
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}



#about .name .detail {
  font-size: 1.2rem;
  margin-block-end:-5px;
  margin-bottom:-5px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal
}

#about .band {
  width: 60%;
  margin-left: 80px;
  padding-top: 80px;
}
#about .band li {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal
}

@media screen and (max-width: 960px){
  #about .about-conts {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  #about .name {
    width: 100%;
    margin: 0;
  }
  #about .name .tsubatics {
    font-size: 2.5rem;
    font-weight: bold;
    margin-block-end:-5px;
    margin-bottom:-5px;  
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
  }
  
  
  #about .name .detail {
    font-size: 1.2rem;
    margin-block-end:-5px;
    margin-bottom:-5px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal
  }
  
  #about .band {
    width: 100%;
    margin-left: 0;
    padding-top: 40px;
  }
}

/* schedule======================================== */
#schedule {
  margin-top: 80px;
}

#schedule .wrapper{
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 300px;
}

#schedule .schedule-bg{
  width: 100%;
  height: 300px;
  background: url("../img/suthpire.jpeg") no-repeat center center;
  background-size: cover;  
  transition: transform .6s ease;
}

#schedule:hover .schedule-bg {
  transform: scale(1.1, 1.1);
}


#schedule .text-area {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
}

#schedule .text-area .title {
 font-size: 2rem;
 font-weight: bold;
 margin-block-end:-5px;
 margin-bottom:-5px;  
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-weight: 900;
 font-style: normal;
}
#schedule .text-area .s {
 font-size: 0.75rem;
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-weight: 600;
 font-style: normal;
 position: absolute;
 top: 90%;
 left: 30%;
}

#schedule .wrapper::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 300px;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease;
  z-index:1;
}

#schedule .wrapper:hover::before {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  #schedule .wrapper::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.9);
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 300px;
    width: 100%;
    opacity: 0.5;
    transition: opacity .6s ease;
    z-index:1;
  }
  #schedule .text-area {
    display: block;
    width: 100%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 40%;
    z-index: 2;
  }
  #schedule .text-area .title {
    display: block;
    width: 100%;
    font-size: 1.8rem;
   }
   #schedule .text-area .s {
    display: block;
    width: 100%;
    font-size: 1rem;
    left: 0;

   }
}


/* sns=============================================== */

#sns {
    margin-top: 80px;
}

#sns .wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  text-align: center;
}

#sns .sns-bg{
  width: 100%;
  height: 300px;
  background: url("../img/tsubatics_solo.png") no-repeat top center;
  background-size: cover;  
  transition: transform .6s ease;
}

#sns:hover .sns-bg {
  transform: scale(1.1, 1.1);
}


#sns .text-area {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  z-index: 2;
}

#sns .text-area .title {
 font-size: 1.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;
 line-height: 1.1rem;
 font-weight: bold;
}

#sns .wrapper::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 300px;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease;
  z-index:1;
}

#sns .wrapper:hover::before {
  opacity: 1;
}

#sns .sns-icons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
  z-index: 2;
}


#sns .sns-icons img{
  width: 60px;
  height: auto;
  margin: 0 10px;
}

#sns .sns-icons .note{
  width: 180px;
  height: auto;
}

#sns .form-link {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 88%;
  left: 50%;
  z-index: 2;
  font-size: 0.8rem;
  margin-block-end:-5px;
  margin-bottom:-5px;  
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  line-height: 1.1rem;
  font-weight: bold;
  border-bottom: 3px dotted #fff;
  padding-bottom: 2px;
  text-decoration: none;
}

@media screen and (max-width: 960px){
  #sns .text-area {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 30%;
    left: 50%;
    z-index: 2;
  }
  
  #sns .text-area .title {
   font-size: 1.3rem;
   line-height: 1.3rem;
   font-weight: bold;
  }
  
  #sns .wrapper::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.9);
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 300px;
    width: 100%;
    opacity: 0.5;
    transition: opacity .6s ease;
    z-index:1;
  }
  
  #sns .wrapper:hover::before {
    opacity: 1;
  }
  
  #sns .sns-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 2;
  }
  
  
  #sns .sns-icons img{
    width: 40px;
    height: auto;
    margin: 0 8px;
  }
  
  #sns .sns-icons .note{
    width: 120px;
    height: auto;
  }
}

/* video-area============================================================= */

#video-area {
  margin-top: 80px;
}
#video-area .video-area {
  position: relative;
  width: 100%;/*背景色を横幅いっぱいに広げる*/
  text-align: center;
  margin: auto;
  padding: 0;/*ここで動画の周りの余白を調整*/
  background: #000;/*余白の背景色*/
  }
    
  #video-area .video-area:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  transition: all 0.3s;
}
    
#video-area .video-area:hover:after {
  opacity: 0;
}
    
#video-area .video-area button {
  z-index: 3;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 1);
  background-color: rgba(0, 0, 0, 0);
  border: solid 1px #fff;
  border-radius: 5px;
  font-size: 0.75rem;
  margin-block-end:-5px;
 margin-bottom:-5px;  
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-style: normal;
  padding: 1rem 3rem;
  display: block;
}
    
#video-area .video-area button.off {
  background-color: #000;
}
      
    
#video-area video.video-item {
width: 100%;
max-width: 100%;/*PC版での最大幅*/
}
    
#video-area .video-area-text  {
  display: block;
  width: 200px;
  line-height: 1.5rem;
  margin-left: auto;
}
    
#video-area .video-area-text p {
  font-size: 0.8rem;
  margin-block-end:-5px;
 margin-bottom:-5px;  
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-weight: 400;
 font-style: normal;
  text-align: right;
}
    
#video-area .video-area-text a {
  color: #fff;
}

@media screen and (max-width: 960px){
  #video-area .video-area button {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0);
    border: solid 1px #fff;
    border-radius: 5px;
    font-size: 0.75rem;
    padding: 1rem 3rem;
    display: block;
  }
      
  #video-area .video-area button.off {
    background-color: #000;
  }
        
      
  #video-area video.video-item {
  width: 100%;
  max-width: 100%;/*PC版での最大幅*/
  }
      
  #video-area .video-area-text  {
    display: block;
    width: 200px;
    line-height: 1.5rem;
    margin-left: auto;
    margin-right: 20px;
  }
      
  #video-area .video-area-text p {
    font-size: 0.8rem;
    text-align: right;
  }
      
  #video-area .video-area-text a {
    color: #fff;
  }
}

/* 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;
  }

