@charset "UTF-8";
@import url("reset.css");

/*
font-family: 'Anton', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/

body {
font-family: 'Noto Serif JP', serif;
color: #000;
background-image: url(../img/bg.jpg);
background-repeat: repeat;

}

/* inner */
.inner { margin:0 auto; }
.inner.width-1100 { width:1100px; }


@media screen and (max-width:1100px) {
.inner { margin:0; }
.inner.width-1100 { width:100%; }	
}


.wrapper {
  overflow:  hidden;

}

main {
      min-height: calc( 100vh - 100px);
}


/*=======================================================
 header
 =======================================================*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}



header .logo {
  padding: 0 0 0 20px;
  font-size: 36px;
display: inline-block;
  background: linear-gradient(180deg, #ed9047 0%, #7bc0be 50%, #efea74 100%);
  background: -webkit-linear-gradient(-90deg, #ed9047 0%, #ed9047 50%, #efea74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Anton', sans-serif;
}
header .logo img {
height: 30px;
 
}



nav ul {
  margin: 0;
  display: flex;
    justify-content: center;
    align-items: center;

}
nav li {
  margin: 0 0 0 25px;
  list-style-type: none;
}

nav li:last-child {
  margin: 0 25px;

}





header {
position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background-image: url(../img/bg.jpg);
}
nav .navbox {
  text-align: center;
}

nav ul .menu_en {
font-size: 16px;
font-weight: 300;
letter-spacing: 0.05em;
color: #000;
font-family: 'Noto Sans JP', sans-serif;
}
nav ul .menu_jp {
font-size: 12px;
font-weight: 100;
margin-top: 5px;
}
nav ul a:hover {
opacity: 0.8;
}


@media screen and (max-width:1240px) {
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



header .logo {

  padding: 0 0 0 10px;
  font-size: 36px;
    font-weight: 400;
}


nav ul {
  margin: 0;
  display: flex;
    justify-content: center;
    align-items: center;
}
nav li {
  margin: 0 0 0 20px;
  list-style-type: none;
}



nav ul .menu_en {
font-size: 15px;
font-weight: 300;
letter-spacing: 0.05em;
}
nav ul .menu_jp {
font-size: 12px;
font-weight: 100;
margin-top: 5px;
}}


@media screen and (max-width: 1100px) {

header .logo {

  padding: 0 0 0 10px;
  font-size: 24px;
    font-weight: 400;
}
}



/* humburger */
@media screen and (max-width: 1080px) {

#gloval-nav ul li:nth-child(8) {
margin: 0;
}

header .phonebox {
    display: none;
}

header .logo {

    padding: 0 0 0 15px;
    font-size: 20px;
    font-weight: 400;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
}



header .logo {

  padding: 0 0 0 10px;

}
nav li {
  margin: 0;
  list-style-type: none;
}

nav ul a .contact {
    background: transparent;
    display: flex!important;
    justify-content: center;
    align-items: center;
    height: auto;
    color: #fff;
    padding: 0 15px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
}
nav ul a .contact img {

  height:  30px;
  vertical-align:  middle;
}


#nav-toggle {
  /*position: fixed;
  top: 15px;
  right: 15px;*/
  padding-right: 10px;
  height: 32px;
  cursor: pointer;

}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 90%;
  height: 1px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .5s ease;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 12px;
}
#nav-toggle span:nth-child(3) {
  top: 24px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 2px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 21px;
}

.open #nav-toggle span {
  background: #000;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  background: #f3ece1;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: -webkit-box;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 18px;
  opacity: 0;
  -webkit-transition: opacity .6s ease, visibility .6s ease;
  transition: opacity .6s ease, visibility .6s ease;
}

#gloval-nav a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #666;
}

nav {
  width: 100%;
}

nav ul {
  margin: 0;
  display: block;

}
nav ul li {
width: 100%;

}

nav ul.sns {
    display: inline-flex;
}
nav ul.sns li {
    margin: 0 20px;
}
nav li:last-child {
    margin: 0;
}
nav ul .menu_en {
font-size: 20px;
}
nav ul .menu_jp {
font-size: 12px;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, opacity .2s ease;
  transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
}
#gloval-nav ul li:nth-child(2) {
  -webkit-transition-delay: .15s;
          transition-delay: .15s;
}
#gloval-nav ul li:nth-child(3) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
#gloval-nav ul li:nth-child(4) {
  -webkit-transition-delay: .45s;
          transition-delay: .45s;
}
#gloval-nav ul li:nth-child(5) {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}
#gloval-nav ul li:nth-child(6) {
  -webkit-transition-delay: .75s;
          transition-delay: .75s;
}
#gloval-nav ul li:nth-child(7) {
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
}
#gloval-nav ul li:nth-child(8) {
  -webkit-transition-delay: .10s;
          transition-delay: .10s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}
/* humberger */

.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0!important;
}

}
/*=======================================================
mainvisual
 =======================================================*/

.mainvisual {
width: 100%;
max-width: 1000px;
/*padding-top: 60px;*/
margin: 60px auto 0;
}

.mainvisual h1 img {
width: 100%;
height: auto;
}


.delayed-image {
  /* じわっと画像が表示される */
  animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
 
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
 


/*=======================================================
section
 =======================================================*/

section {
  margin: 0 auto!important;
  width: 100%;
  max-width:1000px;
  padding: 130px 0 0!important;
}
section.sec {
    padding: 190px 0 0!important;
}


section.ticket_caution {
	  padding: 0!important;
}

section.ticket_caution .detail {
	font-size: 30px;
	text-align: center;
}


section h2 {
  color:#000;
  font-size:7vw;
  margin: 0 auto 70px;
  text-align: center;
  font-weight: 200;
font-family: "Times New Roman", "Yu Mincho", serif;
}


section h3 {
  font-size:24px;
 text-align: center;
margin-bottom: 10px;

}

section h3.not:first-child {
margin-top: 80px;

}


section h3.head-border {
    display: flex;
    align-items: center;
}
 
section h3.head-border:before,
section h3.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #c9bc9c;;
}
 
section h3.head-border:before {
    margin-right: 1rem;
}
 
section h3.head-border:after {
    margin-left: 1rem;
}



section .catch {
  font-size: 24px; 
  line-height:48px;
  display: table;
  text-align:center;
  margin: 0 auto 50px;
}


section .text {
  font-size: 18px;
  line-height: 42px;
  display: table;
  margin: 0 auto;
  text-align:center;
}

section .stagename {
  text-align:center;
  font-size:5vw;
}




section .stagename img {
  height: 200px;
  margin: 0 auto 50px;

}

section .title {
  font-size: 36px;
  font-weight:500;
  text-align:center;
}

section .subtitle {
  font-size: 36px;
  font-weight:200;
  text-align:center;
}
section .subtitle .map {
  text-align: center;
  color: #fff;
  background: #aa2324;
  display: inline;
  padding: 0 10px;
  margin-left: 10px;
  vertical-align: inherit;
  font-weight: 300;
  line-height: 30px;
  font-size: 30px;
}
section .subtitle .map a {
  color: #fff;
}
section .detail {
  font-size: 24px;
  font-weight:200;
  text-align:center;
  margin-bottom: 30px;
}



section.theater {
  margin: 0 auto;
  text-align:center;
}

section.theater img {
  width: 100%;
  max-width:600px;
  text-align:center;
  margin: 0 auto;
}


section.theater .frame {
  border: 1px solid #f9f0e7;
  padding: 60px 0;
  margin: 90px auto 0;
  width: 100%;
  max-width:843px;
}

section.theater .frame ul.list{
  margin: 0 auto 20px;
  padding: 0;
    display: table;
    margin: 0 auto;

}
section.theater .frame ul.list li {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
  text-align: left;
  margin-bottom: 0;
  margin-top:0!important;
  font-size: 20px;
  line-height:36px;
}

section.theater .frame ul.list .pink {
  color: #f9f0e7;
}



section.cast .castname {
  text-align: center;
  font-size: 24px;
  display: table;
  margin: 0 auto;
  font-weight: 200;
}


section.cast ul.castlist {
  display:flex;
  justify-content:center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  
}

section.cast ul.castlist li {
width: 48%;
margin-right: 4%;
}
section.cast ul.castlist li:last-child {
margin-right: 0;
}

section.cast ul.castlist .character {
  font-size:22px;
  font-weight: 400;
  text-align:center;
}

section.cast ul.castlist .castname {
  font-size:36px;
  font-weight: 400;
  text-align:center;
}


section.ticket#last {
	padding-top: 60px!important;
}

section.ticket .ticketdetail {
  display:table;
  margin: 0 auto;
}

section.ticket .text {
  font-size: 36px;
  margin-bottom:20px;
}

section.ticket .text_s {
  font-size: 24px;
  margin-bottom:40px;
  text-align: center;
}



section .sales {
  font-size: 36px;
  font-weight:500;
  margin-bottom:20px;

}

section .date {
  font-size: 24px;
  font-weight:200;
  line-height:48px;
  margin-top: 40px;

}
section .reservation {
  font-size: 20px;
  font-weight:500;
  line-height:36px;


}
section .url {
    margin-bottom:15px;
}
section .url a {
  font-size: 20px;
  font-weight:200;
  color:#f9f0e7;

}

section .caution {
  font-size: 14px;
  font-weight:200;

}


section article {
  margin-bottom:50px;
}


section.message {
  margin: 0 auto;
  text-align:center;
}
section.twitter {
  margin: 0 auto 130px!important;
  text-align:center!important;
  max-width:900px!important;
}
section.twitter h2 .small {
    font-size: 3vw;
}


.timeline-Widget {
    max-width: 1200px;
    background-color: #fff;
    border-radius: 5px;
    margin: 0 auto;
}

footer .copy {
  text-align:center;
  font-size:12px;
  margin-bottom:30px;
}

@media screen and (max-width:1000px) {
section {
  margin: 0 auto!important;
  width: 100%;
  max-width:1000px;
  padding: 130px 30px 0!important;
}
section.sec {
    padding: 190px 30px 0!important;
}

}
@media screen and (max-width:768px) {

section {
  margin: 0 auto!important;
  width: 100%;
  max-width:1000px;
  padding: 40px 15px 0!important;
}
section.sec {
    padding: 60px 15px 0!important;
}

	
	section.ticket_caution  {
		  padding: 0 15px !important;
	}

section h2 {
  font-size:8vw;
  margin: 0 auto 20px;
  text-align: center;
    font-weight: 200

}



section h3 {
  font-size:18px;
 text-align: center;
margin-bottom: 20px;

}
section .title {
  font-size: 18px;
  font-weight:500;
  text-align:center;
}

section .subtitle {
  font-size: 18px;
  font-weight:200;
  text-align:center;
}

section .catch {
    font-size: 18px;
    line-height: 28px;
    display: table;
    text-align: center;
    margin: 0 auto 50px;
}

section .subtitle .map {
    text-align: center;
    color: #fff;
    background: #aa2324;
    display: inline;
    padding: 0 5px;
    margin-left: 5px;
    vertical-align: inherit;
    font-weight: 300;
    line-height: 16px;
    font-size: 16px;
}

section .text {
  font-size: 14px;
  line-height: 30px;
  display: table;
  margin: 0 auto;
}

section .title {
  font-size: 22px;
  font-weight:400;
  text-align:center;
}

section .detail {
  font-size:18px;
  font-weight:200;
  text-align:center;
  margin-bottom: 30px;
}


  
section.cast ul.castlist {
  display:flex;
  justify-content:center;
  align-items: center;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 700px;
  
}

section.cast ul.castlist img {
  width: 100%;
}

section.cast ul.castlist li {
width: 48%;
margin-right: 4%;
}
section.cast ul.castlist li:last-child {
margin-right: 0;
}

section.cast ul.castlist .character {
  font-size:16px;
  font-weight: 400;
  text-align:center;
}

section.cast ul.castlist .castname {
  font-size:20px;
  font-weight: 400;
  text-align:center;
}
	



section .stagename img {
    height: auto;
    margin: 0 auto 30px;
    width: 60%;
}


section.theater {
  margin: 0 auto;
  text-align:center;
}

section.theater img {
  width: 90%;
  max-width:600px;
  text-align:center;
  magin: 0 auto;
}


section.theater .frame {
  border: 1px solid #f9f0e7;
  padding: 20px;
  margin: 30px auto 0;
  width: 100%;
  max-width:843px;
}

section.theater .frame ul.list{
  margin: 0 auto 20px;
  padding: 0;
    display: table;
    margin: 0 auto;

}
section.theater .frame ul.list li {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
  text-align: left;
  margin-bottom: 0;
  margin-top:0!important;
  font-size: 14px;
  line-height:18px;
  margin-bottom:5px;
}

section.theater .frame ul.list .pink {
  color: #f9f0e7;
}

section.ticket .ticketdetail {
  display:table;
  margin: 0 auto;
}
section.ticket .text {
  font-size: 20px;
  margin-bottom:0;
}

section.ticket .text_s {
  font-size: 14px;
  margin-bottom:40px;
  text-align: center;
}

section .sales {
  font-size: 20px;
  font-weight:500;
  margin-bottom:10px;

}

section .date {
  font-size: 16px;
  font-weight:200;
  line-height:30px;

}
section .reservation {
  font-size: 14px;
  font-weight:500;
  line-height:22px;


}
section .url {
    margin-bottom:15px;
}
section .url a {
  font-size: 14px;
  font-weight:200;
  color:#f9f0e7;

}

section .caution {
  font-size: 14px;
  font-weight:200;

}


section article {
  margin-bottom:40px;
}


section.message {
  margin: 0 auto;
  text-align:center;
}
section.twitter {
  margin: 0 auto 40px!important;
  text-align:center!important;
  width: 100%;


}

.timeline-Widget {
    max-width: 700px!important;
    background-color: #fff;
    border-radius: 5px;
    margin: 0 auto!important;
  text-align:center!important;
}

footer .copy {
  text-align:center;
  font-size:12px;
  margin-bottom:30px;
}
     #video {
        top:0;
        width: 100%;
        height: 100%;
        background: #000;/*背景を黒で表示*/
        }
}


/*=======================================================
stage
 =======================================================*/

.stage .date {
  text-align:center;
  font-size:30px;
    vertical-align:middle;
  font-weight: 400;
}

.stage .date .large {
  text-align:center;
  font-size:42px;
}

.stage .date .hall {
  text-align:center;
  color: #000;
  background:#c9bc9c;
  display:inline;
  padding:5px 10px;
  margin-left: 5px;
  vertical-align:middle;
  font-weight: 300;
}

.stage .position {
  text-align:center;
  font-size: 36px;
  display:table;
  margin: 40px auto 20px;
  line-height: 50px;
  font-weight: 500;
}

.stage .castname {
  text-align:center;
  font-size: 36px;
  display:table;
  margin:0 auto;

  font-weight: 200;
}

.stage .hoshitori {
  text-align: center;
  margin: 50px auto 0;
}
.stage .hoshitori img {
  width: 100%;
}

.stage .cast {
  text-align:center;
  font-size: 30px;
  display:table;
  margin: 40px auto 0;
  line-height: 50px;
  font-weight: 200;
}
section.cast .castname {
  text-align: center;
          font-size: 20px;
          display: table;
          margin: 0 auto;
          font-weight: 200;
        }

.stage .hoshitori_tokyo {
  text-align:center;
  margin: 50px auto 80px;
  }

.stage .hoshitori_tokyo img {
width: 100%;
max-width:1000px;
}

.stage .hoshitori_aichi {
  text-align:center;
  margin: 50px auto 80px;
  }

.stage .hoshitori_aichi img {
width: 100%;
max-width:300px;
}


@media screen and (max-width:768px) {
.stage .cast {
    text-align: center;
    font-size: 18px;
    display: table;
    margin: 40px auto 0;
    line-height: 28px;
    font-weight: 200;
}

.stage .date {
    font-size: 16px;
    font-weight: 200;
    line-height: 30px;
    margin-top: 20px;
}
.stage .date .large {
  text-align: center;
  font-size: 32px;
}
	.stage .position {
  text-align:center;
  font-size: 20px;
  display:table;
  margin: 30px auto 20px;
  line-height: 20px;
  font-weight: 500;
}

.stage .castname {
  text-align:center;
  font-size: 20px;
  display:table;
  margin:0 auto;
  font-weight: 200;
}

}

/*=======================================================
synopsis
 =======================================================*/

.synopsis .text {
	font-size: 22px;
	text-align: center;
}

@media screen and (max-width:768px) {
	.synopsis .text {
	font-size: 16px;
	text-align: center;
}
}

/*=======================================================
staff
 =======================================================*/

 .staff .position {
  text-align:center;
  font-size: 38px;
  display:table;
  margin: 40px auto 20px;
  line-height: 50px;
  font-weight: 500;
}

.staff .castname {
  text-align:center;
  font-size: 24px;
  display:table;
  margin:0 auto 30px;

}



.staff .cast {
  text-align:center;
  font-size: 30px;
  display:table;
  margin: 40px auto 0;
  line-height: 50px;
  font-weight: 200;
}



section.staff ul.stafflist {
  display:flex;
  justify-content:center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  font-size: 22px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

section.staff ul.stafflist li.left {
width: 48%;
	text-align: right;
}
section.staff ul.stafflist li.center {
width: 4%;
text-align: center;
margin: 0;
}
section.staff ul.stafflist li.right {
width: 48%;
}


@media screen and (max-width:768px) {

.staff .position {
    text-align: center;
    font-size: 22px;
    display: table;
    margin: 0 auto;
    line-height: 50px;
    font-weight: 500;
}

.staff .castname {
  text-align:center;
  font-size: 20px;
  display:table;
  margin:0 auto 20px;
}
	section.staff ul.stafflist {
  font-size: 18px;
	margin-bottom: 20px;
}

section.staff ul.stafflist li.left {
width: 48%;
	text-align: right;
}
section.staff ul.stafflist li.center {
width: 4%;
text-align: center;
margin: 0;
}
section.staff ul.stafflist li.right {
width: 48%;
}
}

/*=======================================================
animation and effects
 =======================================================*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}


/*=======================================================
ticket
 =======================================================*/

.ticket .date {
  text-align:center;
  font-size:20px;
    vertical-align:middle;
  font-weight: 200;
}

.ticket .date .large {
  text-align:center;
  font-size:30px;
}

.ticket .date .hall {
  text-align:center;
  color: #000;
  background:#c9bc9c;
  display:inline;
  padding:3px 10px;
  margin-left: 5px;
  vertical-align:bottom;
  font-weight: 300;
}


.ticket h3 {
  text-align: center;
  font-size: 24px;

}

.ticket h3 {
  font-size:36px;
 text-align: center;
margin-bottom: 20px;

}

.ticket h3:not(:first-child) {
margin-top: 50px;

}


.ticket h3.head-border {
    display: flex;
    align-items: center;
}
 
.ticket h3.head-border:before,
.ticket h3.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #000;
}
 
.ticket h3.head-border:before {
    margin-right: 1rem;
}
 
.ticket h3.head-border:after {
    margin-left: 1rem;
}

.ticket .large {
  text-align: center;
  font-size: 30px;

}

.ticket .large .small {
  font-size: 16px;
}

.ticket .kome {
  text-align:center;
  font-size: 16px;
}
.ticket ul.list {
margin: 0 auto 30px;
padding: 0;
width: 100%;
  font-weight: normal;
margin-bottom: 30px;
}

.ticket ul.list li {
list-style: none;
padding-left: 1.1em;
text-indent: -1.1em;
text-align: left;
font-size:16px;
line-height:28px;
width: 100%;
}

.ticket .salesbox {
  display: table;
  margin: 0 auto;
	    width: 100%;
    max-width: 600px;
}


.ticket .salesbox .title {
    font-size: 36px;
    margin-bottom: 20px;
}
.ticket .salesbox .subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  text-align:left;
}
.ticket .salesbox .subtitle#nospace {
  margin-bottom: 0;
}


.ticket .salesbox .subtitle_c {
  font-size: 24px;
  margin-bottom:40px;
  text-align: center;
}


.ticket .salesbox .marker-border{
    background:linear-gradient(transparent 80%, #c9bc9c 0%);
}


.ticket .salesbox ul.caution {
        margin: 0 auto 40px;
        padding: 0 color: #fff!important;
    }

.ticket .salesbox ul.caution li {
        list-style: none;
        padding-left: 1.3em;
        text-indent: -1.3em;
        text-align: left;
        font-size: 16px;
    }

.ticket .salesbox ul.caution#nospace {
	        margin: 0 auto;
}

.ticket .salesbox a {
	color: #aa2324;
}


@media screen and (max-width:768px) {
.ticket h3 {
  font-size:22px;
 text-align: center;
margin-bottom: 10px;

}

.ticket .salesbox .title {
    font-size: 20px;
    margin-bottom: 10px;
}
	.ticket .salesbox .subtitle {
  font-size: 16px;
  margin-bottom:30px;
  text-align:left;
}

	.ticket .salesbox .subtitle_c {
  font-size: 16px;
  margin-bottom:30px;
  text-align: center;
}
	.ticket .salesbox ul.caution {
        margin: 0 auto 30px;
        padding: 0;
    }

.ticket .salesbox ul.caution li {
        list-style: none;
        padding-left: 0.8em;
        text-indent: -0.8em;
        text-align: left;
        font-size: 12px;
    }
}

/*=======================================================
news
 =======================================================*/


/*アコーディオン全体*/




.news .accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
}


.news .accordion-area li{
    margin: 10px 0;
}


.news .accordion-area section {
  border: 1px solid #000;
  padding:0;
}

.news .accordion-area .contents_wrap {
  padding:0!important;
}

/*アコーディオンタイトル*/

.news .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3%;
    transition: all .5s ease;
  color: #000;
  text-align: left;
  margin-bottom:0;
}

/*アイコンの＋と×*/

.news .title::before,

.news .title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #000;
    
}

.news .title::before{
    top:48%;
    right: 30px;
    transform: rotate(0deg);
    
}

.news .title::after{    
    top:48%;
    right: 30px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/

.news .title.close::before{
  transform: rotate(45deg);
}

.news .title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.news .box {
    display: none;/*はじめは非表示*/
    background: transparent;
  color: #000;
  margin: 0;
    padding: 0 3% 3% 3%;
  text-align: left;
	width: 100%;
}
.news .box .text {
  color: #000;
  text-align: left;
  margin-bottom:15px;
  font-size: 14px;
  line-height: 24px;
  display: block;
}
.news .box .text2 {
  color: #000;
  text-align: left;
  margin-bottom:0;
  font-size: 14px;
  line-height: 24px;
  display: block;
}
.news .box .lead {
  color: #000;
  text-align: left;
  margin-bottom:0;
  font-size: 14px;
}

.news ul.lists {
  list-style: none;
  margin-bottom: 20px;
  color:  #000;
  text-align: left;
  font-size: 14px;
  line-height: 24px;
}
.news ul.lists li {
  position: relative;
  padding-left: 16px;
}
.news ul.lists li:before {
  content: "・";
  left: 0;
  position: absolute;
}



.news ul.caution {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
  line-height: 24px;
}
.news ul.caution li {
  position: relative;
  padding-left: 16px;
}
.news ul.caution li:before {
  content: "※";
  left: 0;
  position: absolute;
}

.news ul.caution {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
  line-height: 22px;
}
.news ul.caution li {
  position: relative;
  padding-left: 16px;
  margin: 0;
}
.news ul.caution li:before {
  content: "※";
  left: 0;
  position: absolute;
}


.news .indent {
  font-size: 14px;
  padding-left: 14px;
  text-indent: -14px;
  margin-bottom:0;
}

.news a {
    color: #790b48;
}
.contents_btn {
  color: #fff;
  cursor:pointer;
}

.news ul.newslist {
  width: 100%;
  display:flex;
  justify-content:left;
  align-items:left;
}

.news ul.newslist li:nth-child(odd) {
  width: 100px;
  justify-content:left;
  align-items:left;
}
.news ul.newslist li:nth-child(even) {
  width: calc( 100% - 100px );

}
@media screen and (max-width:768px) {
  .news ul.newslist {
  display: flex;
  flex-wrap: wrap;
}
.news ul.newslist li {
  line-height:  24px;
  padding:  30px 0;
  border-bottom:  1px solid #222;

}

.news ul.newslist li a {
  text-decoration: none;
  color: #F9F0E7;
}
.news ul.newslist li:nth-child(odd) {
width:  100%;
color:  #222;
  border-bottom:  none!important;
      padding: 0;
}

.news ul.newslist li:nth-child(even) {
width:  100%;
color:  #222;
      padding: 0;
      border-bottom:  none!important;
}
}

section.sec {
    padding: 190px 0 0!important;
	 width: 100%;
	max-width: 1000px;
	margin: 0 auto!important;
	text-align: center;
}






section.sec .single_title {
	text-align: left;
	font-size: 16px;
		margin-bottom: 20px;
}

section.sec .single_date {
	text-align: left;
	font-size: 16px;
	margin-bottom: 20px;
}

section.sec .text {
	text-align: left;
	margin-bottom: 20px;
  font-size: 14px;
	line-height: 24px;
	    display: block;
	    font-weight: 300;
}

section.sec a {
	color:#aa2324!important;
}

section.sec .text2 {
	text-align: left;
	margin-bottom: 0;
  font-size: 14px;
	line-height: 24px;
		    font-weight: 300;
}
section.sec .text3 {
	text-align: left;
	margin-bottom:0;
  font-size: 14px;
	line-height: 24px;
}




ul.backlist {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto;
    text-align: center;
}

section.sec ul.caution {
	margin: 0 auto 30px;
    padding: 0;
}

section.sec ul.caution {
	    list-style: none;
    padding-left: 0.9em;
    text-indent: -0.9em;
    text-align: left;
    font-size: 14px;
    line-height: 22px;
	    font-weight: 300;
}
@media screen and (max-width:1060px) {
section.sec {
    padding: 190px 30px 0!important;
	 width: 100%;
	max-width: 1000px;
	margin: 0 auto!important;
	text-align: center;
}
}

@media screen and (max-width:768px) {


section.sec {
    padding: 90px 15px 0!important;
}
	

section.sec ul.caution {
        list-style: none;
        padding-left: 0.8em;
        text-indent: -0.8em;
        text-align: left;
        font-size: 12px;
        line-height: 18px;
    }
}

/* ====================================

btn

======================================= */

.center {
  margin:  50px auto 130px;
  text-align: center;
}

.btn {
    line-height: 18px;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    /*background:#324EB3;*/
    border: 1px solid #ed9047;
    padding: 20px 0;
    text-align: center;
    position: relative;
    transition: .3s;
    width: 320px;
    color:#ed9047;

    display: inline-block;
    font-weight: 400;
}

.btn:after {
    content: url(../img/arrow.svg);
    position: absolute;
    top: 28%;
    right: 15px;
    margin: auto;
}

.btn:hover {

    color: #ed9047!important;
}

.btn:hover:after {
    content: url(../img/arrow.svg);
    position: absolute;
    top: 30%;
    right: 10px;
    margin: auto;
    animation: slidein 1s infinite;
}


@media screen and (max-width: 768px) {
.center {
  margin:  30px auto;
  text-align: center;
}
  .btn {
    line-height: 18px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    /*background:#324EB3;*/
    border: 1px solid #F9F0E7;
    color: #F9F0E7!important;
    padding: 12px 0;
    text-align: center;
    position: relative;
    transition: .3s;
    width: 90%;


    display: inline-block;
    font-weight: 400;
}

.btn:after {
    content: url(../img/arrow.svg);
    position: absolute;
    top: 30%;
    right: 15px;
    margin: auto;
}

.btn:hover {

    color: #fff!important;
}

.btn:hover:after {
    content: url(../img/arrow.svg);
    position: absolute;
    top: 30%;
    right: 10px;
    margin: auto;
    animation: slidein 1s infinite;
}

}

#fancybox-prev, #fancybox-next {
	display: none!important;
}


/* comment */



.md-btn {
	text-align: center;
	display: block;
	padding: 10px;
	border: 1px solid #000;
   margin-top: 20px;
	font-size: 20px;
	color: #000;
}

.md-btn span {
	font-size: 16px;
}

.md-btn:hover {
opacity: 0.7;
	color: #000;
}
.md-btn#normal {
	text-align: left;
	display: block;
	padding: 10px;
	border:0;
   margin-top:0;
	font-size: 16px;
	color: #000;
}
.md-btn#normal:hover {
opacity: 0.7;
	color: #000;
}

.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 9999999;
}
 
.md-contents{
  display: none;
    position: fixed;
    top: 5%;
    left: 50%;
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 10000000;
    max-width: 1300px;
}
 
 
.md-inner{
  padding: 24px 40px;
  height: auto;
}
.md-inner .castandname {
	margin-bottom: 20px;
	font-size: 18px;
	color:#c9bc9c;
}


.md-inner ul.list {
	display: flex;
	width: 100%;
	align-items: center;
}
.md-inner ul.list li.picture {
	width: 400px;
}


.md-inner ul.list li.details {
	width: calc( 100% - 400px );
}

.md-inner ul.list li.picture img {
	width: 100%;
}
 
.md-inner .castandname {
	margin-bottom: 20px;
	font-size: 22px;
	color:#fff;
}
.md-inner .comments {
	font-size: 18px;
	line-height: 36px;
	color: #fff;
}
 
 
.md-xmark{
  position: absolute;
  top: 0;
  right: 20px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}
 
.md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c9bc9c;
  border-radius: 4px;
}
 
.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}
 a.md-xmark {
    color: #fff;
}
 
.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}

.md-inner ul.caution {
	    margin: 60px auto 20px;
    padding: 0 color: #fff !important;
}

.md-inner ul.caution#second {
margin: 0 auto 20px;
}
.md-inner ul.caution li {
	list-style: none;
    padding-left: 1.3em;
    text-indent: -1.3em;
    text-align: left;
    margin-bottom: 10px;
    color: #fff !important;
    font-size: 14px;
}
.md-inner .text {
	text-align: left;
	color: #fff;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 24px;
	display: block;
}
.md-inner .text a {
	color: #aa2324;
}
.md-inner .text .strong {
font-weight: bold;
}


@media screen and (max-width:768px) {
	.md-contents{
  display: none;
  position: fixed;
  top: 5%;
  left: 50%;
  width: 95%;
  height: auto;
  overflow: hidden;
  transform: translateX(-50%);
  z-index: 10000000;
}
 
.md-btn {
	text-align: center;
	display: block;
	padding: 10px;
	border: 1px solid #000;
   margin-top: 20px;
	font-size: 14px;
	color: #c9bc9c;
}
	
	.md-btn span {
		font-size: 12px;
	}
	 
.md-inner{
  padding: 20px 10px;
  height: auto;
}
  

.md-inner .comments {
	font-size: 14px;
}
 
.md-inner ul.list {
	display: flex;
	width: 100%;
	align-items: center;
	flex-wrap: wrap;
}
.md-inner ul.list li.picture {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}


.md-inner ul.list li.details {
	width: 100%;
}

.md-inner ul.list li.picture img {
	width: 60%;
	margin: 0 auto;
}
 
.md-inner .castandname {
	margin-bottom: 10px;
	font-size: 18px;
	color:#fff;
	text-align: center;
}
.md-inner .comments {
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}
	.md-inner ul.caution {
	    margin: 0 auto 20px;
    padding: 0 color: #fff !important;
}
	.md-inner ul.caution li {
    list-style: none;
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
    margin-bottom: 5px;
    color: #fff !important;
    font-size: 12px;
}
}


/*=======================================================
guidance
 =======================================================*/
section.guidance {
	
}
section.guidance .pic_goods {
	margin-bottom:30px;
}
section.guidance#second {
	padding-top: 20px!important;
	
}

section.guidance .title {
	text-align: left;
	font-size: 18px;
	margin-bottom: 30px;
}

section.guidance .subtitle {
	text-align: left;
	font-size: 16px;
	margin-bottom: 0;
	font-weight: bold;
}



section.guidance .txt {
	text-align: left;
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 24px;
}
section.guidance .txt2 {
	text-align: left;
	font-size: 16px;
	line-height: 24px;
}


section.guidance .txt_b {
		text-align: left;
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 24px;
	font-weight:bold;
}


section.guidance .red {
	text-align: left;
	font-size: 16px;
	margin-bottom: 0;
	color:#ccc;
}


section.guidance .txt_nospace{
	text-align: left;
	font-size: 16px;
	margin-bottom: 0;
}
section.guidance  ul.caution {
    margin: 0 auto 20px;

	
}

section.guidance  ul.caution#nospace {
    margin: 0 auto;

	
}
section.guidance  ul.caution li {
        list-style: none;
        padding-left: 1.2em;
        text-indent: -1.2em;
        text-align: left;
        margin-bottom: 0;
        color: #000!important;
        font-size: 16px;
    }
section.guidance a {
color: #aa2324;
}

section.guidance .enphasize {
	font-weight: bold;
}

@media screen and (max-width:768px) {
	
section.guidance .title {
	text-align: left;
	font-size: 16px;
	margin-bottom: 20px;
}

section.guidance .subtitle {
	text-align: left;
	font-size: 14px;
	margin-bottom: 0;
	font-weight: bold;
}



section.guidance .txt {
	text-align: left;
	font-size: 14px;
	margin-bottom: 20px;
}
section.guidance .txt2 {
	text-align: left;
	font-size: 14px;

}

	section.guidance .txt_b {
	text-align: left;
	font-size: 14px;
	margin-bottom: 20px;
	font-weight:bold;
}

section.guidance .txt_nospace{
	text-align: left;
	font-size: 14px;
	margin-bottom: 0;
}
section.guidance  ul.caution {
    margin: 0 auto 20px;

	
}
section.guidance  ul.caution li {
        list-style: none;
        padding-left: 1em;
        text-indent: -1em;
        text-align: left;
        margin-bottom: 0;
        color: #000!important;
        font-size: 14px;
    }
section.guidance a {
color: #ccc;
}
}
