@charset "utf-8";

.main-contents {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.section01 {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.main-video {
	position: absolute;
	bottom: 0;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100%;
	background-color: #000;
	background-position: center center;
	background-size: cover;
	object-fit: cover;
}

/* main text */
.main-text-box {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
	color: #ecf0f5;
	width: 100%;
	z-index: 2;
}

.main-text-box h2 {
	font-size: 1.38em;
	margin: 30px 0 15px;
}

.main-text-box p {
	font-size: 0.88em;
	line-height: 20px;
	margin-top: 25px;
	font-weight: 300;
}

.main-text h1 {
	font-size: 20px;
}

.main-text h1 span {
	display: block;
}


/* quick menu */
.q-menu {
	width: 80%;
	margin: 0 auto;
	text-align: left;
	margin-top: 23px;
}

.q-menu a {
	display: block;
	line-height: 60px;
	background: #163022;
	margin-bottom: 10px;
	color: #ced5de;
	padding: 0 15px;
	font-weight: 500;
	position: relative;
}

.q-menu .blur {
	position: relative;
	background: transparent;
}

.q-menu .blur::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	backdrop-filter: blur(5px);
	z-index: -1;
	-webkit-backdrop-filter: blur(5px);
}

.q-menu a:nth-child(3) {
	background: #333;
}

.q-menu a img {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%);
}

/* sns quick menu */
.quick-menu {
	margin-top: 21px;
	z-index: 10;
	width: 100%;
}

.quick-menu a {
	width: 75%;
	margin: 0 auto;
	text-decoration: underline;
	color: #e7eef6;
	font-size: 0.88rem;
	display: block;
	margin-bottom: 8px;
	font-family: "freight-neo-pro";
	position: relative;
	text-align: left;
}

/* scetion2 */
.section02 {
	background: url(/mobile/images/main/sec2-bg.png)center center no-repeat;
	width: 100%;
	background-size: cover;
	object-fit: cover;
	position: relative;
	min-height: 720px;
	text-align: center;
	margin: 0 auto;
	padding-bottom: 60px;
}

.section02::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.sec2-box {
	z-index: 1;
	position: relative;
	width: 92%;
	margin: 0 auto;
}

.sec2-tit {
	padding-top: 67px;
	font-size: 1.25em;
	color: #ecf0f5;
	line-height: 36px;
	font-weight: 300;
}

.img-area {
	margin-top: 60px;
}

.img-area li {
	position: relative;
	margin-bottom: 25px;
	min-height: 140px;
}

.img-area li:last-child {
	margin-bottom: 0;
}

.img-area li a {
	display: block;
	position: relative;
}

.img-area li a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.img-area li .bg {
	width: 100%;
	background-size: cover;
	object-fit: cover;
}

.img-area li .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

/*.main_popup*/
.main_popup a {
	color: #fff;
}

.pull-right {
	float: right;
}

.popup_bottom {
	overflow: hidden;
	background-color: #6d6d6d;
	color: #fff;
	font-size: 14px;
	padding: 6px 10px;
	margin-top: -5px;
}

/* 240308 main slider */
.swiper,
.swiper-container {
	overflow: hidden;
}

.mainslider .swiper-slide {
	margin-top: 0;
}

.swiper-slide {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.mainslider,
.mainslider .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.mainslider:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: " ";
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	z-index: 1;
}

.mainslider .swiper-slide .slide-img {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

.mainslider .swiper-slide .slide-img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 3s;
	transition: -webkit-transform 3s;
	transition: transform 3s;
	transition: transform 3s, -webkit-transform 3s;
}

.mainslider .swiper-slide.swiper-slide-active .slide-img {
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
}

.slide-text {
	position: absolute;
	width: 100%;
	display: block;
	text-align: center;
	top: 130px;
	z-index: 1;
	animation: slipup 1s .2s both;
}

@keyframes zoomin {
	0% {
		transform: scale(1, 1);
	}

	100% {
		transform: scale(1.04, 1.04);
	}
}

@keyframes zoomout {
	0% {
		transform: scale(1.04, 1.04);
	}

	100% {
		transform: scale(1, 1);
	}
}

@keyframes slipup {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slipdown {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slipright {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 240321 main popup */
.pop-wrap {
	width: 343px;
	margin: 0 auto;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1300;
	background: transparent;
	transform: translate(-50%, -50%);
}

.pop-area {
	height: 420px;
	overflow: scroll;
}

.pop-area::-webkit-scrollbar {
	display: none;
}

.pop-box {
	width: 100%;
}

.pop-box a {
	display: block;
	font-size: 0;
	margin-bottom: 8px;
}

.pop-box a img {
	width: 100%;
}

.pop-bottom {
	width: 100%;
	background: transparent;
	display: flex;
	justify-content: space-between;
}

.pop-bottom a {
	color: #ced5de;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1200;
}

/* main_new */
.mainslider.new:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: " ";
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.17), rgba(0, 0, 0, 0.17));
	z-index: 1;
}

.mainslider.new .swiper-slide .slide-img {
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
	-webkit-transition: -webkit-transform 6s;
	transition: -webkit-transform 6s;
	transition: transform 6s;
	transition: transform 6s, -webkit-transform 6s;
}

.mainslider.new .swiper-slide.swiper-slide-active .slide-img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.mainslider.new .swiper-slide.swiper-slide-active .slide-img,
.mainslider.new .swiper-slide.swiper-slide-duplicate-active .slide-img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.mainslider.new .slide-img {
	width: 100%;
	height: 100%;
}

.mainslider.new .slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section01.new .main-text-box {
	position: absolute;
	top: 180px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
	width: 100%;
	z-index: 2;
}

/*.section01.new .main-text h1 {
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.5em;
}*/
.section01.new .main-text h1 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.5em;
}

/*.section01.new .main-text-box p {
	font-size: 1.1rem;
	line-height: 140%;
	margin-top: 15px;
	font-weight: 400;
}*/
.section01.new .main-text-box p {
    margin-top: 15px;
    letter-spacing: 2px;
}

@media (min-width: 375px) {
    .section01.new .main-text h1 {
        font-size: 1.5rem;
    }
    .section01.new .main-text-box p{
        font-size: 0.75rem;
    }
}

@media (min-width: 430px) {
    .section01.new .main-text h1 {
        font-size: 1.69rem;
        letter-spacing: 2.5px;
    }
    .section01.new .main-text-box p{
        font-size: 0.81rem;
    }
}

.section01.new .main-text-box p span{
	font-size: 1.25rem;
}

.main-reservation-box {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 51px;
  background: #163022;
  z-index: 1000;
  box-sizing: border-box;
}

.reservation-box-wrap {
  display: flex;
	width: 100%;
	height: 100%;
}

.reservation-box-wrap a {
	width: 50%;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(22, 48, 34, 0.83);
}

.reservation-box-wrap a.check {
	background: rgba(39, 75, 56, 0.83);
}

.reservation-box-wrap a span {
	font-size: 16px;
	color: #fff;
	position: relative;
	margin-left: 20px;
}

.reservation-box-wrap a.reser span::after {
	content: "";
	position: absolute;
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url('/mobile/images/main/icon_main-reservation.svg') no-repeat center center;
	background-size: 100%;
}

.reservation-box-wrap a.check span::after {
	content: "";
	position: absolute;
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 16px;
	background: url('/mobile/images/main/icon_main-check.svg') no-repeat center center;
	background-size: 100%;
}

.mainPop-reser {
  background-color: #fff;
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 65px;
	min-height: 247px;
	height: auto;
  max-height: 340px;
  width: 80%;
  transform: translateX(-50%);
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mainPop-reser.hidden-by-scroll {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.main-pop-calendar-header {
  margin-bottom: 5px;
  position: relative;
}

.main-pop-calendar-header h3 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.main-pop-calendar-header .arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.main-pop-calendar-header .arrows span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.main-pop-calendar-header .arrows .prev {
  background: url('/images/icon_arrow-prev.svg') no-repeat;
  left: 0;
}

.main-pop-calendar-header .arrows .next {
  background: url('/images/icon_arrow-next.svg') no-repeat;
  right: 0;
}

.main-pop-calendar-body {
  width: 100%;
}

.main-pop-calendar-body table {
  width: 100%;
}

.main-pop-calendar-body table thead tr th {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 5px;
}

.main-pop-calendar-body table thead tr th:first-child,
.main-pop-calendar-body table tbody tr td:first-child {
  color: #DD2323;
}

.main-pop-calendar-body table thead tr th:last-child,
.main-pop-calendar-body table tbody tr td:last-child {
  color: #2A6DB9;
}

.main-pop-calendar-body table tbody tr td {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 4px;
  cursor: pointer;
  position: relative;
	vertical-align: top;
}

.main-pop-calendar-body table tbody tr td div {
  position: relative;
}

.main-pop-calendar-body table tbody tr td.today div {
  color: #fff;
}

.main-pop-calendar-body table tbody tr td.impossible div, 
.main-pop-calendar-body table tbody tr td.impossible span {
  color: #CACACA !important;
  cursor: unset;
}

.main-pop-calendar-body table tbody tr td.today div::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF9500;
  font-size: 13px;
  font-weight: 500;
  z-index: -1;
}

.main-pop-calendar-body table tbody tr td span {
  font-size: 11px;
  font-weight: 500;
  color: #535353;
  margin-top: 5px;
  display: block;
}

.checkIn-quick {
	position: fixed;
	bottom: 70px;
	right: 10px;
	z-index: 1001;
}

.checkIn-quick a {
	display: flex;
	align-items: center;
	gap: 0 8px;
}

.checkIn-quick a b {
	font-size: 13px;
	color: #fff;
	font-weight: 400;
}

.checkIn-quick a span {
	width: 41px;
	height: 41px;
	border-radius: 50%;
	background: #163022;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 260226 아이콘 추가 */
.icon-golf{
	position: fixed;
    bottom: 122px;
    z-index: 1001;
    right: 10px;
    border-radius: 50%;
    background: #FED325;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
}
.icon-golf img{
	width: 41px;
	padding: 2px;
}

.single-bg {
  width: 100%;
  height: 100%;
}

.single-bg img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}