
/* 탭 영역 */
.tabArea {
	border-top: 1px solid #bebebe;
	border-left: 1px solid #bebebe;
	margin-bottom: 28px;
	display: flex;
	flex-wrap: wrap;
}
.tabArea .tab {
	border-right: 1px solid #bebebe;
	border-bottom: 1px solid #bebebe;
	text-align: center;
	flex-basis: 50%;
}
.tabArea .tab a {
	display: flex;
	width: 100%;
	height: 48px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	color: #000000;
}
.tabArea .tab.selected {
	border: 1px solid #000000;
}
.tabArea .tab.selected a {
}
.tabArea .tab a:hover {
	background-color: #f8f8f8;
}
@keyframes selectTab {
	0% {
		border-bottom-width: 0;
	}
	100% {
		border-bottom-width: 5px;
	}
}

@media (min-width: 992px) {
	.tabArea {
		border-top: 1px solid #bebebe;
		border-left: 1px solid #bebebe;
		margin-bottom: 28px;
		display: flex;
		flex-wrap: nowrap;
	}
	.tabArea .tab {
		border-right: 1px solid #bebebe;
		border-bottom: 1px solid #bebebe;
		text-align: center;
		flex-basis: auto;
		flex-grow: 1;
	}
	.tabArea .tab a {
		display: flex;
		width: 100%;
		height: 48px;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		font-size: 18px;
		font-weight: 700;
		color: #000000;
	}
	.tabArea .tab.selected {
		border: 0;
		border-right: 1px solid #bebebe;
		border-bottom: 1px solid #bebebe;
	}
	.tabArea .tab.selected a {
		border-bottom: 5px solid #ffc341;
	}
	.tabArea .tab a:hover {
		animation-name: selctTab;
		animation-duration: 2s;
		animation-iteration-count: 1;
		animation-timing-function: ease;
		border-bottom-style: solid;
		border-bottom-color: #999999;
	}
}

@media (min-width: 1400px) {
	.tabArea {
		border-top: 1px solid #bebebe;
		border-left: 1px solid #bebebe;
		margin-bottom: 28px;
		display: flex;
		flex-wrap: nowrap;
	}
	.tabArea .tab {
		border-right: 1px solid #bebebe;
		border-bottom: 1px solid #bebebe;
		text-align: center;
		flex-basis: auto;
		flex-grow: 1;
	}
	.tabArea .tab a {
		display: flex;
		width: 100%;
		height: 48px;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		font-size: 18px;
		font-weight: 700;
		color: #000000;
	}
	.tabArea .tab.selected {
		border: 0;
		border-right: 1px solid #bebebe;
		border-bottom: 1px solid #bebebe;
	}
	.tabArea .tab.selected a {
		border-bottom: 5px solid #ffc341;
	}
	.tabArea .tab a:hover {
		animation-name: selctTab;
		animation-duration: 2s;
		animation-iteration-count: 1;
		animation-timing-function: ease;
		border-bottom-style: solid;
		border-bottom-color: #999999;
	}
}


/* 내용 섹션 공통 */
.infoBox {
	border: 1px solid #cccccc;
	margin-bottom: 40px;
}
.infoTop {
	background-color: #f6f7f9;
	padding: 25px 10px 30px 25px;
}
.infoTitle {
	font-size: 24px;
	line-height: 30px;
	font-weight: 800;
	margin-bottom: 16px;
}
.infoText {
	font-size: 18px;
	line-height: 26px;
	color: #3b3a3a;
}
.infoBottom {
	padding: 20px 20px 20px 20px;
}
.infoPrice {
	font-size: 20px;
	font-weight: 700; 
	
}
.infoPrice span {
	color: #f46110;
}
.infoButton {
	text-align: center;
}
a.infoReservation {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #ffc341;
	width: 200px;
	height: 40px;
	border-radius: 20px;
	text-decoration: none;
	color: #000000;
	font-size: 16px;
	font-weight: 700;
}
a.infoReservation i {
	display: inline-block;
	background-color: #575757;
	color: #ffffff;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	line-height: 28px;
	text-align: center;
	margin-left: 30px;
	font-weight: 800;
}
.special_list ul {
	padding-left: 15px;
}
.special_list li {
	font-size: 18px;
	line-height: 160%;
	color: #434343;
}
.special_list li.point {
	font-weight: 700;
	color: #e86633;
}

@media(min-width: 992px) {
	.infoBox {
		border: 1px solid #cccccc;
		margin-bottom: 90px;
	}
	.infoTop {
		background-color: #f6f7f9;
		padding: 35px 20px 50px 50px;
	}
	.infoTitle {
		font-size: 28px;
		line-height: 42px;
		font-weight: 800;
		margin-bottom: 20px;
	}
	.infoText {
		font-size: 18px;
		line-height: 34px;
		color: #3b3a3a;
	}
	.infoBottom {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 40px 20px 50px;
	}
	.infoPrice {
		font-size: 20px;
		font-weight: 700; 
	}
	.infoPrice span {
		color: #f46110;
	}
	.infoButton {
		text-align: left;
	}
	a.infoReservation {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		background-color: #ffc341;
		width: 200px;
		height: 46px;
		border-radius: 23px;
		text-decoration: none;
		color: #000000;
		font-size: 18px;
		font-weight: 700;
	}
	a.infoReservation i {
		display: inline-block;
		background-color: #575757;
		color: #ffffff;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		line-height: 34px;
		text-align: center;
		margin-left: 40px;
		font-weight: 800;
	}
}
@media(min-width: 1400px) {
	.infoBox {
		border: 1px solid #cccccc;
		margin-bottom: 70px;
	}
	.infoTop {
		background-color: #f6f7f9;
		padding: 35px 20px 50px 50px;
	}
	.infoTitle {
		font-size: 28px;
		line-height: 42px;
		font-weight: 800;
		margin-bottom: 20px;
	}
	.infoText {
		font-size: 18px;
		line-height: 34px;
		color: #3b3a3a;
	}
	.infoBottom {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 40px 20px 50px;
	}
	.infoPrice {
		font-size: 20px;
		font-weight: 700; 
	}
	.infoPrice span {
		color: #f46110;
	}
	.infoButton {
		text-align: left;
	}
	a.infoReservation {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		background-color: #ffc341;
		width: 200px;
		height: 46px;
		border-radius: 23px;
		text-decoration: none;
		color: #000000;
		font-size: 18px;
		font-weight: 700;
	}
	a.infoReservation i {
		display: inline-block;
		background-color: #575757;
		color: #ffffff;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		line-height: 34px;
		text-align: center;
		margin-left: 40px;
		font-weight: 800;
	}
}

/* 주의사항 */
.bang_warning_section {
	margin-top: 100px;
}
.bang_warning_section .warning_list {
	margin-bottom: 100px;
}
.bang_warning_section .warning_list li {
	font-size: 16px;
	line-height: 160%;
	font-weight: 400;
}


/* 하단 정보 스타일 */

.binfo_box {
	background-color: #e3e9f1;
	border-left: 10px solid #1948bb;
	padding: 20px 36px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 10px;
	font-size: 16px;
}
.binfo_box i {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	color: #254daf;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	margin: 10px 15px 10px 0;
}
.binfo_box .binfo_title {
	font-size: 18px;
	font-weight: 700;
	margin-right: 20px;
}
.binfo_box .binfo_text {
}
.binfo_box .point {
	font-size: 20px;
	font-weight: 800;
	color: #254daf;
}