@charset "UTF-8";
a {
  text-decoration:none;
}
a:hover {
  transition: all .3s;
  opacity: 0.8;
}
img {
  height: auto;
  max-width: 100%;
  width: 100%;
  vertical-align:top;
}
body{
  font-family: "Noto Sans JP", sans-serif;
}
h2 {
  color: #ef89b2;
  text-align: center;
  font-size: 63px;
  font-weight: 900;
  margin: 0 0 30px;
}
h2 span {
  display: block;
  font-size: 21px;
}
li {
  list-style-type: none;
  letter-spacing: 0.1em;
}
p {
  letter-spacing: 0.1em;
}
.button:hover {
  transition: all .3s;
  opacity: 0.74;
}
@media screen and (min-width: 768px) {
.sp_only {
  display: none;
}
.pc_space {
  display:inline-block;
  width:10px;
}
}
@media screen and (max-width: 768px) {
.pc_only {
  display: none;
}
h2 {
  font-size: 35px;
  font-weight: 900;
}
h2 span {
  font-size: 16px;
}
}
/* アニメーション
-------------------------------------*/
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 1000ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
/* 画面外にいる状態 */
.fadein_top {
  display: none;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
 @keyframes fadeUpAnime {
 from {
 opacity: 0;
 transform: translateY(100px);
}
 to {
 opacity: 1;
 transform: translateY(0);
}
}
/* ヘッダー
-------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  background: #fff;
  border-bottom: solid 2px #71ccff;
}
.logo {
  display: none;
}
.header__inner {
  height: 60px;
}
.nav__list{
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 17px 0;
}
.nav__item a{
  color: #ef89b2;
  font-size: 18px;
  font-weight: 800;
}
.nav__item:last-child {
  display: none;
}
.nav__item:hover {
  transition: all .3s;
  opacity: 0.74;
}
@media screen and (max-width: 1215px) {
.nav__list {
  padding: 17px 15px;
}
}
@media screen and (max-width: 768px) {
header {
  border-bottom: solid 1px #71ccff;
}
.logo {
  display: block;
  width: 80px;
  margin: 0 0 0 12px;
  padding: 12px 0;
}
.header__inner {
  height: 50px;
}
.hamburger {
  position: absolute;
  right: 60px;
  top: -5px;
  z-index: 10;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 28px;
  height : 2px;
  left: 16px;
  background: #ef89b2;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}
.hamburger.active span:nth-child(1) {
  top : 30px;
  left: 15px;
  background : #ef89b2;
  box-shadow: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform : rotate(-45deg);
  transform : rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 30px;
  background : #ef89b2;
  box-shadow: none;
  -webkit-transform: rotate(45deg);
  -moz-transform : rotate(45deg);
  transform : rotate(45deg);
}
.nav {
  z-index : 5;
  top : 0;
  left : 0;
  background: #fff;
  text-align: center;
  display: flex;
  position: fixed;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100vw);
  transition: opacity .6s ease, visibility .6s ease;
}
.nav__list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: block;
}
.nav__item {
  margin: 16px 0 0;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
.nav__item:last-child {
  display: block;
}
.nav__item a {
  font-size: 21px;
  display: block;
  color: #ef89b2;
  padding: 0.3em 0;
  text-decoration : none;
}
.nav__item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 50px 0;
  width: auto;
}
.nav__item ul li {
  width: 48%;
  margin: 0;
}
/* このクラスを、jQueryで付与・削除する */
.nav.active {
  transform: translateX(0);
  opacity: 100;
  position: fixed;
}
.nav__item:first-child {
  display: block;
  max-width: 200px;
  width: 90%;
  margin: 0 auto;
}
.nav__item .button {
  background-color: #fff;
  border-radius: 100vh;
  display: inline-block;
  margin: 8px 0 0;
  width: 280px;
}
.nav__item .button a {
  color: #f593b4;
  display: block;
  text-align: center;
  padding: 6px 0;
}
}
/*メインビジュアル
-------------------------------------*/
.mainvisual__wrapper {
  max-width: 650px;
  margin: 0 auto;
  padding: 100px 0 0;
}
@media only screen and (max-width: 768px){
.mainvisual {
  padding: 0;
}
.mainvisual__wrapper {
  padding: 80px 0 0;
  margin: 0 auto;
  width: 86%;
}
}
/*ニュース
-------------------------------------*/
.news {
  padding: 100px 0 0;
  text-align: center;
}
.news__wrapper {
  padding: 0 15px;
}
.news ul {
  max-width: 1200px;
  margin: 0 auto;
}
.news ul li {
  background: #71ccff;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  margin: 12px 0 0;
  text-align: left;
}
.news li.hidden {
  display: none;
}
.news ul li a {
  color: #fff;
  display: block;
  padding: 20px 50px 20px 20px;
  position: relative;
  width: 100%;
}
.news ul li a span {
  font-weight: bold;
  padding: 0 20px 0 0;
}
.news ul li a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: '';
  margin-top: -6px;
  border: 6px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #fff;
}
.news ul li:hover {
  transition: all .3s;
  opacity: 0.8;
}
.news__button {
  margin: 12px 0 0;
}
.news__button a {
  color: #efc858;
  font-weight: 500;
  font-size: 17px;
}
@media only screen and (max-width: 768px){
.news {
  padding: 50px 0 0;
}
.news ul li {
  font-size: 14px;
  margin: 10px 0 0;
}
.news ul li a {
  padding: 12px 34px 12px 12px;
}
.news ul li a::after {
  margin-top: -6px;
  right: 10px;
}
.news__button {
  margin: 10px 0 0;
}
.news__button a {
  font-size: 14px;
}
}
/*スケジュール
-------------------------------------*/
.schedule {
  text-align: center;
  padding: 100px 0 0;
}
.schedule__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.schedule__item {
  border-top: solid 2px #71ccff;
  padding: 60px 15px;
}
.schedule__item:last-child {
  border-bottom: solid 2px #71ccff;
  padding: 40px 15px;
}
.schedule__item a {
  color: #0099dd;
  text-decoration: underline;
}
.item__wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.item__title {
  font-size: 21px;
  font-weight: 600;
  padding: 0 0 30px;
  text-align: center;
  width: 100%;
}
.item__title .area {
  color: #0099dd;
  display: block;
  font-size: 30px;
  font-weight: 800;
  padding: 0 0 8px 0;
}
.date__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 54%;
}
.item__wrapper .date {
  color: #353535;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  width: 33.3%;
}
.item__wrapper .date .saturday {
  color: #001eff;
  font-size: 21px;
      padding: 0 0 0 6px;
}
.item__wrapper .date .sunday {
  color: #ec0b0b;
  font-size: 21px;
  padding: 0 0 0 6px;
}
.item__wrapper .date .weekdays {
  font-size: 21px;
  padding: 0 0 0 6px;
}
.item__wrapper .date .time {
  display: block;
  font-size: 24px;
  margin: 20px 0 0;
}
.item__wrapper .date .time .edge {
  border: 2px solid #353535;
  border-radius: 50px;
  display: block;
  font-size: 16px;
  padding: 2px 0 4px;
  margin: 0 auto 6px;
  width: 120px;
}
.item__wrapper .place {
  color: #353535;
  font-size: 24px;
  font-weight: 800;
  padding: 0 0 0 20px;
  text-align: left;
  width: 46%;
}
.item__wrapper .place .inquiry {
  background: #f1f1f1;
  border-radius: 6px;
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  text-align: center;
}
.item__wrapper .place .inquiry a {
  text-decoration: underline;
  word-wrap:break-word;
}
.schedule__item:last-child .date {
  padding: 0 0 14px 0;
}
@media only screen and (max-width: 768px){
.schedule {
  padding: 50px 15px 0;
}
.schedule__item {
  border-top: solid 1px #71ccff;
  padding: 40px 15px;
}
.schedule__item:last-child {
  border-bottom: solid 1px #71ccff;
}
.schedule__wrapper {
  border-radius: 8px;
  margin: 0;
}
.schedule__text {
  font-size: 16px;
  margin: 0 auto 30px;
}
.item__wrapper {
  flex-wrap: wrap;
}
.item__title {
  font-size: 18px;
  padding: 0 0 20px;
}
.item__title .area {
  font-size: 24px;
}
.date__wrapper {
  width: 100%;
}
.item__wrapper .date {
  font-size: 42px;
  letter-spacing: 0px;
}
.item__wrapper .date .time {
  font-size: 16px;
  font-weight: 600;
}
.item__wrapper .date .time .edge {
  display: block;
  font-size: 14px;
  width: 88%;
}
.item__wrapper .date .saturday {
  display: block;
  font-size: 16px;
  padding: 0;
}
.item__wrapper .date .sunday {
  display: block;
  font-size: 16px;
  padding: 0;
}
.item__wrapper .date .weekdays {
  display: block;
  font-size: 16px;
  padding: 0;
}
.item__wrapper .place {
  font-size: 20px;
  padding: 28px 0 0;
  text-align: center;
  width: 100%;
}
.item__wrapper .place .inquiry {
  background: #f1f1f1;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}
.schedule__item:last-child .item__wrapper .place {
  padding: 6px 0 0;
}
}
/*チケット情報
-------------------------------------*/
.ticket {
  padding: 100px 0 0;
}
.ticket__wrapper {
  display: flex;
  flex-flow: column;
  max-width: 1200px;
  margin: 0 auto;
}
.ticket__item {
  border-top: solid 2px #71ccff;
  padding: 60px 15px;
  text-align: center;
}
.ticket__item:first-child {
  padding: 60px 15px 0;
}
.ticket__item:nth-child(2) {
  border-top: none;
}
.ticket__item:last-child {
  border-bottom: solid 2px #71ccff;
}
.ticket__end {
  border: solid 2px #d21010;
  color: #d21010;
  display: block;
  font-size: 21px;
  font-weight: 800;
  margin: 20px auto 0;
  padding: 15px;
  text-align: center;
  width: 710px;
}
.ticket__text {
  color: #353535;
  display: inline-block;
  font-size: 21px;
  font-weight: 600;
  max-width: 1200px;
  text-align: left;
}
.ticket__text span.heading {
  color: #0099dd;
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  text-align: center;
  width: 332px;
}
.ticket__text span.subheading {
  display: block;
  font-size: 21px;
  margin: 0 auto 20px;
  text-align: center;
  width: 340px;
}
.ticket__text span.space {
  display: block;
  margin: 0 0 5px;
}
.ticket__inquiry {
  font-weight: 600;
  background: #f1f1f1;
  border-radius: 6px;
  font-size: 18px;
  margin: 20px auto 0;
  padding: 15px;
  text-align: center;
  width: 710px;
}
.ticket__inquiry a {
  color: #0099dd;
  text-decoration: underline;
}
.ticket__note {
  display: block;
  font-size: 14px;
  text-align: left;
  margin: 20px 0 0;
}
.ticket .button {
  background: #fff;
  border-radius: 100px;
  max-width: 340px;
  margin: 30px auto;;
  transition: .4s;
}
.ticket .button a {
  background: #71ccff;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 14px 50px 16px;
  position: relative;
  text-align: center;
}
.ticket .button a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: '';
  margin-top: -6px;
  border: 7px solid transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-color: #fff;
  transition: .4s;
}
@media only screen and (max-width: 768px){
.ticket {
  padding: 50px 15px 0;
}
.ticket__wrapper {
  margin: 0;
}
.ticket__item {
  border-top: solid 1px #71ccff;
  padding: 40px 15px;
}
.ticket__item:first-child {
  padding: 40px 15px 0;
}
.ticket__item:nth-child(2) {
  margin: 20px 0 0;
  padding: 0 15px 40px;
}
.ticket__item:last-child {
  border-bottom: solid 1px #71ccff;
}
.ticket__text {
  font-size: 16px;
  margin: 0;
  text-align: center;
}
.ticket__text span.heading {
  font-size: 22px;
}
.ticket__text span.subheading {
  font-size: 16px;
  width: 100%;
}
.ticket__text span.space {
  display: block;
  margin: 0 0 10px;
}
.ticket__inquiry {
  font-size: 16px;
  padding: 20px;
  width: 100%;
}
.ticket__note {
  font-size: 13px;
}
.end__text {
  font-size: 28px;
  line-height: 620px;
  margin: 0 -15px;
  width: calc(100% + 30px);
}
.ticket .button {
  width: 90%;
}
.ticket .button a {
  font-size: 16px;
  padding: 16px 46px 18px;
}
}
/*メンバー
-------------------------------------*/
.member {
  text-align: center;
  padding: 100px 0 0;
}
.member__wrapper {
  border: solid 2px #71ccff;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 36px 40px;
}
.member__text {
  color: #0099dd;
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 40px;
  text-align: center;
}
.member__note {
  color: #353535;
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  margin: 20px 0 0;
}
.member__wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.member__wrapper li {
  width: 18%;
  margin: 0 1% 4%;
}
.member__wrapper li a:hover {
  transition: all .3s;
  opacity: 0.8;
}
.member__name {
  color: #353535;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0 0 0;
}
@media only screen and (max-width: 768px){
.member {
  padding: 50px 15px 0;
}
.member__wrapper {
  border: solid 1px #71ccff;
  margin: 0;
  padding: 40px 15px;
}
.member__text {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
}
.member__wrapper ul {
  margin: 0 0 20px;
}
.member__wrapper li {
  width: 29.3%;
  margin: 0 2% 4%;
}
.member__name {
  font-size: 14px;
}
.member__note {
  font-size: 13px;
  margin: 0;
}
.member span.heading {
  font-size: 14px;
  margin: 30px auto 20px;
  width: 150px;
}
}
/*グッズ
-------------------------------------*/
.goods {
  text-align: center;
  padding: 100px 0 0;
}
.goods__wrapper {
  border: solid 2px #71ccff;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 110px;
}
.goods__container {
  background-color: #f5faff;
  padding: 30px 15px;
  width: 48.5%;
}
.goods__container:nth-child(2n) {
  margin-left: 3%;
}
.goods__container:nth-child(n+3) {
  margin-top: 3%;
}
.goods__banner {
  margin: 0 0 24px;
  padding: 0 15px;
}
.goods__banner img:hover {
  transition: all .3s;
  opacity: 0.8;
}
.goods__text {
  color: #ef89b2;
  font-size: 18px;
  text-align: center;
}
.goods .button {
  background: #fff;
  border-radius: 100px;
  max-width: 385px;
  margin: 24px auto 0;
  transition: .4s;
}
.goods .button a {
  border: solid 2px #ef89b2;
  border-radius: 100px;
  color: #ef89b2;
  display: block;
  font-size: 18px;
  padding: 14px 54px 16px;
  position: relative;
  text-align: center;
}
.goods .button a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: '';
  margin-top: -6px;
  border: 7px solid transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-color: #ef89b2;
  transition: .4s;
}
.goods .button:hover {
  background: #ef89b2;
}
.goods .button a:hover {
  color: #fff;
}
.goods .button a:hover::after {
  border-left-color: #fff;
}
.comingsoon {
  color: #0099dd;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto;
}
@media only screen and (max-width: 768px){
.goods {
  padding: 50px 15px 0;
}
.goods__wrapper {
  border: solid 1px #71ccff;
  margin: 0;
  padding: 0;
}
.goods__container {
  width: 100%;
}
.goods__container:not(:first-child){
  margin: 15px 0 0;
}
.goods__detail {
  padding: 0 15px;
}
.goods__text {
  font-size: 14px;
}
.goods__detail .button {
  margin: 24px auto 0;
  max-width: 100%;
  width: 100%;
}
.comingsoon {
  font-size: 20px;
  margin: 20px auto;
}
}
/*配信
-------------------------------------*/
.stream {
  background: #FBF0DF;
  text-align: center;
  margin: 160px 0;
  padding: 100px 0 0;
}
.stream__wrapper {
  background: #fffcf8;
  border: solid 2px #ef89b2;
  display: flex;
  flex-flow: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 110px 16px;
}
.stream__text {
  color: #ef89b2;
  display: inline-block;
  font-size: 24px;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 1200px;
}
@media only screen and (max-width: 768px){
.stream {
  margin: 80px 0;
  padding: 50px 15px 0;
}
.stream__wrapper {
  margin: 0;
  padding: 30px 15px 6px;
}
.stream__text {
  font-size: 18px;
  margin: 0 auto 30px;
  text-align: left;
}
.goods .button a {
  font-size: 14px;
  padding: 14px 46px 16px;
}
}
/*フッター
-------------------------------------*/
footer {
  background: #ef89b2;
  margin: 100px auto 0;
  padding: 50px 0 25px;
  text-align: center;
  position: relative;
  z-index: auto;
}
footer ul {
  display: flex;
  justify-content: space-between;
  max-width: 1015px;
  margin: 0 auto;
  padding: 0 15px;
}
footer ul li {
  border: solid 2px #fff;
  width: 32%;
}
footer li a :hover {
  transition: all .3s;
  opacity: 0.8;
}
.copyright{
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  padding: 80px 0 0;
}
@media only screen and (max-width: 768px){
footer {
  margin: 50px auto 0;
  padding: 50px 0 15px;
}
footer ul {
  flex-wrap: wrap;
  margin: 0 15px;
}
footer ul li {
  width: 48%;
  margin: 0 0 4%;
}
.copyright {
  font-size: 14px;
  padding: 50px 0 0;
}
}
/*TOPへ戻る
-------------------------------------*/
.header-box {
  display: none;
}
.pagetop {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 1vw;
  z-index: 3;
}
.pagetop a {
  background: #fff;
  border: solid 2px #71ccff;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.pagetop:hover {
  transition: all .3s;
  opacity: 0.8;
}
.pagetop a span {
  width: 2.34vw;
  height: 2.27vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -7.5px;
}
.pagetop a i {
  width: 15px;
  weight: 8px;
  height: 2.27vw;
  display: block;
  background: url(../img/top.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px){
.pagetop{
  width: 9.38vw;
  height: 9.38vw;
  bottom: 12vw;
  right: 10px;
}
.pagetop a span {
  margin: -0.66vw 0 0 -1.17vw;
}
.pagetop a i {
  width: 2.34vw;
}
}
/*モーダル
-------------------------------------*/
body.modal__open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body.modal__open .modal {
  opacity: 1;
  visibility: visible;
}
.modal__block {
  border-radius: 6px;
  position: absolute;
  padding: 75px 50px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 84%;
  min-width: 500px;
  max-width: 1000px;
  background-color: #fff;
}
.modal__close {
  position: absolute;
  top: 30px;
  right: 15px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.modal__close::before,
.modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #ef89b2;
  content: "";
}
.modal__close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.modal__close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.modal__close:hover {
  cursor: pointer;
  transition: all .3s;
  opacity: 0.8;
}
.modal__text {
  font-size: min(2vw, 18px);
  line-height: 1.8em;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.modal__text span {
  color: #ef89b2;
  font-weight: bold;
}
@media only screen and (max-width: 768px){
.modal__close {
  width: 18px;
  top: 20px;
  right: 10px;
}
.modal__block {
  min-width: 100px;
  width: 88%;
  padding: 34px 28px 28px;
}
.modal__text {
  font-size: min(2.8vw, 14px);
}
}