@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c");
html{
	font-family: 'M PLUS Rounded 1c','ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,sans-serif;
	scroll-behavior: smooth;
}
body{
  position: relative;
  background-color:#f0f0f0;
}
a{text-decoration: none;word-break: break-all;}
/* a:hover{text-decoration: underline;} */
li{list-style-type: none;}
label{cursor: pointer;}
h1{
	font-size:1.1em;
	padding:0;
}
.flex{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
h2{
	font-size:1.15em;
	line-height:1.6em;
	margin:20px auto 10px;
}
h3{
	font-size:1.1em;
	line-height:1.6em;
}
h4{
	font-size:1em;
	line-height:1.6em;
	margin:10px auto 5px;
}
details{
	transition:.3s;
}
summary {
	cursor: pointer;
  }

/*-----------header-----------*/
.header{
	width:100%;
	display:flex;
	align-items:center;
	justify-content: center;
	flex-wrap:wrap;
	background-color:#193064;
	margin-bottom: 20px;
}
.header img{
	max-width:100%;
}
.header .logo{
	width:50px;
	margin-left:10px;
}
.header .logo img{
	width:100%;
}
.header p{
	display: block;
	width:100%;
	text-align: center;
	margin:20px 0;
}
.pc-header{
  display:none;
}
.sp-header{
	width:100%;
	margin:10px auto;
}

@media (min-width:768px){
	.pc-header{display: block;}
	.sp-header{display: none;}
}

/*--------------------------*/

.container{
	width:100%;
	max-width:1600px;
	margin:auto;
	display: grid;
	grid-template-areas:
	'cl-left'
	'main'
	;
	grid-template-columns:100%;
	/* grid-template-rows:50px 50px 60px 1fr; */
}
.main{
	grid-area: main;
	width:calc(100% - 20px);
	margin:0 10px;
}
.cl-left{
	width:calc(100% - 20px);
	grid-area: cl-left;
	margin:0 10px;
}
@media (min-width:768px){
	.container{
		grid-template-areas:'cl-left main';
		grid-template-columns:22% 78%;
	}
}
/*-----------SNS-----------*/
.sns{
	display: flex;
	width:96%;
	background-color:#fff;
	margin:10px auto;
}
.sns i{
	font-size:50px;
	margin:5px;
}
/*-----------nav-----------*/
.nav{
	width:96%;
	font-size:15px;
	display: flex;
	flex-wrap: wrap;
	margin:0 auto 20px;
	position: sticky;
	top:10px;
		height:100%;
}
.nav summary{
	font-family: 'M PLUS Rounded 1c','ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,sans-serif;
	padding:8px 0;
	margin:32px 0 20px;
	color:#000;
	text-align: center;
	font-weight: bold;
	border-radius: 0 8px 8px 0;
}

.nav .summary-annai{
	font-family: 'M PLUS Rounded 1c','ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,sans-serif;
	padding:8px 0;
	margin:32px 0 20px;
	background-color:#333;
	color:#fff;
	text-align: center;
	font-weight: bold;
  border-radius: 0 8px 8px 0;
}

.nav summary h3{
	display: inline-block;
}
.nav a{
	display: block;
	color:#333;
	font-weight:bold;
	padding:10px 4px;
	transition: .1s;
}
.nav a:hover{
	color:#fff;
}
.nav .nav-link:hover{
  opacity:0.7;
}
.nav .nav-red summary{
  margin-top:0;
}
.nav .nav-red a:hover{
	background-color:#df3737;
}
.nav .nav-yellow summary{
	color:#333;
	background-color:#f4d711;
}
.nav .nav-yellow a:hover{
	color:#333;
	background-color:#f4d711;
}
.nav .nav-blue summary{
	background-color:#193064;
}
@media (min-width:768px){
	.nav{
		width:100%;
		flex-direction:row;
		display: block;
	}
}
/*-----------grid-----------*/
.grid{
	display:grid;
	grid-template-areas:
	'pickup'
	'search';
	/* grid-template-columns:28px 1fr; */
	/* gap: 4px 0px; */
	position: relative;
    z-index: 1;
}
@media (min-width:768px){
	.grid{
		grid-template-areas:
		'search pickup';
		grid-template-columns:49% 49%;
		gap: 0 2%;
	}
}
.search-genre{
	grid-area:search;
}
.search-genre select{
	width:98%;
}
.pickup{
	grid-area:pickup;
}
/*-----------filter-menu-----------*/
.filter-menu {
  margin: 0;
  padding: 10px;
  position: relative;
  z-index: 1;
}
.filter-menu summary h5 {
  display: inline-block;

}
.filter-menu h5 {
  font-size: 1em;
  display: block;
  margin: 10px 0 4px;
}

.filter-menu .search-box{
  background:#fff;
  padding:20px 20px;
  margin-bottom:15px;
}

.filter-menu .search-close {
  margin: 15px 10px 0 0;
}
.filter-menu summary {
  color: #000;
  border-bottom: 2px solid #ddd;
}
.filter-text {
  display: block;
  margin: 10px 0;
}
.search-schedule {
  display: flex;
}
.search-schedule input {
  width: 140px;
}
.search-schedule label {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 1em;
  margin: 10px 0;
  padding: 6px 0;
  width: 46%;
  text-align: center;
}
.btn-clear {
  text-align: right;
}
.search-month label{
  width:30% !important;
}


/*-----------layout------------*/
main h3{
	background:#193064;
	color:#fff;
	border-radius:8px;
	text-align: center;
	padding:8px 0;
	font-size:24px;
	margin:20px auto 10px;
  letter-spacing: 1px;
  width:90%;
}

.info-kaisai {
	margin: 0 auto 1%;
	width: 90%;
	max-width: 1600px;
}

.info-kaisai-news {
	background-color: #f4d711;
	border-radius: 10px;
	padding: 1.5%;
	position: relative;
	display: inline-block;
}

.info-kaisai-news div {
	font-weight: 900;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	font-size: 2em;
	color: #193064;
	text-align: center;
}

.info-kaisai-news div.sub {
	font-size: 1.1em;
	margin-top: .8%;
	letter-spacing: .05em;
}

.info-kaisai-news::before {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	background-color: #f4d711;
	top: -10px;
	left: 50%;
	z-index: -1;
	transform: rotate(45deg);
}

.info-kaisai-link {
	margin-top: 1%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.info-kaisai-link div {
	width: calc(85%/4);
	margin: 1.5% 1%;
	text-align: center;
	font-weight: bold;
	color: #193064;
}

.info-kaisai-link div p {
	min-height: 50px;
	width: 100%;
	display: flex;
	font-size: 1.1em;
	justify-content: center;
	align-items: center;
	margin-bottom: 4%;
}

.info-kaisai-link div a {
	display: block;
	width: 100%;
	background-color: #df3737;
	color: #ffffff;
	min-height: 45px;
	display: flex;
	font-size: 1.2em;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}

.info-kaisai-link div a:hover {
	opacity: .7;
}

@media (max-width:768px) {
	.info-kaisai-link div {
		width: calc(90%/2);
	}
	.info-kaisai-news div {
		font-size: 1.4em;
	}
	.info-kaisai-news div.sub {
		font-size: 1em;
		letter-spacing: normal;
	}
	.info-kaisai-link{
		align-items: flex-end;
	}
	.info-kaisai-link div p{
		font-size: 100%;
	}
	.info-kaisai-link div a{
		font-size: 100%;
	}
}

@media (max-width:100px) {}

.information h1{
	font-size: 1.1em;
	line-height: 1.3;
	color: #4d4d4d;
	max-width: 1600px;
	margin: 0 auto;
}

@media (max-width:768px) {
	.information h1{
	font-size: 100%;
	margin-top: 5%;
	}
}


.information h3{
  background:#193064;
	color:#fff;
	border-radius:8px;
	text-align: center;
	padding:8px 0;
	font-size:24px;
	margin:20px 5% 10px;
	letter-spacing: 1px;
}
main h4{
	font-size:24px;
	text-align: center;
	margin:40px auto;
}
main h4 span{
	color:#333;
	border:2px solid #df3737;
	border-radius:18px;
	text-align: center;
	padding:4px 10px;
}
main h4 span.border-yellow{
	border-color:#f4d711;
}
main h4 span.border-blue{
	border-color:#193064;
}
.box-wrapper{
	width:90%;
	margin:0 auto;
	display: flex;
	justify-content:space-around;
}
.box{
  width:30%;
  height:250px;
}
.box img{
	display: block;
	margin:auto;
}
.box h5{
	display: block;
	width:100%;
	text-align: center;
	margin:20px 0;
	font-size:18px;
}
.box p{
	display: block;
	width:100%;
	text-align: center;
	font-size:13px;
  line-height:1.6em;
  margin-top:20px;
  font-weight:bold;
}
.box span{
  font-size:10px;
  line-height:1.1em;
  display:block;
}
@media (max-width: 768px) {
	.box{
    height:350px;
    margin-bottom:50px;
  }
  }

/*---------------datepicker----------------*/
.vdp-datepicker{
	max-width:300px;

}
.vdp-datepicker__calendar{
	max-width:300px;
	min-width:200px;
	width:96% !important;
	margin:5px auto;
}
/*----------------grid-----------------*/
.hooper{
	width:86%;
	height:auto;
	margin:0 auto;
}
.hooper-list {
	background-color:#dfdfdf;
	padding:8px 8px 0 8px;
	border:solid 1px #193064;
}
/* .hooper-slide{
	padding-right:30px;
} */
.archive{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content:left;
}
  .data-wrapper {
	background: #fff;
	border-bottom: 1px solid #0004;
	box-sizing:border-box;
	filter: drop-shadow(0 1px 3px #0004);
	position: relative;
	font-weight: bold;
	color: #333;
	transition:.2s;
	padding-bottom:15px;
	border:2px solid #193064;
	width:32%;
	height:fit-content;
	margin-left:10px;
	margin-bottom:35px;
  }
  .data-wrapper-slide{
	  width:calc(100% - 20px);
	  margin-bottom:0;
  }
  .data-wrapper.is-hide{
    display:none;
  }
  .data-wrapper:hover{
	  filter:none;
  }
  .termination-data-wrapper{
	width:23%;
  }
  @media (max-width: 768px) {
	.data-wrapper {
	  width:94%;
  }
  .archive{
    margin:0 auto;
  }
  }
  div[class^='g-'] {
	width: 94%;
	margin:auto;
  }
  div.g-img {
	  width:100%;
	  margin:0;
	  grid-area: img;
  }
  .g-category {
    grid-area: category;
    padding:12px 0;
  }
  .g-category span{
	font-size:13px;
	font-weight:normal;
	color:#fff;
	background-color:#df3737;
  padding:2px 15px;
	border-radius:15px;
  line-height:1.5em;
  }
  .g-category p{
    float:right;
    font-size:13px;
    color:#df3737;
    border:#df3737 1px solid;
    padding:2px 15px;
	margin-right:2px;
    line-height:1.5em;
    }

  .g-img img{
	  width:100%;
	  height:auto;
	  max-height:100px;
	  object-fit: contain;
  }
  .g-schedule {
	  grid-area: schedule;
    font-size:15px;
    border-bottom:2px dotted #ddd;
    padding-top:5px;
    padding-bottom:10px;
  }
  .g-title {
	  grid-area: title;
	  font-size:18px;
	  margin:0 10px;
    padding:2px 0;
    line-height:22px;
  }
  .g-genre {
    grid-area: genre;
    padding:6px 0;
  }
  .g-genre span{
	font-size:13px;
	font-weight:normal;
	color:#fff;
	background-color:#193064;
	padding:2px 15px;
	border-radius:15px;
  line-height:2em;
  margin-right:5px;
  }


  .g-deadline {
	  grid-area: deadline;
	  font-size:15px;
	  line-height:1.4em;
  }

  .g-host {
	  grid-area: link;
	  font-size:15px;
	  display: flex;
    justify-content: space-around;
    padding-bottom:10px;
  }
  .g-host a{
	  width:94%;
	  color:#fff;
	  border-radius: 12px;
	  border:2px solid #193064;
	  text-align: center;
	  background-color:#df3737;
	  padding:12px 0;
	  filter: drop-shadow(0 3px 0 #193064);
  }
  .g-host a:last-child{
	  color:#333;
	  background-color: #f4d711;
  }
  .g-host a:hover{
	  opacity:.7;
  }

  .g-link {
	  grid-area: link;
	  font-size:15px;
	  display: flex;
	  justify-content:space-between;
  }
  .g-link a.close {
	  width:47%;
	  color:#fff;
	  border-radius: 12px;
	  border-bottom:1px solid #193064;
	  text-align: center;
	  background-color:#4d4d4d;
	  padding:12px 0;
	  filter: drop-shadow(0 3px 0 #193064);
  }
  .g-link a.open {
	  width:47%;
	  color:#000;
	  border-radius: 12px;
	  border:1px solid #193064;
	  text-align: center;
	  background-color:#fff;
	  padding:12px 0;
	  filter: drop-shadow(0 3px 0 #193064);
  }
  .g-link a.moushikomi{
    width:47%;
	  border-radius: 12px;
	  border-bottom:1px solid #193064;
	  text-align: center;
	  padding:12px 0;
	  filter: drop-shadow(0 3px 0 #193064);
	  color:#fff;
	  background-color: #df3737;
  }
  .g-link a.open:hover,
  .g-link a.moushikomi:hover{
	  opacity:.7;
  }
/*-----------footer------------*/
.footer h2{
	font-size:1.4em;
	margin-bottom:20px;
}
.footer h3{
	font-size:.9em;
	margin-bottom:10px;
}
.footer p{
	font-size:.9em;
	margin-bottom:10px;
}
.footer .copyright{
	color:#666;
	font-size:.7em;
	text-align: center;
	padding:20px 0;
}
/*-----------infomation------------*/
.infomation{
	background:#df3737;
	padding:8px 0;
	text-align: center;
}
.infomation a{
	color:#ffe643;
	font-weight:bold;
	font-size:18px;
}
/*---------lightbox----------*/

.gallery {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
  }
  .gallery-item a {
	display: block;
	position: relative;
  }
  .gallery-item img {
	vertical-align: bottom;
  }
  .gallery-item-hover {
	display: flex;
	background: rgba(0, 0, 0, .6);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.2s;
  }
  .gallery-item-hover:hover {
	opacity: 1;
  }
  .gallery-item-hover i {
	color: #fff;
	font-size: 40px;
  }
  .nav-red span{
    font-size:10px;
  }
  .bg {
	position: fixed;
	display: flex;
	background: rgba(0, 0, 0, .8);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index:999;
  }
  .img-wrapper{
	overflow-y: auto;
    max-height: 90vh;
  }
  .modal {
	position: relative;
	cursor: default;
	max-width: 90%;
  }
  .modal img {
	border: 3px solid #fff;
  }
  .modal-btn {
	position: absolute;
	top: -25px;
	right: -25px;
	background: #111;
	color: #fff;
	border-radius: 50%;
	font-size: 20px;
	border: 3px solid #fff;
	width: 50px;
	height: 50px;
	padding: 0;
	display: flex;
	justify-content: center;
    align-items: center;
  }
  .modal-btn:hover,
  .modal-btn:focus,
  .modal-btn:active {
	border-color: #fff;
  }
  .fade-enter-active, .fade-leave-active {
	transition: opacity .5s ease;
  }
  .fade-enter, .fade-leave-to {
	opacity: 0;
  }
  .slide-enter-active, .slide-leave-active {
	transition: top .5s ease;
	top: 0;
  }
  .slide-enter {
	top: -100px;
  }
  .slide-leave-to {
	top: 300px;
  }

/*============*/
/*-----------slide------------*/
.carousel-wrapper{
	overflow: hidden;
	position: relative;
	background-color: #dfdfdf;
	padding: 8px 8px 0 8px;
	border: solid 1px #193064;
  }
  .carousel-inner{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	transition: all 1.2s ease-out 0s;
  }
  .carousel-item{
	flex-shrink: 0;
	display: flex;
	justify-content: center;
  }
  .slide-btn{
	  font-size: 18px;
	  line-height:40px;
	  position: absolute;
	  z-index: 99;
	  background-color:#333;
	  color:#fff;
  }
  .prev{
	  left:0;
	  top:50%;
  }
  .next{
	  right:0;
	  top:50%;
  }