@charset "UTF-8";


/*============================================
COMMON
============================================*/

body {
  font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3',
   Meiryo, メイリオ;
}

p {
  line-height: 1.8;
}

a {
  color: #93182c;
}
a:hover {
  color: #d42340;
}

/* ----------- navigation ----------- */

h1 {
  width: 140px;
  margin: 0 10px;
}

ul.nav {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin-top: 20px;
}

ul.nav li {
  font-size: 10px;
  margin-right: 10px;
}

ul.nav li a {
  font-size: 18px;
  padding: 15px 30px;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(17,17,17,1) 50%);
  background-position: 0 0;
  background-size: 210% auto;
  transition: .3s;
}

ul.nav li a:hover {
  background-position: -95% 0;
  color: #fff;
}

@media (max-width: 1000px) {
ul.nav {
  margin-top: 20px;
}
.navbar-nav {
  margin-bottom: 0;
}
}

@media (max-width: 768px) {
ul.nav li a {
  background: #efefef;
  border-bottom: 1px solid #fff;
  display: block;
  -webkit-transform: none;
  transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
ul.nav li a:hover, ul.nav li a:focus, ul.nav li a:active {
  -webkit-transform:  none;
  transform:  none;
}
}


/* ----------- footer ----------- */

footer {
  margin-top: 100px;
  height: 100px;
  padding-top: 30px;
  background: #151515;
  color: #fff;
}
footer p {
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 900px) {
  footer {
    height: auto;
  }
  footer p {
    text-align: center;
    padding: 20px;
  }
}


/* ページトップ */
#page-top {
    position: fixed;
    bottom: 130px;
    right: 50px;
    font-size: 20px;
    z-index: 99;
}
#page-top a {
    background: #111;
    text-decoration: none;
    border: 2px solid #111;
    color: #fff;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    text-align: center;
    display: block;
    -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;
}
#page-top a:hover {
    text-decoration: none;
    background: #fff;
    color: #111;
    border: 2px solid #111;
    padding-top: 0;
}

@media (max-width: 640px) {
  #page-top {
      bottom: 20px;
      right: 20px;
      font-size: 20px;
  }
}


/*==== SHARE BTN ==== */

/* ----[ul]---*/
ul.social-button{
  overflow: hidden;
  margin: 1em auto;
  padding: 0;
  border: none;
  list-style-type: none;
}

/* ----[li] ---*/

ul.social-button li{
  min-height: 25px;
  float: left;
  text-align: center;
  margin: 0;
  padding:0;
}
@media (max-width: 680px) {

}

/* [Twitter] */
.sc-tw{
  width: 100px;
}




/* ----------- Title ----------- */


h2 {
  font-size: 40px;
  color: #666;
}

h6 {
  font-size: 15px;
  font-weight: bold;
}



/* ----------- PROPATY ----------- */

.img-center {
  margin-right: auto;
  margin-left: auto;
}

.imgOver {
  -webkit-transition: .3s;
  transition: .3s;
}
.imgOver:hover {
  opacity: 0.7;
}

.tac {
  text-align: center;
}

.spOnly {
  display: none;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.hoverOpa {
  -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;
}
.hoverOpa:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

a img.normalOpa {
  -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 img.normalOpa {
  opacity: 0.8;
  filter: alpha(opacity=60);
}

/* 強調 赤文字デカ */
.emphasisRed{
  font-size: 120%;
  color: #de0707;
  font-weight: bold;
}

/* 強調 蛍光マーカー */
.emphasisHighlight{
  font-size: 105%;
  background: #f5f69a;
  padding: 5px 2px ;
}


@media (max-width: 680px) {
  .smb50 {
    margin-bottom: 50px;
  }
  .smt50 {
    margin-top: 50px;
  }
  .spOnly {
  display: inherit;
  }
  .pcOnly {
    display: none;
  }
}

.mb20 {
  margin-bottom: 20px;
}
.mb50 {
  margin-bottom: 50px;
}
.mt20 {
  margin-top: 20px;
}
.mt50 {
  margin-top: 50px;
}


/* small 小さいサイズ */
.sTxt {
  font-size: 70%;
}


/* ----------- MODULE ----------- */

.btn::before,
.btn::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.btn,
.btn::before,
.btn::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btnBlack {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  position: relative;
  z-index: 2;
  text-align: center;
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  background:#111;
  border: 1px solid #111;
  width: 200px;
}
.btnBlack:hover {
  background-color: #fff;
  border-color: #111;
  color: #111;
}
.btnBlack::before,
.btnBlack::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #111;
}
.btnBlack::before {
  right: 0;
}
.btnBlack::after {
  left: 0;
}
.btnBlack:hover::before,
.btnBlack:hover::after {
  width: 0;
  background-color: #111;
}



/*============================================
TOP
============================================*/

.jumbotron {
  background: url(../img/hero_img.png) no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #eff4f1;
  height: 700px;
}

@media (max-width: 900px) {
  .jumbotron {
    height: 400px;
  }
}

@media (max-width: 500px) {
  .jumbotron {
    height: 250px;
  }
}


/* --- Next Stage --- */

#newest h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  padding: 3px 0;
  background: url(../img/line.gif) repeat-x center center;
  font-size: 24px;
}
#newest h2 span {
  padding-right: 0.5em ;
  background-color: #fff;
}
#newest h2 span.h2min {
  font-size: 14px;
  padding-left: 1em;
}
#newest h2:before {
�?�?border-right: 1em solid transparent;
}

.nextStageBoxTop {
  position: relative;
  /* 本当の高さはこっち！ height: 370px; */
  /* 以下は正方形の特別対応 */
  height: 300px;
  width: 390px;
  margin: 0 auto;
}

.nextStageBoxTop dl.dateInfo {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  width: 180px;
  height: 180px;
  border-radius: 90px;
  background: #151515;
  color: #fff;
  text-align: center;
  padding-top: 20px;
}

.nextStageBoxTop dl.dateInfo dt {
  font-size: 20px;
}
.nextStageBoxTop dl.dateInfo dd {
  font-size: 24px;
}
.nextStageBoxTop dl.dateInfo dd.start {
  background: url(../img/icon_arrow01.png) center bottom no-repeat;
  padding-bottom: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.nextStageBoxTop .poster {
  width: 250px;
  position: absolute;
  top: 40px;
  left: 130px;
  z-index: 99;
}

.nextStageBoxBottom {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 410px) {
  .nextStageBoxTop {
    position: static;
    height: auto;
    width: 100%;
    text-align: center;
  }
  .nextStageBoxTop dl.dateInfo {
    width: auto;
    height: auto;
    padding: 10px;
  }
  .nextStageBoxTop .poster {
   width: auto;
   position: static;
  }
}


@media (max-width: 680px) {
  .nextStageBoxBottom {
    margin-bottom: 50px;
  }
}

.topBanner {
  margin-top: 100px;
}

.topBanner .col-md-6 {
  margin-bottom: 30px;
}

.topNews dl dt {
  margin-bottom: 10px;
}

.topNews dl dt span {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 3px 10px;
  font-size: 10px;
  margin-left: 10px;
}

.topNews dl a {
  background: url(../img/icon_arrow03.png) no-repeat left 10px;
  padding: 5px 0 0 10px;
  color: #93182c;
  margin: 0px 0 0 10px;
  display: inline-block;
}



/*============================================
SUB PAGE COMMON id="under"
============================================*/

#under .jumbotron {
  background-position: center center;
  background-size: cover;
  background-repeat: none;
  height: 200px;
}

#under h2 {
  margin-top: 10px;
  background: url(../img/bg_under_h2.png) no-repeat center center;
  text-align: center;
  height: 90px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #111;
  padding-top: 10px;
}
#under h2 span {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 5px;
}

#under h3 {
  text-align: center;
  font-size: 24px;
  padding: 15px 30px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

#under h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin-top: 100px;
  padding: 3px 0;
  background: url(../img/line.gif) repeat-x center center;
  font-size: 28px;
}
#under h4 span {
  padding-right: 0.5em ;
  background-color: #fff;
}
#under h4 span.h4min {
  font-size: 12px;
  padding-left: 1em;
}
#under h4:before {
 border-right: 1em solid transparent;
}

#under h5 {
  font-size: 16px;
  height: 35px;
  padding: 10px 20px;
  background: url(../img/bg_under_h5_left.png) left center no-repeat,
              url(../img/bg_under_h5_right.png) right center no-repeat;
  display: inline-block;
}


#under ul.listBasic {
  padding: 0;
  margin-bottom: 30px;
}

#under ul.listBasic li {
  list-style: none;
  background: url(../img/icon_list.png) left center no-repeat;
  padding-left: 20px;
  line-height: 1.8;
}


/*============================================
NEWS
============================================*/

#under .jumbotron.news {
  background-image: url(../news/img/bg_header.jpg);
}

.newsBox {
  margin-bottom: 50px;
}

#under .newsBox h3 {
  border-top: 1px solid #ccc;
  text-align: left;
  padding: 10px 0 5px 10px;
  font-size: 20px;
}
#under .newsBox h3 span {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
#under .newsBox h3 span.newsTag {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 3px 10px;
  font-size: 10px;
  margin-left: 10px;
}

.newsBox p {
  margin-bottom: 30px;
}

.newsBox a.blankLink {
  background: url(../img/icon_arrow03.png) no-repeat left 10px;
  font-size: 16px;
  padding-left: 15px;
  margin-bottom: 5px;
  color: #93182c;
  display: block;
}

.newsPanel {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}


/*============================================
ABOUT
============================================*/

#under .jumbotron.about {
  background-image: url(../about/img/bg_header.jpg);
}

.overview p {
  padding: 10px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 680px) {
  .about p {
    width: 100%;
  }
}

.messageBox {
  margin-top: 50px;
}

.messageBox p.career {
  background: #eee;
  padding: 30px;
  font-size: 12px;
}

.linkBox {
  margin-top: 50px;
}

.link dl dt {
  background: url(../img/icon_arrow03.png) no-repeat left 5px;
  font-size: 16px;
  padding-left: 15px;
  margin-bottom: 5px;
}
.link dl dt a {
  color: #93182c;
}
.link dl dd {
  padding-left: 15px;
}

.wantedBox {
  margin-top: 50px;
}


/*============================================
MEMBER
============================================*/

#under .jumbotron.member {
  background-image: url(../member/img/bg_header.jpg);
}

.memberListBox {
  text-align: center;
}

.memberListBox .col-md-3 {
  margin-bottom: 30px;
}
@media (max-width: 400px) {
  .memberListBox .col-md-3 {
    min-height: 370px;
  }
}

.memberListBox img {
  max-width: 100%;
  margin-bottom: 20px;
  width: inherit;
  height: auto;
}

.memberListBox a {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  width: 100%;
}

.memberListBox a span,
.slideBox a,
a.slideBtn {
  color: #111;
  padding: 5px 10px;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(17,17,17,1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
  display: inline-block;
  width: 100%;
}

.memberListBox a:hover span,
.slideBox a:hover,
a.slideBtn:hover {
  background-position: -100% 0;
  color: #fff;
}

@media (max-width: 640px) {
  .memberListBox a span,
  .slideBox a,
  a.slideBtn {
    background-image:none;
  }

  .memberListBox a:hover span,
  .slideBox a:hover,
  a.slideBtn:hover {
    color: #111;
  }
}


a.slideBtn:hover {
  text-decoration: none;
}


/*-------- Individual ---------*/

#under .specBox h3 {
  text-align: left;
  font-size: 30px;
  padding: 0 0 10px 0;
  margin-bottom: 50px;
}
#under .specBox h3 span {
  font-size: 20px;
  display: inline-block;
  margin-left: 30px;
}

@media (max-width: 990px) {
  #under .specBox h3 {
    margin-top: 50px;
  }
}


#under .specBox dl.dl-horizontal {
  font-size: 14px;
}
#under .specBox dl.dl-horizontal dt {
  text-align: left;
}
#under .specBox dl.dl-horizontal dd {
  line-height: 1.6em;
  margin-bottom: 20px;
}

.personalBox {
  margin-top: 100px;
  padding-top: 100px;
  border-top: 1px solid #ccc;
}

@media (max-width: 990px) {
  .personalImgBox {
    margin-top: 50px;
  }
}

#under h3.memberSlide {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin-bottom: 50px;
}
.otherMember {
  margin-top: 100px;
}

.slideBox {
  text-align: center;
}
.slideBox img {
  margin-bottom: 20px;
}

.slideBox span {
  display: inline-block;
}


/*============================================
STAGE
============================================*/

#under .jumbotron.stage {
  background-image: url(../stage/img/bg_header.jpg);
}

.stageListBox {
  margin-top: 50px;
}

.stageListBox a {
  color: #111;
  font-size: 14px;
  padding: 10px;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(17,17,17,1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
  display: inline-block;
  min-height: 540px;
  margin-bottom: 20px;
  width: 100%;
}

.stageListBox a:hover {
  background-position: -100% 0;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 640px) {
  .stageListBox a {
    background-image: none;
  }
  .stageListBox a:hover {
    color: #111;
  }
}
@media (max-width: 600px) {
  .stageListBox a {
    min-height: 400px;
  }
}



.stageListBox dl {
  margin-top: 20px;
}

.stageListBox dl dt {
  margin-bottom: 10px;
  font-weight: bold;
}

.stageListBox dl dd {
  font-size: 12px;
  margin-bottom: 5px;
}

.stageInfo {
  margin-top: 50px;
}

#under .stageInfo dl.dl-horizontal {
  font-size: 16px;
}
@media (max-width: 1000px) {
#under .stageInfo dl.dl-horizontal {
  margin-top: 50px;
}
}
#under .stageInfo dl.dl-horizontal dt {
  text-align: left;
}
#under .stageInfo dl.dl-horizontal dd {
  margin-bottom: 10px;
}

.gallery {
}
#under .gallery h4 {
  background: none;
  text-align: center;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 28px;
}
.gallery dl dd{
  margin-bottom: 10px;
}
.gallery img {
  margin-bottom: 30px;
}

.stage_notes {
  display: block;
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}


/*============================================
CONTACT
============================================*/

#under .jumbotron.contact {
  background-image: url(../contact/img/bg_header.jpg);
}



.formRequired {
  padding: 3px 10px ;
  background: #93182c;
  font-size: 12px;
  color: #fff;
  margin-right: 10px;
}


.form-group {
  margin-bottom: 30px;
}

.btn-send {
  width: 50%;
  margin: 0 auto 10px;
  display: block;
}

@media (max-width: 1000px) {
.btn-prj {
  width: 100%;
}
}

.att_box {
  padding: 20px;
  border: double 3px #ccc;
  margin-bottom: 50px;
}

.att_box p.tac {
  font-size: 1.2em;
  font-weight: bold;
  background-color: #fff8d6;
  padding: 5px;
  margin-bottom: 20px;
}

.att_box ol li,
.att_box ul li {
  margin-bottom: 10px;
}

/*----------------
ticket
------------------*/
.ticketInfo {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
}
.ticketInfo .symbolTxt {
  font-weight: bold;
}
.ticketInfo .symbolTxt.minus {
  color: #5f9fd5;
}
.ticketInfo .symbolTxt.plus {
  color: #d42939;
}


/*============================================
WORK
============================================*/

#under .jumbotron.work {
  background-image: url(../work/img/bg_header.jpg);
}





/*============================================
WORK
============================================*/

.work .col-md-6 {
  margin-bottom: 50px;
}
