/*** inport ***/
@import "setting.css";
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,400i,600,600i&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600&display=swap");
/***********
** LAYOUT **
***********/

@media screen and (-webkit-min-device-pixel-ratio:0){
  .fo{
    text-shadow: 0 0 0.1px rgba(51,51,51,0.2);
  }
}
img{
	max-width:100%;
}
.alpha img:hover{
	opacity:0.85;
}
ul{
	list-style-type:none;
}
.red{ color:#ff0000; }
.gray{ color:#808000; }
.pink{ color:#ff6699; }
.bold500{ font-weight:500; }
.bold{ font-weight:600; }
.fo120{ font-size:1.2rem; }
.fo130{ font-size:1.3rem; }
.tC{ text-align:center; }
.tR{ text-align:right; }
.tL{ text-align:left; }
.mt10{ margin-top:10px; }
.mt15{ margin-top:15px; }
.mt20{ margin-top:20px; }
.mb10{ margin-bottom:10px; }
.mb15{ margin-bottom:15px; }
.mb20{ margin-bottom:20px; }
.ml20{ margin-left:20px; }
.p10{ padding:10px; }
.min{font-family: "Noto Serif JP", serif;}
s.redline{
	text-decoration: line-through;
	text-decoration-color: red;
	font-size:1.1rem;
}
/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 10px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
/***********
** HERDER **
***********/
header{
	padding:15px 0 0 10px;
}
#page.entry-page header{
	padding:0;
}
@media screen and (max-width: 480px){
	header{
		padding:40px 0 0 0;
	}
}
.menu{
	text-align:right;
	background:#fff;
	display:flex;
	justify-content: center;
	align-items: center;
}
.menu ul{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-end;
}
.menu ul li{
	padding:0 15px 10px;
}
.menu ul li a{
	text-decoration:none;
	color:#333;
}
.menu ul li a:before{
	content:url(../img/arrow.png) ;
	padding-right:8px;
}
.menu ul li a:hover{
	color:#808080;
}

@media screen and (max-width: 896px){
	
}
@media screen and (max-width: 480px){
	.menu{
		display:none;
	}
}

/*============
** MAIN **  
============*/
.pc{
	display:block;
}
.sp{
	display:none;
}
@media screen and (max-width: 480px){
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
}

.date img{
	margin:0 30px;
}

@media screen and (max-width: 480px){
	.date{
		margin-top:20px;
	}
	.date img{
		margin:0 10px;
	}
	.date .sp li:nth-child(1){
		width:280px;
		margin:0 auto 10px;
	}
	.date .sp li:nth-child(2){
		width:250px;
		margin:0 auto 10px;
	}
	.date .sp li:nth-child(3){
		width:270px;
		margin:0 auto 10px;
	}
	.date .sp li:nth-child(4){
		width:140px;
		margin:0 auto ;
	}
}
.entry{
	padding:20px 30px 10px;
}
@media screen and (max-width: 480px){
	.entry{
		padding:15px 10px 0;
	}
}
.car{
	padding:0 30px;
}
@media screen and (max-width: 480px){
	.car{
		padding:20px 10px 0;
	}
	.car .sp li{
		margin-bottom:10px;
	}
}

.youtube{
	background:url(../img/youtube-bg.png) no-repeat;
	background-size:cover;
}
.youtube .flex-wrap{
	display:flex;
}

.youtube .flex-box:first-child{
	width:20%;
}
.youtube .flex-box:last-child{
	width:80%;
}
.youtube ul{
	display:flex;
	padding:0;
}
.youtube ul li{
	width:33%;
	padding:10px;
	padding-top:30px;
}
/*.youtube ul li:nth-child(1){
	width:20%;
	padding:0;
}*/
@media screen and (max-width: 480px){
	.youtube ul{
		flex-wrap:wrap;
		padding:0 5px;
	}
	.youtube ul li{
		width:50%;
		padding-top:0;
		padding:5px;
	}
	.youtube ul li:nth-child(1){
		width:50%;
		text-align:center;
	}
	.youtube ul li:nth-child(1) img{
		width:70%;
	}
	.youtube .flex-box:last-child{
		width:100%;
	}
}
.event{
	padding:0 30px;
}
.event ul{
	display:flex;
	flex-wrap:wrap;
	margin:20px auto;
	max-width:1200px;
}
.event ul li{
	width:33%;
	padding:5px;
}
.event ul li a img:hover{
	opacity: 0.8;
}
.event .schedule-boad div{
	text-align:center;
}
.event .schedule-boad img{
	width:80%;
}


@media screen and (max-width: 480px){
	.event{
		padding:0 10px;
	}
	.event ul{
		display:block;
	}
	.event ul li{
		width:100%;	
	}
	.event .schedule-boad img{
		width:100%;
	}
}
.sponsored{
	padding:15px 30px;
}
.sponsored a{
	text-decoration:none;
	color:#3366cc;
	font-weight:500;
}
.sponsored .cont1 .flex-wrap{
	display:flex;
	width:90%;
}
.sponsored .cont1 .flex-wrap .flex-box:first-child{
	width:30%;
}
.sponsored .cont1 .flex-wrap .flex-box:last-child{
	width:70%;
}
.sponsored .cont2{
	width:20%;
}
.sponsored .cont3{
	max-width:21%;
}

.sponsored ul.flex-wrap{
	display:flex;
	flex-wrap:wrap;
}
.sponsored ul.flex-wrap li{
	width:220px;
	padding:5px;
}
.sponsored ul.flex-wrap li img{
	border:1px solid #ddd;
}
.sponsored ul.list{
	display:flex;
	flex-wrap:wrap;
}
.sponsored ul.list li{
	padding:3px 10px;
	margin:0 0 10px;
	border-left:1px solid #ccc;
}
@media screen and (max-width: 896px){
	.sponsored .cont1 .flex-wrap{
		display:block;
		width:100%;
	}
	.sponsored .cont2{
		width:23%;
	}
}

@media screen and (max-width: 480px){
	.sponsored{
		padding:15px 10px;
	}
	.sponsored .sp li:nth-child(2){
		text-align:center;
		padding:10px;
		border-top:1px solid #ccc;
	}
	.sponsored .cont1 img{
		width:100%;
	}
	.sponsored .cont2{
		width:45%;
	}
	.sponsored .cont3{
		max-width:44%;
	}
	.sponsored ul.flex-wrap li{
		width:50%;
	}
	
	.sponsored .cont1 .flex-wrap .flex-box:first-child{
		width:60%;
	}
	.sponsored .cont1 .flex-wrap .flex-box:last-child{
		width:100%;
	}
}

/**********************************************/
#page.entry-page header{
	
	background:#1e120d;
}
#page.entry-page .main{
	padding:20px;
	background:#f1e8d6;
}
@media screen and (max-width: 480px){
	#page.entry-page .main{
		padding:10px;
	}
}
#page.entry-page .list{
	padding:20px;
}
#page.entry-page .list dl{
	display:flex;
	padding:10px;
	border-bottom:2px dotted #1e120d;
	transition: all .3s;
}
#page.entry-page .list dl dt{
	width:13%;
}
#page.entry-page .list dl dd{
	width:87%;
}
#page.entry-page .Precautions{
	padding:20px;
}
#page.entry-page .Precautions h2{
	font-weight:400
}
#page.entry-page .Precautions p{
	padding:15px;
	line-height:1.8;
}
@media screen and (max-width: 896px){
	#page.entry-page .list dl dt{
		width:20%;
	}
	#page.entry-page .list dl dd{
		width:80%;
	}
}
@media screen and (max-width: 560px){
	#page.entry-page .list dl dt{
		width:25%;
	}
	#page.entry-page .list dl dd{
		width:75%;
	}
}
@media screen and (max-width: 480px){
#page.entry-page .Precautions{
		padding:20px 0 0;
	}
	#page.entry-page .Precautions p{
		padding:0px;
	}
}

#page.entry-page .entry-form{
	max-width:60%;
	margin:15px auto;
}
#page.entry-page .entry-form p{
	text-align:center;
}
#page.entry-page .entry-form a{
	display:block;
	font-size:1.8rem;
	padding:15px 30px;
	color:#fff;
	text-decoration:none;
	background:#1e120d;
	border-radius:3px;
}
#page.entry-page .entry-form a:hover{
	background:#442e25;
}
@media screen and (max-width: 480px){
	#page.entry-page .entry-form{
		max-width:100%;
	}
	#page.entry-page .entry-form a{
	display:block;
	font-size:1.4rem;
		padding:15px 15px;
	}
	#page.entry-page .list{
		padding:0px;
	}
	#page.entry-page .list dl{
		display:block;
		padding:10px;
	}
	#page.entry-page .list dl dt{
		width:100%;
	}
	#page.entry-page .list dl dd{
		width:100%;
	}
}
/**********************************************/

#page footer{
	
	/*background:#f1e8d6;*/
}
footer .inner{
	padding:15px 30px;
	text-align:right;
}

@media screen and (max-width: 480px){
	footer{
		padding:15px;
		text-align:center;
	}
}

/*============
** PAGE **  
============*/
#page header{
	padding:0;
}
#page{
	margin:0 auto;
	background:url(../img/bg-dots.png) repeat #f3e2cd;
}
#page header h1{
	padding:10px;
}
#page header h1 img{
	width:150px;
}
#page header h2{
	text-align:center;
	padding:20px 10px;
}
#page .main{
	max-width:1200px;
	margin:0 auto;
}
.local-idol .main ul{
	display:flex;
	flex-wrap:wrap;
}
.local-idol .main ul li{
	padding:5px;
	width:25%;
}

@media screen and (max-width: 480px){
	.local-idol .main ul li{
		padding:5px;
		width:50%;
	}
}
.kids-dance .main ul{
	display:flex;
	flex-wrap:wrap;
}
.kids-dance .main ul li{
	width:25%;
	padding:10px;
}
@media screen and (max-width: 480px){
	.kids-dance .main ul{
		display:block;
	}
	.kids-dance .main ul li{
		width:100%;
	}
}

.work-shop .main ul{
	display:flex;
	flex-wrap:wrap;
}
.work-shop .main ul li{
	width:32%;
	padding:5px 5px 10px;
	margin:0.5%;
	background:#fff;
}
.work-shop .main ul li a{
	text-decoration:none;
	color:#333;
}
@media screen and (max-width: 480px){
	.work-shop .main ul{
		display:block;
	}
	.work-shop .main ul li{
		width:100%;
		margin-bottom:5px;
	}
}
/*
.kichen-car .list{
	display:flex;
	flex-wrap:wrap;
}

.kichen-car .list dl{
	width:33%;
	padding:10px;
}
.kichen-car .list dl dt{
	font-weight:600;
	color:#fff;
	padding:5px 10px;
	background:#0099ff;
	border-radius:5px 5px 0 0;
}
.kichen-car .list dl dd{
	padding:20px;
	background:#fff;
	border-radius:0 0 5px 5px;
}*/
.kichen-car .item{
	background:#fff;
	padding:15px;
	margin:0 0 10px;
	border-radius:5px;
}


.kichen-car .item .ttl{
	font-weight:600;
	color:#fff;
	background:#0099ff;
	margin:0 10px;
	padding:3px 10px;
}
.kichen-car .item ul{
	display:flex;
	margin:0 10px;
}
.kichen-car .item ul li{
	width:25%;
	padding:5px;
}


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

.booth .list{
	display:flex;
	flex-wrap:wrap;
}
.booth .list dl{
	padding:10px;
	width:50%;
}
.booth .list dl dt{
	font-size:1.3rem;
	font-weight:600;
	color:#fff;
	padding:5px 10px;
	background:#333;
	border-radius:5px 5px 0 0;
}
.booth .list dl dt a{
	color:#fff;
	text-decoration:none;
}
.booth .list dl dt span{
	font-size:1.0rem;
	margin-left:15px;
}
.booth .list dl dd a{
	display:block;
	padding:20px;
	background:#fff;
	border-radius:0 0 5px 5px;
	color:#333;
	text-decoration:none;
	transition: .3s;
}
.booth .list dl dd a:hover{
	color:#fff;
	background:#333;
}
.booth .flex-wrap{
	display:flex;
}
.booth .flex-wrap .flex-box:first-child{
	width:40%;
	padding:0 10px 10px 0;
}
.booth .flex-wrap .flex-box:first-child img{
	display:block;
	max-width:100%;
}
.booth .flex-wrap .flex-box:last-child{
	width:60%;
	font-size:1.1rem;
}
@media screen and (max-width: 896px){
	.booth .list{
		display:block;
	}
	.booth .list dl{
		width:100%;
	}
	.booth .list dl dt{
		text^align:center;
	}
	
}
@media screen and (max-width: 480px){
	
	.booth .flex-wrap .flex-box:first-child img{
		margin:0 auto;
	}
	.booth .flex-wrap{
		display:block;
	}
	.booth .flex-wrap .flex-box:first-child{
		width:100%;
		padding:0 10px 10px;
	}
	.booth .flex-wrap .flex-box:last-child{
		width:100%;
	}
	.booth .list dl dt span:before{
		content: "\A";
		white-space: pre;
	}
}








