@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans+JP:wght@400;600&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:740px) {
  .pc {
    display: none;
  }
}
@media(min-width:741px) {
  .sp {
    display: none;
  }
}
img {
  pointer-events: none;
}
/* 画像のプリント禁止 */
@media print {
  img {
    display: none !important;
  }
}
/* リセットcss */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}
html, h1, h2, h3, h4, dl, dt, dd, ul, li, p, img {
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
}
/* ボディ */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #333;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
}
a:link {
  text-decoration: underline;
  color: #e5007f;
}
a:visited {
  text-decoration: underline;
  color: #e5007f;
}
a:active {
  text-decoration: underline;
  color: #e5007f;
}
a:hover {
  text-decoration: none;
  color: #e5007f;
}
/* 改行禁止 */
.nowrap {
  white-space: nowrap;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 1px solid #aaa;
}
.solid {
  border-top: 3px #aaa solid;
}
.dotted {
  border-top: 3px #aaa dotted;
}
.dashed {
  border-top: 1px #aaa dashed;
}
.double {
  border-top: 3px #aaa double;
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-behavior: smooth;
}
#container {
  width: 100%;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* 見出し */
h2 {
  text-align: center;
  padding: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 0.05em;
}
h2 span {
  border-bottom: 4px solid #e5007f;
  padding: 0 0 0 0.05em;
}
@media(max-width:400px) {
  h2 {
    font-size: 40px;
  }
}
h3 {
  margin: 20px 0;
  padding: 0;
  font-weight: 600;
  font-style: normal;
  color: #333;
  font-size: 24px;
  text-align: center;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@media(max-width:400px) {
  h3 {
    font-size: 20px;
    margin: 0 0 40px;
  }
}
h3.h3next {
  font-size: 18px;
  margin: 0 0 50px;
}
@media(max-width:400px) {
  h3.h3next {
    font-size: 15px;
    margin: 0 0 30px;
  }
  h3 span {}
}
h4 {
  margin: 0 15px;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  text-align: center;
  border-bottom: 4px solid #333333;
}
@media(max-width:400px) {
  h4 {
    font-size: 24px;
    margin: 0;
  }
}
h5 {
  text-align: center;
  color: #e5007f;
  margin: 0;
  padding: 50px 0 20px;
}
h5 span {
  padding: 5px 1.5em 3px;
  margin: 0 auto;
  font-size: 1.1em;
  font-weight: 500;
  border-top: 1px solid #e5007f;
  border-bottom: 1px solid #e5007f;
  background: #fdedf6;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 101;
  background-color: #e5007f;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:810px) {
  .menu-btn {
    width: 40px;
    height: 40px;
  }
}
@media(max-width:400px) {
  .menu-btn {
    width: 30px;
    height: 30px;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #000;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
.menu-btn-line::before, .menu-btn-line::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #000;
  position: absolute;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
.menu-btn-line::before {
  top: -5px;
}
.menu-btn-line::after {
  top: 5px;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
.open .menu-btn {
  border-color: #000;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #000;
}
.open .menu-btn-line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open .menu-btn-line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*開いたメニュー*/
.menu {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.menu ul {
  transform: translateY(20%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
}
@media(max-width:400px) {
  .menu li {
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
  }
}
.menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #e5007f;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #444;
}
/* ロゴ */
h1 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}
h1 img {
  width: 100%;
  height: auto;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
/* =============================================== */
/* intro - イントロ */
/* ----------------------------------------------- */
#intro {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 80px;
  background-color: #fff;
}
.logo2026 {
  width: 90%;
  max-width: 560px;
  margin: 0 auto 20px;
}
.logo2026 img {
  width: 100%;
  height: auto;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
#intro p {
  font-size: 100%;
  padding: 8px 15px;
  line-height: 1.8;
  color: #333;
}
#intro p.lead {
  margin: 20px 0;
  padding: 0;
  font-weight: 600;
  font-size: 19px;
}
#intro p.lead span {
  padding: 10px 15px 8px;
  color: #fff;
  line-height: 1.4;
  background: linear-gradient(#e5007f, #e5007f);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media(max-width:810px) {
  #intro p.lead {
    font-size: 19px;
  }
  #intro p.lead span {
    padding: 2px 15px;
  }
}
@media(max-width:400px) {
  #intro p.lead {
    font-size: 16px;
    line-height: 2;
  }
  #intro p.lead span {
    padding: 2px 15px;
  }
}
.stagePhoto01 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 12px;
  text-align: center;
}
.stagePhoto01 img {
  width: 100%;
  height: auto;
}
@media(max-width:810px) {
  .stagePhoto01 {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
}
.stagePhoto02 {
  width: 360px;
  float: right;
  padding-left: 25px;
  font-size: 12px;
  text-align: center;
}
.stagePhoto02 img {
  width: 100%;
  height: auto;
}
@media(max-width:810px) {
  .stagePhoto02 {
    float: none;
    width: 60%;
    margin: 0 auto;
    padding-left: 0;
  }
}
.stagePhoto03 {
  width: 360px;
  float: left;
  padding-right: 25px;
  font-size: 12px;
  text-align: center;
}
.stagePhoto03 img {
  width: 100%;
  height: auto;
}
@media(max-width:810px) {
  .stagePhoto03 {
    float: none;
    width: 60%;
    margin: 0 auto;
    padding-right: 0;
  }
}
.beatles {
  width: 360px;
  float: left;
  padding-top: 10px;
  padding-right: 25px;
  font-size: 8px;
  text-align: center;
}
.beatles img {
  width: 100%;
  height: auto;
}
@media(max-width:810px) {
  .beatles {
    float: none;
    width: 90%;
    margin: 0 auto;
    padding-right: 0;
    font-size: 6px;
  }
}
.club {
  border: 1px solid #e5007f;
  padding: 20px 2em;
  color: #333;
}
h5.clubTitle {
  font-weight: 600;
  border-bottom: 1px solid #e5007f;
  color: #333;
  text-align: center;
  padding: 0 0 15px;
  margin-bottom: 25px;
  font-size: 115%;
}
@media(max-width:400px) {
  .club {
    padding: 20px 0.2em;
    font-size: 89%;
  }
  h5.clubTitle {
    font-size: 100%;
    padding: 0 0 10px;
    text-align: left;
    margin: 5px 15px 15px;
  }
  .club p {
    padding: 6px 0;
    margin: 0;
  }
}
/* =============================================== */
/* story - ストーリー */
/* ----------------------------------------------- */
#story {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 100px;
  color: #fff;
  background-image: url("../img/bgIntro01.jpg");
}
#story p {
  font-size: 100%;
  padding: 15px 30px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  /*background-color: rgba(255,255,255,0.2); */
}
@media(max-width:1000px) {
  #story p {
    padding: 15px;
  }
}
/* =============================================== */
/* caststaff - 情報欄 */
/* ----------------------------------------------- */
#caststaff {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 250px;
  background-color: #fff;
  background-image: url("../img/bgStory01.jpg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}
@media(max-width:1000px) {
  #caststaff {
    padding: 50px 0 150px;
    background-size: 100%;
  }
}
@media(max-width:400px) {
  #caststaff {
    padding: 50px 0 75px;
    background-size: 160%;
  }
}
.crediteList01 {
  text-align: center;
  padding: 10px 0 20px;
}
.crediteList01 li {
  display: block;
  text-align: center;
  font-weight: 600;
  padding: 10px 1em;
  font-size: 20px;
  vertical-align: top;
  line-height: 1.4;
}
.job {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media(max-width:400px) {
  .crediteList01 li {
    font-size: 17px;
  }
  .job {
    font-size: 12px;
  }
}
.crediteList02 {
  text-align: center;
  padding: 10px 0 20px;
}
.crediteList02 li {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  padding: 10px 0.5em 20px;
  font-size: 24px;
  vertical-align: top;
  line-height: 1.2;
}
.belong {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
@media(max-width:400px) {
  .crediteList02 li {
    font-size: 17px;
  }
  .belong {
    font-size: 10px;
  }
}
/* =============================================== */
/* message - メッセージ */
/* ----------------------------------------------- */
#message {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #000;
}
#message h2 {
  color: #fff;
}
.messageList01 {
  text-align: center;
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 2%;
}
.messageList01 li {
  vertical-align: top;
  padding: 0 0 60px;
  color: #fff;
}
.role {
  color: #e5007f;
  font-weight: 600;
  font-size: 16px;
}
@media(max-width:400px) {
  .role {
    font-size: 14px;
  }
}
.actor {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
  padding: 5px 0 20px;
}
@media(max-width:400px) {
  .actor {
    font-size: 22px;
    padding: 0 0 10px;
  }
}
.photo {
  width: 400px;
  height: auto;
  text-align: center;
  margin: 0 auto 10px;
  display: none;
}
@media(max-width:400px) {
  .photo {
    width: 260px;
  }
}
.photo img {
  width: 100%;
  height: auto;
}
div.message {
  position: relative;
  display: inline-block;
  margin: 0.5em 0;
  padding: 25px;
  font-weight: 400;
  text-align: left;
  background: #fff;
  box-sizing: border-box;
  color: #333;
  line-height: 1.6;
}
div.message:before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid #fff;
  z-index: 1;
}
.message p {
  padding: 8px 0;
  font-size: 96%;
}
.profile {
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  padding: 10px 15px;
  color: #bbb;
  line-height: 1.5;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#ticket {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #fff;
}
@media(max-width:600px) {
  #ticket {
    background-size: 20px;
  }
}
#ticket article {
  width: 90%;
  margin: 0 auto 20px;
  padding: 50px 2%;
}
@media(max-width:600px) {
  #ticket article {}
}
.dateTxt {
  font-weight: 600;
  font-size: 125%;
  text-align: center;
  padding: 15px 0 5px;
}
@media(max-width:400px) {
  .dateTxt {
    font-size: 105%;
  }
}
.venueTxt {
  font-weight: 600;
  font-size: 125%;
  text-align: center;
  padding: 0;
}
@media(max-width:400px) {
  .venueTxt {
    font-size: 105%;
  }
}
#ticket p {
  text-align: center;
}
.sche {
  margin: 20px auto;
  width: 100%;
  max-width: 940px;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.cautionList {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0 20px 1em;
  list-style-type: disc;
  list-style-position: outside;
  border-top: 1px dotted #999;
  border-bottom: 1px dotted #999;
}
.cautionList li {
  font-size: 85%;
  line-height: 1.3;
  padding: 3px 0;
}
/* クレジット枠 */
.crediteBox {
  width: 100%;
  max-width: 580px;
  margin: 40px auto 20px;
  border-collapse: collapse;
  font-size: 85%;
}
@media(max-width:400px) {
  .crediteBox {
    font-size: 75%;
  }
}
.crediteBox th {
  width: 6em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
@media(max-width:400px) {
  .crediteBox th {
    width: 4.5em;
  }
}
.crediteBox td {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 1em;
}
/* チケット */
.senkoBox {
  border: 1px solid #e5007f;
  margin: 0 auto;
  padding: 0 2%;
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  background-color: #fff;
  color: #333;
}
@media(max-width:999px) {
  .senkoBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
.ippanBox {
  border: 1px solid #f5e680;
  margin: 0 auto;
  padding: 0 2%;
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  color: #fff;
}
@media(max-width:999px) {
  .ippanBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
.senkoBox h5 span {
  color: #fff;
  background-color: #e5007f;
}
.ippanBox h5 span {
  color: #000;
  background-color: #f5e680;
}
.playguideList {
  list-style: none;
  padding: 0 0 15px 0;
  font-size: 90%;
}
@media(max-width:810px) {
  .playguideList {
    font-size: 85%;
  }
}
.playguideList li {
  padding: 15px 0;
  border-top: 1px dotted #999;
}
.playguideList li:first-child {
  border-top: none;
}
.purchase {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 70%;
  text-align: center;
  font-weight: 500;
}
.purchase span {
  display: block;
}
@media(max-width:810px) {
  .purchase {
    width: 100%;
    padding: 20px 0;
    line-height: 1.4;
  }
}
.purchase a:link {
  display: block;
  position: relative;
  padding: 1em;
  text-align: center;
  text-decoration: none;
  margin: 5px 1em;
  transition: all 0.3s;
  font-weight: 400;
  border-radius: 100px;
  font-size: 100%;
}
.purchase a:visited {
  text-decoration: none;
}
.purchase a:active {
  text-decoration: none;
}
.purchase a:hover {
  text-decoration: none;
}
.senkoBox .purchase a:link {
  color: #fff;
  background: #98212a;
}
.senkoBox .purchase a:visited {
  color: #fff;
  background: #98212a;
}
.senkoBox .purchase a:active {
  color: #fff;
  background: #98212a;
}
.senkoBox .purchase a:hover {
  color: #fff;
  background: #e5007f;
}
.ippanBox .purchase a:link {
  color: #000;
  background: #f0d72b;
}
.ippanBox .purchase a:visited {
  color: #000;
  background: #f0d72b;
}
.ippanBox .purchase a:active {
  color: #000;
  background: #f0d72b;
}
.ippanBox .purchase a:hover {
  color: #000;
  background: #f5e680;
}
.siteSenko .purchase a:link {
  color: #fff;
  background: #98212a;
}
.siteSenko .purchase a:visited {
  color: #fff;
  background: #98212a;
}
.siteSenko .purchase a:active {
  color: #fff;
  background: #98212a;
}
.siteSenko .purchase a:hover {
  color: #fff;
  background: #e5007f;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 75px 0;
  clear: both;
  color: #ccc;
  text-align: center;
  font-size: 100%;
  background-color: #000;
}
/* SNSボタン */
.snsBtn {
  padding: 0 0 25px;
  text-align: center;
}
.snsBtn li {
  font-size: 46px;
  font-weight: 400;
  padding: 0 10px;
  display: inline-block;
}
.snsBtn a:link {
  text-decoration: none;
  display: block;
  color: #fff;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:active {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #e5007f;
}
footer p {
  padding: 0 0 15px;
  font-size: 95%;
  color: #fff;
}
footer p span {
  font-size: 85%;
  display: block;
}
/* =============================================== */
/* clearfix - クリアフィックス設定 */
/* ----------------------------------------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
/* =============================================== */
/* rollover - 画像ロールオーバー設定 */
/* ----------------------------------------------- */
a:hover img {
  -moz-opacity: 0.80;
  opacity: 0.80;
  filter: alpha(opacity=80);
}
nav a:hover img {
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media(max-width:810px) {
  a:hover img {
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
/* =============================================== */
/* other - その他 */
/* ----------------------------------------------- */
/* ほか */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 99;
}
@media(max-width:810px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #e5007f;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
}
@media(max-width:810px) {
  #page-top a {
    font-size: 40px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
.banner01 {
  position: fixed;
  bottom: 10px;
  left: 10px;
  line-height: 1;
  z-index: 99;
  width: 180px;
}
.banner01 img {
  width: 100%;
  height: auto;
  display: block;
}
@media(max-width:601px) {
  .banner01 {
    width: 100px;
  }
}
.large {
  font-size: 130%;
}
.small {
  font-size: 75%;
}
.bold {
  font-weight: 600;
}
.left {
  float: left;
}
.right {
  float: right;
}
.txtCenter {
  text-align: center;
}
.txtRight {
  text-align: right;
}
.yellow {
  color: #ffff00
}
/* =============================================== */
/* linkBtn - ボタン */
/* ----------------------------------------------- */
.linkBtn {
  text-align: center;
  font-weight: 400;
  display: block;
  padding: 0 0 10px;
}
.linkBtn a:link {
  text-decoration: none;
  color: #fff;
  padding: 3px 1em;
  margin: 0 auto;
  line-height: 1;
  font-size: 0.6em;
  position: relative;
  top: -3px;
  background-color: #e5007f;
  border-radius: 50px;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #fff;
  background-color: #e5007f;
}
.linkBtn a:active {
  text-decoration: none;
  color: #fff;
  background-color: #e5007f;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #fe5ab5;
  color: #fff;
}
/* =============================================== */
/* fadeIn - フェイドイン */
/* ----------------------------------------------- */
/* 共通（最初は隠す） */
.fadeInUp, .fadeInDown, .fadeInLeft, .fadeInRight {
  opacity: 0;
  transition: all 0.8s ease;
}
/* 右から */
.fadeInRight {
  transform: translateX(30px);
}
.fadeInRight.show {
  opacity: 1;
  transform: translateX(0);
}
/* 左から */
.fadeInLeft {
  transform: translateX(-30px);
}
.fadeInLeft.show {
  opacity: 1;
  transform: translateX(0);
}
/* 下から */
.fadeInUp {
  transform: translateY(30px);
}
.fadeInUp.show {
  opacity: 1;
  transform: translateY(0);
}
/* 上から */
.fadeInDown {
  transform: translateY(-30px);
}
.fadeInDown.show {
  opacity: 1;
  transform: translateY(0);
}