@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;600&family=Lobster&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:600px) {
  .pc {
    display: none;
  }
}
@media(min-width:601px) {
  .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;
}
html, body {
  scroll-behavior: smooth;
}
/* ボディ */
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;
  background-color: #047fe6;
  -webkit-text-size-adjust: 100%;
}
a:link {
  text-decoration: underline;
  color: #ec6ba4;
}
a:visited {
  text-decoration: underline;
  color: #ec6ba4;
}
a:active {
  text-decoration: underline;
  color: #ec6ba4;
}
a:hover {
  text-decoration: none;
  color: #ec6ba4;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 1px solid #433116;
}
.solid {
  border-top: 3px #433116 solid;
}
.dotted {
  border-top: 3px #433116 dotted;
}
.dashed {
  border-top: 1px #433116 dashed;
}
.double {
  border-top: 3px #433116 double;
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* 見出し */
h2 {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1;
  transform: rotate(-5deg);
  text-align: center;
  padding: 25px 0 25px 0.2em;
  letter-spacing: 2px;
  color: #047fe6;
  text-shadow: 3px 3px #ffbc01;
}
@media(max-width:600px) {
  h2 {
    font-size: 36px;
  }
}
/* 一文字ずつ表示するために文字を分割 */
.chara span {
  display: inline-block;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
/* 表示トリガー時の状態 */
.show span {
  transform: translateY(0);
  opacity: 1;
}
h3{}
h4{}
h5{
  text-align: center;
  color: #1ba3e9;
  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 #1ba3e9;
  border-bottom: 1px solid #1ba3e9;
  background: #f1f9fd;
}
/* =============================================== */
/* pcMenu - ヘッダーメニュー */
/* ----------------------------------------------- */
nav{
  width: 100%;
  height: 47px;
  border-bottom: 2px solid #000;
  background-color: #047fe6;
  position: fixed;
  z-index: 9999;
}
.pcMenu{
  text-align: center;
}
.pcMenu li{
  display: inline-block;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  padding: 10px 0.4em;
  font-size: 25px;
  line-height: 1;
  transform: rotate(-5deg);
}
.pcMenu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.pcMenu li a:hover {
  color: #ffbb00;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* menu - スマホメニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 5px;
  left: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  background-color: #047fe6;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #fabd02;
  -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: #fabd02;
  position: absolute;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
.menu-btn-line::before {
  top: -8px;
}
.menu-btn-line::after {
  top: 8px;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
.open .menu-btn {
  border-color: #fabd02;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #fabd02;
}
.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(255, 255, 255, .8);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.menu ul {
  transform: translateY(21%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  transform: rotate(-5deg);
}
.menu li a {
  display: block;
  color: #047fe6;
  text-shadow: 3px 3px #ffbc01;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #047fe6;
  text-shadow: 3px 3px #ffbc01;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
}
#main {
  width: 100%;
  margin: 50px auto 0;
  padding: 0;
  background-color: #98d3f3;
  background-image: url("../img/bgMain02.jpg");
  border-bottom: 2px solid #000;
}
@media(max-width:600px) {
  #main {
    margin: 0 auto;
  }	
}
/* ロゴ */
h1 {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}
@media(max-width:900px) {
  h1 {
    border-left: none;
    border-right: none;
  }	
}
h1 img {
  width: 100%;
  height: auto;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
/* ニュースフィード */
#newsfeed {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
  background-color: #fefde1;
}
@media(max-width:600px) {
  #newsfeed {
    padding: 0;
  }
}
.feedList {
  width: 90%;
  max-width: 900px;
  margin: 15px auto;
  border-top: 2px solid #000;
}
.feedList li{
  border-bottom: 2px solid #000;
  padding: 10px 15px;
}
.feedDate{
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  display: inline-block;
  padding-right: 10px;
  color: #047fe6;
}
@media(max-width:600px) {
  .feedDate {
    display: block;
  }
}
.feedList li a {
  text-decoration: underline;
  color: #333;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.feedList li a:hover {
  text-decoration: none;
  color: #008bff;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* intro - イントロ */
/* ----------------------------------------------- */
#intro {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 75px;
  background-color: #fefde1;
  border-bottom: 2px solid #000;
}
@media(max-width:600px) {
  #intro {
    padding: 25px 0 40px;
  }
}
#intro p{
  padding: 8px 15px;
  line-height: 1.8;
}
.lead {
  margin: 20px 0;
  padding: 0;
  font-weight: 600;
  letter-spacing: 5%;
  
}
.lead span {
  font-size: 36px;
  padding: 0 15px;
  color: #047fe6;
  line-height: 2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: repeating-linear-gradient(-45deg,
    #fedd80 0, #fedd80 5px,
    transparent 5px, transparent 10px
  );
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.5em;
}
.lead small{
  font-size: 80%;
  color: #333;
}
@media(max-width:600px) {
  .lead span {
    font-size: 21px;
  }
}
/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
#cast {
  width: 100%;
  margin: 0 auto;
  padding: 75px 0 75px;
  background-color: #feeeee;
  border-bottom: 2px solid #000;
}
@media(max-width:600px) {
  #cast {
    padding: 40px 0;
  }
}
.castList01 {
  text-align: center;
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 2%;
}
.castList01 li {
  vertical-align: top;
  padding: 0 0 40px;
}
.photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
.photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.actor {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 600;
  padding: 10px 0 20px;
}
@media(max-width:400px) {
  .actor {
    font-size: 26px;
  }
}
.belong{
  font-size: 15px;
  display:block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media(max-width:400px) {
  .belong {
    font-size: 12px;
  }
}
div.message{
  position: relative;
  display: inline-block;
  margin: 0.5em 0;
  padding: 25px 20px;
  width: 100%;
  font-weight: 600;
  text-align: left;
  background: #fff;
  border: solid 2px #fff;
  box-sizing: border-box;
  color: #333;
  line-height: 1.6;
  border-radius: 10px;
}
div.message:before {
  content: "";
  position: absolute;
  top: -30px;
  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: #333;
  line-height: 1.5;
}
@media(max-width:600px) {
  .profile {
    font-size: 12px;
  }
}
.staffList01{
  text-align: center;
  width: 94%;
  max-width: 900px;
  padding-top: 30px;
  margin: 0 auto;
}
.staffList01 li{
  display: inline-block;
  padding: 5px 0.5em;
  font-size: 90%;
}
@media(max-width:600px) {
  .staffList01 li {
    font-size: 70%;
  }	
}
.job{
  color: #ec6ba4;
  border: 1px solid #ec6ba4;
  display: inline-block;
  padding: 3px 8px 2px;
  margin-right: 5px;
  line-height: 1;
  font-size: 85%;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#osaka {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0;
  background-color: #d0cae4;
  border-bottom: 2px solid #000;
}
#tokyo {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0;
  background-color: #bddaf3;
  border-bottom: 2px solid #000;
}
@media(max-width:600px) {
  #osaka {
    padding: 10px 0;
  }
  #tokyo {
    padding: 10px 0;
  }
}
#osaka article {
  width: 90%;
  margin: 50px auto;
  padding: 35px 2% 50px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}
#tokyo article {
  width: 90%;
  margin: 50px auto;
  padding: 35px 2% 50px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}
.dateTxt {
  font-weight: 600;
  font-size: 125%;
  padding: 15px 0 5px;
}
@media(max-width:400px) {
  .dateTxt {
    font-size: 110%;
  }
}
.venueTxt {
  font-weight: 600;
  font-size: 125%;
  padding: 0;
}
@media(max-width:400px) {
  .venueTxt {
    font-size: 110%;
  }
}
.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;
}
/* チケット */
.ippanBox {
  margin: 20px auto;
  padding: 0 2%;
  width: 92%;
  max-width: 700px;
  border-radius: 10px;
  color: #fff;
}
@media(max-width:999px) {
  .ippanBox {
    width: 92%;
  }
}
.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: 18em;
  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;
}
.ippanBox .purchase a:link {color: #fff; background-color: #1ba3e9;}
.ippanBox .purchase a:visited {color: #fff; background-color: #1ba3e9;}
.ippanBox .purchase a:active {color: #fff; background-color: #1ba3e9;}
.ippanBox .purchase a:hover {color: #ff0; background-color: #47bffd;}

/* =============================================== */
/* news - 新着情報 */
/* ----------------------------------------------- */
#news {
  width: 100%;
  margin: 0 auto;
  padding: 75px 0 75px;
  background-color: #fefde1;
  border-bottom: 2px solid #000;
}
@media(max-width:600px) {
  #news {
    padding: 20px 0 40px;
  }
}
#news h3 {
  margin: 20px 0 10px;
  padding: 0;
  font-weight: 600;
}
#news h3 .newsDate{
  font-size: 20px;
  margin: 0;
  padding: 0 15px;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  color: #047fe6;
}
#news h3 .lead {
  margin: 0 0 30px;
  padding: 0 15px 10px;
  font-weight: 600;
  border-bottom: 2px solid #000;
  line-height: 1.5;
  font-size: 94%;
}
#news p{
  padding: 8px 15px;
  line-height: 1.8;
  font-size: 94%;
}
.newsPhoto{
  margin: 15px auto;
}
.newsPhoto img{
  width: 100%;
  height: auto;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 75px 0;
  clear: both;
  color: #fff;
  text-align: center;
  font-size: 100%;
  background-color: #047fe6;
}
@media(max-width:600px) {
  footer {
    padding: 30px 0;
  }
}
footer p{
  padding: 0;
}
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: #fbbc03;
  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;
  padding: 10px 0;
  font-weight: 400;
}
.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: #1ba3e9;
  border-radius: 50px;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #fff;
  background-color: #1ba3e9;
}
.linkBtn a:active {
  text-decoration: none;
  color: #fff;
  background-color: #1ba3e9;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #47bffd;
  color: #ff0;
}
/* =============================================== */
/* 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);
}