@charset "UTF-8";
/* Reset */
*,
*::before,
*::after {
	background: transparent;
	box-sizing: border-box;
	border: 0;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
picture,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
ul,
ol {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
button {
	font-family: inherit;
}
/* ---------------------------------

BASE
	
--------------------------------- */
html {
	background-color: #fff;
	font-size: 62.5%;
	width: 100%;
}
html.locked {
	position: fixed;
	overflow: hidden;
}
body {
	color: #614807;
	font-size: 1.5rem;
  font-family: "Sawarabi Mincho","Hiragino Sans", sans-serif;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 2;
  opacity: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
body.preload {
  opacity: 0;
}

img {
	height: auto;
	object-fit: cover;
	display: block;
	width: 100%;
}
a {
	color: inherit;
	text-decoration: underline;
  transition: all 0.3s 0s ease;
}

a:hover {
  color: #d3b760;
}
ul, li  {
  list-style: none;
  padding: 0;
  margin: 0;
}
strong {
	font-weight: bold;
}
i { font-style: normal }
.sp { display: none }

@media (max-width: 767px) {
	body {
        font-size: 1.3rem;
		line-height: 1.8;
    }
	.sp{ display: block }
	.pc {
    	display: none;
    	visibility: hidden;
  	}
}
.flex {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.flex.stretch {
  align-items: stretch;
}
.flex.wrap-btn {
  justify-content: center;
}
select,
input {
    border: none;
	padding: 10px;
	padding: 10px;
	position: relative;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
    width: 100%;
  }
  
@media (max-width: 767px) {
	.flex {
		display:block
	}
}
.t-Head {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}
.map {
  position: relative;
}
.t-Head a {
  display: inline-block;
  position: relative;
}
.t-Head a::after,
.map a::after {
  bottom: 3px;
  background: url(./img/icon-link2.webp) no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
  right: -28px;
  height: 18px;
  width: 18px;
}
.map a::after {
  bottom: 6px;
  right: initial;
  left: 120px;
}
.t-L {
  font-size: 1.2em;
  letter-spacing: 0.5px;
}
.map a.icon {
  background: url( ./img/icon-pin.webp) no-repeat left /14px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .t-Head {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .t-Head a {
    font-size: 1.3rem;
  }
  .t-Head a::after {
    bottom: 2px;
    right: -25px;
    height: 13px;
    width: 14px;
  }
  dl + .t-Head {
    text-align: left;
  }
  dl + .t-Head a::after {
    right: 43%;
  }
  .map a::after {
    bottom: 4px;
    height: 14px;
    left: 110px;
    width: 14px;
  }
}
/* ---------------------------------

　　Contents
	
--------------------------------- */
.Container {
  box-sizing: border-box;
  background: linear-gradient(90deg, #030e0d 0, #280a40 25%, #1c59cd 50%, #280a40 75%, #030e0d 100%);
  background: url(./img/bg01.webp) repeat-y;
  background-size: cover;
  background-size: 100%;
  position: relative;
  overflow: hidden;
}
.st-Header {
  /*    background: url(../../images/pc/bg_curtain_back.webp) no-repeat top center/auto;*/
  height: 200px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 900px;  
  opacity: 0;
  position: fixed;
  top: 10px;
  transition: background-position-y .4s, top 1s, opacity 1s, margin-top .3s;
  width: 100%;
  z-index: 9;
}
.st-Header.animated {
  top: 0;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
/*
.st-Header.scrolled {
  margin-top: -20px;
}
*/
.st-Header_Inner {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 90px;
    background: url(./img/bg-nav.webp) no-repeat top center/contain;
    z-index: 9;
    transition: background-position-y .4s, top 1s 3.5s, opacity 1s .8s;
}  
.st-Header_Inner.animated {
  top: 0;
  opacity: 1;
}
.st-Header_Hamburger {
  display: none;
}
@media print, screen and (max-width: 767px) {
  .st-Header {
    height: 90px;
    width: 100%;
  }
  .st-Header_Inner {
    background: none;
    width: 100vw;
  }
  .st-Header_Inner.animated {
    top: 0;
    opacity: 1;
  }
  .st-Header_Hamburger {
    display: block;
  }
  .st-Header_Hamburger button {
    position: fixed;
    top: 0;
    right: 3vw;
    width: 20vw;
    height: 24vw;
    background: url(./img/bg_hamburger.webp) no-repeat center /contain;
    z-index: 999;
  }
}
.st-Header_Hamburger button span {
  background: url( ./img/hamburger.webp) no-repeat top /contain;
  display: block;
  height: 100%;
  left: 48%;
  position: absolute;
  top: 30%;
  transform: translateX(-50%);
  transition: 0.3s all linear;
  width: 50%;
}
.st-Header_Hamburger button.open span {
  background: url( ./img/hamburger-close.webp) no-repeat top /contain;
  display: block;
  height: 100%;

}

.st-Header nav {
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
}
.st-Header nav ul {
  display: flex;
  justify-content: center;
}
.st-Header nav ul li a {
  align-items: center;
  color: #fff;
  display: flex;
  height: 86px;
  position: relative;
  letter-spacing: 0.05em;
  transition: .3s;
  text-decoration: none;
}
.st-Header nav ul li a:hover {
  color: #d3b760;
}
.st-Header nav ul li a .en {
  font-family: 'Cardo', serif;
  font-size: 1.8rem;
  padding-top: 9px;
  position: relative;
}
.st-Header nav ul li a .en:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 25px;
  height: 25px;
  background: url(./img/header-menuText.webp) no-repeat center/contain;
}
.st-Header nav ul li.icon a::before {
  bottom: 33px;
  background: url(./img/icon-link.webp) no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
  right: -25px;
  height: 15px;
  width: 15px;
}
@media print, screen and (max-width: 767px) {
  .st-Header nav {
    background: rgba(13, 28, 94, 0.8);
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 0 0;
    transition: opacity .4s, padding .4s;
  }
  .st-Header nav.open {
    opacity: 1;
    pointer-events: all;
  }
  .st-Header nav ul {
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 55%;
  }
  .st-Header nav ul li a {
    background: url(./img/h202.webp) no-repeat bottom;
    background-size: 80%;
    display: block;
    height: 70px;
    margin: 0 auto;
    padding: 5px 0;
    text-align: center;
  }
  .st-Header nav ul li a .en {
    display: block;
    font-size: 4.6875vw;
    letter-spacing: 0.05em;
    padding-top: 0;
  }
  
  .st-Header nav ul li a .en:before {
    width: 0;
    height: 0;
  }
  .st-Header nav ul li.icon a::before {
    bottom: 44px;
    right: 8vw;
  }
}
@media print, screen and (min-width: 768px) {
  .st-Header nav ul:nth-of-type(1) li + li {
    margin: 0 0 0 68px;
  }
  .st-Header nav ul:nth-of-type(2) li + li {
    margin: 0 0 0 50px;
  }
}



#MV {
  background: url(./img/mv.webp) no-repeat center top/100% auto;
  padding: 18vw 0;
  position: relative;
  width: 100%;
}
h1 {
  margin: 0 auto;
  width: 80%;
}

/*  fadeIN load*/
.fade {
  opacity: 0;
  transition: 2.5s;
  transition-delay: 0.5s;
}
.fade.show {
  opacity: 1;
}
.fade h1 {
  opacity: 0;
  transition: 2s;
  transition-delay: 2s;
}
.fade.show h1 {
  opacity: 1;
}
@media print, screen and (max-width: 767px) {
  #MV {
    background: url(./img/mv-SP.webp) no-repeat center top /100% auto;
    margin-bottom: 10vw;
    padding: 20vw 0 52vw;
    position: relative;
    width: 100%;
  }
  h1 {
    width: 80%;
  }
}

/* ---------------------------------

	LAYOUT
	
--------------------------------- */
.Contents-overview {
  padding-bottom: 70px;
}
.Contents-Box {
  margin: 30px auto 0;
  position: relative;
  width: 950px;
  z-index: 0;
}
h2 {
  background: url(./img/contents-box-Top.webp) no-repeat;
  background-size: 100% 100%;
  font-size: 48px;
  font-family: "Alegreya", serif;
  letter-spacing: 0.05em;
  padding: 120px 0 30px;
  position: relative;
  text-align: center;
  width: 950px;
}
h2::after {
	content: "";
	display: block;
	background: url(./img/h2.webp) no-repeat center;
	background-size: contain;
	height: 15px;
	position: absolute;
	bottom: 65px;
	width: 100%;
}
h2 span {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.Contents-Box .inner {
  background: url(./img/contents-box-Ftr.webp) no-repeat left bottom /100% 100%;
  margin: 0 0 80px;
  padding: 0 150px 150px;
}
@media print, screen and (max-width: 767px) {
  .Contents-overview {
    padding-bottom: 5vw;
  }
  .Contents-Box {
    margin: 30px auto 0;
    width: 90%;
  }
  h2 {
  background: url(./img/contents-box-TopSP.webp) no-repeat;
  background-size: 100% 100%;
    font-size: 2.6rem;
    letter-spacing: 0.05em;
    padding: 16vw 0 5vw;
    width: 100%;
  }
  h2::after {
    height: 10px;
    bottom: 48px;
  }
  h2 span {
    font-size: 12px;
    margin-top: 5px;
  }
  .Contents-Box .inner,
  .Contents-Box.ticket .inner {
    background: url(./img/contents-box-FtrSP.webp) no-repeat left bottom;
    background-size: 100% 100%;
    padding: 5vw 2vw 20vw;
  }
  .Contents-Box .inner {
    margin: -1px 0 10vw;
  }

}


.Contents-Box .inner dl {
  align-items: center;
  display: flex;
  margin: 0 70px 20px;
}
.Contents-Box dl dt {
  background: url(./img/bg-dt.webp) no-repeat;
  background-size: contain;
  margin: 0 5% 0 0;
  padding: 5px 0;
  text-align: center;
  width: 25%;
}
.Contents-Box dl dd {
  width: 70%;
}
.Contents-Box.event .lead,
.Contents-Box.contact .lead {
	background: url(./img/bg-lead.webp) no-repeat center;
  background-size: 100% 88%;
  line-height: 1.5;
  margin: 40px 0 0;
	padding: 30px 5vw;
  text-align: center;
}
.Contents-Box.event .lead p + p {
  margin: 5px 0;
}
.Contents-Box.contact .lead {
  margin: 0;
}
h2.ticket {
  background: url(./img/contents-box-ticket-Top.webp) no-repeat left bottom;
  background-size: 100% 100%;
}
.Contents-Box.ticket .inner {
  background: url(./img/contents-box02-Ftr.webp) no-repeat left bottom;
  background-size: 100% 100%;
  padding: 30px 150px 150px;
}
.Contents-Box .inner .Set {
  background: url(./img/set.webp) no-repeat;
  background-size: 100% 100%;
  padding: 80px 50px 50px;
  position: relative;
}
.Contents-Box .inner .Set + .Set {
  background: url(./img/set2.webp) no-repeat;
  background-size: contain;
  margin-top: 80px;
}
.Contents-Box .inner .Set h3 {
  background: url(./img/h_Tittle.webp) no-repeat center;
  background-size: contain;
  font-size: 1.2em;
  left: 0;
  margin: 0 auto;
  padding: 18px 0;
  position: absolute;
  text-align: center;
  width: 100%;
  top: -23px;
}
.Contents-Box .inner ul.lead {
  margin: 20px 0;
}
.Contents-Box .inner ul.lead {
  margin: 20px 0;
}
.Contents-Box .inner ul.lead li {
  background: url(./img/icon-dot.webp) no-repeat left 4px;
  background-size: 13px;
  line-height: 1.5;
  padding: 0 0 10px 18px;
}
h4 {
  background: #f1e6d5;
  margin: 50px 0 30px;
  padding: 5px 0;
  text-align: center;
}
.Contents-Box.ticket .inner dl {
  margin: 0 0 20px;
}
.Contents-Box.ticket dl dt {
  background: url(./img/dt-bg2.webp) no-repeat;
  background-size: contain;
  width: 30%;
}
dl + .t-Head {
  margin-top: 30px;
}

@media print, screen and (max-width: 767px) {
  h2.ticket {
    background: url(./img/contents-box-ticket-TopSP.webp) no-repeat left bottom;
    background-size: 100% 100%;
  }
  .Contents-Box.ticket .inner {
    background: url(./img/contents-box02-FtrSP.webp) no-repeat left bottom;
    background-size: 100% 100%;
    padding: 10vw 4vw 20vw;
  }
  .Contents-Box .inner .Set {
    background: url(./img/setSP.webp) no-repeat;
    background-size: 100% 100%;
    position: relative;
    padding: 50px 5vw 50px;
  }

.Contents-Box .inner .Set h3 {
  left: calc(50% - 23%);
  padding: 14px 0;
  top: -22px;
  width: 46%;
}
  .Contents-Box .inner ul.lead li {
    background: url(./img/icon-dot.webp) no-repeat left 4px;
    background-size: 11px;
  }
  .Contents-Box .inner dl {
    align-items: center;
    display: flex;
    margin: 0 2vw 20px;
  }
  .Contents-Box dl dt {
    background: url(./img/dt-bg.webp) no-repeat center;
    background-size: 95%;
    margin: 0 10px 0 0;
    padding: 3px 0;
    text-align: center;
    width: 30%;
  }
  .Contents-Box dl dd {
    width: 65%;
  }
  .Contents-Box.event .lead {
    background: url(./img/bg-leadSP.webp) no-repeat center;
    background-size: 95% auto;
    margin: 20px 0;
    padding: 10vw;
  }
  .Contents-Box.ticket dl dt {
    background: url(./img/bg-dt02.webp) no-repeat center;
    background-size: contain;
    padding: 6px 0 4px;
    width: 56%;
  }
  .Contents-Box .inner .Set + .Set {
    background: url(./img/set2SP.webp) no-repeat;
    background-size: 100% 95%;
    margin-top: 80px;
  }
}

.btn {
  margin: 50px 0;
  padding: 0;
  text-align: center;
}
.btn a {
  background: url(./img/btn.webp) no-repeat center/cover;
  color: #fff;
  display: block;
  font-size: 1.2em;
  height: 90px;
  line-height: 90px;
  margin: 0 auto;
  padding: 0;
  text-decoration: none;
  transition: .3s;
  width: 380px;
}
.btn a:hover {
  opacity: 0.9;
  text-shadow: 5px 3px 3px rgb(0, 0, 0, .4);
}
.btn.nolink {
  background: url(./img/btn-nolink.webp) no-repeat center/cover;
  color: #7d7d7d;
  display: block;
  font-size: 1.2em;
  height: 90px;
  line-height: 90px;
  margin: 0 auto;
  padding: 0;
  width: 380px;
}
.Contents-Box .inner .Set + .Set .btn.nolink  {
  margin: 50px auto;
}

@media print, screen and (max-width: 767px) {
  .btn a {
    background: url(./img/btn.webp) no-repeat center/contain;
    font-size: 1.1em;
    height: 18vw;
    line-height: 18vw;
    width: 95%;
  }
  .btn.nolink {
    background: url(./img/btn-nolink.webp) no-repeat center/contain;
    font-size: 1.1em;
    height: 18vw;
    line-height: 18vw;
    width: 95%;
  }
}



/* ---------------------------------

	CAST
	
--------------------------------- */
.Contents-cast {
  background: url(./img/bg-cast.webp) repeat center/100% 100%;
  margin: 50px 0 180px;
  position: relative;
}
.wrap-cast {
  margin: 0 auto;
  padding: 100px 0;
  width: 920px;
}
.wrap-cast h2 {
  background: none ;
  color: #fff;
  padding: 0;
  width: initial;
}
.wrap-cast h2::after {
	background: url(./img/h202.webp) no-repeat center;
	background-size: 20%;
  bottom: 33px;
}
.Contents-cast ul {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 80px;
}

.Contents-cast ul li {
  margin: 15px auto;
  width: 28%;
}
.Contents-cast .txt {
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}
@media print, screen and (max-width: 767px) {
  .Contents-cast {
    background: url(./img/castSP.webp) no-repeat;
    background-size: 100% 100%;
    margin: 50px 0 100px;
  }
  .wrap-cast {
    padding: 50px 0;
    width: 90%;
  }
  .wrap-cast h2 {
    height: initial;
  }
  .wrap-cast h2::after {
    background: url(./img/h202.webp) no-repeat center;
    background-size: 120px;
    bottom: 25px;
  }
  .Contents-cast ul li {
    margin: 3vw auto;
    width: 45%;
  }
  .Contents-cast ul {
    margin-bottom: 50px;
  }
  .Contents-cast .txt {
    font-size: 11px;
    padding-bottom: 20px;
  }
}


/* ---------------------------------

	CONTACT
	
--------------------------------- */
h2.contact {
  background: url(./img/contents-box-contact-Top.webp) no-repeat left bottom;
  background-size: 100% 100%;
}
.Contents-contact .Contents-Box .inner {
  background: url(./img/contents-box-contact-Ftr.webp) no-repeat left bottom;
  background-size: 100% 100%;
  margin: 0 0 80px;
  padding: 0 150px 150px;
}
.Contents-contact .Contents-Box .inner dl {
  display: block;
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
  width: 50%;
}
.Contents-Box.contact dl dt {
  background: url(./img/bg-dt02.webp) no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  width: 55%;
}
.Contents-Box.contact dl dd {
  font-size: 1.2em;
  margin-top: 10px;
  width: 100%;
}
.Contents-contact ul {
  margin: 15px 0 10px;
}
.Contents-contact ul li {
  background: url(./img/icon-dot.webp) no-repeat left 4px;
  background-size: 13px;
  line-height: 1.5;
  padding: 0 0 10px 18px;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  h2.contact {
    background: url(./img/contents-box-contact-TopSP.webp) no-repeat left bottom;
    background-size: 100% 100%;
  }
  .Contents-contact .Contents-Box .inner {
    background: url(./img/contents-box-contact-FtrSP.webp) no-repeat left bottom;
    background-size: 100% 100%;
    padding: 0 2vw 20vw;
  }
  .Contents-contact .Contents-Box .inner dl {
    width: 80%;
  }
  .Contents-Box.contact dd {
    width: initial;
    margin: 0 auto;
  }
  .Contents-Box.contact dl dd {
    font-size: 1em;
  }
  .Contents-Box.contact .lead {
    background: url(./img/bg-leadSP.webp) no-repeat center;
    background-size: 97% 100%;
    margin: 20px 0;
    padding: 8vw 8vw 5vw;
  }
  .Contents-contact ul li {
    background: url(./img/icon-dot.webp) no-repeat left 2px;
    background-size: 11px;
  }
  
}
/* ---------------------------------

	FOOTER
	
--------------------------------- */
footer {
  background: url(./img/footer.webp) no-repeat bottom;
  background-size: 100%;
	color: #fff;
  padding: 8vw 0 3vw;
  text-align: center;
  height: 15vw;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.logo-Ftr {
  margin: 10px auto;
  width: 150px;
}
.copy {
  font-size: 1.3rem;
}
@media print, screen and (max-width: 767px) {
  footer {
    background: url(./img/footerSP.webp) no-repeat bottom;
    background-size: contain;
    height: 28vw;
    margin-top: -15vw;
  }
  .logo-Ftr {
    margin: 30px auto 5px;
    width: 25%;
  }
  .copy {
    font-size: 1rem;
  }
}


/* ---------------------------------

	SE
	
--------------------------------- */
@media screen and (max-width: 375px) {
	body {
    letter-spacing: 0;
  }
  .map a::after {
    bottom: 6px;
  }
  h2::after {
    bottom: 44px;
  }
  .Contents-Box.ticket dl dt {
    padding: 3px 0 3px;
  }
  .Contents-Box .inner .Set h3 {
    padding: 10px 0;
    top: -17px;
  }
  .Contents-Box.contact dl dt {
    width: 66%;
  }
  
}

