@charset "utf-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, form,
dl, dt, dd, ol, ul, li, li a,
fieldset, legend,
table, caption, tbody, tfoot, thead, tr, th,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
}
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display: block;
}
nav ul {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
form{margin:0; padding:0;}
table{border-collapse:collapse;}
address{font-style:normal;}
body{
	margin:0;
	padding:0;
	height:100%;
	background-color: #fff;
	color: #44484B;
	font-family:'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.8;
}
body div {display: block; }
address{font-style:normal;}
img {max-width:100%; height:auto;}
main{
	padding: 80px 1vw 0;
}
ol li{
margin-left: 2em;
}
p{
	padding-bottom: 1em;
}
.caption{font-size: 84%;}
hr.short{
	border:none;
	border-bottom: 1px solid #666;
	margin: .8em 0;
	height: 1px;
}
hr{
	border:none;
	border-top: 3px solid #666;
	border-bottom: 1px solid #666;
	margin: 4em 0;
	height: 3px;
}
a{
	color: #44484B;
	text-decoration: none;
	transition: ease 0.2s;
}
a:hover{
	color: #67738B;
	text-decoration: none;
}
ul.normal_ul{
	padding: 0 0 1em 2em;
}
em{
	font-style: normal;
}

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

H

----------------------------------------------------------*/
h1{
	font-size: clamp(1.2rem, 3.7vw, 4.1rem);
	color: #44484B;
	line-height: 1.4em;
}
h2{
	font-size: clamp(2.2rem, 42px, 4rem);
	/*font-size: 44px;*/
	color: #4B505A;
	padding-bottom: 20px;
}
h2 span{
	font-size: 20px;
	color: #6C7586;
	display: block;
}
.h2-rub{
	font-size: 20px;
	font-weight: 600;
	color: #C4C4C4;
	display: block;
	margin: -10px 0;
}
h1.top-copyh1{
	font-size: clamp(60px, 7.5vw - 30px, 140px);
	font-weight: 900;
	color: #4B505A;
}
h1.top-copyh1 span{
	background-color: #575D63;
	color: #EFF0F1;
	padding-right: 10px;
}

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

h1.top-copyh1{
	font-size: clamp(50px, 7vw - 28px, 140px);
	font-weight: 900;
	color: #4B505A;
}
}
@media screen and (max-width: 599px) {
main{
	padding: 80px 2% 0;
}
h2{
	font-size: clamp(2rem, 32px, 4rem);
	color: #4B505A;
	padding-bottom: 20px;
}
hr.short{
	margin: .6em 0;
}
hr{
	border:none;
	border-top: 3px solid #666;
	border-bottom: 1px solid #666;
	margin: 2em 0;
	height: 3px;
}
}
/*----------------------------------------------------------

MENU UNIT

----------------------------------------------------------*/
/*--Hamburger-*/
.hamburger {
	display: block;
	position: fixed;
	right: 25px;
	top: 28px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 3100;
}
.ham_line {
 position: absolute;
 width: 40px;
 height: 3px;
	left: 5px;
	background-color: #333;
}
.ham_line1 { top: 0px;}
.ham_line2 { top: 12px;}
.ham_line3 { top: 24px;}
.open .ham_line{	 background-color: #000 !important;}
.open .ham_line1 {
	-webkit-transform: rotate(220deg);
  transform: rotate(225deg);
  top: 10px;
}
.open .ham_line2 {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.open .ham_line3 {
 opacity: 0;
}
nav.hnav{
	position: fixed;
	border-radius: inherit;
	opacity: 0;
	right: -100%;
	top: 0;
	width: 40%;
	height: 100vh;
	padding: 30px 2% 30px;
	background-color:#F7F6F3;
	transition: all 0.5s;
	overflow-y: auto;
	z-index: 2000;
}
.open .hnav {
	padding-left: 15px;
	opacity: 1;
	right: 0;
	top: 0;
}
.hnav ul{
	display: block;
	width: 100%;
}
.hnav ul li a{
	display: block;
	margin: 3px 0;
	padding: 6px 0 4px 6px;
	color: #414e65;
	font-size: 26px;
	font-weight: 600;
}
.hnav ul li.notice a{
	border: 1px solid #414e65; 
}
.hnav ul li a:hover{
	background-color: #575D63;
	color: #ECEDEF;
}
.foot-inner .inner-sw.noshow{
	display: none;
}
.foot-inner .hnav ul li.notice a{
	border:none; 
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
.inner-sw ul.language-chooser-text{
	width: 100%!important;
	position: inherit!important;
}
.inner-sw ul.language-chooser-text li.lang-ja,
.inner-sw ul.language-chooser-text li.lang-en{
	width: 120px;
}
.hnav ul li.nav-logo a{
	display:inline-flex;
	width: 110px;
	height: 60px;
	background: url("../images/logo-h.png") no-repeat left bottom;
	background-size:contain;
	text-indent: 150%;
	white-space:nowrap;
	overflow: hidden;
	}
.hnav ul li.nav-logo a:hover{
	opacity: 0.7;
	}
@media screen and (max-width: 599px) {
.hamburger {
	right: 12px;
	top: 27px;
	width: 30px;
	height: 30px;
}
.ham_line {
 width: 30px;
 height: 3px;
	left: 5px;
}
.ham_line1 { top: 0px;}
.ham_line2 { top: 10px;}
.ham_line3 { top: 20px;}
.open .ham_line{	 background-color: #000 !important;}
nav.hnav{
	width: 85%;
	height: 100vh;
	padding: 30px 2% 20px;
}
.open .hnav {
	padding-left: 14px;
	opacity: 1;
	right: 0;
	top: 0;
}
.hnav ul{
	display: block;
	width: 100%;
}
.hnav ul li a{
	margin: 10px 0;
	padding: 10px 0 5px 10px;
	color: #414e65;
	font-size: 22px;
	font-weight: 600;
}
}
/*----------------------------------------------------------

Header

----------------------------------------------------------*/
.header{
	width: 100%;
	position: fixed;
	background-color: rgba(255,255,255,.9);
	border-bottom: 1px solid #999;
	top: 0;
	z-index: 3150;
}
.header-inner{
	width: 94vw;
	margin: 0 auto;
	display: flex;
	padding: 15px 0 0;
	font-style: normal;
}
.headlogo {
	width: 200px;
	height: 60px;
	background: url("../images/logo-h.png") no-repeat top left;
	background-size: contain;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.headlogo a{
	display: block;
	width: 200px;
	height: 60px;
}
ul.language-chooser-text{
	width: 160px;
	padding-top: 4px;
	list-style-type: none;
	display: flex;
	position: absolute;
	right: 270px;
}
ul.language-chooser-text li.lang-ja,
ul.language-chooser-text li.lang-en{
	width: 80px;
	font-size: 20px;
	font-weight: 600;
	/*font-style: oblique 10deg;*/
	font-style:italic;
	color: #51545B;
}
ul.language-chooser-text li.lang-ja.active,
ul.language-chooser-text li.lang-en.active{
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-decoration-style: double;
	text-underline-offset: 5px;
}
ul.language-chooser-text li span{}

.head-ticket a{
	text-align: center;
	background-color: #586DA5;
	font-weight: 600;
	color: rgba(224,229,237,1.00);
	padding: 4px;
	display: block;
	width: 150px;
	border-radius: 8px;
	position: absolute;
	top: 21px;
	right: 90px;
}
.head-ticket a:hover{
	background-color: #3B455E;
	color: rgba(198,210,228,1.00);
}
.headnav{
	padding: 0 0 50px 0;
	font-size: 13px;
}
.headnav a{ padding-bottom: 40px;
background-color: #C1C4CC;
padding: 0 5px;
}

@media screen and (max-width: 1024px) {
.header{
	width: 100%;
}
.header-inner{
	width: 100%;
	margin: 0 auto;
	padding: 15px 0 0;
}
.headlogo {
	width: 160px;
	height: 50px;
	background: url("../images/logo-h.png") no-repeat top center;
	background-size: contain;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.headlogo a{
	display: block;
	width: 160px;
	height: 50px;
}

}
@media screen and (max-width: 599px) {
	.header{
		height: 70px;
		width: inherit;
		left: 0;
	}
.header-inner{
	width: 100vw;
	padding: 10px 0 0;
	position: relative;
}
.headlogo {
	width: 100px;
	height: 50px;
	background: url("../images/logo-h.png") no-repeat bottom center;
	background-size: contain;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.headlogo a{
	width: 100px;
	height: 50px;
}
ul.language-chooser-text{
	width: 120px;
	padding-top: 4px;
	list-style-type: none;
	display: flex;
	position: absolute;
	right: 150px;
	top: 20px;
}
ul.language-chooser-text li.lang-ja,
ul.language-chooser-text li.lang-en{
	width: 60px;
	font-size: 16px;
}
ul.language-chooser-text li.lang-ja.active,
ul.language-chooser-text li.lang-en.active{
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-decoration-style: double;
	text-underline-offset: 4px;
}
ul.language-chooser-text li span{}

.head-ticket a{
	padding: 3px;
	display: block;
	width: 90px;
	position: absolute;
	top: 24px;
	right: 44px;
	font-size: 13px;
}
.headnav{
	padding: 0 0 50px 0;
	font-size: 13px;
}
.headnav a{ padding-bottom: 40px;
background-color: #C1C4CC;
padding: 0 5px;
}
.head-ticket em{
	display: none;
	}
}
/*----------------------------------------------------------

Footer

----------------------------------------------------------*/
.copyright{
	color: #fff;
	text-align: center;
	font-size: 12px;
}
.footer{
	background-color: #6C758D;
	width: 100%;
}
.foot-inner{
	width: 70vw;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.foot-logo{
	background: url("../images/foot-logo.png") no-repeat left center;
	width: 280px;
	height: 250px;
	background-size: contain;
}
.fnav ul{
	padding-top: 20px;
}
.fnav ul li a{
	font-size: 16px;
	font-weight: 600;
	color: #C9CFD9;
}
.fnav ul li a:hover{
	background-color: rgba(69,75,88,1.00);
	color: #fff;
}
.fnav ul li.footer-note a{
	display: block;
	width: 90px;
	height: 30px;
	background: url("../images/note-logo.png") no-repeat left bottom;
	background-size:contain;
	text-indent: 100%;
	white-space:nowrap;
	overflow: hidden;
}
.fnav ul li.footer-note a:hover{
	opacity: .8;
}
.pagetop{
	text-align: right;
	color: #44484B;
	font-size: 24px;
	font-weight: 800;
	font-style: italic;
	cursor: pointer;
	padding-right:3%;
}
@media screen and (max-width: 1024px) {
.foot-inner{
	width: 90vw;
}
.foot-logo{
	background: url("../images/foot-logo.png") no-repeat left center;
	width: 200px;
	height: 180px;
	background-size: contain;
}
.copyright{
	padding-top: 30px;
}
.fnav ul li a{
	font-size: 15px;
}
}
@media screen and (max-width: 599px) {
.copyright{
	padding-top: 30px;
	font-size: 10px;
}
.foot-inner{
	width: 96%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.foot-logo{
	background: url("../images/foot-logo.png") no-repeat left center;
	width: 120px;
	height: 100px;
	background-size: contain;
}
.fnav ul{
	padding-top: 10px;
}
.fnav ul li {
	line-height: 1.2;
	padding: 2px 0;
}
.fnav ul li a{
	line-height: 1.2;
	font-size: 13px;
}
.fnav ul li.footer-note a{
	display: block;
	width: 70px;
	height: 25px;
	background: url("../images/note-logo.png") no-repeat left bottom;
	background-size:contain;
	text-indent: 100%;
	white-space:nowrap;
	overflow: hidden;
}
.pagetop{
	font-size: 20px;
}
}
/*----------------------------------------------------------

SECTION

----------------------------------------------------------*/
section{
	padding: 40px 30px 80px;
}
section.topbooth{/*width: 1320px;*/ margin: 0 auto;}
section.term-section{
	padding: 40px 30px;
}
.inner{padding: 2em 40px;}
@media screen and (max-width: 1024px) {
section{
	padding: 40px 15px 80px;
}
}
@media screen and (max-width: 599px) {
section{
	padding: 20px 0 60px;
	overflow: hidden;
}
section.topbooth{width: 100%;}
section.term-section{
	padding: 40px 2%;
}
.inner{
	padding: 1em 0;
	}
}
/*----------------------------------------------------------

TOPPAGE

----------------------------------------------------------*/
.top-unit{
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.top-copy{
	width: 59vw;
	padding-left: 30px;
}
.swiper {
	width: 35vw;
	aspect-ratio:8 / 5;
 height:auto;
}
.swiper-slide {
	width: 100%;
 height: 100%;
 color: #fff;
 font-weight: bold;
	padding-top: 40px;
}
.swiper-button-next,
.swiper-button-prev {
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
	z-index: 2500;
}
.swiper-button-prev {
  transform: rotate(180deg);
}
.swiper-button-prev svg,
.swiper-button-next svg{
	width: 60%;
	height: 60%;
	color: #333;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: ""; 
}
.swiper-content-1,
.swiper-content-2,
.swiper-content-3,
.swiper-content-4,
.swiper-content-5,
.swiper-content-6,
.swiper-content-7,
.swiper-content-8{
	width: 100%;
	display: flex;
 align-items: center;
	height: 380px;
	padding: 10px 0 20px;
}
.swiper-slide.mov{
	height: 380px
}
.first-slide{width: 36vw;}
.mov-cat{
	display: block;
	font-style: italic;
	padding: 3px 0;
	font-weight: 400;
	font-size: 13px;
}
.content-box{flex-shrink: 0; width: 330px;}
.time-container{
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	width: 100%;
	margin: 40px 0 0 0;
	text-align: center;
}
.time-container span{font-size: 28px; padding:0 5px; font-weight: 800;}
.mov-tmb{
	width: 330px;
	aspect-ratio: 14/9;
	height: 100%;
	overflow: hidden;
}
.synopsis{font-size: 15px; font-weight: 400; line-height: 1.3em;}
.mov-tmb img{
	width: 330px;
	height: 100%;
	object-fit: cover;
	transition: ease 0.4s;
}
.mov-tmb img:hover{
	transform: scale(1.2);
	opacity: 0.8;
}
/*---------------------------------*/
h4.nomi{
	color: #586DA5;
	font-size: 26px;
}
h4.nomi span.blu{
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}
h4.nomi span.gra{
	color: #A4A4A4;
	font-size: 20px;
	padding-left: 10px;
}
.nomi-rub{
	display: block;
	font-size: 18px;
	color: #C4C4C4;
	font-weight: 600;
	margin-bottom: -5px;
}
.ticket-unit{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	padding: 2em 0 0 0;
}
.ticket-semi-unit{
	max-width: 33%;
	min-width: 380px;
}
.ticket{
	background-color: #efefef;
	border-radius: 10px;
	padding: 10px 15px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 25px;
}
.ticket.onlinetic{
	background-color: #5F719D;
	color: #fff;
}
.tic-price{
	font-size: 42px;
	font-weight: 800;
	text-align: center;
	color: #515456;
	line-height: 1.2;
}
.tic-price span{
	color: #818D96;
	text-decoration: line-through;
	padding-right: 15px;
}
.tic-txt1{
	color: #6C758D;
	font-size: 15px;
	font-weight: 800;
}
.tic-txt2{
	color: #6C758D;
	font-weight: 600;
}
.tic-btn a{
	text-align: center;
	display: block;
	background-color: #586DA5;
	border-radius: 10px;
	padding: 10px 0;
	color: #fff;
	margin: 10px 0;
	font-size: 18px;
}
.tic-btn a:hover{
	background-color: #fff;
	color: #666B86;
}
.ticket.onlinetic .tic-price span{
	color: #A8B4BD;
}
.ticket.onlinetic .tic-txt1,
.ticket.onlinetic .tic-txt2,
.ticket.onlinetic .tic-price{
	color: #fff;
}

.ticket.onlinetic .tic-btn a{
	background-color: #fff;
	color: #666B86;
}
.ticket.onlinetic .tic-btn a:hover{
	background-color: #838EC8;
	color: #fff;
}

.about{display: flex; justify-content:space-around;}
.about-txt{
	width: 47%;
	padding-left: 20px;
	font-size: 16px;
}
.about-txt table{width: 100%; border-collapse: collapse; margin: 15px 0 30px;}
.about-txt th{width: 15%; color: #B5B5B5; border: none; text-align: left; padding-bottom: 10px;}
.about-txt td{width: 85%; border: none; padding-bottom: 10px;}
.about-map{width:45%; padding-right: 2%;}
.about-map iframe{width: 100%;}

@media screen and (max-width: 1024px) {
.about{display: flex; justify-content:space-between;}
.top-copy{
	width: 59vw;
	padding-left: 0px;
}
.swiper {
	width: 86vw;
 height: 300px;
}
	.slide1,
	.slide2,
	.slide3,
	.slide4{
	background-size:contain;
		background-repeat: no-repeat;
}
.about-txt{
	width: 47%;
	padding-left: 0px;
	font-size: 16px;
}
.about-map{width:46%; padding-right: 1%;}
.about-map iframe{width: 100%; height: 250px;}
}
@media screen and (max-width: 599px) {
.top-unit{
	display: block;
	justify-content: inherit;
}
.top-copy{
	width: 100%;
	padding-left: 0;
}
.swiper {
	width: 100%;
}
.slide1 {
 background-color: #88acbd;
}
.slide2 {
 background-color: #99cb1f;
}
.swiper-content-1,
.swiper-content-2,
.swiper-content-3,
.swiper-content-4,
.swiper-content-5,
.swiper-content-6,
.swiper-content-7,
.swiper-content-8{
	width: 100%;
	display: flex;
 align-items: center;
	height: 350px;
	padding: 20px 0;
}
.swiper-slide.mov{
	height: 390px
}
.first-slide{width: 100%;}
.time-container{
	font-size: 18px;
	margin: 5px 0 0 0;
}
.time-container span{font-size: 24px;}

/*-------------------------------------*/
.content-box{flex-shrink: 0; width: 100%;}
.mov-tmb{
	width: 100%;
	aspect-ratio: 14/9;
	height: 100%;
	overflow: hidden;
}
.synopsis{font-size: 15px; font-weight: 400; line-height: 1.3em;}
.mov-tmb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: ease 0.4s;
}
.mov-tmb img:hover{
	transform: scale(1.2);
	opacity: 0.8;
}
/*---------------------------------*/
h4.nomi{
	color: #586DA5;
	font-size: 26px;
}

h4.nomi span.gra{
	color: #A4A4A4;
	font-size: 20px;
	padding-left: 10px;
}
.nomi-rub{
	display: block;
	font-size: 18px;
	color: #C4C4C4;
	font-weight: 600;
	margin-bottom: -5px;
}
.ticket-unit{
	width: 100%;
	display: block;
	flex-wrap: inherit;
	gap: inherit;
	padding: 2em 0 0 0;
}
.ticket-semi-unit{
	max-width: 100%;
	min-width:inherit;
}
.ticket{
	padding: 10px 10px;
	width: 100%;
}
.tic-price{
	font-size: 42px;
	line-height: 1.2;
}
.tic-txt2{
	color: #6C758D;
	font-weight: 600;
}
.tic-btn a{
	text-align: center;
	display: block;
	background-color: #586DA5;
	border-radius: 10px;
	padding: 10px 0;
	color: #fff;
	margin: 10px 0;
	font-size: 18px;
}
.tic-btn a:hover{
	background-color: #fff;
	color: #666B86;
}
.ticket.onlinetic .tic-price span{
	color: #A8B4BD;
}
.ticket.onlinetic .tic-btn a:hover{
	background-color: #838EC8;
	color: #fff;
}
.about{display: block; justify-content:inherit;}
.about-txt{
	width: 100%;
	padding-left: 0;
	font-size: 15px;
}
.about-txt table{width: 100%;}
.about-txt th{width: 17%;}
.about-txt td{width: 83%; border: none;}
.about-map{width:100%; padding-right: 0;}
}
/*---------------------------------*/
.booth{
	display: flex;
	gap: 20px;
	width: 100%;
	flex-wrap: wrap;
}

.booth_l{
	border: 1px solid #B4B4B4;
	width: 240px;
	padding: 20px 20px 14px;
	box-sizing:border-box;
	border-radius: 15px;
}
.booth_l.clearbox{
	border: none;
	width: 240px;
	text-align: center;
}
.booth_s{
	border: 1px solid #B4B4B4;
	width: 240px;
	padding: 5px 10px 4px;
	box-sizing:border-box;
	border-radius: 15px;
}
.booth_ss{
	width: 240px;
	padding: 5px 10px 4px;
	box-sizing:border-box;
	border-radius: 15px;
}
.booth_ss strong{ text-align: center; display: block;}
.booth_ss .booth-logo:hover{opacity: .7;}
.booth-logo{
	margin: 0 auto;
	width: 100%;
	height: 120px;
}
.booth-logo img{
	display: block;
	margin: 0 auto;
	width:auto;
	height: 100%;
}
h3.booth-name{
	text-align: center;
	padding-bottom: 10px;
	font-size: 14px;
}
.booth-disc{
	font-size: 14px;
	padding: 0 0 20px;
	line-height: 1.3em;
}
.co-link a {
	display: block;
	width: 100%;
	padding: 4px 0;
	text-align: center;
	margin: 6px 0;
	font-size: 12px;
	font-weight: 400;
}
.llb-link a{
	display: block;
	width: 100%;
	padding: 2px 0;
	margin: 6px 0;
	background-color: #fff;
	border: 1px solid #B4B4B4;
	text-align: center;
}
.co-link a:hover,
.llb-link a:hover{
	color: #fff;
	background-color: #53647E;
}
/*------------------------------------------*/
.about-box{
	font-size: 38px;
	font-weight: 800;
	color: #44484B;
}
.about-box span{
	color: #44484B;
	font-size: 40px;
	font-weight: 800;
}
.about-box em{
	font-size: 18px;
	font-weight: 800;
	color: #B9B9B9;
	display: block;
	font-style: normal;
	margin: 10px 0 -8px;
}
.news-unit{
	/*min-height: 40vh;*/
}
.news-box{
	border: #586DA5 1px solid;
	display: flex;
	margin-bottom: 10px;
	padding: 15px 4% 10px;
}
.news-data{
	width: 86%;
	padding-top: 10px;
	text-align: left;
}
.news-data span{display: block;}
.news-date{
	display: flex;
	align-items:center;
	text-align: center;
	width: 8%;
	min-width: 150px;
}
.news-content{
	padding-top: 40px;
}
a .news-box{
	transition: 0.5s;
}
a .news-box:hover{
	background-color: #586DA5;
	color: #fff;
}
.navigation{
	padding: 1em 0;
	display: flex;
	justify-content: space-between;
}
.navigation a{	font-style:italic;}
@media screen and (max-width: 1024px) {
.about-box{
	font-size: 30px;
	margin-right: -200px;
}
.about-box span{
	font-size: 30px;
	font-weight: 800;
}
.about-box em{
	display: block;
	font-style: normal;
	margin: 10px 0 0;
}
.news-content{
	padding-top: 20px;
}
}

@media screen and (max-width: 599px) {
.booth{
	gap: 10px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.booth_l{
	width: 48%;
	box-sizing: border-box;
	padding: 10px 8px 14px;
}
.booth_l.clearbox{
	border: none;
	width: 48%;
	text-align: center;
}
.booth_s,
	booth_ss{
	width: 48%;
	box-sizing: border-box;
	padding: 10px 8px 14px;
}
.booth-logo{
	margin: 0 auto;
	width: 100%;
	height: 150px;
}
.booth-logo img{
	display: block;
	margin: 0 auto;
	object-fit:contain;
	width:100%;
	height:100%;
}
h3.booth-name{
	text-align: center;
	padding-bottom: 10px;
	font-size: 14px;
}
.booth-disc{
	font-size: 14px;
	padding: 0 0 20px;
	line-height: 1.3em;
}
.about-box{
	font-size: 24px;
	margin-right: 0;
}
.about-box span{
	color: #44484B;
	font-size: 24px;
}
.about-box em{
	font-size: 16px;
	margin: 10px 0 -8px;
}
.news-unit{}
.news-box{
	display: block;
	padding: 5px 2% 0px;
	font-size: 15px;
	line-height: 1.4em;
}
.news-data{
	width: 100%;
	padding-top: 10px;
	text-align: left;
}
.news-data span{display: block;}
.news-date{
	display: flex;
	align-items:center;
	text-align: center;
	width: 8%;
	min-width: 150px;
}
}
/*---------------------------------*/
.eve-unit{
	display: flex;
	width: 100%;
	justify-content:space-between;
}
.eve28{
	width: 45%;
	padding-right: 4%;
	border-right: 2px solid #999;
}
.eve29{
	width: 44%;
}
h3.eveh3{
	color:#53647E;
	font-size: 30px;
	font-weight: 800;
	padding-bottom: 1em;
}
h3.eveh3 span{
	font-size: 20px;
	color: #B5B5B5;
}
.event-site{
	font-size: 24px;
	font-weight: 700;
	position: relative;
	top: -40px;
	left: 65px;
	color: #798CB4;
	width: 220px;
}
.event-site.siteA{	color:#505668;}
.event-site.siteC,
.event-site.siteD,
.event-site.siteE{
	color: #5A77CD;
}
.eve{
	margin-bottom: 20px;
}
.eve-date{
	width: 52px;
	height: 52px;
	background-color:#7782B9;
	color: #fff;
	font-weight: 600;
	display: flex;
	line-height: 0.6;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	text-align: center;
	font-size: 15px;
	margin-top: -12px;
}
.eve-date.siteA{
	background-color: #505668;
}
.eve-date.siteC,
.eve-date.siteD,
.eve-date.siteE{
	background-color: #5473D3;
}

.eve-img{
	width: 240px;
	margin: 0 30px 0 0;
	height: 138px;
	flex-shrink: 0;
}
.eve-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.eve-data{
	display: flex;
	line-height: 1.3em;
	font-size: 14px;
	padding-bottom: 15px;
}
.eve-data strong{
	padding-bottom: 5px;
	font-size: 16px;
}
.top-eve p{ padding-top: 5px;}
@media screen and (max-width: 1280px) {
.eve28{
	width: 45%;
	padding-right: 4%;
	border-right: 2px solid #999;
	margin-bottom: 40px;
}
.eve29{
	margin-bottom: 40px;
}
.eve-data{
	display: block;
}
.eve-data.free{
	display: flex;
}
.eve-img{
	width: 95%;
	margin: 0 0 30px 0;
	aspect-ratio:14/9;
	height: 100%;
	flex-shrink: 0;
	max-width: 500px;
}
.eve-img.free{
	width: 25%;
	margin: 0 30px 30px 0;
	aspect-ratio:14/9;
	height: 100%;
	flex-shrink: 0;
}
}
@media screen and (max-width: 599px) {
.eve-unit{
	display: block;
	width: 100%;
	justify-content:inherit;
}
.eve28{
	width: 100%;
	padding-right: 0;
	margin-bottom: 0;
	border-right: none;
}
.eve29{
	width: 100%;
	margin-bottom: 0;
}
h3.eveh3{
	color:#53647E;
	font-size: 30px;
	font-weight: 800;
	padding-bottom: 1em;
}
eveh3 span{
	font-size: 20px;
	color: #B5B5B5;
}
.event-site{
	font-size:24px;
	font-weight: 700;
	position: relative;
	top: -40px;
	left: 60px;
	color: #798CB4;
	width: 280px;
}
.eve{
	margin-bottom: 20px;
}
.eve-img{
	width: 100%;
	margin: 0 40px 20px 0;
	aspect-ratio:14/8;
	height: 100%;
	flex-shrink: 0;
}
.eve-img.free{
	width: 100%;
	margin: 0 40px 20px 0;
	height: auto;
	aspect-ratio:14/9;
}
.eve-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.eve-data{
	display: block;
}
.eve-data.free{
	display: block;
}
.eve-data strong{
	font-size: 18px;
}
}
/*---------------------------*/
.jury-top-unit{
	padding: 50px 0 0 0;
	display: flex;
}
.jury-top{
	width: 300px;
	padding: 0 1%;
}
.jury-top-img{
	width: 13vw;
	margin: 0 auto 10px;
	height: 13vw;
}
.jury-top-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.jury-name{
	font-size: 24px;
	text-align: center;
	font-weight: 600;
	color: #4D5566;
}
.nominate-director .jury-name{
	font-size: 28px;
	text-align: left;
}
.jury-name-list{
	font-size: 28px;
	text-align: left;
	font-weight: 600;
}
.jury-title{
	font-size: 15px;
	text-align: center;
	padding: 10px 0;
	color: #858B90;
}
.jury-data{
	padding-top: 10px;
	font-size: 15px;
	text-align: left;
}
.btn-common a{
	text-align: center;
	display: block;
	background-color: #586DA5;
	border-radius: 10px;
	padding: 7px 0;
	color: #fff;
	margin: 40px auto;
	font-size: 18px;
	width: 300px;
}
.btn-common a:hover{
	background-color: #3B455E;
	color: rgba(198,210,228,1.00);
}
.btn-common-left a{
	text-align: center;
	display: block;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #586DA5;
	padding: 6px 0;
	color: #434B62;
	margin: 40px 0;
	font-size: 16px;
	width: 300px;
}
.btn-common-left a:hover{
	background-color: #586DA5;
	color: rgba(198,210,228,1.00);
}
.jury-unit{
	padding: 40px 0;
	flex-wrap: wrap;
}
.archive-jury{
	width: 100%;
	padding: 0 0 80px 0;
	display: flex;
}
.archive-jury-img{
	width: 28%;
	margin: 0 auto;
}
.archive-jury-box{
	width: 65%;
}
.archive-jury-img img{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	border-radius: 10px;
}
.jury-unit .jury-title{
	border-top: 4px double #666;
	border-bottom: 1px solid #666;
	text-align: left;
}
/*---------------------------------------*/
.nominate-about{
	padding-bottom: 30px;
	margin-bottom: 10px;
	border-bottom: 1px solid #B9B9B9;
	display: flex;
	justify-content: space-between;
}
.nominate-about-txt{
	width: 55%;
	padding: 30px 4% 0 2%;
	color: #777777;
}
.nominate-about-img{width: 35%; margin-top: -80px;}
.nominate-about-img img{width: 100%; height: auto;}
h3.nominate{
	font-size: 42px;
	text-align: center;
	color: #fff;
	margin: 0 auto;
}
h3.nominate span{
	background-color: #505668;
	padding: 0 15px;
}
.h3-rub{
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #B5B5B5;
	text-align: center;
}
.nominate-img{
	padding: 30px 0;
}
.nominate-img img{
	display: block;
	margin: 10px auto;
}
.nominate-data{
	background-color: #F6F6F6;
	margin: 0 -1vw;
	display: flex;
	flex-wrap: wrap;
	font-size: 15px;
	padding-top: 25px;
}
.nominate-a{
	padding: 10px 4% 10px 14%;
	width: 22%;
}
.nominate-b{
	padding: 10px 8% 10px 4%;
	width: 47%;
	border-left: 1px solid #aaa;
}
.nominate-c{
	text-align: center;
	background-color: #fff;
	display: inline-block;
	margin: 20px auto;
	padding: 0 30px;
	border-radius: 15px;
}
.nominate-director{
	display: flex;
	padding: 20px 0 0 0;
	align-items: flex-start;
}
.nominate-director-img{
	padding: 10px 5% 15px 10px;
	width: 30%;
	display: block;
	flex: 0 0 30%;
}
.nominate-director-img img{
	width: 100%;
	height: auto;
}
.mov-info-box{
	background-color: #DCDCDC;
	margin: 0 -1vw;
	display: flex;
	flex-wrap: wrap;
	font-size: 15px;
	padding: 15px 0 10px;
}
.mov-info{
	width: 60%;
	text-align: center;
	margin: 0 auto;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	font-style: italic;
	margin-bottom: 5px;
}
.mov-info table{
	margin: 0 auto;
}
.mov-info table td{ vertical-align: middle;}
td.day1{
	padding: 0 26px;
	background-color: #F0F0F0;
	/*	border-radius: 20px 0 0 20px;*/
	width: 100px;
}
td.venue1{
	padding: 0 26px;
	background-color: #F8F8F8;
}
td.time1{
	padding: 0 26px;
	background-color: #FBFBFB;
/*	border-radius: 0 20px 20px 0;*/
}
td.screenin{
	padding: 0 26px;
	background-color: #E8E8E8;
}
/*-----------------------------------*/

h3.eventh3{
	font-size: 48px;
	color: #fff;
	display: inline-block;
	margin: 0 auto;
	background-color: #505668;
	padding: 0 15px;
}
.event-single{ display: flex;}
.event-img{
	width: 48%;
	padding-right: 5%;
}
.event-img img{
	width: 100%;
	height: auto;
}
.event-txt{}
.event-single-time{
	padding: 25px 20px;
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	color: #7782B9;
}
.event-single-site{
	padding: 25px 0;
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	color: #7782B9;
}
.event-single-site.siteA,
.event-single-time.siteA{
	color: #68708A;
}
.event-single-site.siteC,
.event-single-time.siteC,
.event-single-site.siteD,
.event-single-time.siteD,
.event-single-site.siteE,
.event-single-time.siteE{
	color: #5473D3;
}

.day-label.label-sat,
.day-label.label-sun{
	font-size: 30px;
	font-weight: 800;
	color: #57595F;
	display: inline-block;
}
.day-label.label-sat span,
.day-label.label-sun span{
	font-size: 20px;
	color: #AAAAAA;
}

.list-changer {padding: 30px 5px; display: flex; margin-bottom: 40px;}
.list-changer a{font-size: 18px; font-weight: 600; font-style: italic; border:1px solid #666E86; padding: 0 25px 0 20px; margin-right: 20px;}
.list-changer a:hover{background-color:#666E86;  border:1px solid #666E86; color:#fff;}


/*----------------------------------*/
.nomi-list-box{ display: flex; padding: 40px 0; margin: 0 0 30px 0; border-bottom: 1px solid #aaa;}
.nomi-img{width: 30%; padding: 0 5% 0 0; overflow: hidden;}
.nomi-img img{width: 100%; height: auto; display: block; transition: ease .4s;}
.nomi-img a img:hover{
	transform: scale(1.1);
 opacity: 0.8;
}
.nomi-data{width: 65%; padding: 0;}
.movie_cat{
	padding: 5px 10px;
	background-color: #666E86;
	color: #fff;
	margin-bottom: 30px;
}
.movie_cat ~ h3{padding-top: 10px;}
.nomi-data h3{font-size: 28px;}
@media screen and (max-width: 1024px) {
.list-changer {padding: 30px 5px; display: flex; gap:10px; margin-bottom: 40px; flex-wrap: wrap;}
.list-changer a{font-size: 20px; padding: 0 15px 0 10px; margin-right:0;}
}
@media screen and (max-width: 599px) {
.jury-top-unit{
	padding: 50px 0 0 0;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.jury-top{
	width: 30%;
	flex-shrink: 0;
}
.jury-top-img{
	width: 24vw;
	margin: 0 auto 10px;
	height: 24vw;
}
.jury-top-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.jury-name{
	font-size: 16px;
}
.nominate-director .jury-name{
	font-size: 20px;
}
.jury-name-list{
	font-size: 26px;
	text-align: center;
}
.jury-title{
	font-size: 14px;
	line-height: 1.3em;
}
.jury-data{
	padding-top: 10px;
	font-size: 15px;
	text-align: left;
}
.jury-unit{
	padding: 40px 0;
	flex-wrap: wrap;
}
.archive-jury{
	display: block;
}
.archive-jury-img{
	width: 70%;
	margin: 0 auto;
}
.archive-jury-box{
	width: 100%;
}
.archive-jury-img img{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	border-radius: 10px;
}
.jury-unit .jury-title{
	border-top: 4px double #666;
	border-bottom: 1px solid #666;
	text-align: left;
}
/*---------------------------------------*/
.nominate-about{
	display: block;
	justify-content: inherit;
}
.nominate-about-txt{
	width: 100%;
	padding: 30px 4% 0 2%;
}
.nominate-about-img{width: 100%; margin-top:10px;}
h3.nominate{
	font-size: 38px;
	text-align: center;
	margin: 0 auto;
}
h3.nominate span{
	background-color: #505668;
	padding: 0 15px;
}
.h3-rub{
	display: block;
	font-size: 20px;
}
.nominate-img{
	padding: 30px 0;
}
.nominate-img img{
	display: block;
	margin: 10px auto;
}
.nominate-data{
	margin: 0 -2%;
	display: block;
	font-size: 15px;
	padding: 25px 0;
}
.nominate-a{
	padding: 10px 3%;
	width: 94%;
}
.nominate-b{
	padding: 10px 4%;
	width: 92%;
	border-left:none;
}
.nominate-c{
	display: block;
	width: 94%;
	margin: 20px auto;
	padding: 0 1%;
	border-radius: 15px;
}
.nominate-director{
	padding: 20px 0;
	font-size: 14px;
}
.nominate-director-img{
	padding: 0 15px 0 0;
	width: 35%;
	flex-shrink: 0;
}
.mov-info-box{
	margin: 0 -2%;
	display: block;
	font-size: 13px;
	padding: 5px 0;
}
.mov-info{
	width: 96%;
	font-size: 13px;
	margin-bottom: 5px;
	line-height: 1.3;
}
.mov-info table{
	margin: 0 auto;
}
td.day1{
	padding: 0 6px;
	width:inherit;
}
td.venue1{
	padding: 0 6px;
}
td.time1{
	padding: 0 6px;
}
td.screenin{
	padding: 0 6px;
}
/*-----------------------------------*/

h3.eventh3{
	font-size: 28px;
	color: #fff;
	display: inline-block;
	padding: 0 10px;
	line-height: 1.45em;
	margin-bottom: 1em;
}
.event-single{ display: block;
	margin: 1em 0;
	}
.event-img{
	width: 100%;
	padding-right: 0;
}
/*.event-img img{
	width: 100%;
	height: auto;
}*/
.event-txt{}
.event-single-time{
	padding: 25px 20px;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	color: #7782B9;
}
.event-single-site{
	padding: 0px 0;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	color: #7782B9;
		line-height: 1.4;
}
.event-single-site.siteA,
.event-single-time.siteA{
	color: #68708A;
	padding: 0;
}
.day-label.label-sat,
.day-label.label-sun{
	font-size: 25px;
	line-height: 1.4;
}
.day-label.label-sat span,
.day-label.label-sun span{
	font-size: 18px;
	color: #AAAAAA;
}
.list-changer {padding: 30px 5px; display: flex; gap:10px; margin-bottom: 40px; flex-wrap: wrap;}
.list-changer a{font-size: 16px; padding: 0 15px 0 10px; margin-right:0;}
	
/*----------------------------------*/
.nomi-list-box{ display: block; padding: 0 0 10px 0; margin: 0 0 30px 0; border-bottom: 1px solid #aaa;}
.nomi-img{width: 100%; padding: 0 5% 0 0; margin-bottom: 15px;}
.nomi-img img{width: 100%; height: auto;}
.nomi-data{width: 100%; padding: 10px 0 40px;}
.movie_cat{
}
.nomi-data h3{font-size: 28px;}
}

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

FONTS

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

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?kyxwci');
  src:  url('../fonts/icomoon.eot?kyxwci#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?kyxwci') format('truetype'),
    url('../fonts/icomoon.woff?kyxwci') format('woff'),
    url('../fonts/icomoon.svg?kyxwci#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.icon-arrow-down-circle:before {
  content: "\e903";
}
.icon-arrow-left-circle:before {
  content: "\e904";
}
.icon-arrow-right-circle:before {
  content: "\e905";
}
.icon-arrow-up-circle:before {
  content: "\e906";
}
.icon-copy:before {
  content: "\e907";
}
.icon-corner-left-up:before {
  content: "\e908";
}
.icon-external-link:before {
  content: "\e909";
}
.icon-online:before {
  content: "\e900";
}
.icon-map:before {
  content: "\e901";
}
.icon-cal:before {
  content: "\e902";
}
.icon-exclamation-triangle:before {
  content: "\f071";
}
.icon-warning:before {
  content: "\f071";
}
.icon-envelope:before {
  content: "\f0e0";
}
.icon-cc-visa:before {
  content: "\f1f0";
}
.icon-cc-mastercard:before {
  content: "\f1f1";
}
.icon-cc-amex:before {
  content: "\f1f3";
}
.icon-cc-paypal:before {
  content: "\f1f4";
}
.icon-credit-card-alt:before {
  content: "\f283";
}
