@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
body {
  font-size: 1.6rem;
  line-height: 160%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  transition: 0.3s;
}
img {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein.fadein-left {
  transform: translate(-30px, 0);
}
.fadein.fadein-right {
  transform: translate(30px, 0);
}
.fadein.fadein-up {
  transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
h2.title {
  display: inline-block;
  font-style: normal;
  font-family: "Spectral", serif;
  font-weight: 600;
  font-size: 3.42rem;
  padding: 15px 25px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  margin-bottom: 40px;
}
a, a img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover, a img:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
/**********************************************************
 * ヘッダー
 **********************************************************/
header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  flex-flow: row;
  position: sticky;
  top: 0;
  padding: 20px;
  width: 98%;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  background: #0090da;
  z-index: 10;
  position: fixed;
  top: 0;
}
header .nav_global {
  color: #FFF;
  font-style: normal;
  font-family: "Spectral", serif;
  font-weight: 500;
  font-style: normal;
}
header .nav_global ul {
  display: flex;
  flex-flow: row;
  margin: 0;
  padding: 6px;
  list-style-type: none;
}
header .nav_global ul a {
  color: #FFF;
  text-decoration: none;
  margin: 0 25px;
  position: relative;
  display: inline-block;
  font-size: 2rem;
}
header .nav_global ul a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
header .nav_global ul a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #FFF;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
header .nav_global ul a:hover::after {
  transform: scale(1, 1);
}
header .sns_x {
  width: 50px;
  position: absolute;
  right: 20px;
}
/**********************************************************
 * メイン
 **********************************************************/
main {
  padding-top: 80px;
}
#top {
  text-align: center;
}
#top .mv {
  width: 1024px;
  margin: 0 auto;
}
/*about*/
#about {
  letter-spacing: 1px;
  background-image: url("../img/about_bg.jpg");
  background-color: #0090da;
  background-size: cover;
  background-position: bottom center;
  padding: 50px 0;
  text-align: center;
  color: #FFF;
}
#about h3 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 180%;
  padding-bottom: 10px;
}
#about h4 {
  display: inline-block;
  border-top: double 4px #FFF;
  line-height: 180%;
  padding: 40px 120px;
  font-size: 1.8rem;
  font-weight: 600;
}
#about p {
  line-height: 180%;
  margin-bottom: 20px;
}
#about p.info {
  padding: 10px 20px;
  border: 1px solid #FFF;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
}
#about .about_scene {
  width: 860px;
  margin: 40px auto;
}
#about .studio_chizu {
  width: 1024px;
  margin: 20px auto;
  border: 1px solid #FFF;
  padding: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
#about .about_chizu {
  width: 60%;
  text-align: left;
}
#about .about_chizu h5 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}
#about .about_chizu ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
#about .about_chizu li {
  width: 30%;
  margin-right: 20px;
  font-size: 2.2rem;
}
#about .about_chizu li span {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
#about .chizu_link {
  width: 35%;
}
#about .btn_link {
  margin: 20px auto;
  width: 100%;
}
#about .btn_link a {
  position: relative;
  display: block;
  background: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0090da;
  padding: 10px;
}
#about .btn_link a .arrow {
  width: 70px;
  vertical-align: middle;
  margin: 0 -20px 0 15px;
}
.about_scene_bg {
  height: 420px;
  background-image: url("../img/about_scene_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
/*お知らせ*/
#news {
  padding: 50px 0;
  text-align: center;
}
#news h2.title {
  color: #0090da;
  border-color: #0090da;
}
#news dl.news_box {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 600px;
  margin: 0 auto;
  text-align: left;
  overflow: auto;
  height: 100px;
}
#news dl.news_box dt {
  padding: 5px 0;
  width: 120px;
}
#news dl.news_box dd {
  padding: 5px 0;
  width: calc(100% - 120px);
}
#news dl.news_box dd a {
  color: #333;
  text-decoration: underline;
}
#news .txt-hide {
  display: none;
}
#news .more {
  padding: 20px;
  text-align: right;
}
/*チケット*/
#tickets {
  padding: 50px 0 600px;
  background-color: #15639a;
  background-image: url("../img/tickets_bg.jpg");
  background-position: bottom center;
  background-size: cover;
  color: #FFF;
  text-align: center;
}
#tickets .inner {
  width: 860px;
  margin: 20px auto 0 auto;
}
.ticket-notes {
  padding-left: 1.5rem;
  font-size: 1.4rem;
  text-align: left;
}
.ticket-notes li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 20px;
}
.ticket-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
}
#tickets .toclets_outline {
  width: 600px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  font-site: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
#tickets .toclets_outline dt {
  border: 1px solid #FFF;
  padding: 4px 15px;
  width: 60px;
  margin-bottom: 15px;
}
#tickets .toclets_outline dd {
  padding: 5px 0 5px 25px;
  width: calc(100% - 165px);
  text-align: left;
  margin-bottom: 15px;
}
#tickets h3 {
  display: inline-block;
  margin: 40px auto 30px;
  padding: 8px 35px;
  border: 1px solid #FFF;
  font-site: 2.6rem;
  font-weight: 700;
}
#tickets .price {
  width: 700px;
  margin: 0 auto 40px auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  font-site: 1.8rem;
  text-align: left;
}
#tickets .price dt {
  border-bottom: 1px dashed#FFF;
  padding: 6px 15px;
  width: 160px;
  font-weight: 700;
  text-align: left;
}
#tickets .price dd {
  border-bottom: 1px dashed #FFF;
  padding: 6px 0;
  width: calc(100% - 200px);
  font-weight: 700;
  text-align: left;
  font-size: 1.4rem;
}
#tickets .price dt:last-of-type, #tickets .price dd:last-of-type {
  border-bottom: none;
}
#tickets .price dd span {
  font-size: 1.6rem;
  display: inline-block;
  width: 70px;
  margin-right: 15px;
  text-align: right;
}
#tickets .pre_sale {
  font-size: 1.8rem;
  background: #fff91c;
  padding: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 5px;
  color: #000;
}
#tickets .sale {
  width: 600px;
  margin: 40px auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  font-site: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
#tickets .sale dt {
  padding: 4px 15px;
  width: 300px;
  margin-bottom: 15px;
  text-align: left;
}
#tickets .sale dd {
  padding: 0;
  width: calc(100% - 365px);
  text-align: left;
  margin-bottom: 15px;
}
#tickets .btn_ticket a {
  background: #FFF;
  padding: 8px 15px;
  text-align: center;
  display: block;
  color: #0090da;
}
/*出演*/
#performers {
  padding: 50px 0;
  text-align: center;
}
#performers h2.title {
  color: #0090da;
  border-color: #0090da;
}
#performers .performers_box {
  width: 1024px;
  margin: 40px auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#performers .performers_box .photo {
  width: 410px;
}
#performers .performers_box .profile {
  width: calc(100% - 450px);
  text-align: left;
}
#performers .performers_box .profile .role {
  color: #0090da;
  font-family: "Spectral", serif;
  font-weight: 500;
  font-size: 2.2rem;
}
#performers .performers_box .profile h3 {
  font-size: 2.0rem;
  font-weight: 600;
  margin: 5px 0 15px 0;
}
#performers .line {
  width: 1024px;
  margin: 0 auto;
}
/*開催概要*/
#outline {
  background: #0090da;
  padding: 50px 0;
  text-align: center;
  color: #FFF;
}
#outline table {
  margin: 0 auto;
  border: none;
  text-align: left;
}
#outline table tr {
  border-bottom: 1px solid #86b7e2;
}
#outline table th, #outline table td {
  padding: 20px 35px;
}
#outline table td a {
  color: #FFF;
  text-decoration: underline;
}
/*アクセス*/
#access {
  background: #0090da;
  padding: 50px 0;
  text-align: center;
  color: #FFF;
  letter-spacing: 1px;
  line-height: 200%;
}
#access h3 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 2.0rem;
}
#access p {
  margin-bottom: 20px;
}
#access .subway {
  width: 560px;
  margin: 30px auto;
  text-align: left;
}
#access iframe {
  border: 5px solid #000 !important;
  /*  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);*/
}
/**********************************************************
 * フッター
 **********************************************************/
footer {
  background-color: #000;
  position: relative;
  padding: 15px 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
footer .logo {
  width: 225px;
}
footer .footer_info {
  text-align: right;
}
footer .sns_x {
  width: 50px;
  margin-left: auto;
}
footer .copyright {
  margin-top: 10px;
  font-size: 1.14rem;
  line-height: 150%;
  color: #999999;
}