@charset "UTF-8";

:root {
  --white: #FFFEE9;
  --gray: #474747;
  --darkyellow: #E7E5CA; 
  --pink: #C69E9E;
  --red: #FD7575;
  --opawhite: rgba(255, 255, 255, .5);
  --opablack: rgba(0, 0, 0, 0.8);
  interpolate-size: allow-keywords;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--gray);
  background-color: var(--white);
}
h1, h2, h3, h4, h5, h6, button, li, a, p {
  font-family: "Sansation";
  font-weight: 400;
}
button:hover,a:hover {
  cursor: pointer;
  opacity: 0.5;
  transform: translateY(1px);
  transition: 0.3s;
}


/* ==========
  back-fixed
========== */
.back {
  width: 25%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  display: grid;
  place-items: center;
}
.back img {
  display: block;
  opacity: 0.3;
}


/* ==========
  header
========== */
header {
  background-color: var(--white);
  width: 100vw;
  height: 100px;
  /* padding: 20px 5%; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 3px 5px #474747;
}
.header-con {
  width: 80%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-con img {
  width: 135px;
}
.header-link {
  display: flex;
  align-items: end;
  vertical-align: middle;
  position: relative;
  height: 48px;
}
.header-link:last-child {
  padding-right: 62px;
}
.fa-brands {
  font-size: 25px;
}
#navBtn {
  color: var(--gray);
  font-size: 50px;
  border: none;
  background: none;
  position: absolute;
  right: 0;
  padding: 0;
  width: 62px;
  height: 48px;

  display: block;
  opacity: 1;
  transition: 1s allow-discrete;
  /* displayの開閉アニメーション */
  @starting-style {
    opacity: 0;
  }
}
.open #navBtn {
  display: none;
  opacity: 0;
  transition: 1s allow-discrete;
  @starting-style {
    opacity: 1;
  }
}
#closeBtn {
  color: var(--gray);
  font-size: 50px;
  border: none;
  background: none;
  position: absolute;
  right: 0;
  padding: 0;
  width: 62px;
  height: 48px;

  display: none;
  opacity: 0;
  transition: 1s allow-discrete;
  /* displayの開閉アニメーション */
  @starting-style {
    opacity: 1;
  }
}
.open #closeBtn {
  z-index: 400;
  display: block;
  opacity: 1;
  transition: 1s allow-discrete;
  @starting-style {
    opacity: 0;
  }
}
.nav {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  padding-right: 10%;
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 400;
  display: none;
  opacity: 0;
  transition: 1s allow-discrete;
  @starting-style {
    opacity: 1;
  }
}
.nav-link {
  display: none;
}
.open .nav {
  display: block;
  
  opacity: 1;
  transition: 1s allow-discrete;
  @starting-style {
    opacity: 0;
  }
}
.nav ul {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.nav ul li {
  color: var(--darkyellow);
  width: fit-content;
  font-size: 2rem;
  line-height: 2;
}
html .open, html.open body {
  overflow: hidden;
  /* padding-right: 14px; */
}


/* ==========
  kv
========== */
#kv {
  background-image: url(../img/bg_pc_kv.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: calc(150vh - 100px);
  max-height: 120vh;
  margin-top: 100px;

}
#down {
  font-size: 50px;
  text-align: center;
  position: fixed;
  bottom: 5px;
  left: 0;
  right: 0;
  z-index: 900;
  display: block;
  opacity: 1;
  transition: 1s allow-discrete;
  @starting-style {
    opacity: 0;
  }
}
.hidden#down {
  display: none;
  opacity: 0;
  transition: 1s allow-discrete;
  @starting-style {
    opacity: 1;
  }
  }

#profilePosition {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: -95vh;
  left: 0;
  z-index: 0;
}


/* ==========
  profile
========== */
#profile {
  height: 30vh;
  position: relative;
}
#white {
  width: 100vw;
  height: 100vh;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;

  opacity: 0;
  display: none;
  transition: 1s allow-discrete;
  /* displayの開閉アニメーション */
  @starting-style {
    opacity: 0.8;
  }
}
#white.on {
  opacity: 0.8;
  display: block;
  transition: 1s allow-discrete;
  @starting-style {
    opacity: 0;
  }
}
#proText {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 300;
  width: fit-content;
  margin: auto;
  color: #151515;


  transform: translate(0, 50%);
  opacity: 0;
  display: none;
  transition: 1s allow-discrete;
  /* displayの開閉アニメーション */
  @starting-style {
    transform: translate(0, 0);
    opacity: 0.8;
  }
}
#proText.on {
  transform: translate(0, 0);
  opacity: 0.8;
  display: block;
  transition: 1s allow-discrete;
  @starting-style {
    transform: translate(0, 50%);
    opacity: 0;
  }

}
#proText h2 {
  margin-bottom: 20px;
  font-weight: 700;
}


/* ==========
  live
========== */
#live {
  width: 90%;
  margin: 0 0 0 auto;
}
.sub-title {
  font-size: 40px;
  border-bottom: solid 3px #474747;
  width: fit-content;
  height: fit-content;
  line-height: 1;
  margin-bottom: 50px;
}
.live-con {
  width: 100%;
  padding: 30px 30px 60px;
  margin-bottom: 200px;
  background-color: var(--darkyellow);
  border-radius: 10px 0 0 10px;
  position: relative;
}
.live-sche {
  padding: 20px;
  display: block;
  width: 90%;
  /* width: calc(90% - 30px); */
  background-color: var(--opawhite);
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
}
.live-sche h4  {
  padding-left: 1em;
}
.live-day {
  font-size: clamp(0.875rem, 0.1195rem + 3.7196vw, 2.5rem);
}
.live-time {
  display: none;
}
.live-sche figure {
  display: none;
}
.right-arrow {
  content: '';
  display: block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: clamp(0.3125rem, 0.0411rem + 1.4006vw, 0.9375rem);
  height: clamp(0.375rem, 0.0494rem + 1.6807vw, 1.125rem);
  background-color: var(--red);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.wp-block-heading {
  font-size: clamp(0.5rem, -0.0203rem + 2.22vw, 1.875rem);
}
#moreBtn {
  width: fit-content;
  position: absolute;
  right: calc(10% + 20px);
  border: solid 3px var(--gray);
  border-radius: 10px;
  font-size: 0.8rem;
  background-color: var(--pink);
  color: var(--white);
}
.more-btn {
  width: fit-content;
  position: absolute;
  right: 10%;
  border: solid 3px var(--gray);
  border-radius: 10px;
  font-size: 0.8rem;
  background-color: var(--pink);
  color: var(--white);
}
.more-link {
  display: none;
}


/* ==========
  movie
========== */
#movie {
  width: 100%;
  padding-bottom: 200px;
}
#movie .sub-title {
  margin-left: 10%;
}
.movie-con {
  display: flex;
  overflow-x: scroll;
  margin-bottom: 30px;
}
.container::-webkit-scrollbar {
  width: 1rem;
}
.container::-webkit-scrollbar-track {
  background-color: var(--white);
}
.container::-webkit-scrollbar-thumb {
  background-color: var(--darkyellow);
  border-radius: 10px;
}
.home-movie {
  width: fit-content;
  margin-left: 30px;
  margin-bottom: 30px;
}
.home-movie iframe {
  width: clamp(17.5rem, 9.902rem + 39.2157vw, 35rem);
  height: clamp(9.84375rem, 5.5699rem + 22.0588vw, 19.6875rem);
}
.home-movie:first-child {
  margin-left: 10%;
}
.home-movie:last-child {
  margin-right: 10%;
}
.home-movie p {
  font-size: 20px;
  width: fit-content;
  margin: 0 auto;
}
iframe {
  border-radius: 10px;
}


/* ==========
  sns
========== */
#sns {
  width: 90%;
  margin: 0 0 0 auto;
}
.sns-con {
  width: 100%;
  padding: 30px 30px 60px;
  margin-bottom: 200px;
  background-color: var(--darkyellow);
  border-radius: 10px 0 0 10px;
  position: relative;
  display: flex;
  overflow-x: scroll;
}
.sns-ele {
  margin-left: 100px;
}
.sns-ele:first-child {
  margin-left: 0;
}
.twitter-tweet.twitter-tweet-rendered {
  margin: 0;
}


/* ==========
  goods
========== */
#goods {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 200px;
}
.goods-base {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 600px;
  height: 100px;
  background-color: var(--opawhite);
  box-shadow: 4px 4px 4px #474747;
  border-radius: 10px;
  margin: 30px auto;
  background-image: url(../img/base.png);
  background-position: left;
  background-size: 50%;
  background-repeat: no-repeat;
}
.goods-text {
  width: fit-content;
  margin-right: 45px;
}


/* ==========
  footer
========== */
footer {
  background-color: var(--darkyellow);
  padding: 100px 10% 50px;
}
.footer-con {
  display: flex;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  flex-direction: column;
}
.footer-logo1 {
  width: clamp(9.375rem, 5.3046rem + 21.0084vw, 18.75rem);
}
.footer-logo2 {
  width: clamp(6.25rem, 3.5364rem + 14.0056vw, 12.5rem);
  filter: invert(27%) sepia(0%) saturate(26%) hue-rotate(219deg) brightness(60%) contrast(87%);
}
.footer-p {
  font-size: clamp(0.625rem, 0.3536rem + 1.4006vw, 1.25rem);
}
.footer-sns {
  width: 100px;
  display: flex;
  flex-wrap: wrap;
}
.footer-sns a {
  display: block;
  width: 50%;
}
.footer-sns .fa-brands {
  font-size: 35px;
}
small {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
}


/*
==============================
profile-page
==============================
*/
#profilePage {
  margin: 200px 0 100px;
  padding: 0 10%;
  overflow-x: hidden;
}
.pro-con img {
  border-radius: 10px;
}
.pro-text {
  width: 100vw;
  padding: 20px;
  margin:2em 0;
  border-radius: 10px 0 0 10px;
  background-color: var(--darkyellow);
}
#profilePage h3 {
  font-size: clamp(1rem, 0.6216rem + 1.6145vw, 2rem);
  margin-bottom: 1em;
}
.pro-text p {
  width: 85%;
  font-size: clamp(0.5rem, 0.1216rem + 1.6145vw, 1.5rem);
}
.pro-member {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.name {
  font-weight: 600;
}
.pro-member p {
  font-size: clamp(0.375rem, -0.0507rem + 1.8163vw, 1.5rem);
}
.pro-sns .fa-brands {
  font-size: clamp(0.75rem, 0.4662rem + 1.2109vw, 1.5rem);
  padding-top: 10px;
}


/*
==============================
live-page
==============================
*/
#livePage {
  margin: 200px 0 100px;
  padding: 0 10%;
  overflow-x: hidden;
}
.live-page-con {
  background-color: var(--opawhite);
  border: solid 2px var(--gray);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 50px;
}
.fa-angle-down {
  font-size: clamp(0.9375rem, 0.5827rem + 1.5136vw, 1.875rem);
}
.live-page-day {
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.9375rem, 0.5827rem + 1.5136vw, 1.875rem);
}
.live-page-day button {
  border: none;
  background: none;
  transform: rotate(0);
  transition: 0.5s;
}
.live-open .live-page-day button {
  transform: rotate(180deg);
  /* transform: scale(1, -1); */
}
.live-page-ele {
  display: none;
  margin-top: 20px;
  padding-bottom: 2em;
  position: relative;
  opacity: 0;
  height: fit-content;
  transition: 0.5s allow-discrete;
  /* displayの開閉アニメーション */
  @starting-style {
    opacity: 1;
    height: auto;
  }
}
.live-open .live-page-ele {
  display: block;
  opacity: 1;
  height: auto;
  transition: 0.5s allow-discrete;
  /* displayの開閉アニメーション */
  @starting-style {
    opacity: 0;
    height: 0;
  }
}
.live-page-ele h2 {
  font-size: clamp(16px, 6.857px + 2.857vw, 40px);
  margin-bottom: 1em;
}
.live-page-ele h4 {
  font-size: clamp(14px, 12.476px + 0.476vw, 18px);
  margin-bottom: 1em;
}
.live-open .live-time {
  display: block;
  font-size: clamp(14px, 12.476px + 0.476vw, 18px);
  line-height: 1;
}
.live-open figure {
  display: block;
  padding-top: 1em;
  width: min(100%, 500px);
  margin: auto;
}
.ticket-btn {
  width: fit-content;
  margin-top: 1em;
  position: absolute;
  right: 0;
  border: solid 3px var(--gray);
  border-radius: 10px;
  font-size: 0.8rem;
  background-color: var(--pink);
  color: var(--white);
}



/*
==============================
movie-page
==============================
*/
#moviePage {
  margin: 200px 0 100px;
  padding: 0 10%;
  /* overflow-x: hidden; */
}
.movie-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.movie-page-con {
  width: 32%;
  text-align: center;
  font-size: clamp(0.5rem, 0.2727rem + 1.1364vw, 1rem);
  margin-bottom: 8em;
}
.movie-page-con iframe {
  width: 100%;
  height: 100%;
}


/*
==============================
goods-page
==============================
*/
#goodsPage {
  margin: 200px 0 100px;
  padding: 0 10%;
  overflow-x: hidden;
}


/*
==============================
discography-page
==============================
*/
#discoPage {
  margin: 200px 0 100px;
  padding: 0 10%;
  overflow-x: hidden;
}
.disco-con {
  width: 80vw;
  margin: 0 auto 50px;
  padding-left: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.open-modal {
  background: none;
  border: none;
  width: calc(25% - 5px);
  padding: 0;
}

/* モーダルウィンドウ */
.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--opablack);
  z-index: 1100;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.open.modal  {
  opacity: 1;
  visibility: visible;
}
.modal-con {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: var(--white);
  width: fit-content;
  height: fit-content;
  margin: auto;
  z-index: 1110;
}
.modal-con img {
  width: 30vw;
  margin-right: 1em;
  margin-bottom: 0;
}
.modal-text {
  font-size: 1em;
}
.modal-text h3 {
  font-weight: revert;
  font-size: 20px;
  margin-bottom: 1em;
}
#modalClose {
  width: fit-content;
  position: absolute;
  right: 0;
  bottom: 0;
  border: solid 3px var(--gray);
  border-radius: 10px;
  font-size: 0.8rem;
  background-color: var(--pink);
  color: var(--white);
}


/*
==============================
contact-page
==============================
*/
#contactPage {
  margin: 200px 0 100px;
  padding: 0 10%;
  overflow-x: hidden;
}
.contact-con {
  width: 100vw;
  padding: 20px;
  margin:2em 0;
  border-radius: 10px 0 0 10px;
  background-color: var(--darkyellow);
}
label {
  display: block;
}
input {
  width: 30vw;
}
input, textarea {
  margin-bottom: 2em;
}
#otherInput input {
  margin-bottom: 0;
}
.naiyou {
  margin-top: 2em;
}
#submit {
  width: fit-content;
}
.contact-con span {
  margin-left: 1em;
  color: var(--red);
  font-size: 0.5em;
}

/* Snow Monkey Forms */
#contactPage .snow-monkey-form {
  font-family: "Sansation",sans-serif;
}
#contactPage .smf-form--business .smf-item__col--label {
  background-color: var(--darkyellow);
}
#contactPage .smf-item {
  background-color: var(--opawhite);
}
#contactPage .smf-item__label__text em {
  color: var(--red);
}
#contactPage .smf-button-control__control {
  width: fit-content;
  border: solid 3px var(--gray);
  border-radius: 10px;
  font-size: 0.8rem;
  background-color: var(--pink);
  background-image: none;
  color: var(--white);
}


/*
==============================
page
==============================
*/
#sub-Page {
  margin: 200px 0 100px;
  padding: 0 10%;
  overflow: hidden;
}
figure {
  display: block;
}
