.app {
}

body {
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	word-break: keep-all;
}

/* �뒪�겕濡ㅻ컮 �꽕�젙*/
body::-webkit-scrollbar {
	width: 6px;
}

/* �뒪�겕濡ㅻ컮 留됰� �꽕�젙*/
body::-webkit-scrollbar-thumb {
	height: 17%;
	background-color: #a5a19f;
	/* �뒪�겕濡ㅻ컮 �뫁湲�寃� �꽕�젙    */
	border-radius: 10px;
}

/* �뒪�겕濡ㅻ컮 �뮮 諛곌꼍 �꽕�젙*/
body::-webkit-scrollbar-track {
	background-color: #efe9e6;
}

.homepage-nav-container {
	width: 100%;
	max-width: 100vw;
	position: fixed;
	top: 0;
	z-index: 100;
	color: white;
	border-bottom: 1px solid white;
	background-color: transparent;
	transition: background-color 500ms;
}

.homepage-nav-container.down {
	color: #3f3c3a;
	border-color: transparent;
	background-color: white;
	transition: background-color 500ms;
	box-shadow: 0 2px 20px 0 rgb(0 0 0/ 0.12), 0 2px 9px 0 rgb(0 0 0/ 0.1);
}

.homepage-nav {
	max-width: 1400px;
	display: flex;
	margin: 20px auto;
	justify-content: space-between;
	font-size: 18px;
}

.homepage-nav-container .nav-logo {
	width: 372px;
	height: 52px;
	background-image: url("../images/navLogoWhite.png?250623");
	background-repeat: no-repeat;
}

.homepage-nav-container.down .nav-logo {
	background-image: url("../images/navLogo.png?250623");
}
.header-hamburger.down {
	background-image: url("../images/open-side-panel.png");
}

.nav-list {
	display: flex;
	align-items: center;
}

.nav-item {
	margin-left: 50px;
	cursor: pointer;
	line-height: 52px;
	font-weight: 600;
}

.nav-item span {
  font-weight: 600;
}

.nav-item.about {
	width: 70px;
	text-align: center;
}

.nav-item.viewpoint {
	width: 98px;
	text-align: center;
}

.nav-item.ticketinfo {
	width: 124px;
	text-align: center;
}

.nav-item.information {
	width: 124px;
	text-align: center;
	margin-right: 100px;
}

.nav-item.gallery {
	width: 72px;
	text-align: center;
}

.nav-item .eng {
	display: inline-block;
}

.nav-item .kor {
	display: none;
}

.nav-item:hover .eng {
	display: none;
}

.nav-item:hover .kor {
	display: inline-block;
}

.nav-item.ticket {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nav-item.ticket span {
	width: 150px;
	padding: 6px 12px;
	display: inline-block;
	color: #3f3c3a;
	text-align: center;
	line-height: 26px;
	border-radius: 16px;
	background: white;
	transition: all 500ms;
}

.nav-item.ticket span:last-child {
	font-weight: 800;
}

.homepage-nav-container.down .nav-item.ticket span {
	color: white;
	background: #3f3c3a;
	transition: all 500ms;
}

.homepage-nav-container.down .nav-item.ticket span:hover {
	background: #122a88;
}

.header-hamburger {
  display: none;
}

.main-section {
	width: 100%;
	height: 100vh;
	position: relative;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url("../images/mainImage.jpg?250709");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.main-section-text-wrapper {
	width: 100%;
	max-width: 1400px;
	height: 100vh;
	margin: 0 auto;
	position: relative;
}

.main-section-text {
	width: 100%;
	position: absolute;
	top: 50%;
	color: white;
	transform: translate(0, -50%);
}

.main-section-text * {
	font-size: 60px;
	line-height: 1.4;
	text-align: center;
}

.main-section-text h3 {
	font-size: 24px;
	padding-bottom: 10px;
	font-weight: bold;
}

.main-section-text h1 b {
	font-weight: 900;
}

.main-section-text .typo-container {
	clear: both;
	overflow: hidden;
	font-weight: bolder;
}

.main-section-button {
	padding-top: 36px;
}

.main-section-button a {
	text-decoration: none;
}

.main-section-button a button {
	width: 200px;
	height: 60px;
	color: white;
	font-size: 24px;
	font-weight: 800;
	border: 3px solid white;
	border-radius: 30px;
	background-color: transparent;
	transition: all 500ms;
}

.main-section-button a button:hover {
	color: #3f3c3a;
	background-color: white;
	transition: all 500ms;
}

.about-section {
 	min-height: 800px;
	height: 100vh;
	position: relative;
}

.about-container {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/cont-img1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-container::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 1;
  background-image: none;
  background-blend-mode: overlay;
  background-color: rgba(0,0,0,0.5); /* 반투명 검은색 오버레이 */
}

.about-container .about-contents .text .imgLogo {
	z-index: 5px;
  width: 100%; 
  height: 100px;
  background-image: url("../images/aboutImageLogo.png");
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 25px;
}

/* .homepage-contents-wrapper {
	position: relative;
	z-index: 2;
	background-image: url("../images/background.jpg?20240104-2");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
} */

.about-contents {
	width: 100%;
	height: 100%;
	max-width: 1400px;
	position: relative;
	margin: 0 auto;
}

.about-contents .text {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.about-contents .text h3 {
	color: white;
	margin: 0;
	letter-spacing: -0.6px;
	line-height: 1.6;
	z-index: 5;
	/* margin-bottom: 60px; */
}

.about-contents .text h3 b {
  font-weight: 800;  
}

.about-contents p {
	padding-bottom: 20px;
	font-size: 18px;
	line-height: 2;
}

.about-contents p:last-child {
	padding-bottom: 0;
}

.about-container .about-contents .text .player {
  position: relative;
}

.view-section {
	width: 100%;
	padding: 140px 0 0 0;
}

.view-contents {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.view-contents h2 {
	padding-bottom: 60px;
	color: #3f3c3a;
	font-size: 60px;
	font-weight: 900;
	text-align: center;
	letter-spacing: -0.6px;
}

.view-contents h4 {
	line-height: 1.6;
}

.view-content p {
	margin: 0;
	color: white;
	letter-spacing: -0.2px;
}

#viewWrapper .sub-title {
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
}

#viewWrapper .text-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: aliceblue;
  padding: 25px;
	width: 40%;
}

#viewWrapper .text-cont h3 {
  font-weight:700;
  margin-bottom: 20px;
}

#viewWrapper .cont-container {
  margin: 0 150px 60px 150px;
	display: flex;
}

#viewWrapper .cont-container:last-child {
  margin-bottom: 0px !important;
}

#viewWrapper .slide-wrapper {
  position: relative;
  width: 100%;
  padding-top: 53.25%; /* 비율 유지용 (16:9) */
  overflow: hidden;
}
#viewWrapper .slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
#viewWrapper .slide-img.active {
  opacity: 1;
  z-index: 1;
}

.view-content .slide-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.view-content .slide-wrapper .slide-img {
  width: 100%;
}

.view-content img {
	width: 22px;
	height: 22px;
	display: block;
	padding: 10px 0;
	box-sizing: content-box;
}

.view-content-box {
	width: 100%;
	height: 500px;
	display: flex;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	border: 2px solid white;
	box-shadow: 0 10px 40px 3px rgb(255 255 255/ 0.3), 0 2px 9px 10px
		rgb(255 255 255/ 0.15);
}

.view-left {
	width: 40%;
	height: 70%;
	flex-basis: 40%;
	position: relative;
	overflow: hidden;
	margin: auto;
}

.view-left .swiper-slide {
	position: relative;
	overflow: hidden;
}

.view-left img {
	width: 75%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 60%;
	transform: translate(-50%, -50%);
}

.view-content-box .swiper, .view-content-box .swiper .swiper-wrapper,
.view-content-box .swiper .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 100%;
}

.view-content-group {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
}

.view-right {
	width: 60%;
	flex-basis: 60%;
	padding: 46px 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	margin: auto;
}

.view-right .swiper, 
.view-right .swiper .swiper-wrapper .swiper-slide {
	overflow: hidden;
}

.view-right .view-title {
	width: 100%;
	padding-bottom: 24px;
	display: inline-block;
	color: white;
	font-size: 30px;
	font-weight: 800;
}

.view-right .view-title span {
	display: inline-block;
	font-size: 42px;
	color: #ffa473;
	margin-top: -10px;
}

.view-content {
	flex-grow: 1;
	font-size: 18px;
	line-height: 1.6;
	color: #3f3c3a;
}

.view-content-control {
	padding-bottom: 20px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #afafaf;
}

.view-content-info {
	display: flex;
	justify-content: space-between;
}

.view-content-control-group .likes {
	color: #343a40;
	padding-left: 20px;
	background-image: url("../images/like.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.view-content-control-group .likes b {
	font-weight: 800;
}

.view-content-control-group .date {
	color: #d1d1d1;
	font-size: 12px;
}

.view-swiper-controls {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	width: 100%;
	padding: 0 40px;
	z-index: 50;
}

.view-swiper-button-next, 
.view-swiper-button-prev {
 	width: 50px;
	height: 50px;
	cursor: pointer;
	background-repeat: no-repeat;
}

.view-swiper-button-next {
	background-image: url("../images/right.png");
}

.view-swiper-button-prev {
	background-image: url("../images/left.png");
}

.tab-content>.active {
	opacity: 1;
}

.ticketinfo-section {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 200px 0 140px;
}

.ticketinfo-section h2 {
	padding-bottom: 50px;
	color: white;
	font-size: 48px;
	font-weight: 900;
	letter-spacing: -0.6px;
}

.information-section {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 140px 0;
}

.information-contents .info-title {
  display: flex;
}

.information-contents .info-title p {
  width: 50%;
  margin-left: auto;
  text-align: center;
}

.information-contents .info-title p img {
	display: block;
	width: 100%;
}

.information-contents h2 {
	padding-bottom: 40px;
	color: #3f3c3a;
	font-size: 60px;
 	font-weight: 900;
	letter-spacing: -0.6px;
}

.information-contents .business-content .business-time {
	padding-bottom: 45px;
}

.information-contents .business-content .business-time h3 {
	padding-bottom: 16px;
	color: white;
	font-size: 28px;
	font-weight: 700;
}
	
.information-contents .business-content .business-time p {
	padding-left: 8px;
	color: white;
	font-size: 18px;
	line-height: 1.7;
}

.information-contents .business-content .business-charge-group .business-charge .business-sub-title img,
.information-contents .business-content .business-time h3 img {
	width: 30px;
	margin-right: 12px;
	vertical-align: middle;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table tbody tr td .ageInfo {
  color: black;
  background-color: white;
  font-weight: 800;
  font-size:13px;
  border-radius:30px;
  margin-left: 5px;
  padding: 0px 5px;
  vertical-align: middle;
  display: inline-block;
}

.information-contents .business-content .business-charge-group .business-charge .business-sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.business-sub-title b {
  font-weight: 800;
  vertical-align: middle;
}


.information-contents .business-content .business-charge-group .business-charge .business-charge-table {
	width: 100%;
	color: #5c5756;
	margin-bottom: 40px;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table thead th {
	color: black;
	text-align: center;
	font-weight: 600;
	font-size: 22px;
  border-right: 1px solid black;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table td {
	color: white;
	text-align: center;
	font-size: 18px;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table .head {
	width: 100%;
	justify-content: space-between;
	text-align: center;
	color: white;
	font-weight: 800;
	background-color: white;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table tbody,
.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body {
	width: 100%;
	text-align: center;
	border-bottom: 1px solid white;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table .head th,
.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td {
	width: 20%;
	flex-basis: 20%;
	padding: 18px 8px;
	vertical-align: middle;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table .head th:last-child,
.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td:last-child {
	border-right: none;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td:nth-child(1) {
	text-align: left;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td:nth-child(1),
.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td:nth-child(2),
.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td:nth-child(3),
.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td:nth-child(4) {
 	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td {
  border-right: 1px solid white;
}

.information-contents .business-content .business-charge-group .business-charge .business-charge-table .body td.etc {
	width: 40%;
	flex-basis: 40%;
	font-weight: 400;
}

.information-contents .business-content .business-charge-group .business-charge:last-child {
	padding-right: 0;
}

.information-contents .business-text {
	color: white;
	font-size: 18px;
	line-height: 1.7;
}

.map-article {
	width: 100%;
	height: 300px;
	background-color: #6c757d;
}

.map-article #map {
	width: 100%;
	height: 300px;
}

.way-to-come-contents {
	display: flex;
	/* padding: 80px 0 0; */
}

.way-to-come-item {
	width: calc(50% - 12px);
	flex-basis: 50%;
	padding-right: 24px;
}

.way-to-come-item h3 img {
	width: 28px;
	margin-right: 10px;
	vertical-align: middle;
}

.way-to-come-item:last-child {
	padding-right: 0;
}

.way-to-come-contents h3 {
	color: #3f3c3a;
	font-size: 30px;
	padding-bottom: 25px;
	font-weight: 800;
}

.way-to-come-contents h4 {
	color: white;
	line-height: 1.7;
	background-repeat: no-repeat;;
	background-size: 21px;
	background-position: left center;
}

.way-to-come-contents p {
	padding-bottom: 30px;
	color: #3f3c3a;
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: -0.4px;
}

.way-to-come-left {
	display: flex;
}

.way-to-come-left div {
	width: 100%;
}

.gallery-section {
/* 	min-height: 100vh; */
	padding: 100px 0;
}

.gallery-contents {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	color: #3f3c3a;
}

.gallery-contents h2 {
	padding-bottom: 70px;
	color: white;
	font-size: 60px;
	font-weight: 900;
	text-align: center;
	letter-spacing: -0.6px;
}

.gallery-list {
	display: flex;
	flex-wrap: wrap;
  min-height: auto;
}

.gallery-list ul {
  list-style: none;
  padding: 0;
}
.gallery-list ul:after {
  content: '';
  display: table;
  clear: both;
}

.gallery-list li:nth-child(1n+7) {
	display: none;
} 

.gallery-item {
	width: calc(33% - 14px);
	flex-basis: calc(33% - 14px);
	position: relative;
	padding-bottom: 33%;
	margin-right: 24px;
	margin-bottom: 24px;
	text-align: center;
	border-radius: 6px;
	cursor: pointer;
	overflow: hidden;
}

.gallery-item img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gallery-item img:hover {
	opacity: 0.6;
	transition: opacity 0.5s;
}

.gallery-item:nth-child(3n) {
	margin-right: 0;
}

.gallery-item .gallery-item-detail {
	width: 100%;
	padding: 0 40px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.gallery-item .gallery-item-detail h5 {
	margin-bottom: 0;
	color: white;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
	max-height: calc(18px * 2 * 1.6);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.gallery-item .gallery-item-detail p {
	padding-top: 8px;
	margin-bottom: 0;
	color: #efe9e6;
	font-size: 14px;
}

.gallery-more-button {
	padding-top: 40px;
	padding-bottom: 80px;
	text-align: center;
}

.gallery-more-button button {
	width: 220px;
	height: 60px;
	color: black;
	line-height: 36px;
	border-radius: 30px;
	background-color: white;
	box-shadow: none;
	cursor: pointer;
}

.gallery-more-button button #moreBtn {
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
}

.gallery-more-button button #closeBtn {
  display: none;
	font-size: 22px;
	font-weight: 700;
}

.homepage-footer {
	padding: 80px 0;
	font-size: 16px;
	line-height: 1.6;
	background-color: black;
}

.homepage-footer-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
}

.homepage-footer-container .info {
	width: 50%;
	flex-basis: 50%;
	color: white;
}

.homepage-footer-container .info span {
  font-weight: 800;
  margin-right: 5px;
}

.homepage-footer-container .nav-logo {
	width: 50%;
	flex-basis: 50%;
	background-image: url("../images/footer-logo.png?250623");
	background-repeat: no-repeat;
	background-size: 216px;
	background-position: right center;
}

#galleryDetailModal .modal-dialog {
	width: 100%;
	max-width: 800px;
	height: 80%;
	margin-top: 8%;
}

#galleryDetailModal .modal-content {
	width: 100%;
	height: 100%;
}

#galleryDetailModal .modal-content .modal-header {
	height: 48px;
	border-bottom: none;
}

#galleryDetailModal .modal-content .modal-body {
	width: 100%;
	height: calc(100% - 48px);
	border-bottom: 1px dashed #7b7572;
}

#galleryDetailModal .modal-content .modal-body .gallery-detail-title {
	width: 100%;
	height: 82px;
	border-bottom: 1px dashed #7b7572;
}

#galleryDetailModal .modal-content .modal-body .gallery-detail-title h3
	{
	color: #3f3c3a;
	font-size: 24px;
	margin-bottom: 10px;
}

#galleryDetailModal .modal-content .modal-body .gallery-detail-title p {
	color: #5c5756;
	font-size: 14px;
	margin-bottom: 20px;
}

#galleryDetailModal .modal-content .modal-body .gallery-detail-content {
	height: calc(100% - 120px);
	margin-top: 20px;
	color: #5c5756;
	font-size: 14px;
	line-height: 1.6;
	overflow: auto;
}

/* �뒪�겕濡ㅻ컮 �꽕�젙*/
#galleryDetailModal .modal-content .modal-body .gallery-detail-content::-webkit-scrollbar {
	width: 6px;
}

/* �뒪�겕濡ㅻ컮 留됰� �꽕�젙*/
#galleryDetailModal .modal-content .modal-body .gallery-detail-content::-webkit-scrollbar-thumb {
	height: 17%;
	background-color: #a5a19f;
	/* �뒪�겕濡ㅻ컮 �뫁湲�寃� �꽕�젙    */
	border-radius: 10px;
}

/* �뒪�겕濡ㅻ컮 �뮮 諛곌꼍 �꽕�젙*/
#galleryDetailModal .modal-content .modal-body .gallery-detail-content::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0);
}

#galleryDetailModal .modal-content .modal-body .gallery-detail-content img {
	max-width: 100%;
}

.light-color {
	flex-grow: 1;
	padding: 16px 30px 30px;
	font-size: 16px;
	line-height: 1.6;
	color: #3f3c3a;
}

.insta-button {
	height: 44px;
	color: white;
	font-size: 16px;
	padding: 0 46px;
	border-radius: 6px;
	background: linear-gradient(to right, #a933b9, #f66351);
	cursor: pointer;
}

.animate-fade {
	opacity: 0;
}

#toTop {
  z-index: 480;
  display: inline;
  position: fixed;
  right: 5%;
  bottom: 20px;
  width: 52px;
  cursor: pointer;
}

#toTop img {
  width: 100%;
}

a.white {
  text-decoration: none;
  color: white;
}

.banner_img {
  border: 3px solid #3E4156;
}

.banner_write {
  border: 3px solid #3E4156;
  background-color: white;
}

.pull-right {
  float: right;
}

.main_popup {
  width: 300px;
  height: 300px;
  background-color: white;
  position: absolute;
  z-index: 10000;
}

.popup_bottom {
  background-color: #3E4156;
  color: white;
  border: 3px solid #3E4156;
  height: 25px;
  width: 100%;
}

.bigPictureWrapper {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0%;
  width: 100%;
  height: 100%;
  background-color: gray;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5);
}

.bigPicture {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bigPicture img {
  width: 55%;
}

.ticketinfo-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px;
}

/* side panel */
.side-panel {
  width: 300px;
  height: 100%;
  position: absolute;
  right: -300px;
  transition: right 300ms;
  z-index: 500;
}
.side-panel .side-panel-content {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 65px;
  box-sizing: border-box;
  background-color: #fff;
  outline: 0;
}
.side-panel .side-panel-content .close-side-panel {
  width: 50px;
  height: 50px;
  top: 8px;
  right: 8px;
  position: absolute;
  background-image: url(../images/close-side-panel.png);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.side-panel .side-panel-content .nav-side-panel {
  width: 100%;
  padding-top: 20px;
}
.side-panel .side-panel-content .nav-side-panel-logo {
  width: 100%;
  padding-left: 24px;
  padding-bottom: 30px;
}
.side-panel .side-panel-content .nav-side-panel-logo img {
  width: 160px;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list {
  width: 100%;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item {
  box-sizing: border-box;
  cursor: pointer;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dl {
  margin-bottom: 0;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt {
  width: 100%;
  height: 66px;
  padding: 0 16px 0 24px;
  color: #313948;
  font-size: 18px;
  line-height: 46px;
  box-sizing: border-box;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt:hover,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt:focus,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt:active {
  width: 100%;
  height: 66px;
  padding: 0 16px 0 24px;
  color: #080e11;
  font-size: 18px;
  font-weight: 400;
  line-height: 46px;
  box-sizing: border-box;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt.reservation {
  color: #009644;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt.reservation:hover,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt.reservation:focus,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt.reservation:active,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt.reservation a:hover,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt.reservation a:focus,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item dt.reservation a:active {
  color: #0041bf;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item a,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item a:hover {
  text-decoration: none;
  font-weight: 700;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item.focus a,
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list .nav-side-panel-item.focus a:hover {
  text-decoration: none;
}
.side-panel .side-panel-content .nav-side-panel .nav-side-panel-list {
  width: 100%;
}
.side-panel .side-panel-content .nav-side-panel {
  padding-bottom: 10px;
  border-top: solid 6px #eeeeee;
}

/* common css START */
.chk-green { border: 1px green solid }
.chk-red { border: 1px red solid }
.chk-blue { border: 1px blue solid }
.align-xy-center { display: flex; justify-content: center; align-items: center; }
.center { text-align: center }
.left { text-align: left }
.right { text-align: right }
.bold { font-weight: bold }
.bt-line { border-top: 1px solid #a6a6a6; }
.bb-line { border-bottom: 1px solid #a6a6a6; }

.bg-choice { background-color: #fff2cc; }

.f18 { font-size: 18px; }
.f20 { font-size: 20px; }
.f22 { font-size: 22px; }

.p-5{padding: 50px;}
.pt-0-6{padding-top: 6px;}
.pt-1{padding-top: 10px;}
.pt-1-2{padding-top: 12px;}
.pt-1-5{padding-top: 15px;}
.pt-1-6{padding-top: 16px;}
.pt-1-7{padding-top: 17px;}
.pt-2{padding-top: 20px;}
.pt-2-2{padding-top: 22px;}
.pt-3{padding-top: 30px;}
.pt-4{padding-top: 40px;}
.pt-5{padding-top: 50px;}
.pt-6{padding-top: 60px;}
.pt-7{padding-top: 70px;}
.pt-8{padding-top: 80px;}
.pt-9{padding-top: 90px;}
.pt-10{padding-top: 100px;}
.pt-11{padding-top: 110px;}
.pt-12{padding-top: 120px;}
.pt-13{padding-top: 130px;}
.pt-14{padding-top: 140px;}
.pt-15{padding-top: 150px;}
.pt-16{padding-top: 160px;}
.pr-1{padding-right: 10px}
.pb-0{padding-bottom: 0;}
.pb-1{padding-bottom: 10px;}
.pb-1-2{padding-bottom: 12px;}
.pb-1-4{padding-bottom: 14px;}
.pb-1-6{padding-bottom: 16px;}
.pb-1-8{padding-bottom: 18px;}
.pb-2{padding-bottom: 20px;}
.pb-3{padding-bottom: 30px;}
.pb-4{padding-bottom: 40px;}
.pb-5{padding-bottom: 50px;}
.pb-6{padding-bottom: 60px;}
.pb-7{padding-bottom: 70px;}
.pb-8{padding-bottom: 80px;}
.pb-9{padding-bottom: 90px;}
.pb-10{padding-bottom: 100px;}
.pb-11{padding-bottom: 110px;}
.pb-12{padding-bottom: 120px;}
.pb-13{padding-bottom: 130px;}

.mt_-02{margin-top: -2px;}
.mt-06{margin-top: 6px;}
.mt-08{margin-top: 8px;}
.mt-1{margin-top: 10px;}
.mt-2{margin-top: 20px;}
.mt-3{margin-top: 30px;}
.mt-4{margin-top: 40px;}
.mt-5{margin-top: 50px;}
.mt-6{margin-top: 60px;}
.mt-7{margin-top: 70px;}
.mt-8{margin-top: 80px;}
.mt-9{margin-top: 90px;}
.mt-10{margin-top: 100px;}
.mt-11{margin-top: 110px;}
.mt-12{margin-top: 120px;}
.mt-13{margin-top: 130px;}
.mt-14{margin-top: 140px;}
.mt-15{margin-top: 150px;}
.mt-16{margin-top: 160px;}
.mr-1{margin-right: 10px;}
.mr-2{margin-right: 20px;}
.mb-1{margin-bottom: 10px;}
.mb-1-2{margin-bottom: 12px;}
.mb-1-4{margin-bottom: 14px;}
.mb-1-7{margin-bottom: 17px;}
.mb-2{margin-bottom: 20px;}
.mb-3{margin-bottom: 30px;}
.mb-4{margin-bottom: 40px;}
.mb-5{margin-bottom: 50px;}
.mb-6{margin-bottom: 60px;}
.mb-7{margin-bottom: 70px;}
.mb-8{margin-bottom: 80px;}
.mb-9{margin-bottom: 90px;}
.mb-10{margin-bottom: 100px;}
.mb-11{margin-bottom: 110px;}
.mb-12{margin-bottom: 120px;}
.mb-13{margin-bottom: 130px;}

.text-success {color: #28a745!important;}
.text-danger {color: #dc3545!important;}
.text-red {color: #ff0000!important;}
.text-blue {color: #0000ff!important;}
.text-default {color: #999999 !important;}
.text-point {color: #1874c3;}
/* common css END */

/** Layer popup **/
.layerPopup {display:none;}
.layerPopup .layerBox {
  position:fixed; left:50%; top:50%; transform:translate(-50%, -50%); padding:0px; background:#fff;
  border-radius:0px; border: solid 1px black; z-index:5; text-align: right;
}
.layerPopup .layerBox .title {margin-bottom:10px; padding-bottom:10px; font-weight:600; border-bottom:1px solid #d9d9d9;}
.layerPopup .layerBox .cont {border-bottom: 1px solid #d9d9d9;}
.layerPopup .layerBox .btnTodayHide {font-size:13px; font-weight:600; padding-right:10px; cursor:pointer}
.layerPopup .layerBox .btnClose {font-size:13px; font-weight:600; padding-right:6px; cursor:pointer}

/* Layer popup content */
.cont-img,
.cont-text {
  width: 100%;
  height: 100%;
  display: block;  /* a 태그로 아이폰 팝업 상단에 여백 발생하는 문제 해결 */
  cursor: pointer;
} 
/* Layer popup Text */
.cont-text {
  padding: 20px;
}
.cont a,
.cont a:focus,
.cont a:hover {
  all: initial;
}
.contBottom {
  margin: 3px 5px;
}