@charset "utf-8";

#sec_hall{
	padding-top: 100px;
	padding-bottom: 100px;
}

.hall_list .item{
	display: flex;
	background-color: #fff;
	transition: 0.6s;
}
.hall_list .item:hover{
	opacity: 0.8;
	text-decoration: none;
}
.hall_list .item + .item{
	margin-top: 20px;
}
.hall_list .item.arrow_white::before{
	top: auto;
	bottom: 40px;
	left: auto;
	right: 40px;
}
.hall_list .item.arrow_white::after{
	top: auto;
	bottom: 41px;
	left: auto;
	right: 49px;
}
.hall_list .item .item_img{
	max-width: 45.83%;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 550/300;
	text-align: center;
}
.hall_list .item .item_img img{
	display: inline-block;
	height: 100%;
	object-fit: cover;
}
.hall_list .item .item_txt{
	padding: 25px 20px;
}
.hall_list .item .item_txt h2{
	font-size: 28px;
	margin-bottom: 20px;
	border-bottom: none;
}
.hall_list .item .item_txt h2 span{
	font-size: 22px;
	margin-right: 5px;
}
.hall_list .item .item_txt > p,
.hall_list .item .item_txt .item_txt_num{
	margin-left: 30px;
}
.hall_list .item .item_txt .item_txt_num{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.hall_list .item .item_txt .item_txt_num p{
	margin-right: 1em;
}

@media screen and (max-width: 1023px){
	.hall_list .item.arrow_white::before{
		bottom: 20px;
		right: 20px;
	}
	.hall_list .item.arrow_white::after{
		bottom: 21px;
		right: 29px;
	}
}
@media screen and (max-width: 767px){
	#sec_hall{
		padding-top: 40px;
		padding-bottom: 80px;
	}
	.hall_list .item .item_txt{
		padding: 15px;
	}
	.hall_list .item .item_txt h2{
		font-size: 22px;
		margin-bottom: 10px;
	}
	.hall_list .item .item_txt h2 span{
		font-size: 16px;
		margin-right: 5px;
	}
}
@media screen and (max-width: 680px){
	.hall_list .item{
		display: block;
		max-width: 550px;
		margin: 0 auto;
	}
	.hall_list .item .item_img{
		max-width: 100%;
	}
	.hall_list .item .item_txt{
		padding: 5px 15px 15px 15px;
	}
	.hall_list .item .item_txt h2{
		margin-bottom: 5px;
	}
	.hall_list .item .item_txt > p,
	.hall_list .item .item_txt .item_txt_num{
		margin-left: 0;
	}
	.hall_list .item .item_txt .item_txt_num{
		margin-left: 0;
		padding-right: 45px;
	}
}