@charset "utf-8";
/*共通部分
---------------------------------*/
html {
  font-size: 62.5%;
  min-height: 100%;
}
body {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  color: #FFFFFF;
  font-weight: 400;
  background-image: url(../images/bg_sclaim1.jpeg);
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
html, body {
  height: 100%;
}
article {
  flex: 1;
}
p {
  color: #FFFFFF;
  font-size: clamp(1rem, calc(0.75rem + 1vw), 1.5rem);
}
a {
  text-decoration: none;
  color: #FFFFFF;
}
a:hover {
  color: #5E5E5E;
  transition: all 0.5s ease-in-out;
}
img {
  max-width: 100%;
}
.wrapper {
  margin: 0 auto;
  padding: 0 4%;
  width: 100%;
}
footer {
  padding: 30px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
}
footer p {
  color: #FFFFFF;
}
/*header----------*/
header {
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100;
  width: 100%;
  height: 100px;
}
.site-logo {
  width: 150px;
  height: auto;
  margin-top: 5px;
  margin-left: 20px;
  filter: drop-shadow(2px 2px 3px #000000);
}
/*ハンバーガーメニュー リストのスタイル*/
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  transition: all 0.5s;
  z-index: 3;
  width: 300px;
  opacity: 0;
  background-color: #fff;
}
nav .inner ul li a {
  color: #333333
}
.open nav {
  right: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
  margin-top: 30px;
}
nav .inner ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav .inner ul li {
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  padding: 1rem;
  transition-duration: 0.2s;
  font-weight: bold;
  font-size: 1.5rem;
}
nav .inner ul li a:hover {
  background-color: #E4E4E4
}
/*ハンバーガーメニュー toggle-btnのスタイル黒*/
.toggle-btn {
  display: block;
  position: fixed;
  top: 40px;
  right: 30px;
  width: 30px;
  height: 30px;
  z-index: 3;
  cursor: pointer;
}
.toggle-btn span {
  position: absolute;
  display: block;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 4px;
  transition: all 0.5s;
}
.open .toggle-btn span {
  background-color: #333333;
}
.toggle-btn span:nth-child(1) {
  top: 4px;
}
.toggle-btn span:nth-child(2) {
  top: 14px;
}
.toggle-btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all 0.5s;
}
.open #mask {
  display: block;
  background-color: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0.8;
  cursor: pointer;
}
#top {
  min-width: 100vh;
}
.page-header {
  display: flex;
  justify-content: space-between;
}
/*top SNS
------------------------------*/
.container0 {
  width: 100%;
  height: auto;
  margin-top: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}
#sns a:hover {
  filter: brightness(80%);
}
.fa-x-twitter {
  font-size: 4rem;
}
.fa-youtube {
  font-size: 4rem;
}
.fa-itunes {
  font-size: 4rem;
}
/*top YouTube
------------------------------*/
.container1 {
  background-size: cover;
  background-position: center top;
  background-image: url(../images/back01.png);
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
iframe.top-youtube1 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  display: block;
  margin: auto;
  padding: 20px;
}
/*top News
------------------------------*/
.container2 {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}
.top-contents1 {
  font-size: 7rem;
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  text-align: center;
}
.news-date {
  color: #FF0004;
}
#news ul li {
  list-style-type: none;
  margin-left: 10em;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 15px;
  line-height: 1.7;
  padding-top: 30px;
}
.new:after {
  content: "NEW";
  font-weight: bold;
  color: #000000;
  padding: 3px;
  border-radius: 2px;
  background-color: #FFDD00;
  font-size: 0.75rem;
  margin-left: 10px;
}
.button-viewmore {
  font-size: 1.5rem;
}
.button-viewmore a {
  font-family: "Times New Roman", Times, serif;
  color: #FFFFFF;
  background-color: #333333;
  border: 1px solid #333333;
  letter-spacing: 0.1em;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 250px;
  padding: 16px 40px;
  margin-top: 65px;
  margin-right: 24px;
  margin-left: 24px;
  margin-bottom: 24px;
  text-align: center;
  margin-inline: auto;
  transition: all 0.3s;
}
.button-viewmore a:hover {
  background-color: #FFFFFF;
  color: #333333;
  transition: all 0.3s;
}
.wrapper2 {
  margin-top: -80px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  width: 1000px;
  padding-bottom: 50px;
  height: 100%;
}
/*top schedule
------------------------------*/
.container3 {
  background-image: url(../images/back01.png);
  background-position: center top;
  background-size: cover;
  width: 100%;
  height: auto;
  padding-bottom: 50px;
}
.top-contents2 {
  font-size: 7rem;
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  text-align: center;
}
.live-image {
  width: 30vw;
  height: 100%;
  margin-left: 40px;
  box-shadow: 0 0 1rem #000000;
  -webkit-box-shadow: 0 0 1rem #000000;
}
.live-set {
  display: block;
  line-height: 1.7;
}
.live-total {
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.live-comments {
  color: #333333;
}
.live-date {
  padding-top: 20px;
  color: #333333;
  font-size: 2rem;
}
.live-info {
  padding-top: 21px;
  color: #333333;
}
/*top movie
------------------------------*/
.container4 {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 50px;
  padding-top: 50px;
}
#movie iframe {
  width: 460px;
  height: 259px;
  ;
}
/*index以外共通部分
------------------------------*/
#contents {
  background-image: url(../images/back03.png);
  background-position: center top;
  background-size: cover;
  min-height: 100vh;
  background-repeat: repeat-y;
}
#contents li {
  list-style: none;
}
.page-wrapper {
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.page-title {
  font-size: 7rem;
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  text-align: center;
  padding-top: 100px;
}
/*NEWS
------------------------------*/
.news-container {
  background-color: #131313;
  width: 1000px;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 7px;
  height: auto;
  padding-top: 25px;
  padding-left: 30px;
  padding-bottom: 25px;
}
.news-wrapper {
  padding-top: 120px;
}
.news-date2 {
  font-size: 1.3rem;
}
.news-title {
  font-size: 1.75rem;
}
.news-container img {
  width: 80%;
  height: auto;
}
.news-container iframe {
  width: 90%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  display: block;
}
/*BACKボタン
------------------------------*/
.button-back {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: uppercase;
  font-style: normal;
  font-size: 2.5rem;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 180px;
  text-align: center;
  margin-inline: auto;
  padding-top: 30px;
  padding-bottom: 50px;
}
.button-back a {
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.button-back a:hover {
  color: #909090;
}
.button-back a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s;
}
.button-back a:hover::after {
  width: 100%;
  background-color: #909090;
  opacity: 1;
}
/*SCHEDULE
------------------------------*/
.sche-container {
  width: 1000px;
  background-color: #131313;
  height: auto;
  margin: 0 auto;
  padding-top: 30px;
  padding-left: 100px;
  padding-bottom: 80px;
  padding-right: 100px;
}
.sche-date {
  font-size: 2rem;
  color: #FFFFFF;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 8px;
}
.sche-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  padding-top: 12px;
}
.sche-image {
  width: 30vw;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.sche-info {
  padding-top: 21px;
  color: #FFFFFF;
}
/*PROFILE
------------------------------*/
.pro-container {
  width: 1000px;
  background-color: #131313;
  background-attachment: fixed;
  height: auto;
  margin: 0 auto;
  padding-top: 30px;
  padding-left: 100px;
  padding-bottom: 80px;
  padding-right: 100px;
}
.pro-band {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  font-size: 4rem;
  font-weight: normal;
  text-align: center;
  padding-bottom: 20px;
}
.pro-band span {
  font-size: 1.65rem;
}
.pro-wrapper1 {
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.pro-wrapper2 {
  display: flex;
  margin-top: 30px;
}
.pro-wrapper2 img {
  width: 20vw;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pro-wrapper2 dl {
  color: #FFFFFF;
  font-size: 1rem;
  padding-top: 60px;
  padding-left: 50px;
}
.pro-wrapper2 dd {
  font-size: 20px;
  padding-bottom: 30px;
}
.pro-wrapper2 i {
  margin-left: -5px;
}
.pro-wrapper2 ul {
  display: flex;
  justify-content: flex-start;
  gap: 20px
}
.pro-wrapper2 li {
  font-size: 4rem;
}
/*DISCOGRAPHY
------------------------------*/
.disco-container1 {
  width: 1000px;
  height: auto;
  margin: 0 auto;
  padding-top: 50px;
  display: block;
}
.disco-item img {
  width: 40vw;
  height: auto;
}
.disco-menu ul {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  padding-bottom: 50px;
  color: #FFFFFF;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.65rem;
}
.disco-menu li {
  padding-right: 50px;
  transition: .3s ease-in-out;
}
.disco-menu a:hover {
  color: #626262
}
.disco-now {
  border-bottom: 2px solid #FFFFFF;
  display: block;
  padding-bottom: 2px;
}
.disco-date {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
.disco-itemtitle {
  font-size: 1.5rem;
}
.disco-date {
  padding-left: 5px;
}
.disco-container2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.disco-container-keita {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
}
.disco-item a {
  transition: all .3s ease-in-out;
}
.disco-item a:hover {
  filter: brightness(50%);
}
.disco-container3 {
  display: flex;
  justify-content: center;
}
.disco-img {
  width: 400px;
  height: auto;
  padding-right: 50px
}
.disco-itemtitle2 {
  font-size: 1.75rem;
  padding-bottom: 30px;
}
.disco-date2 {
  font-size: 1.5rem;
  padding-bottom: 0px;
  color: #FFFFFF;
}
.disco-itemtotal {
  width: 400px;
}
/*CONTACT
------------------------------*/
.contact-wrap1 {
  width: 100vw;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
.contact-wrap2 {
  width: 100vw;
  margin: 0 auto;
  padding-top: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
}
.contact-wrap2 a {
  color: #FFFFFF;
}
.contact-mail {
  background: #000000;
  padding: 10px 10px;
}
.contact-mail:hover {
  filter: invert(100%);
}
.contact-container {
  width: 100vw;
  background-color: #131313;
  background-attachment: fixed;
  height: auto;
  margin: 0 auto;
  padding-top: 30px;
  padding-left: 50px;
  padding-bottom: 80px;
  padding-right: 250px;
}
/*mobile
------------------------------*/
@media (max-width: 575px) {
  body {
    background: #000000;
  }
  header {
    position: fixed;
    top: 0;
    background-color: #000000;
    z-index: 100;
    width: 100%;
    height: 70px;
  }
  .site-logo {
    width: 100px;
    height: auto;
    margin-top: 5px;
    margin-left: 10px;
  }
  /*ハンバーガーメニュー リストのスタイル*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    transition: all 0.5s;
    z-index: 3;
    width: 300px;
    opacity: 0;
    background-color: #fff;
  }
  nav .inner ul li a {
    color: #333333
  }
  .open nav {
    right: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
    margin-top: 30px;
  }
  nav .inner ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  nav .inner ul li {
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    padding: 1rem;
    transition-duration: 0.2s;
    font-weight: bold;
    font-size: 1rem;
  }
  nav .inner ul li a:hover {
    background-color: #E4E4E4
  }
  /*ハンバーガーメニュー toggle-btnのスタイル黒*/
  .toggle-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    z-index: 3;
    cursor: pointer;
  }
  .toggle-btn span {
    position: absolute;
    display: block;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .open .toggle-btn span {
    background-color: #333333;
  }
  .toggle-btn span:nth-child(1) {
    top: 4px;
  }
  .toggle-btn span:nth-child(2) {
    top: 14px;
  }
  .toggle-btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle-btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle-btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  #mask {
    display: none;
    transition: all 0.5s;
  }
  .open #mask {
    display: block;
    background-color: #000000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    cursor: pointer;
  }
  #top {
    min-height: 0vh;
  }
  .page-wrapper {
    background-image: url(../images/bg_sclaim1.jpeg);
    margin-top: 70px;
    background-position: center top;
    background-size: 100% auto;
  }
  /*top SNS
-----------------------------*/
  .container0 {
    width: 100%;
    margin-top: 65vmin;
    background-color: #000000;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .fa-x-twitter {
    font-size: 2.5rem;
  }
  .fa-youtube {
    font-size: 2.5rem;
  }
  .fa-itunes {
    font-size: 2.5rem;
  }
  /*top News
-----------------------------*/
  #news ul li {
    margin-left: 0em;
    padding-top: 0px;
  }
  .top-contents1 {
    font-size: 4rem;
  }
  .button-viewmore a {
    font-family: "Times New Roman", Times, serif;
    color: #FFFFFF;
    font-size: 1rem;
    background-color: #333333;
    border: 1px solid #333333;
    letter-spacing: 0.1em;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 150px;
    padding: 16px 40px;
    margin-top: 30px;
    margin-right: 24px;
    margin-left: 24px;
    margin-bottom: 24px;
    text-align: center;
    margin-inline: auto;
    transition: all 0.3s;
  }
  /*top Schedule
-----------------------------*/
  .top-contents2 {
    font-size: 4rem;
  }
  .live-total {
    flex-direction: column;
  }
  .live-info {
    margin-bottom: 20px;
  }
  .live-image {
    width: 80vw;
    height: 100%;
    margin: 0 auto;
    box-shadow: 0 0 1rem #000000;
    -webkit-box-shadow: 0 0 1rem #000000;
  }
  .live-date {
    font-size: 1.5rem;
  }
  /*top Movie
-----------------------------*/
  .container4 {
    flex-direction: column;
  }
  #movie iframe {
    width: 400px;
    height: 225px;
    margin: 0 auto;
  }
  /*index以外共通部分
------------------------------*/
  #contents {
    background-image: url(../images/back03.png);
    background-position: center top;
    background-size: cover;
    min-height: 100vh;
    background-repeat: repeat-y;
  }
  .page-title {
    font-size: 5rem;
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
    text-align: center;
    padding-top: 10px;
  }
  /*mobile News
------------------------------*/
  .news-container {
    width: 98%;
    margin: auto;
    margin-bottom: 7px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
  .news-wrapper {
    padding-top: 120px;
  }
  .news-date2 {
    font-size: 1.2rem
  }
  .news-title {
    font-size: 1.45rem;
  }
  .news-container img {
    width: 70%;
    height: auto;
  }
  .news-container iframe {
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    display: block;
  }
}
/*mobile BACKボタン
------------------------------*/
.button-back {
  font-size: 2rem;
}
/*mobile Profile
------------------------------*/
.pro-container {
  width: 90vmin;
  background-color: #131313;
  height: auto;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 10px;
  padding-bottom: 80px;
  padding-right: 10px;
}
.pro-band {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  font-size: 2.5em;
  font-weight: normal;
  text-align: center;
  padding-bottom: 20px;
}
.pro-band span {
  font-size: 0.55em;
}
.pro-wrapper2 {
  flex-direction: column;
  text-align: center;
}
.pro-wrapper2 img {
  width: 50vw;
  height: auto;
  margin: 0 auto;
  padding-bottom: 10px;
}
.pro-wrapper2 dl {
  padding-top: 0px;
  padding-left: 0px;
}
.pro-wrapper2 dd {
  font-size: 1.65rem;
  padding-bottom: 10px;
}
.pro-wrapper2 i {
  margin-top: 15px;
  margin-left: 0px;
  margin-right: 0px;
}
.pro-wrapper2 ul {
  display: flex;
  justify-content: center;
  gap: 20px
}
.pro-wrapper2 li {
  font-size: 4rem;
}
.pro-wrapper2 .fa-instagram {
  font-size: 3rem;
}
/*mobile Schedule
------------------------------*/
.sche-container {
  background-color: #131313;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
  padding-right: 20px;
}
.sche-date {
  font-size: 1.5rem;
  color: #FFFFFF;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 8px;
}
.sche-title {
  font-size: 1.25rem;
  color: #FFFFFF;
  padding-top: 10px;
}
.sche-image {
  width: 60vw;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.sche-info {
  padding-top: 10px;
  color: #FFFFFF;
}
/*mobile Discography
------------------------------*/
.disco-container1 {
  width: 100vw;
  padding-top: 10px;
  text-align: center;
}
.disco-container2 {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.disco-item img {
  width: 40vw;
  height: auto;
  margin-left: 10px;
}
.disco-menu ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 1.5rem;
  margin-left: 3rem;
  padding-bottom: 20px;
  font-size: 1.25rem;
}
.disco-menu li {
  padding-right: 40px;
  padding-bottom: 15px;
}
.disco-now {
  border-bottom: 2px solid #FFFFFF;
  display: block;
  padding-bottom: 2px;
}
.disco-date {
  font-size: 1rem;
}
.disco-itemtitle {
  font-size: 1.5rem
}
.disco-container-keita {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-left: 0px;
}
.disco-container3 {
  flex-direction: column;
  margin-left: 40px;
}
.disco-img {
  width: 80vw;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
.disco-itemtotal {
  width: 60vw;
  text-align: left;
  margin-left: 3.5rem;
}
/*mobile Contact
------------------------------*/
.contact-wrap1 {
  width: 100vw;
  padding-top: 30px;
  padding-right: 50px;
}
.contact-wrap2 {
  width: 155vmin;
}
.contact-container {
  width: 100vw;
  padding-left: 30px;
  padding-right: 50px;
}
/*tablet
------------------------------*/
@media (min-width: 576px) and (max-width: 1023px) {
  body {
    background: #000000;
  }
  header {
    position: fixed;
    top: 0;
    background-color: #000000;
    z-index: 100;
    width: 100%;
    height: 100px;
  }
  .site-logo {
    width: 150px;
    height: auto;
    margin-top: 5px;
    margin-left: 10px;
  }
  /*ハンバーガーメニュー リストのスタイル*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    transition: all 0.5s;
    z-index: 3;
    width: 300px;
    opacity: 0;
    background-color: #fff;
  }
  nav .inner ul li a {
    color: #333333
  }
  .open nav {
    right: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
    margin-top: 30px;
  }
  nav .inner ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  nav .inner ul li {
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    padding: 1rem;
    transition-duration: 0.2s;
    font-weight: bold;
    font-size: 1.25rem;
  }
  nav .inner ul li a:hover {
    background-color: #E4E4E4
  }
  /*ハンバーガーメニュー toggle-btnのスタイル黒*/
  .toggle-btn {
    display: block;
    position: fixed;
    top: 35px;
    right: 30px;
    width: 30px;
    height: 30px;
    z-index: 3;
    cursor: pointer;
  }
  .toggle-btn span {
    position: absolute;
    display: block;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .open .toggle-btn span {
    background-color: #333333;
  }
  .toggle-btn span:nth-child(1) {
    top: 4px;
  }
  .toggle-btn span:nth-child(2) {
    top: 14px;
  }
  .toggle-btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle-btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle-btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  #mask {
    display: none;
    transition: all 0.5s;
  }
  .open #mask {
    display: block;
    background-color: #000000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    cursor: pointer;
  }
  #top {
    min-height: 0vh;
  }
  .page-wrapper {
    background-image: url(../images/bg_sclaim1.jpg);
    margin-top: 70px;
    background-position: center top;
    background-size: 100% auto;
  }
  /*tablet top SNS
-----------------------------*/
  .container0 {
    width: 100%;
    margin-top: 85vmin;
    background-color: #000000;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .fa-x-twitter {
    font-size: 4rem;
  }
  .fa-youtube {
    font-size: 4rem;
  }
  .fa-itunes {
    font-size: 4rem;
  }
  /*tablet top YouTube
------------------------------*/
  iframe.top-youtube1 {
    width: 70%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    display: block;
    margin: auto;
    padding: 20px;
  }
  /*tablet top News
-----------------------------*/
  .top-contents1 {
    font-size: 6rem;
    padding-top: 10px;
  }
  #news ul li {
    margin-left: 0em;
    padding-top: 0px;
  }
  /*tablet viewmoreボタン
------------------------------*/
  .button-viewmore a {
    font-family: "Times New Roman", Times, serif;
    color: #FFFFFF;
    font-size: 1rem;
    background-color: #333333;
    border: 1px solid #333333;
    letter-spacing: 0.1em;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 150px;
    padding: 16px 40px;
    margin-top: 30px;
    margin-right: 24px;
    margin-left: 24px;
    margin-bottom: 24px;
    text-align: center;
    margin-inline: auto;
    transition: all 0.3s;
  }
  /*tablet top Schedule
-----------------------------*/
  .top-contents2 {
    font-size: 6rem;
    padding-top: 10px;
  }
  .live-total {
    display: flex;
    justify-content: center;
  }
  .live-info {
    margin-bottom: 20px;
  }
  .live-image {
    width: 50%;
    height: 100%;
    margin: 0 auto;
    box-shadow: 0 0 1rem #000000;
    -webkit-box-shadow: 0 0 1rem #000000;
  }
  .live-date {
    font-size: 2rem;
  }
  /*tablet top Movie
-----------------------------*/
  .container4 {
    display: flex;
    justify-content: center;
  }
  #movie iframe {
    width: 250px;
    height: 141px;
    margin: auto;
  }
  /*tablet index以外共通部分
------------------------------*/
  #contents {
    background-image: url(../images/back03.png);
    background-position: center top;
    background-size: cover;
    min-height: 100vh;
    background-repeat: repeat-y;
  }
  .page-title-wrap {
    margin-top: 60px;
  }
  .page-title {
    font-size: 6rem;
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
    text-align: center;
    padding-top: 40px;
  }
  /*tablet News 1down
------------------------------*/
  .news-container {
    width: 98%;
    margin: auto;
    margin-bottom: 7px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
  .news-wrapper {
    padding-top: 120px;
  }
  .news-date2 {
    font-size: 1.3rem
  }
  .news-title {
    font-size: 1.7rem;
  }
  .news-container img {
    width: 60%;
    height: auto;
  }
  .news-container iframe {
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    display: block;
  }
  /*tablet BACKボタン
------------------------------*/
  .button-back {
    font-size: 2rem;
  }
  /*tablet Profile
------------------------------*/
  .pro-container {
    width: 98%;
    background-color: rgba(0, 0, 0, 0.7);
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 10px;
    padding-bottom: 80px;
    padding-right: 10px;
  }
  .pro-band {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
    font-size: 3.5em;
    font-weight: normal;
    text-align: center;
    padding-bottom: 20px;
  }
  .pro-band span {
    font-size: 0.55em;
  }
  .pro-wrapper2 {
    flex-direction: column;
    text-align: center;
  }
  .pro-wrapper2 img {
    width: 50vw;
    height: auto;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  .pro-wrapper2 dl {
    padding-top: 0px;
    padding-left: 0px;
  }
  .pro-wrapper2 dd {
    font-size: 1.65rem;
    padding-bottom: 10px;
  }
  .pro-wrapper2 i {
    margin-top: 15px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .pro-wrapper2 ul {
    display: flex;
    justify-content: center;
    gap: 20px
  }
  .pro-wrapper2 li {
    font-size: 4rem;
  }
  .pro-wrapper2 .fa-instagram {
    font-size: 4rem;
  }
  /*tablet Schedule
------------------------------*/
  .sche-container {
    background-color: #131313;
    width: 98%;
    height: auto;
    margin: auto;
    padding-top: 20px;
    padding-left: 30px;
    padding-bottom: 30px;
    padding-right: 20px;
  }
  .sche-date {
    font-size: 2rem;
    color: #FFFFFF;
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 8px;
  }
  .sche-title {
    font-size: 1.65rem;
    color: #FFFFFF;
    padding-top: 10px;
  }
  .sche-image {
    width: 60%;
    height: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sche-info {
    padding-top: 10px;
    color: #FFFFFF;
  }
  /*tablet Discography
------------------------------*/
  .disco-container1 {
    width: 98%;
    padding-top: 10px;
    text-align: center;
  }
  .disco-container2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .disco-item img {
    width: 30vw;
    height: auto;
    margin-left: 10px;
  }
  .disco-menu ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 1.5rem;
    margin-left: 10%;
    padding-bottom: 50px;
    font-size: 1.25rem;
  }
  .disco-menu li {
    padding-right: 40px;
    padding-bottom: 15px;
  }
  .disco-now {
    border-bottom: 2px solid #FFFFFF;
    display: block;
    padding-bottom: 2px;
  }
  .disco-date {
    font-size: 1.2rem;
  }
  .disco-itemtitle {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  .disco-container-keita {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-left: 0px;
  }
  /*tablet Contact
------------------------------*/
  .contact-wrap1 {
    width: 95%;
    padding-top: 30px;
    padding-right: 50px;
  }
  .contact-wrap2 {
    width: 95%;
  }
  .contact-container {
    width: 90%;
    padding-left: 30px;
    padding-right: 50px;
  }
}