@charset "UTF-8";

/* ▼▼▼ イベントページ
====================================================== */
.event_wrap{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
}
.event_block{
	margin-bottom: 20px;
	background: #fff;
	border: #EF9D3F 2px solid;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.event_block.event_end > *{
	opacity: 0.15;
	pointer-events: none;
}
.event_block.event_end::after{
	content: '終了しました';
	width: 180px;
	background: #A95D45;
	padding: 10px 0;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	opacity: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.event_block:nth-child(1){
	-webkit-order: 1;
	-ms-order: 1;
	order: 1;
}
.event_block:nth-child(2){
	-webkit-order: 2;
	-ms-order: 2;
	order: 2;
}
.event_block:nth-child(3){
	-webkit-order: 3;
	-ms-order: 3;
	order: 3;
}
.event_block:nth-child(4){
	-webkit-order: 4;
	-ms-order: 4;
	order: 4;
}
.event_block:nth-child(5){
	-webkit-order: 5;
	-ms-order: 5;
	order: 5;
}
.event_block.event_end:nth-child(1){
	-webkit-order: 11;
	-ms-order: 11;
	order: 11;
}
.event_block.event_end:nth-child(2){
	-webkit-order: 12;
	-ms-order: 12;
	order: 12;
}
.event_block.event_end:nth-child(3){
	-webkit-order: 14;
	-ms-order: 14;
	order: 14;
}
.event_block.event_end:nth-child(4){
	-webkit-order: 15;
	-ms-order: 15;
	order: 15;
}
.event_block.event_end:nth-child(5){
	-webkit-order: 13;
	-ms-order: 13;
	order: 13;
}

.event_show_area{
	padding: 50px;
}
.event_top{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.event_top .img_wrap{
	-webkit-flex: 0 0 40%;
	-ms-flex: 0 0 40%;
	flex: 0 0 40%;
	width: 40%;
	max-width: 40%;
}
.event_top .txt_wrap{
	-webkit-flex: 0 0 55%;
	-ms-flex: 0 0 55%;
	flex: 0 0 55%;
	width: 55%;
	max-width: 55%;
}
.event_title{
	color: #DD614B;
	font-size: 30px;
	font-weight: 500;
}
.event_date{
	font-size: 30px;
	font-weight: 500;
}
.event_date span{
	font-size: 16px;
}
.event_date_attention{
	font-size: 14px;
}
.event_info{
	margin-top: 20px;
	font-size: 20px;
	font-weight: 500;
}
.event_info tr:not(:last-child) th,
.event_info tr:not(:last-child) td{
	padding-bottom: 5px;
}
.event_info th{
	width: 110px;
	font-weight: 500;
}
.event_info th span{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	width: 100px;
	height: 30px;
	border-radius: 15px;
	border: #DD614B 1px solid;
	color: #DD614B;
	font-size: 16px;
	line-height: 1;
}
.event_read{
	font-size: 14px;
	text-align: center;
}
.event_read:not(:last-child){
	margin-bottom: 15px;
}
.event_more_area{
	display: none;
	padding: 0 50px 50px;
}
.event_more_area .ribbon_title{
	margin-bottom: 20px;
}
.event_more_area .event_read:not(:last-child){
	margin-bottom: 25px;
}
.event_more{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	height: 65px;
	background: #DD614B;
	color: #FFF;
	font-size: 16px;
	position: relative;
	cursor: pointer;
}
.event_more::before,
.event_more::after{
	content: '';
	width: 16px;
	height: 1px;
	background: #FFF;
	position: absolute;
	top: calc(50% - 0.5px);
	right: 30px;
}
.event_more.event_more_open::before{
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.event_more.event_more_open span::before{
	content: 'MORE';
}
.event_more.event_more_close span::before{
	content: 'CLOSE';
}

.reserve_box{
	margin-top: 20px;
	padding: 10px;
	border: #DD614B 1px solid;
	border-radius: 5px;
}
.reserve_box .reserve_title{
	margin-bottom: 5px;
	color: #DD614B;
	font-size: 16px;
	font-weight: 500;
}
.reserve_date_list{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}
.reserve_date_list li{
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	width: 50%;
	max-width: 50%;
	font-size: 12px;
}
.event_read_kome{
	max-width: 550px;
	margin: 0 auto;
	font-size: 10px;
}
.event_read_kome_list li{
	display: inline-block;
}
.design_list,
.design_history{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}
.design_list{
	margin: 0 -10px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.video_list_after{
	display: none;
}
.design_list_top{
	counter-reset: design;
}
.design_list li{
	-webkit-flex: 0 0 25%;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	width: 25%;
	max-width: calc(25% - 20px);
	margin: 0 10px 20px;
}
.design_list li::before{
	counter-increment: design;
	content: counter(design);
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	width: 70px;
	height: 35px;
	margin: 0 auto;
	border-radius: 35px 35px 0 0;
	background: #DD614B;
	color: #FFF;
	font-size: 18px;
	font-family: 'Kiwi Maru', serif;
}
.design_list li a{
	display: block;
}
.design_list li .img_inner{
	padding-top: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.design_list li .txt_wrap{
	margin-top: 5px;
}
.design_list li .design_title,
.design_list li .video_title{
	font-size: 16px;
}
.design_list li .video_title{
	text-decoration: underline;
}
.design_list li .design_info,
.design_list li .video_info{
	margin-top: 5px;
	font-size: 12px;
}
.design_list li .video_creater{
	margin-top: 5px;
	padding-top: 5px;
	border-top: #000000 1px dotted;
	font-size: 12px;
}
.design_list li a{}
.design_history{
	justify-content: space-between;
}
.design_history li{
	-webkit-flex: 0 0 32%;
	-ms-flex: 0 0 32%;
	flex: 0 0 32%;
	width: 32%;
	max-width: 32%;
}
.event_mini_title{
	margin: 40px auto 20px;
	font-size: 20px;
	text-align: center;
}
.event_more_blcok:not(:last-child){
	margin-bottom: 65px;
}
.event_date.event_date_center{
	text-align: center;
}
.event_date.event_date_small{
	font-size: 24px;
}
.event_date.event_date_small span{
	font-size: 14px;
}

.event_bottom{
	padding: 470px 0 0;
	background:
	linear-gradient(rgba(199,216,101,0) 0%,rgba(199,216,101,0) 500px,rgba(199,216,101,1) 500px,rgba(199,216,101,1) 100%),
	url(../img/top/bg_bottom_bush.png) repeat-x center top 445px/739px,
	url(../img/event/bg_bottom_mio_pc.png) no-repeat right top 120px/618px,
	url(../img/top/bg_bottom_cloud.png) repeat-x center top 215px/639px,
	linear-gradient(rgba(255,255,255,0) 0%,rgba(255,255,255,0) 300px,rgba(255,255,255,1) 300px,rgba(255,255,255,1) 100%);
	position: relative;
}
.event_bottom::after{
	content: '';
	width: 48.2vw;
	height: 45.9vw;
	max-width: 659px;
	max-height: 628px;
	background: url(../img/event/bg_bottom_chara_pc.png) no-repeat center center/contain;
	position: absolute;
	top: calc(50% - 20px);
	right: 47.2vw;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
	.design_list li a:hover .video_title{
		text-decoration: none;
	}
}

/* ▼▼▼ 480px〜768px
======================================================*/
@media screen and (max-width: 768px) {

	.event_wrap{
		margin-bottom: 35px;
	}
	.event_show_area{
		padding: 28px;
	}
	.event_top{
		display: block;
		margin-bottom: 15px;
	}
	.event_top .img_wrap,
	.event_top .txt_wrap{
		width: 100%;
		max-width: 100%;
	}
	.event_top .img_wrap{
		margin-bottom: 10px;
	}
	.event_title{
		font-size: 22px;
		text-align: center;
	}
	.event_date{
		font-size: 22px;
		text-align: center;
	}
	.event_date span{
		font-size: 12px;
	}
	.event_date_attention{
		font-size: 12px;
		text-align: center;
	}
	.event_info{
		margin-top: 15px;
		font-size: 13px;
	}
	.event_info th{
		width: 80px;
	}
	.event_info th span{
		width: 75px;
		height: 22px;
		border-radius: 11px;
		font-size: 12px;
	}
	.event_info .event_date{
		text-align: left;
	}
	.event_read{
		font-size: 12px;
		text-align: left;
	}
	.event_read.event_read_sp_center{
		text-align: center;
	}
	.event_read:not(:last-child){
		margin-bottom: 15px;
	}
	.event_more_area{
		display: none;
		padding: 0 28px 28px;
	}
	.event_more{
		height: 45px;
	}
	.event_more::before,
	.event_more::after{
		width: 14px;
		right: 20px;
	}

	.reserve_box{
		padding: 10px 15px;
	}
	.reserve_box .reserve_title{
		text-align: center;
	}
	.reserve_date_list{
		display: block;
	}
	.reserve_date_list li{
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		font-size: 12px;
	}

	.event_read_kome_list li{
		display: block;
	}
	.design_list{
		justify-content: space-between;
		margin: 0;
	}
	.design_list li{
		-webkit-flex: 0 0 48%;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		width: 48%;
		max-width: 48%;
		margin: 0 0 20px;
	}
	.design_list li::before{
		width: 40px;
		height: 20px;
		border-radius: 20px 20px 0 0;
		font-size: 14px;
	}
	.design_list li .video_title{
		text-decoration: underline;
		font-size: 13px;
	}
	.design_list li .video_info{
		font-size: 11px;
	}
	.design_list li .video_creater{
		font-size: 10px;
	}
	.design_history{
		display: block;
	}
	.design_history li{
		width: auto;
		max-width: 100%;
	}
	.event_mini_title{
		margin: 5px auto 15px;
		font-size: 16px;
	}
	.event_more_blcok:not(:last-child){
		margin-bottom: 50px;
	}
	.event_date.event_date_small{
		font-size: 14px;
	}
	.event_date.event_date_small span{
		font-size: 10px;
	}

	.event_bottom{
		padding: 270px 0 0;
		background:
		linear-gradient(rgba(199,216,101,0) 0%,rgba(199,216,101,0) 300px,rgba(199,216,101,1) 300px,rgba(199,216,101,1) 100%),
		url(../img/top/bg_bottom_bush.png) repeat-x center top 250px/500px,
		url(../img/event/bg_bottom_mio_sp.png) no-repeat right -25px top 85px/288px,
		url(../img/top/bg_bottom_cloud.png) repeat-x center top 130px/420px,
		url(../img/event/bg_bottom_sp.png) no-repeat center top 40px/94.5%,
		linear-gradient(rgba(255,255,255,0) 0%,rgba(255,255,255,0) 200px,rgba(255,255,255,1) 200px,rgba(255,255,255,1) 100%);
		position: relative;
	}
	.event_bottom::after{
		width: 81.1vw;
		height: 71.1vw;
		max-width: 304px;
		max-height: 267px;
		background: url(../img/event/bg_bottom_chara_sp.png) no-repeat center center/contain;
		top: calc(50% - 75px);
		right: 18.1vw;
	}
}
