@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Dela+Gothic+One&family=IBM+Plex+Sans+JP:wght@400;600&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:600px) {
  .pc {
    display: none;
  }
}
@media(min-width:601px) {
  .sp {
    display: none;
  }
}
@media(max-width:810px) {
  .mainPC {
    display: none;
  }
}
@media(min-width:811px) {
  .mainSP {
    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: #26221d;
}
a:link {
  text-decoration: underline;
  color: #81c1e5;
}
a:visited {
  text-decoration: underline;
  color: #81c1e5;
}
a:active {
  text-decoration: underline;
  color: #81c1e5;
}
a:hover {
  text-decoration: none;
  color: #81c1e5;
}
/* 画像関連 */
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;
  scroll-behavior: smooth;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* 見出し */
h2 {
}

/* 一文字ずつ表示するために文字を分割 */
.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{
  margin: 1% 15px;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 37px;
  color: #1ba3e9;
}
h3 span.chara{
  background-image: repeating-linear-gradient(-45deg, #fdf035 0, #fdf035 4px, transparent 4px, transparent 8px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.4em;
}
@media(max-width:600px) {
  h3 {
    font-size:30px;
    letter-spacing: 0;
	padding-bottom: 30px;
  }	
}
h4{
  margin: 0 15px;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  color: #1ba3e9;
  text-align: center;
}
h4 span.chara{
  background-image: repeating-linear-gradient(-45deg, #fdf035 0, #fdf035 4px, transparent 4px, transparent 8px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.4em;
}
@media(max-width:400px) {
  h4 {
    letter-spacing: 0;
  }
}
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;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  border: solid 2px #81c1e5;
  background-color: #000;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:600px) {
  .menu-btn {
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border: solid 1px #81c1e5;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #81c1e5;
  -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: #81c1e5;
  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: #81c1e5;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #81c1e5;
}
.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(26%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
}
.menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #81c1e5;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
}
#main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #28b3f9;
  background-image: linear-gradient(225deg, rgba(0, 106, 203, 1), rgba(155, 221, 254, 1));
}
@media(min-width:1920px) {
  #main {
    background-size: cover;
  }
}
/* ロゴ */
h1 {
  width: 100%;
  max-width: 940px;
  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 0;
  background-color: #fff;
}
#intro p{
  font-size: 100%;
  padding: 8px 15px;
  line-height: 1.8;
}
/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
#cast {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #fff;
}
.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: 400px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
@media(max-width:600px) {
  .photo{
    width: 260px;
  }
}
.photo img {
  width: 100%;
  height: auto;
}
.actor {
  font-size: 36px;
  line-height: 1.5;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  padding-bottom: 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: 600;
  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: 400;
  text-align: left;
  background: #f1f9fd;
  border: solid 2px #1ba3e9;
  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 #1ba3e9;
  z-index: 1;
}
.message p{
  padding: 8px 0;
  font-size: 96%;
}
.profile{
  font-weight: 400;
  font-size: 13px;
  text-align: left;
  padding: 10px 15px;
  color: #666;
  line-height: 1.5;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 80px;
  background-color: #7c7266;
  background-image: url("../img/moyo01.png");
  background-size: 30px;
}
@media(max-width:600px) {
  #info {
    background-size: 20px;
  }
}
#info article {
  width: 90%;
  margin: 75px auto 0;
  padding: 35px 2% 50px;
  background-color: #fff;
  border-radius: 10px;
}
@media(max-width:600px) {
  #info article {
  }
}
.dateTxt {
  font-weight: 600;
  font-size: 125%;
  text-align: center;
  padding: 15px 0 5px;
}
@media(max-width:400px) {
  .dateTxt {
    font-size: 110%;
  }
}
.venueTxt {
  font-weight: 600;
  font-size: 125%;
  text-align: center;
  padding: 0;
}
@media(max-width:400px) {
  .venueTxt {
    font-size: 110%;
  }
}
#info 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;
}
/* チケット */
.senkoBox {
  border: 1px solid #81c1e5;
  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: #81c1e5;
}
.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: #81c1e5;}

.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: #81c1e5;}

/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 75px 0;
  clear: both;
  color: #9d958c;
  text-align: center;
  font-size: 100%;
  background-color: #26221d;
}
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: #1ba3e9;
  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;
}