html {scroll-behavior: smooth;}
@media(min-width:481px) {
	.sp_only {
		display: none;
	}
}
@media(max-width:1023px) {
	.pc_only {
		display: none;
	}
}
#parallax {
	position: relative;
}
#parallax_img {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url("../img/bg.jpg");
	/*opacity: .2;*/
}
@media (orientation:portrait) {
	/*縦長*/
	#parallax_img {
 		width: 100%;
		height: calc(5787 / 4092 * 100vw);
    	background-size: auto 100%;
	}
}
@media (orientation:portrait) and (max-width:999px) {
	/*縦長*/
	#parallax_img {
 		width: 100vw;
		height: 200vh;;
    	background-size: auto 100%;
	}
}
@media (orientation: landscape) {
	/*横長*/
	#parallax_img {
 		width: 100%;
		height: calc(5787 / 4092 * 100vw);
    	background-size: auto 100%;
	}
}
@media (orientation: landscape) and (min-width:1000px) {
	/*横長*/
	#parallax_img {
 		width: 100%;
		height: calc(5787 / 4092 * 100vw);
    	background-size: auto 100%;
	}
}


/* header */
#header {
	position: relative;
	width: 100%;
}
#header::after {
	content: "";
	clear: both;
	display: block;
	width: 100%;
}


/* header > global_nav */
#global_nav {
	position: relative;
	width: 100%;
	color: white;
	font-size: 10px;
	background-color: #f8b656;
	padding: .5em 0;
	z-index: 999;
}
#portal {
	margin: 0 0 0 1em;
	line-height: 1;
	height: 1em;
}
#worldwide {
	margin: -1em 1em 0;
	float: right;
	line-height: 1;
	height: 1em;
}
	
#portal a:link,
#worldwide a:link {
	color: #fff; text-decoration: none;
}
#portal a:visited,
#worldwide a:visited {
	color: #fff;
	text-decoration: none;
}
#portal a:hover,
#worldwide a:hover {
	color: #fff;
	text-decoration: none;
}
#portal a:active,
#worldwide a:active {
	color: #fff;
	text-decoration: none;
}

#header_link {
	background-color: #f39800;
}
#header_link ul {
	display: flex;
	justify-content: center;
	gap: 15px;
}
#header_link ul li {
	width: min(300px, calc((100vw - 200px) / 3 - 15px));
	padding: 15px 0;
}
@media(max-width:767px) {
#header_link ul {
	justify-content: flex-start;
	gap: 10px;
	padding: 0 10px;
}
#header_link ul li {
	width: min(300px, calc(100vw / 3.5 - 15px));
	padding: 15px 0;
}
}
#header_link ul li a {
	display: block;
	background-color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 3em;
	color: #e40080;
	transition: .3s all;
	position: relative;
	line-height: 1;
	padding: 15px 0;
}
#header_link ul li a.now {
	color: #fff;
	background-color: #e40080;
}
#header_link ul li a.now::after {
	content: '▼';
	position: absolute;
	bottom: -.6em;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	color: #e40080;
}
#header_link ul li a:not(.now):hover {
	opacity: .75;
}


#contents {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	background-color: rgba(255,255,255,.7);
	/*padding: 15px 15px;*/
	opacity: 0;
	transition: .3s all;
}
html.wf-active #contents {
	opacity: 1;
}
.kv img {
	border-radius: 10px;
}
.kv {
	animation: kv ease-in 2s forwards;
	/*animation-delay: 1.0s;*/
}
@keyframes kv {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.logo {
	text-align: center;
}





#footer #endbar {
	background-color: #f8b656;
	height: 4px;
}
#footer #copyright {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	background-color: rgba(255,255,255,.7);
	padding: 60px 15px;
	text-align: center;
}
#footer #copyright p {
	text-align: center;
	font-size: 80%;
}



/* バナーボタン */
.followbtn {
	display: block;
	color: #FFF;
	text-decoration: none;
	width: 100%;
	text-align: left;
	line-height: 1;
	padding: .5em 1em;
	border-radius: .3em;
	position: relative;
	transition: all .6s;
}
.followbtn:link,
.followbtn:visited,
.followbtn:hover,
.followbtn:active {
	color: #FFF;
}
.followbtn::after {
	position: absolute;
	content: '〉';
	display: block;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all .6s;
	color: #FFF;
}
.followbtn::before {
	position: absolute;
	content: '〉';
	display: block;
	right: 1.5em;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all .6s;
	color: #FFF;
	opacity: 0;
}
.followbtn:hover::before {
	opacity: 1;
}

.followbtn.nijigasaki {
	background-color: #f8b656;
	border-color: #f8b656;
	width: 75%;
	max-width: 520px;
	margin: 0 auto 60px;
	padding: 1em 1em;
}
.followbtn.movie {
	background-color: #1855a6;
	border-color: #1855a6;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: .5em 1.5em;
	border-radius: 10em;
	font-size: min(24px, 4vw);
}
.followbtn.topics {
	background-color: #1855a6;
	border-color: #1855a6;
	width: 80%;
	max-width: 400px;
	margin: 60px auto 0;
	padding: .5em 1.5em;
	border-radius: 10em;
}
.followbtn.ticket {
	background-color: #1855a6;
	border-color: #1855a6;
	width: 100%;
	max-width: 400px;
	margin: 10px auto;
	padding: .5em 3em .5em 1.5em;
	border-radius: 10em;
	line-height: 1;
}
.followbtn span {
	display: inline-block;
}
.followbtn.border {
	background-color: #fff;
	border-color: #1855a6;
	color: #1855a6;
	width: 100%;
	max-width: 400px;
	margin: 10px auto;
	padding: .5em 3em .5em 1.5em;
	border-radius: 10em;
	line-height: 1;
}
.followbtn.border:hover {
	background-color: #1855a6;
	color: #fff;
}


.bnrlink {
	font-weight: 600;
	display: block;
	border: 4px solid #1855a6;
	font-size: min(30px, 6vw);
	width: 80%;
	margin: 0 auto;
	background-color: rgba(0,255,255,.1);
	border-radius: 10px;
	text-decoration: none;
	padding: 1em 2em 1em 1em;
	position: relative;
	color: #1855a6;
	transition: .3s all;
}
.bnrlink span {
	display: inline-block;
}
.bnrlink:hover {
	background-color: rgba(248,182,86,.50);
}
.bnrlink::after {
	position: absolute;
	content: '〉';
	display: block;
	right: 1.0em;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all .6s;
	color: #1855a6;
}
.bnrlink::before {
	position: absolute;
	content: '〉';
	display: block;
	right: 1.5em;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all .6s;
	color: #1855a6;
	opacity: 0;
}
.bnrlink:hover::before {
	opacity: 1;
}

#top .box .bnrlink:nth-child(2n-1) {
	background-color: rgba(0,158,199,0.10);
	border-color: rgba(0,158,199,1.00);
}
#top .box .bnrlink:nth-child(2n) {
	background-color: rgba(0,185,95,0.10);
	border-color: rgba(0,185,95,1.00);
}

#top .box .bnrlink:hover {
	background-color: rgba(248,182,86,.50);
	border-color: rgba(248,182,86,1);
}
#top .box .bnrlink {
	margin-bottom: min(15px, 4vw);
	width: 90%;
}
#top .box .bnrlink:last-child {
	margin-bottom: 0;
}


/* インラインyoutube用レスポンシブ設定 */
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 1em;
	clear: both;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}



#menubtn {
	position: fixed;
	right: 10px;
	top: 25px;
	z-index: 90;
	width: 60px;
	height: 60px;
	cursor: pointer;
}
#menubtn img {
	border-radius: 5px;
}
.lity-close {
	right: 10px!important;
	top: 25px!important;
}

body.menu .lity-container {
	width: 95%!important;
	max-width: 750px!important;
}
#menu {
	padding: 60px 0;
	background-color: #fff;
	border-radius: 5px;
}
#menu .logo_menu {
	text-align: center;
	margin: 0 auto 2em;
}
#menu .logo_menu img {
	width: 50%;
}
#menu ul li {
	margin-bottom: 1.5em;
	text-align: center;
}
@media(max-width:480px) {
	#menu {
		padding: 30px 0;
	}
	#menu .logo_menu img {
		width: 65%;
	}
	#menu ul li {
		margin-bottom: 1em;
	}
}
#menu ul li:last-child {
	margin-bottom: 0;
}
#menu ul li a {
	text-decoration: none;
	/*font-family: "Zen Kurenaido", sans-serif;
	font-weight: 800;*/
	font-family: "ta-koigokoro", sans-serif;
	font-weight: 400;
	font-size: min(36px, 6.5vw);
	font-style: normal;
	color: #1855a6;
}
#menu ul li a span {
	position: relative;
	display: inline-block;
	line-height: 1;
}
#menu ul li a span::after {
	content: attr(data-title);
	position: absolute;
	top: 4px;
	left: 4px;
	color: rgba(0,255,255,.2);
	text-align: center;
	display: block;
	width: 100%;
}
@media(max-width:480px) {
	#menu ul li a span::after {
		top: 3px;
		left: 3px;
	}
}



h2 {
	/*font-family: "Shadows Into Light", cursive;
	font-weight: 400;*/
	font-family: "ta-koigokoro", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: min(60px, 10vw);
	color: #1855a6;
	font-style: italic;
	text-align: center;
	line-height: 1;
	margin-bottom: min(60px, 8vw);
	position: relative;
}
h2::after {
	content: attr(data-title);
	position: absolute;
	top: 4px;
	left: 4px;
	color: rgba(0,255,255,.1);
	text-align: center;
	display: block;
	width: 100%;
}



@media(min-width:970px) {
	#kv {
		width: 970px;
		margin: 0 auto;
	}
}



.box {
	padding: min(150px, 15vw) 15px min(60px, 8vw);
}


.box.logo {
	padding-bottom: min(30px, 4vw);
}



#pv {
	/*background-color: rgba(0,0,0,.5);*/
	padding-top: min(60px, 8vw);
}
#pv h2 {
	/*color: #fff;*/
}



#topics ul {
	width: 100%;
	max-width: 850px;
	padding: 0 60px;
	margin: 0 auto;
}
@media(max-width:480px) {
	#topics ul {
		padding: 0 30px;
	}
}
#topics ul li a {
	text-decoration: none;
	color: #010101;
}
#topics ul .date {
	/*font-family: "Shadows Into Light", cursive;
	font-weight: 400;*/
	font-family: "ta-koigokoro", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: min(24px, 4vw);
	line-height: 1;
}
#topics ul .date span {
	position: relative;
	display: inline-block;
	line-height: 1;
}
#topics ul .date span::after {
	content: '';
	display: block;
	background-color: rgba(0,255,255,.1);
	height: .5em;
	width: calc(100% + 1em);
	position: absolute;
	bottom: -.1em;
	left: -.5em;
}
#topics ul .title {
	padding: .5em 0 0 1em;
	font-size: min(20px, 4vw);
	transition: .3s all;
}
#topics ul li a:hover .title {
	color: #e4007f;
}


#introduction .inbox.leadbox {
	margin-bottom: min(60px, 8vw);
}
#introduction .inbox.leadbox p {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 800;
	font-style: normal;
	color: #e4007f;
	font-size: min(32px, 6vw);
	text-align: center;
	letter-spacing: -.05em;
}
#introduction .inbox:not(.leadbox) p {
	margin-bottom: 2em;
	line-height: 1.8;
	color: #010101;
}
#introduction .inbox p:last-child {
	margin-bottom: 0;
}
@media(min-width:1000px) {
	#introduction .inbox:not(.leadbox) p {
		text-align: center;
		font-size: 20px;
	}
}
@media(max-width:999px) {
	#introduction .inbox:not(.leadbox) p {
		text-align: center;
		font-size: min(20px, 3vw);
	}
}
#introduction .inbox p span {
	display: inline-block;
}



#story .inbox p {
	margin-bottom: 2em;
	line-height: 1.8;
	color: #010101;
}
#story .inbox p:last-child {
	margin-bottom: 0;
}
#story .inbox p span {
	display: inline-block;
}
@media(min-width:1000px) {
	#story .inbox p {
		text-align: center;
		font-size: 20px;
	}
}
@media(max-width:999px) {
	#story .inbox p {
		text-align: center;
		font-size: min(20px, 3vw);
	}
}

#staffcast {
	/*padding-top: min(300px, 30vw);*/
	/*padding-top: min(150px, 15vw);*/
}
#staffcast dl {
	margin-bottom: 60px;
}
#staffcast dl dt {
	text-align: center;
	font-size: 200%;
	margin-top: 60px;
	margin-bottom: 30px;
}
#staffcast dl dd table,
#staffcast dl dd tbody,
#staffcast dl dd tr,
#staffcast dl dd th,
#staffcast dl dd td {
	display: block;
}
#staffcast dl dd table {
	width: 75%;
	max-width: 520px;
	margin: 0 auto;
}
#staffcast dl dd table > tr,
#staffcast dl dd tbody > tr {
	margin-bottom: 30px;
}
#staffcast dl dd table > tr:last-child,
#staffcast dl dd tbody > tr:last-child {
	margin-bottom: 0;
}
#staffcast dl dd tr td {
	font-size: 130%;
}
#staffcast dl dd tr td span {
	display: inline-block;
}
#staffcast dl dd tr > td:first-child {
	border-bottom: 1px solid rgba(17,17,61,1);
	padding-left: 15px;
	font-weight: 600;
	position: relative;
}
#staffcast dl dd tr > td:first-child::before {
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	background-color: rgba(17,17,61,1);
	position: absolute;
	left: 0;
	bottom: -1px;
	transform: skewX(-30deg);
}
#staffcast dl dd tr > td:first-child::after {
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	background-color: rgba(17,17,61,1);
	position: absolute;
	right: 0;
	bottom: -5px;
	transform: skewX(-30deg);
}
#staffcast dl dd tr > td:last-child {
	padding-right: 15px;
	text-align: right;
}



.logo_contents {
	text-align: center;
	padding: 0;
}
.logo_contents img {
	width: 40%;
	min-width: 240px;
}
div.inbox > h3 {
	background-color: rgba(17,17,61,1);
	color: #fff;
	border-radius: 10em;
	line-height: 1;
	padding: .5em 1.5em;
	margin-bottom: min(60px, 8vw);
}


.inbox.ticket {
	margin-bottom: 60px;
}
#ticket .inbox.ticket:last-child {
	margin-bottom: 0;
}
#ticket .ticketbox {
	margin-bottom: min(60px, 8vw);
}
@media(min-width:768px) {
	#ticket .ticketbox {
		display: flex;
		max-width: 600px;
		margin: 0 auto;
		margin-bottom: min(60px, 8vw);
	}
	#ticket .ticketbox > div {
		width: 50%;
	}
}
#ticket .ticketbox .imgbox {
	text-align: center;
}
#ticket .ticketbox .imgbox img {
	width: 100%;
	max-width: 240px;
}
#ticket .ticketbox .specbox table {
	margin: 0 auto;
}
@media(max-width:767px) {
	#ticket .ticketbox .specbox table {
		font-size: min(20px, 3vw);
		margin-top: 30px;
	}
}
#ticket .ticketbox .specbox th {
	vertical-align: top;
	padding-bottom: 5px;
	white-space: nowrap;
}
#ticket .ticketbox .specbox td {
	vertical-align: top;
	padding-left: 1em;
	padding-bottom: 5px;
}
#ticket .ticketbox .specbox td span {
	display: inline-block;
}
#ticket .tokutenbox .title {
	font-weight: 600;
	font-size: min(24px, 4.5vw);
	position: relative;
	text-align: center;
}
#ticket .tokutenbox .title::after {
	content: '';
	display: block;
	background-color: rgba(0,255,255,.1);
	height: .5em;
	width: calc(100% + 1em);
	position: absolute;
	bottom: -.1em;
	left: -.5em;
}
#ticket .tokutenbox .title span {
	display: inline-block;
}
#ticket .tokutenbox .spec {
	margin-bottom: 15px;
	text-align: center;
}
#ticket .tokutenbox .spec span {
	display: inline-block;
	padding: 0 1em;
}
#ticket .tokutenbox .flexbox {
	margin-bottom: 15px;
}
@media (min-width:768px) {
	#ticket .tokutenbox .flexbox {
		display: flex;
	}
	#ticket .tokutenbox .flexbox.single {
		justify-content: center;
	}
	#ticket .tokutenbox .flexbox > div {
		width: 50%;
		padding: 0 5px;
	}
	#ticket .tokutenbox .flexbox > div.single {
		width: 100%;
	}
}
#ticket .tokutenbox .flexbox > div > img {
	width: 100%;
	max-width: 480px;
}
#ticket .tokutenbox .flexbox > div.single > img {
	width: 100%;
	max-width: 960px;
}
#ticket .tokutenbox ul.ast {
	padding: 0 .5em;
}


ul.ast li,
ul.dot2 li,
ul.sq li{
	margin-left: 1.2em;
	margin-bottom: .2em;
}
ul.ast li::before {
	content: '※';
	display: inline-block;
	width: 1.2em;
	margin-left: -1.2em;
	text-align: left;
}
ul.dot2 li::before {
	content: '・';
	display: inline-block;
	width: 1.2em;
	margin-left: -1.2em;
	text-align: left;
}
ul.sq li::before {
	content: '◆';
	display: inline-block;
	width: 1.2em;
	margin-left: -1.2em;
	text-align: left;
}
#ticket ul.ast {
	width: 95%;
	margin: 0 auto;
}


#newslist {
}

#news ul.listbox {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: min(60px, 8vw);
}
#news ul.listbox li {
	border: 1px solid #666;
	border-radius: 5px;
	padding: 10px;
	margin: 5px;
	background-color: rgba(255,255,255,.5);
}
@media(min-width:768px) {
	#news ul.listbox li {
		width: calc((100% / 3) - 10px);
	}
}
@media(max-width:1023px) {
	#news ul.listbox li {
		width: calc((100% / 2) - 10px);
	}
}
@media(max-width:767px) {
	#news ul.listbox li {
		width: 100%;
		margin: 5px 0;
	}
}
#news ul li a {
	text-decoration: none;
	color: #010101;
}
#news ul li img {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 10px;
}
#news ul li .date {
	/*font-family: "Shadows Into Light", cursive;
	font-weight: 400;*/
	font-family: "ta-koigokoro", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: min(24px, 4vw);
	line-height: 1;
	margin-bottom: 10px;
}
#news ul li .date span {
	position: relative;
	display: inline-block;
	line-height: 1;
}
#news ul li .date span::after {
	content: '';
	display: block;
	background-color: rgba(0,255,255,.1);
	height: .5em;
	width: calc(100% + 1em);
	position: absolute;
	bottom: -.1em;
	left: -.5em;
}

#news .navi ul {
	display: flex;
	justify-content: space-between;
	padding: 0 15px min(60px, 8vw);
}
#news .navi ul li span {
	color: #aaa;
}




#goods .lead {
	width: min(800px, 90vw);
	margin: 0 auto min(60px, 8vw);
}
#goods dl {
	width: min(800px, 90vw);
	margin:  30px auto 30px;
}
#goods dl dt {
	text-align: left;
}
#goods dl dd table tr > td:first-child {
	white-space: nowrap;
	vertical-align: top;
}
#goods dl dd span {
	display: inline-block;
}
#goods dl > dt:first-child + dd {
	padding-bottom: 1em;
}
@media(min-width:768px) {
	#goods dl dt {
		width: 5em;
		float: left;
		white-space: nowrap;
	}
	#goods dl dd {
		padding-left: 5em;
	}
}
@media(max-width:767px) {
	#goods dl dt {
		padding: 0 10px;
		background-color: #ddd;
	}
	#goods dl dd {
		padding: 5px 1em;
	}
	#goods dl dd table,
	#goods dl dd table tbody,
	#goods dl dd table tr,
	#goods dl dd table td,
	#goods dl dd table th {
		display: block;
	}
	#goods dl dd table tr > td:last-child {
		padding-left: 1em;
		margin-bottom: 1em;
	} 
}


#theater .lead{
	text-align: center;
	margin: 0 auto min(30px, 4vw);
}
#theater .sales {
	display: flex;
	gap: 20px;
	width: 90%;
	margin: 0 auto min(60px, 8vw);
}
#theater .sales > li {
	width: 50%;
	position: relative;
	height: 10em;
}
#theater .sales > li a,
#theater .sales > li > div {
	position: relative;
	padding: 2em;
	display: block;
	width: 100%;
	height: 100%;
}
@media(max-width:480px) {
	#theater .sales {
		display: block;
	}
	#theater .sales > li {
		width: 100%;
		height: 8em;
	}
	#theater .sales > li:first-child {
		margin-bottom: 20px;
	}
	#theater .sales > li a,
	#theater .sales > li > div {
		padding: 1em;
	}
}
#theater .sales > li a {
	background-color: #1855a6;
	color: #fff;
	border: 2px solid rgba(0,255,255,1);
	border-radius: 5px;
	transition: .3s all;
}
#theater .sales > li a:hover {
	border-color: #1855a6;
	background-color: rgba(0,255,255,.1);
	color: #1855a6;
}
#theater .sales > li > div {
	background-color: #fff;
	border: 2px solid;
	border-radius: 5px;
}
#theater .sales > li a > span,
#theater .sales > li > div > div {
	width: calc(100% - 4em);
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-align: center;
}
#theater .sales > li a span {
	text-decoration: none;
}
#theater .sales a strong,
#theater .sales p {
	font-size: 160%;
	text-align: center;
	line-height: 1.1;
}
#theater .sales p + ul {
	margin-top: .5em;
}
#theater .sales a span strong {
	display: inline-block;
	font-weight: normal
}
#theater .sales a span span {
	display: inline-block;
	line-height: 1.1;
}
#theater .imgbox ul > li,
#ec .imgbox ul > li{
	margin: 0 auto min(30px, 4vw);
}
#theater .imgbox ul > li img,
#ec .imgbox ul > li img{
	border-radius: 5px;
}
#ec .lead {
	text-align: center;
}
#theater,#ec {
	margin: 0 auto min(120px, 16vw);
}

.social {
	display: flex;
	justify-content: center;
}
.social li img {
	width: 60px;
}



/* コンテンツ内メニュー設定 */
#contentsmenu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
	justify-content: space-between;
}
#contentsmenu li.single {
	width: 100%;
}
#contentsmenu li a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 80%;
	line-height: 1;
	letter-spacing: -.02em;
	padding: 1em 0;
	text-align: center;
	border: 1px solid;
	border-radius: 3em;
	background-color: #FFF;
	transition: all .5s;
	position: relative;
}
#contentsmenu li a:hover {
	letter-spacing: -.02em;
	color: #FFF!important;
	text-decoration: none;
}
@media (min-width:601px) {
	#contentsmenu li a.new::before{
		position: absolute;
		content: url("../img/common/new.png?v2");
		left: 5px;
		top: -10px;
		-webkit-animation: icon .6s ease-in 0s infinite alternate none running;
		animation: icon .6s ease-in 0s infinite alternate none running;
	}
}
@media (max-width:600px) {
	#contentsmenu li a.new::before {
		position: absolute;
		content: url("../img/common/new.png?v2");
		left: 5px;
		top: -10px;
		-webkit-animation: icon .6s ease-in 0s infinite alternate none running;
		animation: icon .6s ease-in 0s infinite alternate none running;
	}
}

#contentsmenu {
	justify-content: center;
}
#contentsmenu li {
	padding: 5px;
	width: calc(100% / 3.5);
	min-width: 13em;
}
#present #contentsmenu li {
	padding: 5px;
	width: calc(100% / 4.5);
	min-width: 6em;
}
#contentsmenu li a {
	border-color: #1855a6;
	color: #1855a6;
	text-decoration: none;
}
#contentsmenu li a:hover {
	background-color: rgba(0,255,255,.1);
	color: #1855a6!important;
}
#goods #contentsmenu li.single {
	width: calc(100% / 3.5 * 2);
	min-width: 26em;
}


.twbox {
	scrollbar-width: thin!important;
	scrollbar-color: #1855a6 transparent!important;
	margin: 0 auto;
	overflow-y: scroll;
	height: min(calc(((30px * 4 + 30px * 2 * 1.5 + 60px + 16px) * 1.5) - 30px), calc(((6vw * 4 + 6vw * 2 * 1.5 + 8vw + 16px) * 1.5) - 6vw));
}
#tw {
	width: 80%;
	margin: 0 auto;
	border: 4px solid #1855a6;
	border-radius: 10px;
	padding: min(15px, 3vw);
	height: min(calc((30px * 4 + 30px * 2 * 1.5 + 60px + 16px) * 1.5), calc((6vw * 4 + 6vw * 2 * 1.5 + 8vw + 16px) * 1.5));
}
@media(min-width:1024px) {
	.flex {
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		align-items: stretch;
		gap: min(30px,8vw);
	}
	.flex > div {
		width: 50%;
	}
	.flex .linkbox {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.flex #tw {
	}
}
@media(max-width:1023px) {
	#tw {
		margin-top: min(60px, 8vw);
	}
}
@media(max-width:480px) {
	#tw {
		margin-top: min(60px, 8vw);
		width: calc(100% + 10px);
		margin-left: -5px;
		border: none;
		padding: 0;
	}
}



.inbox.present {
	max-width: 100%;
	margin: 0 auto 60px;
	background: #fff;
	border-radius: 5px;
	border: 2px solid #1855a6;
}
@media(min-width:1024px) {
	.inbox.present {
		max-width: 90%;
	}
}
.inbox.presentnotice {
	max-width: 90%;
	margin: 0 auto 60px;
	border-radius: 5px;
	background-color: rgba(17,17,61,1);
	padding: 2em 0;
}
.inbox.present h3,
.inbox.presentnotice h3,
.inbox.present .represent {
    padding: 5px 20px 10px;
    font-size: 120%;
    line-height: 1;
    border-radius: 0;
    margin-bottom: 0px;
    background-color: #1855a6;
    color: #FFF;
}
.inbox.present .represent {
   font-size: 160%;
   background-color: #E50074;
	text-align: center;
}
.inbox.presentnotice h3 {
	background-color: transparent;
	text-align: center;
}
@media(max-width:480px) {
	.inbox.present h3,
	.inbox.presentnotice h3 {
		padding: 5px 10px 10px;
	}
}
.inbox.present h3 strong,
.inbox.presentnoice h3 strong {
	font-size: 160%;
	font-weight: 900;
}
.inbox.present h3 span:not(.line),
.inbox.presentnotice h3 span:not(.line),
.inbox.present .represent span:not(.line) {
	font-size: 200%;
}
.inbox.present .presentbox {
	padding: 30px;
}
.inbox.present .presentbox .index_s {
    font-size: 110%;
	padding: 5px 20px;
	line-height: 1;
	background-color: rgba(17,17,61,1);
    color: #FFF;
	border-radius: 3em;
	margin-bottom: 15px;
	margin-left: -10px;
	width: calc(100% + 20px);
}
.inbox.present .imgbox {
	text-align: center;
}
.inbox.present .imgbox img {
	width: 800px;
	max-width: 100%;
}


.tab_area:not(.first) {
	border-bottom: 2px solid #1855a6;
	margin-bottom: min(60px,8vw);
	display: flex;
	justify-content: center;
}
.tab_area.first {
	display: flex;
	justify-content: center;
}
.tab_area li {
	border-top: 2px solid #1855a6;
	border-right: 2px solid #1855a6;
	display: flex;
	padding: .5em 2em;
	line-height: 1;
	height: 3em;
	justify-content: center;
	align-items: center;
	font-size: min(18px,2.6vw);
	background-color: #fff;
}
@media(max-width:1023px) {
	.tab_area:not(.first) {
		flex-wrap: wrap;
	}
	.tab_area li {
		width: calc(100% / 3);
		padding: .5em 0;
		height: 4em;
	}
	.tab_area:not(.first) li:last-child {
		width: 100%;
		border-left: 2px solid #1855a6;
	}
}
.tab_area li:not(.select) {
	cursor: pointer;
}
.tab_area li:first-child {
	border-left: 2px solid #1855a6;
}
.tab_area li > span {
	display: inline-block;
	text-align: center;
}
.tab_area li.select {
	background-color: #1855a6;
	color: #fff;
	font-weight: 600;
}


h4 {
	background-color: rgba(0,255,255,.2);
	color: #1855a6;
	font-weight: 600;
	padding: 5px 1em;
	line-height: 1;
	margin-bottom: min(30px, 4vw);
}
.content_area_inner {
	width: 95%;
	margin: 0 auto min(60px, 8vw);
}
.content_area_inner.spec dl dt {
	position: relative;
	line-height: 1;
	padding-left: 1em;
	padding-bottom: 5px;
	color: rgba(17,17,61,1);
	font-weight: 600;
}
.content_area_inner.spec dl dt::before {
	content: '';
	display: block;
	height: 50%;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 1px solid rgba(17,17,61,1);
	border-left: 8px solid rgba(17,17,61,1);
}
.content_area_inner.ticket dl dt {
	position: relative;
	line-height: 1;
	padding: 5px 1em;
	color: #fff;
	font-weight: 600;
	background-color: #1855a6;
	border-radius: 3px;
}
.content_area_inner dl dd {
	padding: 1em 1em min(30px,4vw);
}
.content_area_inner dl dd span {
	display: inline-block;
}
.content_area_inner .attentionbox {
	background-color: rgba(0,255,255,.1);
	border: 1px solid #1855a6;
	border-radius: 5px;
	padding: 1.5em;
	font-size: 80%;
}
.followbtn.greeting {
	width: 800px;
	max-width: 90%;
	margin: min(15px, 2vw) auto;
	background-color: #1855a6;
}
.followbtn.greeting-border {
	width: 800px;
	max-width: 90%;
	margin: min(15px, 2vw) auto;
	background-color: #fff;
	border: 1px solid #1855a6;
	color: #1855a6;
}
.followbtn.greeting-border::after {
	color: #1855a6;
}
.followbtn.greeting-border:hover::after {
	color: #fff;
}
.followbtn.greeting-border:hover {
	color: #fff;
	background-color: #1855a6;
}
.followbtn.buylink {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}
.content_area_inner.ticket tr > td:first-child {
	white-space: nowrap;
	vertical-align: top;
	border-right: 8px solid rgba(0,255,255,.5);
	padding-right: 1em;
}
.content_area_inner.ticket tr > td:nth-child(2) {
	padding-left: 1em;
}


#top .flex.box {
	width: 95%;
	margin: min(60px, 8vw) auto 0;
	padding: 0;
}
#top .link.box {
	width: 95%;
	margin: min(15px, 4vw) auto 0;
	padding: 0;
}
#top #tw {
	width: 100%;
}
#top .flex.box .bnrlink,
#top .link.box .bnrlink{
	width: 100%;
}
#top .flex.box .bnrlink:hover,
#top .link.box .bnrlink:hover,
#top .flex.box .bnrlink:hover::before,
#top .link.box .bnrlink:hover::before,
#top .flex.box .bnrlink:hover::after,
#top .link.box .bnrlink:hover::after{
	color: #1a1a1a;
}
#top .flex.box .bnrlink i,
#top .link.box .bnrlink i {
	letter-spacing: -.05em;
	color: red;
	display: inline-block;
	position: absolute;
	right: 2.5em;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.to_top_link {
	margin-top: min(30px,4vw);
	margin-bottom: min(15px,4vw);
}


.lity-wrap {
  outline: none !important;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  }
.lity-content > * {
  max-height: none !important;
  }
.lity-image img {
  margin: 0 auto;
  }






.campaign dl {
	padding: 0 1em;
}
.campaign dl dt {
	background-color: rgba(0,255,255,.2);
	padding: 2px 1em;
	font-weight: bold;
	color: #1a1a1a;
}
.campaign dl dd {
	padding: 1em 2em 2em;
}
.campaign dl dd strong {
	color: #1a1a1a;
	display: block;
}
.campaign dl dd span {
	display: inline-block;
}
.campaign dl dd td {
	vertical-align: top;
	padding-top: .5em;
}
.campaign dl dd .hr td {
	border-bottom: 1px dotted rgba(17,17,61,.3);
}
@media(max-width:480px) {
.campaign dl {
	padding: 0 .5em;
}
.campaign dl dd {
	padding: .5em 1em 1em;
}
}



.strbox {
	width: 90%;
	margin: 0 auto;
}
.strbox.info {
	padding: 2em;
	border: 4px solid #f8b656;
	border-radius: 10px;
	background-color: #fff;
	margin-bottom: 30px;
}
.strbox.info.noborder {
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: transparent;
	margin-bottom: 30px;
}
.strbox.info .catch {
	font-size: 160%;
	color: rgba(17,17,61,1);
	text-align: center;
}
.strbox.info table {
	margin: 30px auto;
}
.strbox.info table td {
	font-size: 120%;
}
.strbox.list .followbtn {
	background-color: #1855a6;
}
@media(max-width:767px) {
	.strbox.list li {
		margin-bottom: 10px;
	}
	.strbox.list ul > li:last-child {
		margin-bottom: 0;
	}
	.strbox.list .followbtn {
		padding: 1.5em 1em;
	}
	.strbox.info table tr > td:first-child {
		white-space: nowrap;
		vertical-align: top;
	}
	.strbox.info table tr:first-child > td {
		padding-bottom: 10px;
	}
}
@media(min-width:768px) {
	.strbox.list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	.strbox.list li {
		width: calc(50% - 10px);
	}
	.strbox.list .followbtn {
		padding: 1em;
	}
}



/* top popup */
.popup {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: transparent!important;
	border-radius: .5em;
	background-repeat: repeat-x;
	background-position: center top;
	margin: auto;
	padding: 0px;
}
.popup * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.popup div {
}

.popup {
	height: auto!important;
	max-height: min(1620px, 96vh)!important;
	width: auto!important;
	max-width: min(1000px, 96vw)!important;
	aspect-ratio: 1000 / 1620;
}
.popup img {
	width: 100%;
}
.popup > div{
	/*background-image: url("../popup_240323.jpg");*/
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff;
	width: 100%;
	aspect-ratio: 1000 / 1620;
}
.popup .youtubebox {
	width: 92.4%;
	height: auto;
	aspect-ratio: 1000 / 558;
	margin-left: auto;
	margin-right: auto;
}
.popup .youtube {
	margin-bottom: 0;
}

