@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* travelary common */
.hide-txt{overflow:hidden;position:absolute;width:1px;height:1px;font-size:1px;line-height:0;clip: rect(0 0 0 0);white-space: nowrap;margin: -1px;padding: 0;border: 0;}

/* cursor */
.cursor {
	height: 34px;
	width: 34px;
	position: fixed;
	z-index: 100;
	top: -17px;
	left: -17px;
	pointer-events: none;
	transition: all .9s cubic-bezier(.15, .9, .34, .95);
	transform: translate(-100px, -100px);
	mix-blend-mode: difference;
	mix-blend-mode: multiply;
}
/* 20260623 리조트 통합 - 커서 스타일 삭제 */
/* .cursor:after {
	content: "";
	display: block;
	position: absolute;
	border-radius: 50%;
	transform-origin: center;
	height: 100%;
	width: 100%;
	border: 1px solid #FF5245;
	transition: all .4s cubic-bezier(.15,.9,.34,.95);
}
.cursor.hover:after {
	background-color: #FF5245;
	transform: scale(.37);
} */
/* common - flag */
.flag-wrapper {
	position: absolute;
	left: 3rem;
	/* top: 0; */
	top: -1.4rem;
	display: flex;
	z-index: 5;
}
.flag-wrap {
	position: relative;
	width: 10rem;
	height: 6.6rem;
}
.flag-wrap + .flag-wrap {
	margin-left: 0.8rem;
}
.flag-wrap .flag-text {
	margin-top: 0.4rem;
	font-size: 1.2rem;
	/* line-height: 1.1rem;  */
	line-height: 2rem;
	color: #fff;
	text-align: center;
	font-family: 'Bodoni Moda';
}
.flag-wrap .flag-box.style02 + .flag-text-wrap .flag-text {font-size: 1.4rem;}
.flag-wrap .flag-icon {margin-right: 1.2rem;}
.flag-wrap .flag-box {position: relative;width: 100%;height: 100%;}
.flag-wrap .flag-box.style01 {
	/* opacity: 0.9; */
	/* background: #111; */
	background: rgba(17,17,17,0.8);
}
.flag-wrap .flag-box.style02 {background-color: rgba(74, 78, 80, 0.8);}
.flag-wrap .flag-box.style02 + .flag-text-wrap{
	position: inherit;
	display: block;
	padding-top: 0;
	margin: -4.4rem 0 0 0.9rem;
}
/* .flag-wrap .flag-box.style02::before {content:'';position: absolute;left:0;right:0;top:0;width:100%;height:100%;background: url("/assets/image/travelary/logo_activity_lv1.webp") center no-repeat;background-size: cover;} */
.flag-wrap .flag-box.style02 + .flag-text-wrap .flag-text {font-family: 'Bodoni Moda';font-style: normal;font-weight: 600;}
.flag-wrap .flag-box.style02 + .flag-text-wrap .flag-text i {font-family: inherit;letter-spacing: 0.5px;}
.flag-wrap .flag-box.style03 {background-color: rgba(74, 78, 80, 0.9);}
.flag-wrap .flag-text-wrap {display: flex;justify-content: center;align-items: center;width: 100%;height: 100%;position: absolute;top: 0;left: 0;padding-top: 0;}
.flag-wrap .flag-text-wrap .wrap-svg svg {width:8.4rem;height:3.2rem}
.flag-wrap .flag-icon.ico-coupon {
	display: block;
	/* width: 2.4rem;
	height: 2.4rem; */
	width: 2.8rem;
	height: 2.5rem;
	/* background: url("/assets/image/travelary/ico_coupon.webp") center no-repeat; */
	background: url("/assets/image/travelary/ico_coupon02.webp") center no-repeat;
	background-size: contain;
}

.content .flag-wrapper {
	top:-0.8rem;
	/* right:1.1rem; */
	right:2rem;
	left:auto;
}
.content .flag-wrap {height: 6rem}
/* .content .flag-wrap .flag-text-wrap {padding-top:0.8rem;} */
.content .flag-wrap .flag-box.style02::before {background-image: url("/assets/image/travelary/logo_activity_lv2.webp");background-size: cover;}


.bg-i i {font-style:normal;font-weight:700;font-family: 'Bodoni Moda';}
.bg-i i + i::before {position: relative;top:-3px;content: '';display:inline-block;width:5px;height:5px;margin:0 9px;background:#111;border-radius: 100%;vertical-align: middle;}

/* common - motion */
.ui-fade{
	visibility: hidden;
}
.ui-fade.ui-show{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	-webkit-animation-name: revealText;
	animation-name: revealText;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes revealText {
	0% {
		visibility: hidden;
		opacity: 0;
	}
	1% {
		visibility: visible;
		opacity: 0;
		-webkit-transform:translate3d(0,100px,0);
		transform:translate3d(0,100px,0);
	}

	100% {
		visibility: visible;
		opacity: 1;
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}
}

@keyframes revealText {
	0% {
		visibility: hidden;
		opacity: 0;
	}
	1% {
		visibility: visible;
		opacity: 0;
		-webkit-transform:translate3d(0,100px,0);
		transform:translate3d(0,100px,0);
	}

	100% {
		visibility: visible;
		opacity: 1;
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}
}

/* common - button */
button {background: none;}
.btn-round {display: inline-flex;justify-content: center;align-items: center;border: 1px solid #111;border-radius: 30px;min-width: 200px;height: 60px;padding: 0 20px;}
.btn-round .text {font-size: 18px;color: #111;}
.btn-round.white {border: 1px solid #fff;}
.btn-round.white .text {color: #fff;}
.btn-section-more {display: flex;align-items: center;}
.btn-section-more .text {font-size: 22px;color: #111;letter-spacing: normal;font-weight: 700;font-family: 'Bodoni Moda';}
.btn-section-more.white .text {color: #fff;}
.sec-caster .button-wrap {margin-top: 60px;text-align: center;}

.btn-more-plus {color: #111;}
.btn-more-plus .text {
	font-family: "Pretendard Variable";
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 2.8rem;
}
.icon-more-plus {
	position: relative;
	/* width: 4rem;
	height: 4rem; */
	width: 1.8rem;
	height: 1.8rem;
	display: block;
	margin: 0 auto 0.4rem auto;
}
.icon-more-plus:before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: '';
	display: block;
	width: 100%;
	height: 1.4px;
	/* background: #666; */
	background: #111;
}
.icon-more-plus:after {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: '';
	display: block;
	height: 100%;
	width: 1.4px;
	/* background: #666; */
	background: #111;
}
.ico-more-01 {position: relative;display: block;margin-left: 5px;margin-top: 0.4rem;width: 1.4rem;border-top: 1px solid #111;}
.ico-more-01:before {content:'';position: absolute;top: -1px;right: 0;width: 7px;border-top: 1px solid #111;transform-origin: right;transform: rotate(45deg);}
.ico-more-01:after {content:'';position: absolute;top: -1px;right: 0;width: 7px;border-top: 1px solid #111;transform-origin: right;transform: rotate(-45deg);}

.white .ico-more-01,
.white .ico-more-01:before,
.white .ico-more-01:after{border-top: 1px solid #fff;}

.ico-more-02 {position: relative;display: block;margin-left: 1rem;margin-top: 0.2rem;width: 2rem;border-top: 2px solid #111;}
.ico-more-02:before {content:'';position: absolute;top: 0;right: 0;width: 1rem;border-top: 2px solid #111;transform-origin: right;transform: rotate(45deg);}
.ico-more-02:after {content:'';position: absolute;top: 0;right: 0;width: 1rem;border-top: 2px solid #000;transform-origin: right;transform: rotate(-45deg);}

.white .ico-more-02,
.white .ico-more-02:before,
.white .ico-more-02:after{border-top: 2px solid #fff;}

.ico-arrow-down::after {content: '';width: 1.2rem;height: 1.2rem;border-top: 2px solid #fff;border-right: 2px solid #fff;display: inline-block;transform: rotate(135deg);}

/* input - checkbox */
.input-checkbox {display: inline-block;}
.input-checkbox input{
	border: 0;
	/* clip: rect(0 0 0 0); */
	/* width: 1px;height: 1px; */
	width: 2.4rem;
	height: 2.4rem;
	/* margin: -1px; */
	/* margin: 1px; */
	margin-top: 1px;
	z-index: 1;
	background-color: transparent;
	overflow: hidden;
	padding: 0;
	position: absolute;
}
.input-checkbox label {display:flex;align-items: center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
.input-checkbox label .txt {font-size: 1.4rem;color: #111;padding-left: 0.8rem;cursor: pointer;font-weight: 300;}
.input-checkbox label:before {
	content:'';display: block;
	background: #E5E5E5;flex-shrink:0;
	width: 1.8rem;height: 1.8rem;
	text-align:center;
	-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;
	transition:all .3s ease-out; border-radius: 2px;
}
.input-checkbox label:after {position: absolute;left: 0.4rem;top: 0.5rem;content: '';display: block;width: 1rem;height: 0.6rem;border-top: 2px solid #fff;border-right: 2px solid #fff;-webkit-transform:rotate(140deg);-ms-transform:rotate(140deg);transform:rotate(140deg);-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}
.input-checkbox input:checked + label:before {background: #FF5245;}


/* common - popup */
.popup-group {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2201;
	/* z-index: 100; */
	justify-content: center;
	align-items: center;
}
.popup-group.open {display: flex;}
.popup-group .dimm {position: fixed;top: -1000px;left: -1000px;right: -1000px;bottom: -1000px;background: rgba(0, 0, 0, 0.4);}
.popup-group .popup-container {
	position: relative;
	/* max-width: 1104px; */
	max-width: 110.4rem;
	width: 100%;
	background: #fff;
}
.popup-group .popup-header {
	display: flex;
	justify-content: space-between;
	/* padding-left: 30px;
	height: 53px; */
	padding-left: 3rem;
	height: 6rem;
}
#popup-caster-video .btn-popup-close{
	background-image: url(/assets/image/travelary/ico_close_02.webp);
}
.popup-video-title {display: flex;align-items: center;}
.popup-video-title .title {
	/* font-size: 20px; */
	font-size: 2rem;
	color: #111;
	/* font-weight: 700; */
	font-weight: 600;
	padding:0;
}
.popup-video-title .author {
	color: #666;
	/* font-size: 14px;
	font-weight: 300; */
	font-size: 1.4rem;
	font-weight: 400;
	display: flex;
	align-items: center;
}
.popup-group .popup-video-title .author:before {
	content: '';
	display: inline-block;
	width: 1px;
	/* height: 16px; */
	height: 1.6rem;
	background: #E5E5E5;
	/* margin: 0 16px; */
	margin: 0 1.6rem;
}
.popup-group .popup-video-wrap {
	position:relative;
	width: 100%;
	/* height: 680px; */
	height: 62rem;
}
.popup-group .popup-video-wrap .screenshot {position: absolute;left:0;right:0;top:0;bottom:0;z-index: 5;}
.popup-group .popup-video-wrap .screenshot img {width:100%;height:100%}
.popup-group .popup-video-wrap .btn-video-play a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	background: url("/assets/image/travelary/ico_video_play02.webp") center no-repeat;
	/* background-size: 140px 140px; */
	background-size: 8rem 8rem;
	transition: 0.4s;
	z-index: 5;}
.popup-group .popup-video-wrap .btn-video-play::before {content:'';position: absolute;top: 0;left: 0;right: 0;bottom: 0;z-index: 3;background: rgba(0, 0, 0, 0.2);}
.popup-group .popup-video-wrap iframe {width: 100%;height: 100%;}
.btn-popup-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	display: inline-block;
	background: red;
	/* width: 53px;
	height: 53px; */
	width: 2.4rem;
	height: 2.4rem;
	background: url('/assets/image/travelary/ico_close_01.webp') center no-repeat;
	/* background-size: 18px 17px; */
	background-size: 100% 100%;
	z-index: 5;
}


/* common - slick */
.slider-dots-wrap {margin: 0 30px;}
.slick-dots li {width: auto;height: auto;margin: 0;}
.slick-dots li + li {margin-left: 14px;}
.slick-dots li button {position: relative;font-size: 0;line-height: 0;display: inline-block;vertical-align: middle;width: 8px;height: 8px;border-radius: 50%;cursor: pointer;background: #fff;color: transparent;outline: none;opacity: 0.3;}
.slick-dots li button:before {display: none;}
.slick-dots li.slick-active button {opacity: 1;}
.slider-controls .slick-arrow {position: relative;width: 36px;height: 36px;border: 1px solid #000000;background: transparent;border-radius: 50%;}
.slider-controls .slick-arrow:after {position: absolute;content:'';display: block;width: 8px;height: 8px;border-top: 2px solid #fff;border-right: 2px solid #fff;top: 12px;}
.slider-controls .slick-arrow + .slick-arrow {margin-left: 14px;}

/* ui-fade */
.template-extension-wrap strong.ui-fade.ui-show{
	display: block;
	width: fit-content;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: 'anth';
	letter-spacing: 2%;
	color: #816c5b;
}

/* main */
.travelary-main {position: relative;}
.travelary-anchor {position: fixed;right: 0;top: 50%;transform: translateY(-50%);z-index: 10;}
.travelary-anchor[data-color="#FFFFFF"] .anchor-list .anchor-btn {
	color: rgba(255, 255, 255, 0.3);
}
.travelary-anchor[data-color="#FFFFFF"] .anchor-list:after { background: #FFFFFF; }
.travelary-anchor[data-color="#000000"] .anchor-list .anchor-btn {
	color: rgba(0, 0, 0, 0.3);
}
.travelary-anchor[data-color="#000000"] .anchor-list:after { background: #000000; }
.travelary-anchor .anchor-list {
	padding-right: 4.5rem;
	position: relative;
}
.travelary-anchor .anchor-list:after {position: absolute;right: 0;top: 50%;transform: translateY(-50%);content: '';display: block;width: 0;height: 1px;transition: 0.3s;}
.travelary-anchor .anchor-list.on:after {
	width: 3rem;
}
.travelary-anchor .anchor-list .anchor-btn {
	width: 100%;
	display: block;
	text-align: right;
	height: 2.8rem;
	transition: 0.3s;
}
.travelary-anchor[data-color="#FFFFFF"] .anchor-list .anchor-btn {
	color: rgba(255, 255, 255, 0.3);
}
.travelary-anchor[data-color="#000000"] .anchor-list .anchor-btn {
	color: rgba(0, 0, 0, 0.3);
}
.travelary-anchor[data-color="#FFFFFF"] .anchor-list .anchor-btn:focus-visible,
.travelary-anchor[data-color="#FFFFFF"] .anchor-list.on .anchor-btn {
	color: rgba(255, 255, 255, 1);
}
.travelary-anchor[data-color="#000000"] .anchor-list .anchor-btn:focus-visible,
.travelary-anchor[data-color="#000000"] .anchor-list.on .anchor-btn {
	color: rgba(0, 0, 0, 1);
}
.travelary-anchor .anchor-list .anchor-btn .text {
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: 'anth';
}
.travelary-nudge {display:none !important;position:sticky;bottom: 60px;z-index: 999;background: #000;display: flex;opacity:0;visibility: hidden;width:240px;margin:0 auto 60px auto;align-items: center;justify-content: center;text-align: center;min-width: 240px;height: 50px;border-radius: 25px;transition: opacity 0.3s, visibility 0.1s;}
.travelary-nudge.ie {position:fixed;right:50%;transform:translate(50%, 0);bottom: 0px;}
.travelary-nudge.fixed-none {position:absolute}
.travelary-nudge .nudge-text {color: #fff;font-size: 18px;font-weight: 700;font-family: 'Bodoni Moda';transition: 0.3s;opacity: 1;}
.travelary-nudge .nudge-text i {font-family: inherit;}
.travelary-nudge .nudge-text br {display:none}
.travelary-nudge .nudge-text em {display:inline-block}
.travelary-nudge .nudge-text .point {margin-left:3px;color: #f25146;font-family: 'Bodoni Moda';font-weight:700}
.travelary-nudge .nudge-hover-text {display: none;color: #fff;font-size: 14px;}
.travelary-nudge:hover .nudge-text {display: none;}
.travelary-nudge:hover .nudge-hover-text {display: block;font-size:18px}
.travelary-nudge .nudge-hover-text .ico-arrow {display: inline-block;position: relative;width:31px;margin-top: 10px;}
.travelary-nudge .nudge-hover-text .ico-arrow:before {position: absolute;content:'';display : block;width: 22px;height: 2px;background: #fff;right: 0;top:-6.5px}
.travelary-nudge .nudge-hover-text .ico-arrow:after {position: absolute;content: '';display: block;width: 10px;height: 10px;border-right: 2px solid #fff;border-top: 2px solid #fff;transform: rotate(45deg);right: 0;top: -11px;}
.travelary-nudge:hover {background: #FF5245;}
.visual-head {position: absolute;left: 0;right: 0;top: 0;width: 100%;height: 50px;display: flex;justify-content: center;align-items: center;z-index: 10}
.visual-head-inner {position: relative;/* margin: 0 auto; */max-width: 133em;max-width: 1330px;width: 100%;}
.visual-bi {
	text-align: center;
	/* font-size: 18px; */
	/* font-weight: 400; */
	font-family: 'Bodoni Moda';
	/* letter-spacing: normal; */
	color: #fff;

	font-size: 5.2rem;
  font-weight: 500;
  line-height: 6.8rem;
  margin: 6rem 0;
}
.visual-bi svg {padding-top:6px;fill:#fff}
.visual-bi i {font-family: inherit;}
.travlery-breadcrumbs {position: absolute;right: 0;top: 0;display: flex;align-items: center;margin-top: 6px;}
.travlery-breadcrumbs li {position: relative;}
.travlery-breadcrumbs li + li {margin-left: 10px;padding-left: 10px;}
.travlery-breadcrumbs li + li:before {position: absolute;left: 0;top: 3px;content:'';display: block;width: 1px;height: 10px;background: rgba(255, 255, 255, 0.2);}
.btn-depth-link {display: block;color: #fff;font-size: 12px;}
.ico-home {width: 10px;height: 10px;display: block;background: url('/assets/image/travelary/ico_home_white.webp') center no-repeat;background-size: contain;margin-top: 1px;}
.visual-head.fixed {position: fixed;top: 80px;background: #fff;border-bottom: 1px solid #E5E5E5;}
.visual-head.fixed .visual-bi {color: #111}
.visual-head.fixed .visual-bi svg {fill: #111}
.visual-head.fixed .travlery-breadcrumbs li + li:before {background: rgba(0, 0, 0, 0.2);}
.visual-head.fixed .btn-depth-link {color: #111;}
.visual-head.fixed .ico-home {background: url('/assets/image/travelary/ico_home.webp') center no-repeat;background-size: contain;}

.travelary-visual {
	position: relative;
	overflow: hidden;
	background: url('/assets/image/travelary/main/main_visual_2023.webp') center no-repeat;
	background-size: cover;
	/* height: calc(100vh - 92px); */
	height: 100vh;
	max-height: 1080px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.travelary-visual .visual-copy {text-align: center;color: #fff;padding: 0 120px;max-width: 1330px;width: 100%;}
.travelary-visual .visual-title .wrap-svg {
	/* max-width: 722px; */
	max-width: 72.1rem;
	width: 100%;
	/* margin-bottom: 3px; */
	margin-bottom: 1rem;
}
.travelary-visual .visual-text {margin-top: 0;font-size: 24px;line-height: 1.5;font-weight: 300;}
.travelary-visual .visual-text .point {
	position: relative;
	display: inline-block;
	/* margin-bottom: 2px; */
	margin-bottom: 1.1rem;
}
.travelary-visual .visual-text .point strong {
	display: inline-block;
	/* font-size: 58px; */
	font-size: 5.8rem;
	font-weight: 400;
	vertical-align: middle;
	line-height: 1;
	font-family: Noto Sans KR;
}
.travelary-visual .visual-text .point span {position: relative;top:0;margin:0 2px}
.travelary-visual .visual-text .point span em {
	position: relative;
	padding-right: 5px;
	/* font-size: 36px; */
	font-size: 3.6rem;
	/* font-weight: 700; */
	font-weight: 600;
	z-index: 2;
}
.travelary-visual .visual-text .point .bar{display:none;}
.travelary-visual .visual-text .point .bar::before {content:'';position: absolute;left:0;bottom:0;display: block;width: 100%;height: 20px;background: #FF5245;opacity: 0.6;transition: 0.3s;}
.travelary-visual .visual-text .point .bar::after {content:'';position:absolute;right:0;bottom:0;width:10px;height:20px;background: #FF5245;}
.travelary-visual .visual-text p {
	/* font-size: 18px; */
	font-size: 1.8rem;
	line-height: 1.55;
}
.travelary-visual .floting-magazine {position:absolute;left:-65px;top:50%;transform: translateY(50%);}
.travelary-visual .floting-magazine span {display:inline-block;font-size:14px;font-weight:700;color:#fff;font-family: 'Bodoni Moda';transform: rotate(90deg);letter-spacing: 0;}


.travelary-visual .display-scroll {position: absolute;bottom: 32px;left: 50%;transform: translateX(-50%);}
.travelary-visual .display-scroll .text {
	/* font-size: 14px; */
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: normal;
	/* font-weight: 700; */
	font-weight: 400;
	/* font-family: 'Bodoni Moda'; */
	font-family: 'anth';
	letter-spacing: 2%;
}
.display-scroll .ico-arrow-down {margin-top: 8px;}
.display-scroll .ico-arrow-down {position: relative;display: block;text-align: center;}
.travelary-visual .display-scroll.black .text {color:#111111}
.travelary-visual .display-scroll.black .ico-arrow-down::after {border-top: 2px solid #000;border-right: 2px solid #000;}
.travelary-contents {background: #533d36;transition: 0.6s;}
.travelary-contents .section {
	/* padding: 150px 0; */
	padding: 15rem 0;
}
.section-title {font-size: 52px;color: #fff;letter-spacing: normal;font-weight: 700;font-family: 'Bodoni Moda';}
.wrap-svg {display: inline-block;}
.wrap-svg svg {width: 100%;}
.section-inner {
	margin: 0 auto;
	/* max-width: 1390px; */
	max-width: 139rem;
	width: 100%;
	/* padding: 0 30px; */
	padding: 0 3rem;
}
.travelary-contents .section img {width: 100%;}

/* main - cover stroy */
.travelary-contents .section.sec-coverstory {position: relative;padding-top: 123px;}
.sec-coverstory .section-inner {
	position: relative;
	/* max-width:1104px; */
	max-width: 110.4rem;
	padding: 0;
}
.sec-coverstory .section-inner .slick-slide{
	min-height: 28.8rem;
}
.sec-coverstory .section-title {margin-bottom: 28px;text-align: center;}
.sec-coverstory .btn-section-more {position: absolute;right: 30px;top: 30px;}
.sec-coverstory .slider-title {
	font-size: 72px;
	color: #fff;
	text-align: center;
	line-height: 1.25;
	/* letter-spacing: -4px; */
	font-weight: 700;
	font-family: 'Bodoni Moda', "Noto Sans KR",sans-serif;
	margin-bottom: 40px;
	word-break: keep-all;}
.sec-coverstory .slider-title .eng {font-family: 'Bodoni Moda';}
.sec-coverstory .slider-text {
	margin-top: 35px;
	/* font-size: 28px; */
	font-size: 2.8rem;
	color: #fff;
	text-align: center;
	line-height: 1.5;
	word-break: keep-all;}
.coverstory-slider-wrap {position: relative;margin-top: -20px;}
.coverstory-slider-img .slick-list{
	padding-top: 1.4rem;
}
.coverstory-slider-img li {position: relative;padding-top: 14px;}
.sec-coverstory .slider-controls {
	/* margin-top: 40px; */
	margin-top: 6rem;
	display: flex;
	justify-content: center;
	align-content: center;
}
.coverstory-slider-wrap .slick-arrow {width: 36px;height: 36px;border: 1px solid #FFFFFF;background: transparent;border-radius: 50%;}
.coverstory-slider-wrap .slick-dots {margin-top: 0;}
.coverstory-slider-wrap .img-wrap {
	position:relative;
	/* height:500px; */
	height:50rem;
	overflow: hidden;
}
.coverstory-slider-wrap .img-wrap img {
	position: absolute;
	left: 50%;
	/* width:auto; */
	width: 100%;
	transform: translateX(-50%);
	height: 100%;
	object-fit: cover;
}
.coverstory-slider-wrap .slick-current .slider-text {display:block}
.coverstory-slider-wrap .slider-text {display: none;}

.slider-dots-wrap {display: flex;align-items: center;}
.coverstory-slider-category {position: absolute;left: 175px;top: 210px;z-index: 2;}
.coverstory-slider-category .slick-list {max-width: 300px;}
.coverstory-slider-category li {
	display: none !important;
	width: auto !important;
	position: relative;
	font-size: 28px;
	color: #fff;
	letter-spacing: normal;
	font-weight: 700;
	font-family: 'Bodoni Moda';
}
.coverstory-slider-category li span em{position:relative;font-family: 'Bodoni Moda';font-weight: 700;}
.coverstory-slider-category li span em:before {content: '';display: block;background: #FF5245;position: absolute;right: -8px;bottom: 2.8px;width: 8px;height: 14px;}
.coverstory-slider-category li span em:after {content: '';display: block;background: #FF5245;position: absolute;left: 0;right: 0;bottom: 2.8px;height: 14px;opacity: 0.5;mix-blend-mode: hard-light;}
.coverstory-slider-category li span + span {position:relative;display:block;padding:23px 0 0 0;}
.coverstory-slider-category li span + span:before {content: '·';display: block;position: absolute;left: 0;right: 0;width: 100%;text-align: center;top: -4px;}
.coverstory-slider-text {margin-top: -60px;}
.slider-category {display: none;text-align: center;}
.slider-category .text {
	display: inline-block;
	position: relative;
	font-size: 28px;
	color: #fff;
	letter-spacing: normal;
	font-weight: 700;
	/* font-family: 'Bodoni Moda'; */
	font-family: 'anth';
}
.slider-category .text:after {
	content: '';
	display: block;
	background: #FF5245;
	position: absolute;
	/* left: 0; */
	left: -0.6rem;
	right: 0;
	/* bottom: 2.8px; */
	bottom: 0.4rem;
	/* height: 14px; */
	height: 1.4rem;
	opacity: 0.5;
	mix-blend-mode: hard-light;
}
.slider-category .text:before {
	content: '';
	display: block;
	background: #FF5245;
	position: absolute;
	/* right: -8px; */
	right: -0.8rem;
	/* bottom: 2.8px; */
	bottom: 0.4rem;
	/* width: 8px; */
	width: 0.8rem;
	/* height: 14px; */
	height: 1.4rem;
}

/* main - activity */
.travelary-contents .sec-activity {position: relative;padding-bottom: 0;}
.sec-activity .section-inner {position: sticky;top: 50%;transform: translateY(-50%);/*margin-top: 150px;*/z-index: 2;}
.activity-head {width: 100%;position: sticky;top: 300px;left: 0;text-align: center;}
.sec-activity .section-title-svg .wrap-svg {
	/* max-width: 348px; */
	max-width: 35.4rem;
	width: 100%;
}
.sec-activity .section-text {
	/* margin-top: 30px; */
	/* font-size: 52px;
	line-height: 1.34; */
	font-size: 5.2rem;
	line-height: 6.8rem;
	font-weight: 500;
	color: #fff;
	word-break: keep-all;
}
.sec-activity .mo-hashtag {display:none}
.sec-activity .btn-round {
	/* margin-top: 40px; */
	margin-top: 4.4rem;
}
.move-section {display: block;
	position: relative;
	/* padding-bottom: 315px; */
	padding-bottom: 44.8rem;
}
.sec-activity .box-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sec-activity .box-wrap {display: flex;}
.box-inner {position: relative;}
.sec-activity .box-wrap .box-hashtag {font-size: 42px;color: #faff37;font-weight: 700;position: absolute;right: 0;bottom: 0;}
/* box1 */
.sec-activity .box-wrap.box01 {
	justify-content: flex-end;
	padding-right: 5rem;
}
.sec-activity .box-wrap.box01 .box-inner {
	/* max-width: 608px; */
	/* width: 32vw; */
	width: 55.6rem;
	height: 36.6rem;
}
.sec-activity .box-wrap.box01 .box-hashtag {
	/* right: 4%;
	bottom: -4%; */
	right: 8%;
	bottom: -6.3%;
}

/* box2 */
.sec-activity .box-wrap.box02 {
	/* margin-top: -5vw; */
	margin-top: -6rem;
}
.sec-activity .box-wrap.box02 .box-inner  {
	/* max-width: 721px; */
	/* width: 40vw; */
	width: 60.8rem;
	height: 80rem;
}
.sec-activity .box-wrap.box02 .box-hashtag {
	/* right: -4%; */
	right: -14%;
	bottom: 6%;
}

/* box3 */
.sec-activity .box-wrap.box03 {
	justify-content: flex-end;
	/* margin-top: -34vw;
	margin-right: 26vw; */
	margin-top: -50rem;
	margin-right: 25.6vw;
}
.sec-activity .box-wrap.box03 .box-inner  {
	/* max-width: 314px; */
	/* width: 18vw; */
	width: 33.9rem;
	height: 39.9rem;
}
.sec-activity .box-wrap.box03 .box-hashtag {
	/* right: 10%;
	bottom: -6%; */
	right: 14%;
	bottom: -5.5%;
}

/* box4 */
.sec-activity .box-wrap.box04 {
	/* margin-top: 18vw; */
	margin-top: 16rem;
	/* margin-left: 45vw; */
	margin-left: 39vw;
}
.sec-activity .box-wrap.box04 .box-inner  {
	/* max-width: 200px; */
	/* width: 11vw; */
	width: 20rem;
	height: 19.5rem;
}

/* with us */
.travelary-contents .section.sec-withus {
	overflow: hidden;
	padding: 18rem 0 41.8rem;}
.travelary-contents .section.sec-withus .section-inner{
	padding: 0 0 0 3rem;
}
.sec-withus .wrap-svg {
	/* max-width: 797px; */
	max-width: 85.6rem;
	width: 100%;
	margin-left: -2.1rem;
}
.sec-withus .section-text {font-size: 52px;line-height: 1.34;color: #111;margin-top: 92px;}
.withus-slider-wrap {position: relative;}
.withus-slider-wrap .list-wrap {position: relative;}
.withus-slider-wrap .btn-section-more {position: absolute;left: 465px;top: -24%;}
.withus-slider-text {
	/* max-width: 540px; */
	max-width: 57rem;
	/* margin-top: 46px; */
	color: #111;
	overflow: hidden;
}
.withus-slider-text .slick-list {margin:-1px 0 0 0}
.withus-slider-text li {
	/* padding: 24px 0; */
	padding: 2.4rem 0;
}
.withus-slider-text .slick-slide {position: relative;border: 0;}
.withus-slider-text .slick-slide::before {content:'';position:absolute;left:0;top:0;width:100%;height:1px;background:rgba(0, 0, 0, 0.2);}


.withus-slider-text .list-btn {display: block;display: flex;}
.withus-slider-text .num {
	/* font-size: 18px; */
	letter-spacing: normal;
	/* font-weight: 700; */
	/* font-family: 'Bodoni Moda'; */
	/* margin-right: 10px; */
	/* margin-top:  5px; */
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 3rem;
	margin-top: 0.5rem;
	margin-right: 1.2rem;
}
.withus-slider-text .text {
	/* font-size: 24px;
	font-weight: 300; */
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 4rem;
}
.withus-slider-text .slick-current .text {
	/* font-weight: 700; */
	font-weight: 600;
}
.sec-withus .card-wrap {
	position: absolute;
	right: 0;
	/* top: -313px; */
	top: -31.3rem;
}
.sec-withus .card-inner {
	background: #fff;
	/* width: 834px;
	height: 700px; */
	width: 83.4rem;
	height: 70rem;
	display: block;
	overflow-x: visible;
}
.withus-slider-card .slick-list {overflow: visible;}
.withus-slider-card .slick-dots {
	position: absolute;
	/* top: 637px;
	left: 20px; */
	bottom: 3rem;
	left: 0;
	width: 43vw;
	margin-top: 0;
	padding-left: 8rem;
}
.withus-slider-card .card-category-wrap {
	/* padding-left: 26px;
	height: 90px; */
	padding-left: 3.2rem;
	height: 9rem;
	display: flex;
	align-items: center;
}
.withus-slider-card .card-category-wrap:after {content:'';display: block;width: 100%;height: 1px;background: #E5E5E5;}
.withus-slider-card .card-category {
	position: relative;
	/* font-size: 28px; */
	font-size: 2.8rem;
	color: #111;
	/* letter-spacing: normal; */
	letter-spacing: 2%;
	/* font-weight: 700; */
	font-weight: 400;
	/* font-family: 'Bodoni Moda'; */
	font-family: 'anth';
	/* margin-right: 42px; */
	margin-right: 2.3rem;
	margin-top: 0.6rem;
	flex-shrink: 0;
}
.withus-slider-card .card-category i{
	font-weight: 400;
	font-family: "anth";
	padding: 0 2rem 0 1.4rem;
}
.withus-slider-card .card-category i:last-child:not(:first-child){
	margin-left: -2.8rem;
}
.withus-slider-card .card-category i:last-child:before {
	content: '';
	display: block;
	background: #816c5b;
	position: absolute;
	right:0;
	top: auto;
	bottom: 0.6rem;
	width: 0.8rem;
	height: 1.4rem;
	border-radius: 0;
	margin: 0;
	mix-blend-mode: hard-light;
}

.withus-slider-card .card-category i:last-child:after {
	content: '';
	display: block;
	background: #816c5b;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.6rem;
	width: 100%;
	height: 1.4rem;
	opacity: 0.5;
	mix-blend-mode: hard-light;
	mix-blend-mode: hard-light;
}
/* .withus-slider-card .card-category:before {
	content: '';
	display: block;
	background: #FF5245;
	position: absolute;
	right: -8px;
	bottom: 0;
	width: 8px;
	height: 51%;
	mix-blend-mode: hard-light;}
.withus-slider-card .card-category:after {
	content: '';
	display: block;
	background: #FF5245;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 120%;
	height: 51%;
	opacity: 0.5;
	mix-blend-mode: hard-light;
	mix-blend-mode: hard-light;
} */
.withus-slider-card .card-img-wrap {
	/* padding-left: 26px; */
	padding-left: 2.6rem;
}
.withus-slider-card .card-img-big {
	position: relative;
	width: 100%;
	/* height:610px; */
	height: 61rem;
	/* height:35.4vw; */
	overflow:hidden;
}
.withus-slider-card .img-scale {position: absolute;left: 0;right: 0;top: 0;bottom: 0;transition: 0.4s;}
.withus-slider-card .img-scale:hover {-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2);}
.withus-slider-card .card-img-big img {
	position: absolute;
	opacity: 0;
	/* top: 50%; */
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	/* max-width: 85rem; */
	object-fit: cover;
	transition: 1s;
	/* left:50%;  */
	/* transform: translate(-50%, -50%); */
	/* -webkit-user-drag: none;
	user-select: none; */
}
.withus-slider-card .card-img-big {transform: rotate(10deg);transition: 1s;}
.withus-slider-card .slick-current .card-img-big img {
	opacity: 1;
	/* transform: translate(-50%, -50%) */
}
.withus-slider-card .slick-current .card-img-big {transform: rotate(0);}
.withus-slider-card .card-img-small {
	position: absolute;
	/* left: -114px;
	bottom: -60px;
	width: 313px;
	height:386px; */

	left: -12rem;
	bottom: -6rem;
	width: 31.3rem;
	height: 38.6rem;

	/* left: -12rem;
	bottom: -6rem;
	width: 16vw;
	height: 20vw; */
	overflow:hidden;
}
.withus-slider-card .slick-current .card-img-small img {opacity: 1;}
.withus-slider-card .card-img-small img {width: auto;opacity: 0.9;height: 100%;position: absolute;left: 50%;transform: translateX(-50%);}
.sec-withus .slider-controls {
	/* margin-top: 56px; */
	margin-top: 4rem;
	/* display: none; */
}
.sec-withus .slider-controls .slick-arrow{
	width: 4.8rem;
	height: 4.8rem;
	text-indent: -9999px ;
	border: 1px solid #ffffff;
}
.slider-controls .slick-arrow + .slick-arrow{
	margin-left: 1.2rem;
}
.sec-withus .slider-controls .slick-arrow + .slick-arrow{
	margin-left: 1.6rem;
}
.sec-withus .slider-controls .slick-arrow::before{
	content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 50%;
	border: 1px solid #ffffff;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  background-color: #111111;
  z-index: 1;
  transform-origin: unset;
}
.sec-withus .slider-controls .slick-arrow:hover::before,
.sec-withus .slider-controls .slick-arrow:focus-visible::before{
	-webkit-animation: none;
  animation: none;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-color: #000000;
}
.sec-withus .slider-controls .slick-arrow::after{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2rem;
	height: 2rem;
	border: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23ffffff' stroke-width='1.2' d='M10 2.998c0 .74.733 1.847 1.475 2.777.954 1.197 2.094 2.243 3.401 3.042.98.598 2.169 1.172 3.124 1.172m-8 7.009c0-.74.733-1.848 1.475-2.778.954-1.197 2.094-2.243 3.401-3.042.98-.598 2.169-1.172 3.124-1.172m0-.008H2'/%3E%3C/svg%3E");
	background-size: 2rem 2rem;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 0.2s ease-out;
	/* transform: rotate(0); */
	z-index: 2;
}
.sec-withus .slider-controls .slick-arrow.slick-prev::after{
	transform: rotate(180deg) translate(50%, 50%);
}
.sec-withus .slider-controls .slick-arrow:focus-visible::after,
.sec-withus .slider-controls .slick-arrow:hover::after{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3cpath stroke='%23ffffff' stroke-width='1.2' d='M12 3.836c0 .874.815 2.18 1.64 3.279 1.062 1.413 2.33 2.648 3.784 3.59 1.09.707 2.413 1.385 3.476 1.385M12 20.364c0-.874.815-2.18 1.64-3.279 1.062-1.413 2.33-2.648 3.784-3.59 1.09-.707 2.413-1.385 3.476-1.385m0-.01H3.1'/%3e%3c/svg%3e");
}
/* .withus-slider-text.slick-slider .slick-track,
.sec-withus .slider-controls .slick-arrow:after {border-color: #111;} */

/* withus-swiper-wrap 접근성 스타일 추가 */
.withus-swiper-wrap .swiper-notification{
	display: none;
}

/* caster */
.sec-caster .section-title-svg {text-align: right;}
.sec-caster .wrap-svg {
	/* max-width: 783px; */
	max-width: 78.3rem;
	width: 100%;
}
.sec-caster .section-text {
	font-size: 42px;
	line-height: 1.42;
	color: #111;
	font-weight: 300;
	/* width: 48.8%; */
	width: 50%;
	word-break: keep-all;}
.sec-caster .section-text-wrap {
	display: flex;
	justify-content: flex-end;
	/* margin-top: 280px; */
	margin-top: 28rem;
}
.sec-caster .video-list-wrap {
	/* margin-top: -280px; */
	margin-top: -28rem;
}
.sec-caster .video-thumb {position: relative;overflow: hidden;}
.sec-caster .video-thumb:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content:'';
	display: block;
	background: url("/assets/image/travelary/ico_video_play02.webp") center no-repeat;
	/* background-size: 130px 130px; */
	background-size: 8rem 8rem;
	transition: 0.4s;}
.sec-caster .video-btn:hover .video-thumb:after {
	background-color: rgba(0, 0, 0, 0.4);
	/* background-size: 130px 130px; */
	background-size: 8rem 8rem;
}
.sec-caster .video-btn .video-thumb .img-scale {position: absolute;top: 0;left: 0;right: 0;bottom: 0;transition: 0.4s;}
.sec-caster .video-btn:hover .video-thumb .img-scale {-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2);}
.sec-caster .video-thumb {position: relative;}
.sec-caster .video-thumb img {position: absolute;width: auto;height: 100%;left: 50%;transform: translateX(-50%);}
.sec-caster .video-info-wrap {width: 426px;}
.sec-caster .video-thumb.thumb01 {
	/* width: 426px;
	height: 500px; */
	width: 42.6rem;
	height: 50rem;
}
.sec-caster .video-thumb.thumb02 {
	/* width: 426px;
	height: 450px; */
	width: 42.6rem;
	height: 45rem;
}
.sec-caster .video-thumb.thumb03 {
	/* width: 720px;
	height:400px; */
	width: 72rem;
	height:40rem;
}
.sec-caster .video-thumb.thumb03 img {width: 100%;}
.sec-caster .video-info-wrap {text-align: left;margin-top: 40px;}
.sec-caster .video-category {font-size: 24px;letter-spacing: normal;font-weight: 700;font-family: 'Bodoni Moda';color: #FF5245;}
.sec-caster .video-category.bg-i i::before {margin:0 6px;background:#FF5245}
.sec-caster .video-title {font-size: 28px;font-weight: 300;line-height: 1.35;color: #111;margin-top: 10px;word-break: keep-all;}
.sec-caster .video-author {
	display: block;
	font-size: 14px;
	/* font-weight: 300; */
	font-weight: 400;
	line-height: 1.7;
	color: #111;
	margin-top: 16px;
}
.sec-caster .position-left {display: flex;justify-content: flex-start;}
.sec-caster .position-left .video-box {width: 50%;text-align: right;}
.sec-caster .position-right {display: flex;justify-content: flex-end;}
.sec-caster .video-list-wrap .list01 .video-box {
	/* padding-right: 232px; */
	padding-right: 24.5rem;
}
.sec-caster .video-list-wrap .list02 {
	/* max-width: 1339px; */
	max-width: 165rem;
	width: 100%;
	margin: -18rem auto 0;}
.sec-caster .video-list-wrap .list02 .video-box {padding-left: 10px;}
.sec-caster .video-list-wrap .list02 .video-btn {display: flex;flex-direction: row-reverse;align-items: flex-end;}
.sec-caster .video-list-wrap .list02 .video-info-wrap {
	/* max-width:540px;
	margin-right: 40px; */
	max-width:54rem;
	margin-right: 4rem;
	text-align: right;
}
.sec-caster .video-list-wrap .list03 {
	/* margin-top: 150px;
	margin-bottom: 120px; */
	margin-top: 14.8rem;
	margin-bottom: 13.5rem;
}
.sec-caster .video-list-wrap .list03 .video-box {text-align: left;}
.sec-caster .video-list-wrap .list03 .video-info-wrap {
	/* margin-left: 295px; */
	margin-left: 28rem;
	margin-top: 2.8rem;
}

/* main - sec-graphy */
.travelary-contents .sec-graphy {
	/* padding-top: 315px; */
	padding-top: 31.5rem;
}
.sec-graphy .section-title-svg {position: relative;z-index: 2;}
.sec-graphy .section-inner {position: relative;}
.sec-graphy .wrap-svg {
	/* max-width: 836px; */
	max-width: 83.6rem;
	width: 100%;
}
.graphy-bg-area {
	position: absolute;
	top: -27rem;
	left: 3rem;
	/* top: -205px;
	left: 0; */
	/* width: 733px;
	height: 957px; */
	width: 73.3rem;
	height: 95.7rem;
	/* background: url('/assets/image/travelary/main/map_bg.webp') no-repeat; */
	background: url('/assets/image/travelary/main/map_bg_2026.webp') no-repeat;
	background-size: cover;
	background-color: transparent;
}
.graphy-pin-wrap {position: absolute;}
.graphy-pin-wrap .pin {
	position: relative;
	/* width: 40px;
	height: 60px; */
	width: 4rem;
	height: 6rem;
	background: url('/assets/image/travelary/main/map_pin.webp') no-repeat;
	background-size: contain;
	z-index: 2;
}
.graphy-pin-wrap.pin01 {left: 50%;top: 12%;}
.graphy-pin-wrap.pin02 {left: 18%;top: 47%;}
.graphy-pin-wrap.pin03 {left: 16%;bottom: 2%;}
.graphy-pin-wrap.pin04 {left: 54%;top: 60%;}
.graphy-pin-wrap span {position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);background: #FF5245;width: 77px;height: 77px;border-radius: 50%;}
.circle-wrap {position: absolute;left: 50%;top: 90%;}
.graphy-pin-wrap .circle01 {width: 77px;height: 77px;opacity: 0.12;}
.graphy-pin-wrap .circle02 {width: 153px;height: 153px;opacity: 0.08;}
.graphy-pin-wrap .circle03 {width: 205px;height: 205px;opacity: 0.04;}
.graphy-content-wrap {display: flex;justify-content: flex-end;margin-top: 180px;}
.graphy-content {width: 50%;}
.graphy-content .btn-round {
	min-width: auto;
	padding: 0;
}
.graphy-content .btn-round .text{
	font-size: 1.8rem;
	line-height: 3rem;
	margin-right: 1.6rem;
}
.graphy-count-wrap {
	display: flex;
	align-items: flex-end;
	/* font-size: 42px; */
	font-size: 3.6rem;
	color: #111;
	/* font-weight: 300; */
	font-weight: 400;
	word-break: keep-all;
}
.graphy-count-num {
	font-size: 6.4rem;
	line-height: 8rem;
	font-weight: 500;
	position: relative;
	/* margin-right: 2.2rem; */
	margin-right: 0.8rem;
}
.graphy-count-num #num {position: relative;}
.graphy-count-num #num::after {content:'';position: absolute;left:0;bottom:15px;display: block;width: 100%;height: 30px;background: #FF5245;opacity: 0.4;}
.graphy-count-num:before {position: absolute;bottom: 14px;left: -5px;content:'';display: block;width: 0;height: 30px;background: #FF5245;opacity: 0.4;transition: 0.3s;}
.graphy-count-num.on:before {width: 106%;}

.graphy-content-wrap .section-text {
	margin: 3.8rem 0 4rem;
	font-size: 3.6rem;
	line-height: 5.2rem;
	color: #111;
	word-break: keep-all;
}
/* newsletter */
.travelary-newsletter {padding: 200px 0;}
.travelary-newsletter .news-head{text-align: center;}
.news-title {
	/* font-size: 68px; */
	font-size: 5.2rem;
	letter-spacing: normal;
	/* font-weight: 700;
	font-family: 'Bodoni Moda'; */
	font-weight: 400;
	font-family: 'anth';
	color: #111;
}
.news-text {
	/* font-size: 18px; */
	font-size: 1.8rem;
	color: #111;
	line-height: 3rem;
	margin-top: 1rem;}
.subscribe-form {
	width: 100%;
	/* max-width: 652px; */
	max-width: 65.2rem;
	margin: 0 auto;
	/* margin-top: 35px; */
	margin-top: 4rem;
}
.subscribe-agree {
	/* margin-top: 23px; */
	margin-top: 1.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.subscribe-input-box {
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #111;
	border-bottom: none;
  /* gap: 0.8rem; */
  gap: 1.2rem;
}
.subscribe-input {
	display: block;
	font-size: 1.8rem;
	width: 100%;
  height: 5.2rem;
  padding: 0 1.6rem;
  border-radius: 0.4rem;
  color: #111111;
  border: 1px solid #dddddd;
  /* flex-shrink: unset; */
}
.subscribe-input input::placeholder {color: #fff;}
.subscribe-btn {
	display: block;
	color: #ffffff;
	/* font-size: 1.8rem; */
	font-size: 1.5rem;
	font-weight: 600;
	width: 16rem;
  height: 5.2rem;
  background: #111111;
  justify-content: center;
  border: 1px solid #111111;
  border-radius: 0.4rem;
  padding: 0 0.8rem;
  flex-shrink: 0;
}
.subscribe-btn:focus-visible {
	outline: 2px dashed blue;
	outline-offset: 0.2rem;
}
.subscribe-agree .input-checkbox .txt{
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.8rem;
	padding-left: 3.2rem;
}
.subscribe-agree .input-checkbox label:before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #dddddd;
  background: #fff;
}

.subscribe-agree .input-checkbox label:after{
	transform: translateY(-50%);
	border: none;
	transition: none;
}

.subscribe-agree .input-checkbox :checked+label:after {
  content: '';
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3crect width='24' height='24' fill='%23816C5B' rx='2'/%3e%3cpath stroke='white' stroke-linecap='square' stroke-linejoin='round' stroke-width='1.4' d='m6 12.2 3.857 3.655L18 8.14'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: cover;
}
/* .subscribe-agree .input-checkbox :focus-visible + label {
  outline: 1px solid #111111;
  outline-offset: 1px;
} */
.subscribe-agree .btn-detail .text {
	display: flex;
	align-items: center;
	/* font-size: 14px;
	font-weight: 300; */
	font-size: 1.6rem;
	font-weight: 400;
}
.subscribe-agree .btn-detail .text:after {content:'';display: block;width: 5px;height: 5px;border-top: 1px solid #111;border-right: 1px solid #111;border-right: 1px solid #111;transform: rotate(45deg);margin-top: 1.5px;margin-left: 5px;}

/*20211007 광고성 정보수신동의 추가*/
.travelary-newsletter .subscribe-agree .input-agree > span{display:block;}
.travelary-newsletter .subscribe-agree .input-agree > span + span{margin-top:20px;}
.layer-pop#newsletterPersonal,
.layer-pop#newsletterPersonal table td,
.layer-pop#newsletterAd{word-break:keep-all;}
.layer-pop#newsletterPersonal p{margin-top:10px;}
.layer-pop#newsletterPersonal p,
.layer-pop#newsletterAd p{line-height:1.5em;}


/* wideTablet */
@media (max-width:1500px) {
	/* wideTablet - coverstory */
	.coverstory-slider-category {display: none;}
	.slider-category {display: block;}

	/* wideTablet - with us */
	/* .travelary-contents .section.sec-withus {padding-bottom: 200px;}
	.withus-slider-wrap .btn-section-more {right: 0;}
	.withus-slider-wrap .card-wrap {position: relative;right: auto;top: -70px;float: right;}
	.withus-slider-wrap .card-wrap:after{display: block;content: "";clear: both;} */
}


/* Tablet */
@media (max-width:1024px) {

	/* .travelary-anchor {position: absolute;left: 0;top: 0;transform: none;background: #fff;border-top: 2px solid #E5E5E5;border-bottom: 2px solid #E5E5E5;}
	.travelary-anchor.fixed {position: fixed;top: 80px;}
	.travelary-visual {max-height: none;}
	.travelary-visual .visual-copy {padding:0 60px}
	.anchor-wrap {height: 40px;display: flex;justify-content: center;align-items: center;}
	.travelary-anchor .anchor-list {text-align: center;padding-right: 0;}
	.travelary-anchor .anchor-list + .anchor-list {margin-left: 52px;}
	.travelary-anchor[data-color="#FFFFFF"] .anchor-list .anchor-btn,
	.travelary-anchor[data-color="#000000"] .anchor-list .anchor-btn {color: #111111;opacity: 0.2;}
	.travelary-anchor .anchor-list:after {display: none;}
	.travelary-anchor[data-color="#FFFFFF"] .anchor-list.on .anchor-btn,
	.travelary-anchor[data-color="#000000"] .anchor-list.on .anchor-btn {opacity: 1;} */
	.section-inner{padding: 0 46px;width: auto;}

	/* tablet - coverstory */
	/* .sec-coverstory .btn-section-more {position: static;margin-bottom: 24px;justify-content: flex-end;} */
	.coverstory-slider-text {margin-top: -8vw;}
	.sec-coverstory .slider-title {font-size: 12vw;}
	/* tablet - activity */
	.move-section {display: none;}

	/* tablet - withus */
	/* .travelary-contents .section.sec-withus {padding-bottom: 300px;}
	.withus-slider-wrap .card-wrap {float: none;top: 0;margin-top: 40px;}
	.sec-withus .card-inner {width: 618px;height: 500px;}
	.withus-slider-card .card-category-wrap {height: 80px;padding-left: 48px;}
	.withus-slider-card .card-img-wrap {padding-left: 0;padding-right: 30px;}
	.withus-slider-card .card-img-small {width: 230px;height:300px;left: auto;right: -87px;top: -176px;bottom: inherit;}
	.withus-slider-wrap .btn-section-more {top: -148px;left: 630px;right: auto;}
	.withus-slider-card .slick-dots {
		position: absolute;
		top: 515px;
		left: 0;
	}
	.withus-slider-card .card-img-big {height:420px} */

	/*  tablet - caster  */
	.sec-caster .section-title-svg {text-align: left;}
	.sec-caster .video-list-wrap {margin-top: 100px;}
	.sec-caster .section-text-wrap {display: block;margin-top: 40px;}
	.sec-caster .section-text {width: auto;}
	.sec-caster .video-list-wrap {padding: 0 46px;}
	.sec-caster .position-left,
	.sec-caster .position-right{display: block;}
	.sec-caster .position-left .video-box {width: auto;text-align: left;}
	.sec-caster .video-list-wrap .list01 .video-box {padding: 0;}
	.sec-caster .video-list-wrap .list02 {margin-top: 0;}
	.sec-caster .video-list-wrap .list02 .video-box {width: auto;}
	.sec-caster .video-list-wrap .list02 .video-info-wrap {width:auto;max-width:none;margin-right: 0;text-align: left;}
	.sec-caster .video-list-wrap .list02 .video-box {padding-left: 0;}
	.sec-caster .video-list-wrap .list02 .video-btn {display: block;}
	.sec-caster .video-list-wrap .list03 {margin-top: 0;margin-bottom: 0;}
	.sec-caster .video-list-wrap .list03 .video-info-wrap {margin-left: 0;}
	.sec-caster .video-list-wrap > ul > li + li {margin-top: 80px !important;}
	.sec-caster .video-thumb.thumb01,
	.sec-caster .video-thumb.thumb02,
	.sec-caster .video-thumb.thumb03{width: 100%;height: auto;padding-bottom: 59%;}
	.sec-caster .video-thumb img,
	.sec-caster .video-thumb.thumb03 img {position: absolute;top: 0;left: 0;width: 100%;height: 100%;transform: none;}
	.sec-caster .video-btn {width: 100%;}
	.sec-caster .button-wrap {margin-top: 80px;}

}

@media (max-width:1279px) {
	/* .travelary-visual{height: calc(100vh - 63px);} */
	.cover-story-wrap .content{
		padding: 0;
	}
}

/* Mobile */
@media (max-width:767px){
	.travelary-anchor {position: absolute;left: 0;top: 0;transform: none;background: #fff;border-top: 2px solid #E5E5E5;border-bottom: 2px solid #E5E5E5;}
	.travelary-anchor.fixed {position: fixed;top: 80px;}
	.travelary-visual {max-height: none;}
	.travelary-visual .visual-copy {padding:0 60px}
	.anchor-wrap {height: 40px;display: flex;justify-content: center;align-items: center;}
	.travelary-anchor .anchor-list {text-align: center;padding-right: 0;}
	.travelary-anchor .anchor-list + .anchor-list {margin-left: 52px;}
	.travelary-anchor[data-color="#FFFFFF"] .anchor-list .anchor-btn,
	.travelary-anchor[data-color="#000000"] .anchor-list .anchor-btn {color: rgba(0, 0, 0, 0.3)}
	.travelary-anchor .anchor-list:after {display: none;}
	.travelary-anchor[data-color="#FFFFFF"] .anchor-list.on .anchor-btn,
	.travelary-anchor[data-color="#000000"] .anchor-list.on .anchor-btn {color: rgba(0, 0, 0, 1);}

	/* 영상팝업 */
	.popup-group .popup-video-wrap {position:relative;height:auto;padding-bottom:66.25%}
	.popup-group .popup-video-wrap iframe {position: absolute;left:0;top:0;width:100%;height:100%}
	.btn-gotop {display: none !important;}
	.input-checkbox label .txt {font-size: 12px;}
	/* common - flag */
	.flag-wrap {
		/* width: 10rem;
		height: 6rem; */
	}
	.flag-text-wrap .wrap-svg svg {width:89px;height:29px}
	.flag-wrap .flag-text {
		font-size: 1.2rem;
		line-height: 1.4rem;
	}
	.flag-icon {margin-right: 7px;}
	.flag-icon.ico-coupon {width: 22.5px;height: 20px;}
	.bg-i i + i::before {width: 3px;height: 3px;margin:0 5px;top:-1px}

	/* common - button */
	.btn-section-more .text {font-size: 20px;}
	.btn-round {height: 40px;min-width: 135px;}
	.btn-round .text {
		font-size: 1.4rem;
	}
	.ico-more-02 {width: 12.8px;margin-top: 1px;}
	.ico-more-02:before,
	.ico-more-02:after {width: 7px;top: -1px;}
	.ico-more-02,
	.ico-more-02:before,
	.ico-more-02:after,
	.white .ico-more-02,
	.white .ico-more-02:before,
	.white .ico-more-02:after {border-top-width: 1px;}
	.btn-more-plus .text {line-height: 2.2rem;}
	.icon-more-plus {
		width: 2.4rem;
		height: 2.4rem;
		margin-bottom: 0.4rem;
	}
	.travelary-contents .section {
		padding: 7.5rem 0;
	}
	.section-inner{width:100%;padding: 0 1.8rem;max-width: none;}
	.ico-more-01 {width: 9.5px;margin-top: 4px;}
	.ico-more-01:before {width: 5px;}
	.ico-more-01:after {width: 5px;}

	/* mobile - slick */
	.slider-controls .slick-arrow {width: 30px;height: 30px;}
	.slider-controls .slick-arrow:after {width: 6.5px;height: 6.5px;border-width: 1px;}
	.slick-dots li button {width: 8px;height: 8px;}
	.slider-dots-wrap {margin: 0 27.5px;}
	.slick-dots li + li {margin-left: 10px;}
	.travelary-anchor,
	.travelary-anchor.fixed {
		position: fixed;
		/* top: 0; */
		top: 5.6rem;
		border-width: 1px;
	}
	.travelary-nudge {width: 240px;height: 50px;bottom: 28px;}
	.travelary-nudge.ie {bottom:0;margin-bottom:28px}
	.travelary-nudge .nudge-text {font-size: 18px;}
	.anchor-wrap {height: 40px;flex-wrap: nowrap;overflow-x: auto;justify-content: left;padding: 0 23px;-ms-overflow-style: none; /* IE and Edge */scrollbar-width: none; /* Firefox */;-webkit-overflow-scrolling: touch;}
	.anchor-wrap::-webkit-scrollbar {display: none; /* Chrome, Safari, Opera*/}
	.travelary-anchor .anchor-list {/*flex: 1 0 auto;*/white-space: nowrap;}
	.travelary-anchor .anchor-list + .anchor-list {margin-left: 18px;}
	.travelary-anchor .anchor-list .anchor-btn .text {font-size: 14px;display: inline-block;width:100%;box-sizing: border-box;white-space: nowrap;}
		.travelary-visual {
			padding: 0 11.5px;
			height: calc(100vh - 63px);
			display: flex;
			align-items: center;
			justify-content: center;
		}
	.travelary-visual .visual-copy {position: static;left: auto;top: auto;transform: none;margin-top: 0;padding: 0 5px;}
	.travelary-visual .visual-title .wrap-svg {
		/* max-width: 313px;
		height:46px;
		margin-bottom:15px; */
		max-width: 31.5rem;
		height: 4.8rem;
		margin-bottom: 2.2rem;
	}
	.travelary-visual .visual-text {font-size: 15px;}
	.travelary-visual .visual-text .point{margin-bottom:1.6rem}
	.travelary-visual .visual-text .point strong {
		/* font-size:32px; */
		font-size:3.2rem;
	}
	.travelary-visual .visual-text .point span em {
		/* font-size:22px; */
		font-size:2rem;
	}
	.resort-new-styles .travelary-visual .visual-text .point span em:after{
		left: -1rem;
		right: -0.5rem;
		bottom: -0.55rem;
		height: 1.1rem;
	}
	.resort-new-styles .travelary-visual .visual-text .point span em::before{
		right: -1.1rem;
		bottom: -0.55rem;
		width: 0.6rem;
		height: 1.1rem;
	}
	.travelary-visual .visual-text .point .bar::before,
	.travelary-visual .visual-text .point .bar::after {height:10px}
	.travelary-visual .visual-text .point .bar::after {width:6px}
	.travelary-visual .visual-text p {
		/* max-width:320px;
		margin:0 auto; */
		padding: 0 2.8rem;
		font-size:14px
	}
	.travelary-visual .floting-magazine {position:static;transform:initial;margin-bottom:19px}
	.travelary-visual .floting-magazine span {transform:none;font-size:16px}
	.travelary-visual .display-scroll .text {
		/* font-size: 12px; */
	}

	/* mobile - coverstory */
	.travelary-contents .section.sec-coverstory {padding-top: 60px;}
	.sec-coverstory .btn-section-more {position: static;margin-bottom: 0;justify-content: flex-end;}
	.sec-coverstory .slider-controls {margin-top: 40px;}
	.sec-coverstory .section-inner .slick-slide{
		min-height: 17rem;
	}
	.sec-coverstory .section-title {font-size: 31px;margin-bottom: 12px;}
	.sec-coverstory .slider-title {font-size: 36px;margin-bottom: 20px;}
	.slider-category .text {font-size: 15px;}
	.sec-coverstory .slider-text {margin-top: 13px;font-size: 15px;}
	.coverstory-slider-wrap .img-wrap {
		position:relative;
		/* height:320px; */
		height:32rem;
	}
	.coverstory-slider-wrap .img-wrap img {position: absolute;left: 50%;transform: translateX(-50%);height: 100%;}
	.coverstory-slider-img .flag-wrapper {left: 10px;}
	.coverstory-slider-img .flag-text,
	.coverstory-slider-img .flag-box.style02 + .flag-text-wrap .flag-text {
		font-size: 12px;
		margin-top: 0;
	}
	.coverstory-slider-img .flag-icon {
		/* margin-right: 7px; */
		margin-right: 1.1rem;
	}
	.coverstory-slider-img .flag-icon.ico-coupon {width: 26px;height: 23px;}
	.slider-category .text:after {bottom: 0;height: 51%;}
	.slider-category .text:before {right: -8%;bottom: 0;width: 8%;height: 51%;}

	/* mobile - 메인영상 popup */
	#popup-caster-video .popup-container {
		display: flex;
		flex-direction: column-reverse;
		width: calc(100% - 4rem);
	}
	#popup-caster-video .popup-container .btn-popup-close {
		position: absolute;
		right: 0;
		top: -3.6rem;
		right: 0;
		/* top: -53px; */
		background: url('/assets/image/travelary/ico_close_01_mo.webp') no-repeat center;
		/* background-size:34px 34px; */
	}
	#popup-caster-video .popup-header {
		height:auto;
		/* padding:16px 20px 16px 20px */
		padding:1.4rem 2rem;
	}
	#popup-caster-video .popup-video-title {display:block;}
	#popup-caster-video .popup-video-title .title {
		padding:0;
		/* font-size:18px;
		margin-bottom:7px */
		font-size: 1.8rem;
		line-height: 2.6rem;
		margin-bottom: 0.4rem;
	}
	.popup-video-title .author{
		line-height: 2.2rem;
	}
	#popup-caster-video .popup-video-title .author::before {display:none}

	/* mobile - activity */
	.sec-activity .section-inner {transform:none;}
	.sec-activity .section-title-svg .wrap-svg {max-width: 234px;}
	.sec-activity .section-text {margin-top: 15px;font-size: 24px;}
	.sec-activity .mo-hashtag {display:block;margin-top:36px}
	.sec-activity .mo-hashtag .activity-hashtag {display:inline-block;margin:0 10px;font-size:24px;font-weight:700;color:#FFE600}
	.sec-activity .btn-round {min-width:200px;height:60px}
	.sec-activity .btn-round .text {font-size:18px}

	/* mobile - withus */
	.travelary-contents .section.sec-withus {
		/* padding-bottom:183px;
		padding-top:75px; */
		padding: 7rem 0;
	}
	/* .section.sec-withus .section-inner {padding:0 0 0 18px} */
	.travelary-contents .section.sec-withus .section-inner {
		padding: 0 1.8rem;
	}
	/* .section.sec-withus .section-inner .list-wrap {padding:0 18px 0 0} */
	.sec-withus .wrap-svg {
		/* max-width: 295px; */
		max-width: 31.2rem;
		margin-left: -0.4rem;
	}
	.sec-withus .section-text {font-size: 21px;margin-top: 20px;line-height: 1.42;}
	.withus-slider-text .text {
		/* font-size: 18px; */
		font-size: 1.8rem;
		line-height: 2.6rem;
	}
	.withus-slider-text .num {
		/* font-size: 18px; */
		/* margin-top: 0.5px; */
		margin-top: -0rem;
		margin-right: 1rem;
		font-family: "anth";
	}
	.withus-slider-text {margin-top: 30px;}
	.withus-slider-text li {
		/* padding: 20px 0; */
		padding: 1.6rem 0;
	}
	.sec-withus .slider-controls {
		/* margin-top: 40px; */
		margin-top: 1.2rem;
	}
	.sec-withus .slider-controls .slick-arrow{
		width: 3.2rem;
		height: 3.2rem;
	}
	.sec-withus .slider-controls .slick-arrow::after{
		width: 1.6rem;
		height: 1.6rem;
		background-size: 1.6rem 1.6rem;
	}
	.withus-slider-wrap .card-wrap {float: none;top: 0;margin-top: 20px;}
	.sec-withus .card-inner {width:100%;height: 67vw;}
	.withus-slider-card .card-category-wrap {
		/* height: 11vw;
		padding-left: 16px; */
		height: 4.6rem;
		padding-left: 1.8rem;
	}
	.withus-slider-card .card-category {
		/* font-size: 3vw;
		margin-right: 6vw; */
		font-size: 1.8rem;
		margin-right: 1.4rem;
		margin-top: 0.6rem;
	}
	.withus-slider-card .card-category i{
		padding: 0 1rem;
	}
	.withus-slider-card .card-category i:before{
		bottom: 0.6rem;
		width: 0.4rem;
		height: 0.8rem;
	}
	.withus-slider-card .card-category i:after{
		bottom: 0.6rem;
		height: 0.8rem;
	}
	.withus-slider-card .card-category i + i::before {width: 3px;height: 3px;margin:0 5px;}
	.withus-slider-card .card-img-wrap {
		/* padding-left: 15px; */
		padding-left: 1.8rem;
		padding-right: 0;}
	.withus-slider-card .card-img-small {
		/* width: 36vw;
		height:45vw;
		left: -23px;
		top: inherit;
		bottom:-60px; */
		width: 13.6rem;
		height:16.7rem;
		left: -1.8rem;
		top: inherit;
		bottom: -6rem;
	}
	.resort-new-styles .withus-slider-wrap .btn-section-more {
		/* top: -13vw;
		right: 1.8rem; */
		top: -6rem;
		right: 0;
		left: inherit;
	}
	.withus-slider-card .slick-dots {
		/* position: absolute;
		top: 61vw;
		left: 0;
		margin:0; */
		top: 25.5rem;
		width: 100vw;
		padding-left: 0;
	}
	.withus-slider-card .card-img-big {
		/* height:56vw; */
		height:23.9rem;
	}

	/*  mobile - caster  */
	.travelary-contents .section.sec-caster{
		padding: 20rem 0 10rem;
	}
	.sec-caster .wrap-svg {
		/* max-width: 290px; */
		max-width: 29.8rem;
		width: 100%;
	}
	.sec-caster .section-text-wrap {
		/* margin-top: 20px; */
		margin-top: 2rem;
	}
	/* .sec-caster .section-text {font-size: 21px;} */
	.sec-caster .video-list-wrap {
		/* margin-top: 50px; */
		margin-top: 4rem;
	}
	.sec-caster .video-list-wrap {
		/* padding: 0 18px; */
		padding: 0 1.8rem;
	}
	.sec-caster .video-category {font-size: 14px;}
	.sec-caster .video-category.bg-i i::before {margin: 0 3px;}
	.sec-caster .video-info-wrap {width:auto;margin-top: 20px;}
	.sec-caster .video-title {font-size: 18px;margin-top: 8px;}
	.sec-caster .video-author {font-size: 12px;line-height: 1;margin-top: 12px;}
	.sec-caster .video-list-wrap > ul > li + li {
		/* margin-top: 30px !important; */
		margin-top: 4rem !important;
	}
	.sec-caster .video-thumb:after {
		/* background-size: 80px 80px; */
		background-size: 4.8rem 4.8rem;
	}
	.popup-group .popup-video-wrap .btn-video-play a{
		/* background-size: 80px 80px; */
		background-size: 4.8rem 4.8rem;
	}
	.sec-caster .video-btn:hover .video-thumb:after {
		/* background-size: 80px 80px; */
		background-size: 4.8rem 4.8rem;
	}

	/*  mobile - graphy  */
	.travelary-contents .section.sec-graphy {
		/* padding-top: 30vw; */
		padding-top: 0;
	}
	.sec-graphy .wrap-svg {
		/* max-width: 309px; */
		max-width: 100%;
	}
	.graphy-count-wrap {
		/* font-size: 21px; */
		font-size: 2rem;
		align-items: baseline;
	}
	.graphy-content-wrap {margin-top: 80px;}
	.graphy-content {
		/* width: 75%; */
		width: 73%;
	}
	.graphy-count-num {
		font-size: 2.4rem;
		line-height: 3.6rem;
		font-weight: 600;
		/* margin-right: 0.7rem; */
		margin-right: 0.4rem;
	}
	.graphy-count-num:before {height: 15px;bottom: 7px;left: -2.5px;}
	.graphy-pin-wrap .pin {
		width: 2.6rem;
		height: 4rem;
	}
	.graphy-pin-wrap.pin01 {
		/* left: 21rem;
		top: 7rem; */
		left: 19rem;
		top: 6rem;
	}
	.graphy-pin-wrap.pin02 {
		/* left: 5rem;
		top: 31rem; */
		left: 4.7rem;
		top: 28.4rem;
	}
	.graphy-pin-wrap.pin03 {
		left: 3.5rem;
		bottom: 1.2rem;
	}
	.graphy-pin-wrap.pin04 {
		left: 20rem;
		top: 37.2rem;
	}
	.graphy-pin-wrap .circle01 {
		width: 5rem;
		height: 5rem;
	}
	.graphy-pin-wrap .circle02 {
		width: 10rem;
		height: 10rem;
	}
	.graphy-pin-wrap .circle03 {
		width: 13.4rem;
		height: 13.4rem;
	}
	.graphy-content-wrap .section-text {
		font-size: 2rem;
		line-height: 3.2rem;
		margin-top: 2rem;
		margin-bottom: 3rem;
	}
	.graphy-bg-area {
		/* top: -28vw; */
		top: 0;
		left: 0;
		width: 100%;
		/* height: 66.4rem; */
		height: 61rem;
		background-size: auto 100%;
		background-position: -4.3rem 0;
	}
	.graphy-count-num #num::after {height:2rem;bottom:0.8rem}
	.graphy-content .btn-round .text{
		font-size: 1.6rem;
		line-height: 2.4rem;
		margin-right: 0.8rem;
	}

	/* mobile newsletter */
	.travelary-newsletter {padding: 12rem 0;}
	.travelary-newsletter .input-checkbox label .txt {
		/* font-size:1.4rem; */
		display:inline-block;
		width:100%;
	}
	.news-title {font-size: 3.1rem;}
	.news-text {font-size: 1.4rem;}
	.subscribe-form {
		max-width: none;
		/* margin-top: 2.3rem; */
		margin-top: 3.2rem;
	}
	.subscribe-input-box{
		gap: 0.8rem;
	}
	.subscribe-input {
		width:100%;
		/* font-size: 1.6rem; */
		font-size: 1.4rem;
		line-height: 2.2rem;
		padding: 1.3rem 1.3rem 1.3rem 1.6rem;
		box-sizing: border-box;flex-shrink: inherit;
	}
	.subscribe-input::placeholder {
		font-size: 1.4rem;
		line-height: 2.2rem;
	}
	.subscribe-btn {
		font-size: 1.5rem;
		line-height: 2.3rem;
		width: 10rem;
    text-align: center;
	}
	.subscribe-btn span {
		display:inline-block;width:100%;box-sizing: border-box;
		color: #ffffff;
	}
	.subscribe-agree {margin-top: 2rem;}
	.subscribe-agree .btn-detail .text {
		/* font-size: 1.4rem; */
	}
	.subscribe-agree .btn-detail .text:after {margin-top: 0;}

}


/* Sub Contents */
.full-visual02.content-wrap {padding:0}
.m-show {display:none}
.pc-show {display:block}
.mo-show{display:none;}

/* sns share */
.sns-share-area {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	z-index: 5;
}
.sns-share-area .btn-ctr-share {
	cursor: pointer;
	display: block;
	background-image: url("/assets/image/travelary/sns_share.webp") ;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	/* width: 60px;
	height: 60px; */
	width: 6rem;
	height: 6rem;
	transition: background-image 0.5s ease;
}
.sns-share-area .share-list .item {display: block;height:40px}
.sns-share-area .share-list {
	display: none;
	flex-flow:column;
	position: absolute;
	/* top: -154px;
	right: 10px; */
	top: -15.4rem;
	right: 1rem;
}
.sns-share-area .share-list li {
	opacity: 0;
	background-size: 100%;
	/* width: 40px;
	height: 41px; */
	width: 4rem;
	height: 4rem;
	background-repeat: no-repeat;
	background-position: center;
	/* margin-bottom: -5px; */
	margin-bottom: -0.5rem;
	transform:translateY(25px) scale(0.7);
	z-index:1;
}
.sns-share-area .share-list li:nth-child(1) {
	background: url("/assets/image/travelary/sns_kakao.webp");
	/* background-size: contain; */
	background-size: cover;
}
.sns-share-area .share-list li:nth-child(2) {
	background: url("/assets/image/travelary/sns_facebook.webp");
	/* background-size: contain; */
	background-size: cover;
}
.sns-share-area .share-list li:nth-child(3) {
	/* background: url("/assets/image/artvillas/twitter_x.webp"); */
	background: url("/assets/image/artvillas/twitter02.webp");
	/* background-size: contain; */
	background-size: cover;
}
.sns-share-area .share-list li:nth-child(4) {
	background: url("/assets/image/travelary/sns_copy.webp");
	/* background-size: contain; */
	background-size: cover;
}
.sns-share-area .btn-ctr-share.toggle {background-image: url("/assets/image/travelary/sns_shrea_close.webp") ;}
.sns-share-area .btn-ctr-share.toggle .share-list {display: block;}

.visual-head.type-sub {
	background:#fff;
	padding-top: 20.4rem;
  position: static;
  height: auto;
}
@media (max-width: 767px) {
	/* .visual-head {display: none;} */
	.visual-head.type-sub {
		padding-top: 8rem;
	}
	.visual-head .visual-bi {
		font-size: 2.4rem;
		line-height: 3.6rem;
		font-weight: 600;
		color: #111111;
		margin: 0 0 4rem 0;
	}
}
.visual-head.type-sub .visual-bi {
	color:#111;
	font-family: "Pretendard Variable";
}
.visual-head.type-sub .visual-bi svg {fill:#111;}
.visual-head.type-sub02 {top: 0;background: #fff;border-bottom: 1px solid #E5E5E5;}
.visual-head.type-sub02.fixed {top:80px;}
.visual-head.type-sub02 .visual-bi svg {fill:#111;}

.visual-head.type-sub02 .travlery-breadcrumbs li + li:before,
.visual-head.type-sub .travlery-breadcrumbs li + li:before{background:rgba(0, 0, 0, 0.2);}
.visual-head.type-sub .btn-depth-link,
.visual-head.type-sub02 .btn-depth-link{color:#111;}
.visual-head.type-sub02 .ico-home,
.visual-head.type-sub .ico-home{background:url('/assets/image/travelary/ico_home.webp') center no-repeat;background-size:contain;}



.visual-copy-sub {
	position: absolute;
	text-align: center;
	color: red;
	/* padding: 0 120px; */
	/* max-width: 1080px; */
	max-width: 130rem;
	width: 100%;
	padding: 0;
	/* text-align: right; */
	text-align: left;
	z-index: 1;
	color:#fff;
	/* left:35%; */
	left: 50%;
	box-sizing: border-box;
	transform: translateX(-50%);
}
.visual-copy-sub .visual-title {
	font-family: 'Bodoni Moda';
	/* font-size:120px; */
	font-size: 12rem;
	font-weight:700;
}
.visual-copy-sub .visual-text {
	/* float:right; */
	/* margin-top: 38px;
	font-size: 42px;
	line-height: 1.5;
	font-weight: 300; */
	text-align:left;

	font-size: 4.4rem;
  font-weight: 500;
  line-height: 6rem;
  margin-top: 4rem;
	padding-left: 8rem;
}
.visual-copy-sub .visual-text .color-change {font-weight:700}
.visual-copy-sub.back {
	/* top:300px; */
	/* top: 30rem; */
	top: 28rem;
	z-index: 2;
}
.visual-copy-sub.front {
	overflow:hidden;
	/* top:300px; */
	/* top: 30rem; */
	top: 28rem;
	color:#111111;
}
.visual-copy-sub.align-left .visual-text {
	/* max-width: 810px; */
	max-width: 81rem;
	width:100%;
}

.visual-con {
	width:100%;
	/* padding:237px 0 0 0; */
	text-align: center;
	color:#111;
	/* font-size:18px;
	line-height: 1.5; */
	font-size:1.8rem;
	line-height: 3rem;
}
.visual-con .v-img {
	position:relative;
	height: 48rem;
	width: 133.1rem;
	margin: 0 auto;
}
.visual-con .v-img .imgbx {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
}
.visual-con .v-img img {
	margin:0 auto;
	vertical-align: top;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.visual-con .v-txt {
	/* margin:4rem 0 0 0; */
	margin:11.4rem 0 0 0;
}
.visual-con .v-txt strong {
	/* font-weight:700; */
	font-weight:600;
}
.visual-con .v-txt p {margin-top:9px}
.visual-con .v-flag {position:absolute;right:0;top:42%;transform: translateY(50%);}
.visual-con .v-flag span {display:inline-block;font-size:14px;font-weight:700;font-family: 'Bodoni Moda';color:#111;transform: rotate(90deg);}

/* Graphy */
.travelary-visual.graphy {width:100%;height:auto;background:none;align-items: flex-start;}
.travelary-visual.graphy .visual-copy-sub {
	/* left:0;
	top:156px; */
	left: 0;
	bottom: 9.2rem;
	z-index: 5;
	text-align: center;
	transform: none;
	max-width: none;
}
.travelary-visual.graphy .visual-copy-sub * {vertical-align: middle;}
.travelary-visual.graphy .visual-copy-sub .wrap-svg {
	width:100%;
	max-width: 85.9rem;
}
.travelary-visual.graphy .visual-copy-sub .wrap-svg.mark {max-width: 221px;height:73px;margin-left:12px;font-size:52px;font-weight:500;background: rgba(255, 82, 69, 0.8);}
.travelary-visual.graphy .visual-copy {padding: 0 452px 0 10px;text-align:right}
.travelary-visual.graphy .visual-con .v-txt p {
	/* margin:0 0 8px 0; */
	margin:0 0 0.8rem 0;
}

.graphy-search-wrap {
	overflow:hidden;
	position:relative;
	max-width:1920px;
	margin:0 auto 0;
	/* padding:129px 0 0 0; */
	color:#111111;
}
.graphy-search-wrap .search-bx {
	max-width:120rem;
	margin:0 auto;text-align:center;
	/* box-shadow: 5px 5px 25px rgba(6, 6, 6, 0.1); */
	box-shadow: 0px 12px 32px 0px #0000001F;
	border: 1px solid #d9d9d9;
	border-radius: 0.8rem;
	overflow: hidden;
}
.graphy-search-wrap .search-bx h2 {font-size:42px;font-weight:300;color:#111111;line-height: 1.4;}
.graphy-search-wrap .search-link {
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin:70px 0 45px; */
	margin: 12rem 0 3.2rem;
}
.graphy-search-wrap .search-link li {
	/* margin:0 28px; */
	margin:0 2.8rem;
}
.graphy-search-wrap .search-link li a {
	/* font-size:24px; */
	font-size: 2.4rem;
	/* opacity: 0.3; */
	/* font-weight:700; */
	font-weight:400;
	line-height: 4rem;
	/* font-family: 'Bodoni Moda'; */
	font-family: 'anth';
	letter-spacing: 2%;
	color: rgba(17, 17, 17, 0.3);
}
.graphy-search-wrap .search-link li.on a {
	position:relative;
	/* opacity: 1; */
	color: rgba(17, 17, 17, 1);
}
.graphy-search-wrap .search-link li.on a::after {content:'';position:absolute;left:0;bottom:0;width:100%;height:1px;background-color:#111;}
.graphy-search-wrap .search-zone {
	position:relative;
	padding:4rem;
	border-width:1px 1px 0 1px;
	/* border-style:solid;
	border-color: #000;
	box-sizing: border-box; */
	/* border-top-left-radius: 8px;
  border-top-right-radius: 8px; */
  /* border-color: #d9d9d9; */
}
.graphy-search-wrap .search-zone::after {
  display: none;
}
.graphy-search-wrap .search-zone::after {
	content:'';position:absolute;left:0;bottom:0;width: 100%;height:6px;background:#F5F5F5;
}
.graphy-search-wrap .search-zone .form-container {display: flex;align-items: center;justify-content: flex-start;}
.graphy-search-wrap .search-zone .form-container:first-child .form-col:not(:first-child) dt {
	/* min-width: 52px; */
}
.graphy-search-wrap .search-zone .form-container + .form-container {
	/* margin-top:16px; */
	margin-top:1.6rem;
}
.graphy-search-wrap .search-zone .form-col + .form-col {
	/* margin-left: 5rem; */
	margin-left: 8rem;
}
.graphy-search-wrap .search-zone .form-col dl {display: flex;align-items: flex-start;justify-content: flex-start;}
.graphy-search-wrap .search-zone .form-col dt {
	flex: 0 0 auto;
	/* min-width: 70px; */
	min-width: 5.8rem;
	flex-shrink: 0;
	text-align:left;
	/* font-size:14px;
	font-weight:700;
	margin-top: 7px; */
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 2.6rem;
	margin: 2px 1.2rem 0 0;
}
.graphy-search-wrap .search-zone .form-col dd {
	min-width:auto;
}
.graphy-search-wrap .filter-result {display:none;text-align:left}
.graphy-search-wrap .filter-result .tags {
	display:inline-block;
	/* min-width:54px;
	height:30px;
	margin:2px 3px; */
	min-width: 5.4rem;
	margin: 0.2rem 0.3rem;
	/* line-height: 1.4;
	font-size:14px; */
	font-size: 1.4rem;
	line-height: 2.6rem;
	color:#fff;
	/* padding:6px 14px; */
	padding: 0.2rem 1.5rem;
	/* border-radius: 15px; */
	border-radius: 5rem;
	background: #FF5245;
	text-align:center;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.graphy-search-wrap .filter-result .nodata {text-align:center;font-size:14px;}
.graphy-search-wrap .btn-zone {
	display: flex;
	align-items: center;
	justify-content: center;
	width:100%;
	margin: 2rem 0 6rem;
	/* margin:20px 0 60px;
	text-align:center; */
}
.graphy-search-wrap .btn-zone .txt {
	/* font-size:14px; */
	font-size: 1.6rem;
	line-height: 2.8rem;
	color:#fff;
}
.graphy-search-wrap .btn-zone button {
	display: flex;
	align-items: center;
	justify-content: center;
	/* min-width:120px;
	height:40px;
	border:1px solid #E5E5E5;
	border-radius: 20px; */
	min-width:16rem;
	height:5.2rem;
	border:1px solid #dddddd;
	border-radius: 0.4rem;
}
.graphy-search-wrap .btn-zone button + button {margin-left:6px}
.graphy-search-wrap .btn-zone .btn-reset .txt {color:#666}
.graphy-search-wrap .btn-zone .btn-search {border:0;background: #000;font-weight: 600;}
.graphy-search-wrap .btn-zone .btn-search .txt {color:#fff}
.graphy-search-wrap .btn-zone i.ico-reset {
	display:inline-block;
	/* width:15px;
	height:14px;
	margin-right:3px; */
	width:1.6rem;
	height:1.6rem;
	margin-right:0.8rem;
	background: url('/assets/image/travelary/ico_reset01.webp') no-repeat center/cover;
}
.graphy-search-wrap .btn-zone i.ico-search-w {
	display:none;
	/* display:inline-block; */
	width:17px;height:16px;vertical-align: -2px; background-image:url("/assets/image/travelary/ico_search_w.webp");background-size:100%}
.graphy-search-wrap .input-design-align{
	display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;flex-wrap: wrap;
	gap: 0.6rem;
}
.graphy-search-wrap .input-design-align .input-design-col {-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}
.graphy-search-wrap .input-design {
	position:relative;
	text-align:center;
	/* min-width:42px;
	height:30px;
	margin:0 3px 3px 0; */
	min-width: 5.4rem;
	height: 3rem;
}
.graphy-search-wrap .input-design input{border:0;left:0;width:100%;height: 100%;overflow:hidden;padding:0;position:absolute;border-radius: 5rem;}
.graphy-search-wrap .input-design input:disabled {
	background-color: #f5f5f5;
	opacity: 0;
}
.graphy-search-wrap .input-design label
{
	/* padding:0 1.1rem; */
	padding: 0.2rem 1.5rem;
	cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
	height:100%;
	/* border-radius:50px;
	border:1px solid #F5F5F5; */
	border-radius: 5rem;
	border: 1px solid #e5e5e5;
}
.graphy-search-wrap .input-design input:checked + label {border:1px solid transparent;background: #FF5245;}
.graphy-search-wrap .input-design input:checked + label .txt{color:#ffffff}
.graphy-search-wrap .input-design input:disabled + label {border:1px solid #F5F5F5;background: #F5F5F5;}
.graphy-search-wrap .input-design input:disabled + label .txt{color:#CCCCCC}
.graphy-search-wrap .input-design .txt{
	/* font-size:14px;
	line-height:26px; */
	font-size:1.4rem;
	line-height:2.6rem;
	color:#111;
}
.graphy-search-wrap .btn-filter.on .ico-filter {
	transform: rotate(135deg);
	/* vertical-align: 3px; */
	margin: -0.4rem -0.4rem 0.3rem 1.2rem;
}
.graphy-search-wrap .btn-filter {
	width:100%;
	/* height:40px;
	font-size:14px;
	color:#111;
	border:1px solid #111111; */
	padding: 1.6rem 0;
	font-size:1.4rem;
	font-weight: 500;
	line-height: 2.6rem;
	color:#444444;
	border-top:1px solid #d9d9d9;
}
.graphy-search-wrap .btn-filter .ico-filter {
	display: inline-block;
	/* width: 7px;
	height: 7px;
	margin-left: 4px; */
	width: 1.2rem;
	height: 1.2rem;
	margin: -0.4rem -0.4rem -0.4rem 1.2rem;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(-45deg);}


.maps-wrap {position:relative;}
.maps-wrap .maps-api {position:relative;
	width:100%;
	/* height:720px; */
	height: 72rem;
	background:#000;
}
.maps-wrap .maps-api iframe {position:absolute;left:0;right:0;width:100%;height:100%}
.maps-wrap .maps-detail-bx {
	position:absolute;
	right:0;
	top:0;
	width: 38.2rem;
	/* width:382px; */
	height: 100%;
}
.maps-wrap .list-result {
	display:flex;align-items: center;justify-content: center;
	/* height:116px; */
	/* padding:0 60px 0 40px; */
	padding: 2.8rem 3rem;
	/* font-size:18px;
	line-height:1.5; */
	font-size: 1.8rem;
	line-height: 3rem;
	color:#fff;
	/* background:#FF5245; */
	background: #816c5b;
	/* letter-spacing: 0; */
}
.maps-wrap .list-result span em {
	/* margin:0 2px;
	font-weight:700; */
	margin:0 0 0 0.4rem;
	font-weight:600;
}
.maps-wrap .maps-scroll li {
	/* padding:35px 30px 30px 59px;
	border-bottom:1px solid #E5E5E5; */
	padding:3rem 3rem 3rem 5.6rem;
	border-bottom:1px solid #d9d9d9;
	color:#111111;
	background: #ffffff;
}
.maps-wrap .maps-scroll li a {display: block;}
.maps-wrap .maps-scroll li.on .txt01 {
	/* color:#FF5245; */
	color:#816c5b;
}
.maps-wrap .maps-scroll li.nodata {display:flex;align-items: center;justify-content: center; padding:0;height:604px;font-size:16px;color:#999999;text-align: center;}
.maps-wrap .maps-scroll li.nodata span {margin:0}
.maps-wrap .maps-scroll li.nodata span::before {content: '';display:block;width:28px;height:28px;margin:0 auto 13px auto;background:url('/assets/image/travelary/ico_nodata.webp') no-repeat left top}
.maps-wrap .scrollbar-inner {
	width: 100%;
	height: calc(100% - 11.6rem);
}
.maps-wrap .scrollbar-inner ul {
	overflow: auto;
	width: 100%;
	/* height:604px; */
	height:100%;
	-webkit-overflow-scrolling: touch;background: #fff;}
.maps-wrap .scrollbar-inner ul::-webkit-scrollbar {width: 6px;}
.maps-wrap .scrollbar-inner ul::-webkit-scrollbar-thumb {background-color: #E0E0E0;}
.maps-wrap .scrollbar-inner ul::-webkit-scrollbar-track {background-color: #fff;}
.maps-wrap .maps-scroll li:last-child {border-bottom:0}
.maps-wrap .maps-scroll li span {
	/* display:block;
	margin-top:11px; */
}
.maps-wrap .maps-scroll li .txt01 {
	position:relative;
	display:block;
	font-weight:500;
	/* font-size:18px; */
	font-size: 1.8rem;
	line-height: 3rem;
}
.maps-wrap .maps-scroll li .txt01 em {
	position:absolute;
	/* left:-28px;
	top:0;
	font-family: 'Bodoni Moda';
	font-size:16px;
	font-weight:700; */
	left:-2.6rem;
	top:2px;
	font-family: 'anth';
	font-size:1.6rem;
	line-height: 2.8rem;
	font-weight:600;
}
.maps-wrap .maps-scroll li .txt02 em {
	/* font-size:14px;
	font-weight:300;
	line-height: 1.5; */
	font-size:1.4rem;
	line-height: 2.6rem;
}
.maps-wrap .maps-scroll li .txt02 em + em::before {
	content: '';
	display:inline-block;
	width:1px;
	height:1rem;
	margin:0 1rem;
	background:rgba(17,17,17,0.1);
	/* height:10px;
	margin:0 10px;
	background:#E6E6E6; */
}
.maps-wrap .maps-scroll li .txt03{
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.maps-wrap .maps-scroll li .txt03 em {
	display:inline-block;
	/* padding:6px 12px;
	border-radius:14px;
	font-size:14px;
	line-height:1.6;
	background: #F5F5F5;
	font-weight:300; */
	width: fit-content;
	padding:0.1rem 1.2rem;
	border-radius:1.4rem;
	font-size:1.4rem;
	line-height:2.6rem;
	background: #F5F5F5;
}
.maps-wrap .maps-scroll li .txt03 em:first-child{
	margin-top: 1rem;
}
/* .maps-wrap .maps-scroll li .txt03 em + em {margin-top:6px} */

.scrollbar-inner > .scroll-element,.scrollbar-inner > .scroll-element div{border:none;margin:0;padding:0;position:absolute;z-index:10}
.scrollbar-inner > .scroll-element div{display:block;height:100%;left:0;top:0;width:100%}
.scrollbar-inner > .scroll-element.scroll-x{bottom:2px;height:8px;left:0;width:100%}
.scrollbar-inner > .scroll-element.scroll-y{height:100%;right:2px;top:0;width:8px}
.scrollbar-inner > .scroll-element .scroll-element_outer{overflow:hidden}
.scrollbar-inner > .scroll-element .scroll-bar,.scrollbar-inner > .scroll-element .scroll-element_outer,.scrollbar-inner > .scroll-element .scroll-element_track{border-radius:8px}
.scrollbar-inner > .scroll-element .scroll-bar,.scrollbar-inner > .scroll-element .scroll-element_track{opacity:0.4}
.scrollbar-inner > .scroll-element .scroll-element_track{background-color:#e0e0e0}
.scrollbar-inner > .scroll-element .scroll-bar{background-color:#c2c2c2}
.scrollbar-inner > .scroll-element:hover .scroll-bar{background-color:#919191}
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar{background-color:#919191}
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track{left:-12px}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track{top:-12px}
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size{left:-12px}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size{top:-12px}

.page-nav {display:none;}

/* withus */
.travelary-visual.withus {width:100%;height:850px;background: url('/assets/image/travelary/contents/withus_visual.webp') center no-repeat;background-size: cover;}
.travelary-visual.withus .visual-title .wrap-svg {max-width: 860px;}
.travelary-visual.withus .visual-copy {padding: 0 452px 0 10px;text-align:right}
.sticky-wrapper {max-height:1080px}

.place-area-wrap {
	/* padding:310px 0 100px 0; */
	padding: 38rem 0 10rem 0;
	/* padding: 11vw 0 10rem 0; */
}
.place-area-wrap .tab-menu-wrap {
	position: relative;
	/* max-width: 1330px; */
	max-width: 130rem;
	margin:0 auto;
	/* margin:100px auto 50px auto; */
	/* padding-left:4.5%; */
	padding-left: 0;
}
.place-area-wrap .tab-menu-wrap ul {
	display: flex;
	align-items: center;
	/* justify-content: space-around; */
	/* justify-content: space-between; */
	justify-content: flex-start;
	gap: 5.6rem;
	/* width:358px; */
	/* width: 35.8rem; */
	position: relative;
	z-index: 5;
	padding-left: 8rem;
}
.place-area-wrap .tab-menu-wrap li {}
.place-area-wrap .tab-menu-wrap li a {
	position:relative;
}
.place-area-wrap .tab-menu-wrap li .place-area-text {
	/* font-size:20px;
	font-family: 'Bodoni Moda';
	opacity: .3;
	color:#111;
	font-weight:700; */
	font-family:'anth';
	/* font-weight:Bold; */
	font-weight:400;
	font-size:2rem;
	line-height: 3.6rem;
	color: rgba(17, 17, 17, 0.3);
	letter-spacing:-0.02em;
}
.place-area-wrap .tab-menu-wrap li.on .place-area-text {
	/* opacity: 1; */
	color: rgba(17, 17, 17, 1);
	text-decoration:underline;
	text-underline-offset: 0.3rem;
	font-weight: 600;
}
/* .place-area-wrap .tab-menu-wrap li.on a::after {
	content:'';
	position:absolute;
	left:0;
	right:0;
	bottom:4px;
	width:100%;
	height:1px;
	background:#111;
} */

.travelary-wrap {background:#fff;transition:background 0.5s ease-in-out}

.sokcho-bg {
	/* background:#E2FDFF; */
	background:rgba(223,223,202,0.6);
}
.buyeo-bg {
	/* background:#E2FFEC; */
	background:rgba(245,245,245,0.8);
}
.jeju-bg {
	/* background:#FFFCE2; */
	background:rgba(129,108,91,0.25);
}

.recom-item .txt-info {
	position: absolute;left:0;
	/* top:262px; */
	top:25rem;
	width:100%;height:100%;
	/* padding:30px 30px 30px 30px; */
	padding:3rem;
	text-align:left;background: transparent;transition: all .3s ease-out;pointer-events: none;cursor: default;transform: translate3d(0px, 0px, 0px);}
.recom-item .txt-info.sokcho {
	/* color:#00C2FF; */
	color: #111111;
}
.recom-item .txt-info.buyeo {
	/* color:#14A48A; */
	color: #111111;
}
.recom-item .txt-info.jeju {
	/* color:#EC7100; */
	color: #111111;
}
.recom-item .txt-info.multiple {
	/* color:#000; */
	color: #111111;
}
.recom-item:hover .txt-info {top:0;color:#fff;}
.recommended-wrap .recom-item:hover .txt-info .txt02 {
	display:block;
    display: -webkit-inline-box;
}
.recommended-wrap .recom-item:hover .txt-info .txt03 {display:flex;}
/* .recom-item .detail-btn.hover .txt-info {top:0}
.recom-item .detail-btn.hover .txt-info .txt02 {display:block}
.recom-item .detail-btn.hover .txt-info.sokcho {background:rgba(0, 194, 255, 0.88);color:#fff}
.recom-item .detail-btn.hover .txt-info.buyeo {background:rgba(20, 164, 138, 0.88);color:#fff}
.recom-item .detail-btn.hover .txt-info.jeju {background:rgba(236, 113, 0, 0.88);color:#fff}
.recom-item .detail-btn.hover .txt-info.multiple {background:rgba(0, 0, 0, 0.88);color:#fff} */

.recommended-wrap.swiper-container {
	position:relative;
	/* padding:120px 0 80px 0; */
	/* padding: 6rem 0 8rem 0; */
	padding: 10rem 0 8rem;
	/* margin-top:-80px; */
	/* margin-top: 6rem; */
}
.recommended-wrap .recommended-inner {
	/* padding:0 0 50px 0; */
	padding:0 0 7rem 0;
}
.recommended-wrap .recom-item {width: auto;}
.recommended-wrap .recom-item .detail-btn {display:block;position:relative;}
.recommended-wrap .recom-item .img-zone {
	position: relative;
	overflow:
	hidden;
	/* width: 313px;
	height: 313px; */
	width: 31.3rem;
	height: 31.3rem;
	-webkit-box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
	box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
	transform: translate3d(0px, 0px, 0px);
}
.recommended-wrap .recom-item .img-zone::after {
	content:'';
	position:absolute;
	left:0;top:0;right:0;width:100%;height:100%;
	/* background: linear-gradient(180deg, #fff -3.99%, rgba(255, 255, 255, 0) 33.2%); */
	background: linear-gradient(180deg, #fff -3.99%, rgba(255, 255, 255, 0) 29.2%);
	transform: rotate(-180deg);
}
.recommended-wrap .recom-item .img-zone img {vertical-align: top;width: 100%;opacity: 0.9;height: 100%;position: absolute;left: 50%;transform: translateX(-50%);}
.recommended-wrap .recom-item .txt-info span {display:block}
.recommended-wrap .recom-item .txt-info .txt01 {
	/* margin-bottom:10px;
	font-size:28px;
	line-height:38px;
	font-weight:700; */
	margin-bottom:0.8rem;
	font-size:2.8rem;
	line-height:4.4rem;
	font-weight:600;
}
.recommended-wrap .recom-item .txt-info .txt02 {
	display:none;
	/* font-size:18px;
	line-height:1.55; */
	font-size:1.6rem;
	line-height:2.8rem;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.recommended-wrap .recom-item .txt-info .txt03 {
	display:none;
	align-items: flex-start;justify-content: space-between;position:absolute;left:0;bottom:0;width:100%;
	/* height:47px;
	padding:0 30px;
	font-size:14px;
	font-family: 'Bodoni Moda'; */
	padding:0 2rem;
	font-size:1.4rem;
	line-height: 2.6rem;
	font-family: 'anth';
}
.recommended-wrap .recom-item .txt-info .txt03 i.ico-arrow-r {
	display:block;
	/* width:39px;
	height:18px;
	background: url('/assets/image/travelary/ico_arrow_r.webp') no-repeat left top; */
	width:4.8rem;
	height:4.8rem;
	background: url('/assets/image/travelary/ico_arrow_right.webp') no-repeat left top;
	background-size:100%;
}
.recommended-wrap .slick-list {overflow: visible;}
.recommended-wrap .handle i {display:flex;align-items: center;justify-content: space-around;position:absolute;right:0;top:-13px;width:54px;height:30px;border:1px solid #111;border-radius: 15px;background: #fff;}
.recommended-wrap .handle i::before,
.recommended-wrap .handle i::after {content: '';display:inline-block;width:6px;height:10px;background-repeat: no-repeat;background-position:left top;background-size: 100%;}
.recommended-wrap .handle i::before {background-image: url('/assets/image/travelary/contents/ico_prev.webp');}
.recommended-wrap .handle i::after {background-image: url('/assets/image/travelary/contents/ico_next.webp');}
.recommended-wrap .swiper-scrollbar-container {
	position: absolute;
	right: 0;
	top: -25px;
	width:50%;
	overflow: hidden;
	display: none;
}
.recommended-wrap .swiper-scrollbar-container .swiper-scrollbar {width:100%;top:0;left:0;height:3px;margin:45px 0;background: rgba(17,17,17,.1);}
.recommended-wrap .swiper-scrollbar-container .swiper-scrollbar-drag {background: #111;}
.recommended-wrap .swiper-scrollbar-container .swiper-scrollbar-drag::before {content: '';display: block;position: absolute;width: 2000%;height: 100%;left: -2000%;background-color: #111;opacity: 1;}
.recommended-wrap .swiper-scrollbar-container .swiper-scrollbar-drag::after {content:'';display:inline-block;position:absolute;right:0;top:-12px;width:54px;height:30px;background: url('/assets/image/travelary/contents/ico_control_arrow.webp') no-repeat left top;box-shadow: 5px 5px 25px rgba(6, 6, 6, 0.1);}

/* Detail Popup */
.recomm-pop {}
.recomm-pop .source {z-index:99;position: absolute;left:30px;top:30px;height:20px;font-size:14px;font-weight:500;color:#fff}
/* .recomm-pop .btn-popup-close {position: absolute;top:0;right:0;z-index: 5;} */

.recomm-pop .recomm-outer img {
	vertical-align: top;
	width:100%;
	max-width:652px;
	/* height:auto; */
	height:100%;
	object-fit: cover;
}
.recomm-pop .detail-wrap {display: flex;justify-content: space-between;}
.recomm-pop .detail-wrap {overflow: hidden;}
.recomm-pop .detail-wrap .img-wrap {width:59%}
.recomm-pop .detail-wrap .img-wrap .swiper-container{height: 100%;}
.recomm-pop .detail-wrap .txt-wrap {position:relative;width:41%}
.recomm-pop .detail-wrap .txt-wrap .mo-sns-share-area {
	position: absolute;
	width: 100%;
	/* height: 80px; */
	height: 8rem;
	right: 0;
	bottom: 0;
	background: #F9F9F9;
}
/* .recomm-pop .detail-wrap .txt-wrap .mo-sns-share-area .sns-share-area {
	position: absolute;
	right: 20px;
	bottom: 10px;
	right: 2rem;
	bottom: 1rem;
} */

.recomm-pop .manager {
	display: flex;
	align-items: center;
	/* height:96px;
	padding:0 60px 0 30px; */
	height:9.6rem;
	padding:2rem 6rem 2rem 3rem;
}
.recomm-pop .manager .thumb {
	/* width:56px;
	height:56px; */
	width:5.6rem;
	height:5.6rem;
	flex-shrink: 0;
	margin-right:1.6rem;
	border-radius: 100%;
	overflow: hidden;
}
.recomm-pop .manager .thumb img {border-radius: 100%;}
.recomm-pop .manager .subject {
	width:100%;
	/* font-size:14px; */
	font-size:1.4rem;
	font-weight:400;
	color:#111;
	/* line-height:1.7; */
	line-height:2.6rem;
}
.recomm-pop .manager .subject strong {display:block;font-weight:400;overflow:hidden;height:23px}

.recomm-pop .txt-info-bx {
	position:relative;
	color:#111;
	/* padding:57px 30px 140px 50px; */
	padding:5rem 5rem 11rem;
	height: 56rem;
	overflow-y: auto;
}
.recomm-pop .txt-info-bx::-webkit-scrollbar {
	width: 10px;
}
.recomm-pop .txt-info-bx::-webkit-scrollbar-track {
	background-color: transparent;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid transparent;
	box-shadow: inset 0 0 0 10px #dddddd;
}
.recomm-pop .txt-info-bx::-webkit-scrollbar-thumb {
	min-height: 50px;
	background-color: transparent;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid transparent;
	box-shadow: inset 0 0 0 10px #111111;
}
.recomm-pop .txt-info-bx::before {
	content: '';
	display:block;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	/* height:7px; */
	height:0.8rem;
	border-top:1px solid #E5E5E5;
	background:#F5F5F5;
}
.recomm-pop .txt-info-bx strong {
	display:block;
	/* font-weight:700 */
	font-weight: 600;
}
.recomm-pop .txt-info-bx .tit {
	display:block;
	/* margin-bottom:10px; */
	/* font-size:32px;
	line-height:1.3; */
	font-size: 3.2rem;
	line-height: 4.8rem;
	text-align:center;
	/* color:#FF5245; */
	color: #816c5b;
}
.recomm-pop .txt-info-bx .tit::before {
	content:'';
	display:block;
	width:100%;
	/* height:19px; */
	height:1.9rem;
	/* margin-bottom:13px; */
	margin-bottom:2rem;
	background: url('/assets/image/travelary/ico_mark01.webp') no-repeat center center;
	/* background-size:21px 19px; */
	background-size:2.1rem 1.9rem;
}
.recomm-pop .txt-info-bx .copy {
	/* font-size:20px;
	font-weight:300; */
	font-size:2rem;
	font-weight:400;
	line-height:3.6rem;
	padding: 0 3rem;
	word-break: keep-all;
	text-align: center;
}
.recomm-pop .txt-info-bx .copy::before {
	content:'';
	display:block;
	/* margin:27px auto; */
	margin: 2.4rem auto;
	/* width:40px; */
	width: 4rem;
	height:1px;
	background: #CCCCCC;
}
.recomm-pop .txt-info-bx .txt-cont02 {
	/* height:350px;
	max-height:350px; */
	/* height:38rem;
	max-height:38rem;
	overflow:auto; */
	-webkit-overflow-scrolling: touch;
}
.recomm-pop .txt-info-bx .txt-cont02::-webkit-scrollbar {width: 6px;}
.recomm-pop .txt-info-bx .txt-cont02::-webkit-scrollbar-thumb {background-color: #E0E0E0;}
.recomm-pop .txt-info-bx .txt-cont02::-webkit-scrollbar-track {background-color: #fff;}
.recomm-pop .txt-info-bx .tit-sub {
	/* margin-bottom:23px; */
	margin-bottom: 1.2rem;
	font-size:2rem;
	line-height: 3.6rem;
	/* color:#FF5245; */
	color: #816c5b;
}
.recomm-pop .txt-info-bx .desc {
	font-size:1.6rem;
	font-weight:400;
	line-height:2.8rem;
}
.recomm-pop .txt-info-bx .address {
	/* margin-top:39px;
	padding:45px 0 0 0; */
	margin-top: 4rem;
	padding-top: 4rem;
	border-top:1px solid #E5E5E5;
}
.recomm-pop .txt-info-bx .address span {
	/* font-size:18px;
	font-weight:300; */
	font-size:1.6rem;
	font-weight:400;
	line-height: 2.8rem;
	color: #666666;
}
.recomm-pop .txt-info-bx .address span::before {
	content:'';
	display:inline-block;
	/* width:14px;
	height:17px; */
	width:2.4rem;
	height:2.4rem;
	vertical-align: middle;
	/* margin-right:9px; */
	margin-right:0.8rem;
	/* background:url('/assets/image/travelary/ico_location.webp') no-repeat left top; */
	background:url('/assets/image/travelary/ico_location02.webp') no-repeat left top;
	background-size: 100%;
}

.recomm-pop .slick-arrow {position: absolute;z-index:2;top:50%;transform: translateY(-50%);width:36px;height:36px;background-repeat:no-repeat;background-position: left top;}
.recomm-pop .swiper-button-prev {
	/* left:30px; */
	left:3rem;
	background-image:url('/assets/image/travelary/contents/btn_slider_prev.webp');
	background-size: 100%;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	/* width: 36px;
	height: 36px; */
	width: 3.6rem;
	height: 3.6rem;
	background-repeat: no-repeat;
	background-position: left top;}
.recomm-pop .swiper-button-next {
	/* right:30px; */
	right:3rem;
	background-image:url('/assets/image/travelary/contents/btn_slider_next.webp');
	background-size: 100%;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	/* width: 36px;
	height: 36px; */
	width: 3.6rem;
	height: 3.6rem;
	background-repeat: no-repeat;
	background-position: left top;
}
/* .recomm-pop .swiper-pagination {position: absolute;bottom:33px;margin:0;} */
.recomm-pop .swiper-pagination {
	position: absolute;
	/* bottom: 33px; */
	bottom: 3rem;
	margin: 0;
}
.recomm-pop .swiper-pagination .swiper-pagination-bullet {
	position: relative;
	margin:0;
	font-size: 0;
	line-height: 0;
	display: inline-block;
	vertical-align: middle;
	/* width: 8px;
	height: 8px; */
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	cursor: pointer;
	background: #fff;
	color: transparent;
	outline: none;
	opacity: 0.3;
}
.recomm-pop .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {opacity: 1;}
.recomm-pop .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {margin-left:14px}
.recomm-pop .swiper-pagination .swiper-pagination-bullet:focus-visible {outline: 2px solid #111111; outline-offset: 2px;opacity: 1;}




/* activity */
.travelary-visual.activity {width:100%;height:auto;background:none;align-items: flex-start;}
.travelary-visual.activity .visual-copy-sub {left:0;top:156px;text-align: center;transform: none;max-width: none;}
.travelary-visual.activity .visual-copy-sub * {vertical-align: middle;}
.travelary-visual.activity .visual-copy-sub .wrap-svg {width:100%;max-width: 721px;}
.travelary-visual.activity .visual-copy-sub .wrap-svg.mark {max-width: 221px;height:73px;margin-left:12px;font-size:52px;font-weight:500;background: rgba(255, 82, 69, 0.8);}
.travelary-visual.activity .visual-copy {padding: 0 452px 0 10px;text-align:right}

.program-wrap {
	max-width: 140rem;
	margin: 6rem auto 8rem ;
	padding: 0;
}
.program-wrap .tbl-tit {margin-bottom:58px;text-align:center;}
.program-wrap .tbl-tit span {display:block;margin-bottom:5px;font-size:14px;font-family: 'Bodoni Moda';font-weight:700;opacity: .3;}
.program-wrap .tbl-tit span i{margin-bottom:5px;font-size:14px;font-family: 'Bodoni Moda';font-weight:700;}
.program-wrap h2 {display:inline;position:relative;color:#111111;font-size:42px;line-height:1.42 ;}
.program-wrap .tbl-data {width:100%;border-top:3px solid #111;}
.program-wrap .tbl-data thead th {padding:23px 30px;font-weight:700;border-left:0;font-size:20px}
.program-wrap .tbl-data tbody th {border-left:0;font-weight:700;}
.program-wrap .tbl-data th,
.program-wrap .tbl-data th,
.program-wrap .tbl-data td {padding:36px 30px;border-left:1px solid #B8B8B8;border-bottom:1px solid #B8B8B8;text-align: center;color:#111;font-size:18px;line-height: 1.55;vertical-align: middle;}
.program-wrap .tbl-data td {text-align:left}
.program-wrap .tbl-data tr td.bg {background:#F5F5F5;}
.program-wrap .tbl-data tbody tr:last-child th,
.program-wrap .tbl-data tbody tr:last-child td {border-bottom:0;}
.program-wrap .tbl-data .flag-caption {display:inline-block;font-size:14px;color:#fff;min-width: 50px;height:20px;vertical-align:2px;line-height:1.4;text-align:center;background: rgba(255, 82, 69, 0.9);border-radius: 10px;}

.flag-text-wrap{position:relative;text-align:left;}
.flag-text-wrap.center{text-align:center;}
.flag-text-wrap.center span:not(.flag-caption){text-align:left;}
.program-wrap .flag-text-wrap span{position:relative;display:inline-block;padding-left:55px;}
.program-wrap .flag-text-wrap span.flag-caption{position:absolute;top:4px;left:0;padding-left:0;}
.program-wrap .component-empty{
	padding: 12rem 0 16rem;
	border-bottom: 1px solid #dddddd;
}

@media (max-width:768px){
	.program-wrap .tbl-fixed-scroll {border-bottom:1px solid #111}
	.program-wrap .component-empty{
		padding: 8rem 0;
	}
}

.activity-list-wrap {max-width:1330px;margin:0 auto;overflow:hidden;}
.swiper-container.activity-list {padding-bottom:110px;}
.activity-list-wrap .activity-list .list-bx li {}
.activity-list-wrap .activity-list .list-bx li .img img {width:100%}
.activity-list-wrap .activity-list .list-bx li .img {position: relative;overflow: hidden;}
.activity-list-wrap .activity-list .swiper-wrapper li a {position: relative;display:block}
.activity-list-wrap .activity-list .swiper-wrapper li a .img img {position: relative;transition: 0.4s;}
.activity-list-wrap .activity-list .img img {width:100%}
.activity-list-wrap .activity-list .tit {margin-top:20px;font-size:18px;line-height: 1.55;color:#111}

.activity-list-wrap .activity-list .detail {margin-top:13px;font-size:14px;color:#333333}
.activity-list-wrap .activity-list .detail span {vertical-align: middle;}
.activity-list-wrap .activity-list .detail i {display:inline-block;width: 5px;height: 5px;margin-left:4px;border-top: 1px solid #666;border-right: 1px solid #666;display: inline-block;transform: rotate(45deg);}
.activity-list-wrap .activity-tit {text-align:center;color:#111}
.activity-list-wrap .activity-tit span {font-family: 'Bodoni Moda';font-size:14px;color:#cccccc;font-weight:700}
.activity-list-wrap .activity-tit h3 {position:relative;display:inline-block;margin:10px 0 38px 0;padding-right:7px;font-weight:700;font-size:28px;line-height:1.4;font-family: 'Bodoni Moda'}
.activity-list-wrap .activity-tit h3::before {content:'';position: absolute;left:0;bottom:4px;width:100%;height:14px;background:#FF5245;opacity: .5;mix-blend-mode: hard-light;}
.activity-list-wrap .activity-tit h3::after {content:'';position: absolute;right:0;bottom:4px;width:8px;height:14px;background:#FF866A;}


/* 커버스토리 리스트 */
.travelary-sub{position:relative;}
.visual-head .visual-bi{color:#666666;}

#footer {
	z-index:2;
}
.travelary-wrap{width:100%;box-sizing:border-box;}
.travelary-wrap.sokcho-bg .visual-head, .travelary-wrap.buyeo-bg .visual-head, .travelary-wrap.jeju-bg .visual-head{
	background-color: #ffffff;
}
.travelary-wrap .left-sidebar .travel-link a{cursor:pointer;}
.cover-story-wrap {
	/* max-width: 192rem; */
	margin:0 auto;
}
.cover-story-wrap .left-sidebar{
	z-index:1;
	overflow:auto;
	position: sticky;
	/* width:26.1%; */
	width: 100%;
	float:left;
	/* max-width:495px; */
	max-width: 49.5rem;
	/* top: 6.6rem;
  height: calc(100vh - 6.6rem); */
	top: 4.6rem;
  height: calc(100vh - 4.6rem);
	/* padding-top: 12rem; */
	padding-top: 10rem;
  background: #816c5b;
	text-align:center;
}
.cover-story-wrap .left-sidebar::-webkit-scrollbar{
	display: none;
}
.cover-story-wrap .left-sidebar .wrap-svg {
	/* height:86px; */
	width: 27.6rem;
	height:auto;
}
.cover-story-wrap .left-sidebar.static {
	bottom: 0;
  top: auto;
  height: 100vh;
}
.cover-story-wrap .left-sidebar aside {position:relative;margin:0 10%;padding-bottom:120px}
.cover-story-wrap .left-sidebar aside .copy {
	display: none;
	/* margin:6px 0 32px; */
	margin: 1.4rem 0 2.8rem;
	/* font-size:18px; */
	font-size: 1.8rem;
	line-height: 3rem;
	color:#fff;
	/* font-weight:300 */
	font-weight:400;
}
.cover-story-wrap .left-sidebar aside .copy::before{
	content: "";
	display: block;
	width: 1.8rem;
	height: 2.8rem;
	margin: 0 auto -0.6rem auto;
	background:url('/assets/image/travelary/coverstory/ico_coverstory_comma.webp') no-repeat center/cover;
}
.cover-story-wrap .left-sidebar .thumb-img{
	width: 30rem;
	margin: 4rem auto 0;

}
.cover-story-wrap .left-sidebar img {
	display: block;
	max-width:100%;
}
.cover-story-wrap .left-sidebar .travel-link {
	/* margin-top:36px; */
	margin-top: 4rem;
}
.cover-story-wrap .left-sidebar .travel-link a{
	display:block;
	margin-bottom:1.2rem;
	text-align:center;
	/* opacity:0.4; */
	/* color:#ffffff; */
}
/* .cover-story-wrap .left-sidebar .travel-link a.on{
	opacity:1;
	color: rgba(255, 255, 255, 1);
	text-decoration:underline;
	text-underline-offset: 0.3rem;
	text-underline-position:under;
} */
.cover-story-wrap .left-sidebar .travel-link-text {
	font-family:'anth';
	/* font-weight:Bold; */
	font-weight: 400;
	font-size:2rem;
	line-height: 3.6rem;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing:-0.02em;
}
.cover-story-wrap .left-sidebar .travel-link a.on .travel-link-text {
	color: rgba(255, 255, 255, 1);
	text-decoration:underline;
	text-underline-offset: 0.3rem;
}
.cover-story-wrap .main-content-bx {
	/* max-width: 140rem; */
	/* max-width: none; */
	margin:0 auto;
	margin-right: calc(50% - 70rem);
	padding-left: 63rem;
}
.cover-story-wrap .main-content{
	width:100%;
	/* padding: 0 0 11.4rem 37.4rem; */
	/* padding: 0 29.5rem 11.4rem 63.4rem; */
	/* padding-left: 38.5rem; */
}
.travel-box{max-width:118em;display:flex;flex-wrap:wrap;gap:2.5em;padding:10px;width:100%;background-color:#f0f0f0;}
.travel-item{position:relative;}
.daily-coupon{position:absolute;color:#ffffff;width:70px;height:44px;top:-10px;left:10px;}
.columns{column-width:26em;column-gap:2.5em;}
.columns div{display:inline-block;margin:0 0 15px;width:100%;max-width:31.3em;}
.columns div img{width:100%;}
.columns div figcaption{padding:10px;margin-top:11px;}
.travel-util-area {display:flex;justify-content: space-between;height:52px}
.travel-util-area .travel-count {
	/* font-weight:300;
	font-size:14px;
	line-height:24px; */
	font-size:1.6rem;
	font-weight:400;
	line-height:2.8rem;
}
.travel-util-area .travel-count .num{color:#ff5a4d;}
.travel-util-area .btn-activity-link {
	/* padding-top:5px;
	color:#111;
	font-size:14px;
	font-weight:700; */
	padding-top: 0.7rem;
	width: 14.7rem;
}
.travel-util-area .btn-activity-link a {position:relative;display:inline-block;width:100%;white-space: nowrap;letter-spacing: 0;mix-blend-mode: normal;}
.travel-util-area .btn-activity-link a svg{
	width: 100%;
}
.travel-util-area .btn-activity-link a .txt {font-family:'Bodoni Moda';display:inline-block;white-space: nowrap;}
.travel-util-area .btn-activity-link a em {font-style: italic;font-weight: 700;font-family: inherit;letter-spacing: 0.5px;}
.travel-util-area i {width: 5px;height: 5px;margin-left:3px;border-top: 1px solid #111;border-right: 1px solid #111;display: inline-block;transform: rotate(45deg);vertical-align: 5px;}
.travel-util-area .wrap-svg {max-width:159px;height:15px}
.cover-story-wrap .grid .travel-location{font-family:'Bodoni Moda';font-style:normal;font-weight:bold;font-size:14px;line-height:14px;color:#FF5245;letter-spacing:-0.02em;margin-top:15px;}
.cover-story-wrap .grid .travel-tit{margin-bottom:2px;font-style:normal;font-weight:300;font-size:18px;line-height:28px;margin-top:10px;color:#000;font-family: 'Bodoni Moda', "Noto Sans KR",sans-serif;;}
.cover-story-wrap .grid .travel-txt{font-style:normal;font-weight:300;font-size:14px;line-height:24px;}
.cover-story-wrap .grid-wrapper {position:relative;}
.cover-story-wrap .grid {
	/* margin: 0 -13px; */
	margin: 0 -1.3rem;
}
.cover-story-wrap .grid .item{
	width: 33.333%;
	/* margin-bottom:60px; */
	margin-bottom:6rem;
	opacity:0;}
.cover-story-wrap .grid .item a{
	display:block;
	/* margin: 0 13px; */
	margin: 0 1.3rem;
}
.photothumb{width:100%;}
.title{padding:20px;}
.travelary-wrap .button-wrap{margin-top:6em;text-align:center;padding-bottom:12em;padding-left:0;}

.section{position:relative;}
.section.detail-01{padding:126px 0 67.7em;}
.section.detail-01 .section-inner.bgimg{max-width:100%;padding:0;}
.section-inner.bgimg::before{content:'';position:absolute;left:0;top:40.1em;width:100%;height:100vh;max-height:55.8em;background:url('/assets/image/travelary/coverstory/deatil01_main01.webp');background-size:cover;background-repeat:no-repeat;align-items:center;justify-content:center;background-position:center;}
.cover-story-wrap .flag-wrap .flag-box.style01{
	background: rgba(17,17,17,0.9);
}
.cover-story-wrap .flag-wrap .flag-box.style02{
	background: rgba(74,78,80,0.9);
}
.cover-story-wrap .flag-wrap .flag-icon.ico-coupon{
	width: 2.4rem;
	height: 2.4rem;
	background: url("/assets/image/travelary/ico_coupon.webp") no-repeat center/cover;
}
.cover-story-wrap .flag-wrap .flag-text{
	line-height: 1.4rem;
	font-weight: 500;
	font-family: "Pretendard Variable";
}
.cover-story-wrap .photothumb{
	display: block;
}


/* 커버스토리 상세 */
.template-wrap * {-webkit-touch-callout: none;-webkit-user-select: none;-ms-user-select: none;user-select: none;}
.detail-visual-wrap {overflow:hidden;}
.detail-visual-wrap .detail-visual-inner {}
.detail-visual-wrap .sub-visual {
	padding-top: 0;
	margin:0 auto;
	text-align:center;
	z-index: 5;
}
.detail-visual-wrap .sub-visual .sub-visual-tit {
	position: relative;
	max-width:133rem;
	margin:0 auto;
	/* height: 17.6rem; */
	margin-bottom: 1.2rem;
}
.detail-visual-wrap .sub-visual .detail-visual-wrap .sub-visual-tit{
	margin-bottom: 7.4rem;
}
.detail-visual-wrap .sub-visual strong {
	display:block;
	font-family: 'Bodoni Moda';
	font-style: normal;
	font-weight: 700;
	font-size: 1.4rem;
	font-weight: 400;
  line-height: 2.8rem;
  color: #816c5b;
}
.detail-visual-wrap .sub-visual .s-copy {
	font-family: 'Noto Sans KR';font-style: normal;font-weight: 300;font-size: 20px;line-height: 1.5;
	margin: 10px auto 39px;
	display: none !important;
}
.detail-visual-wrap .sub-visual h1 {
	position:relative;
	margin-top: 1.2rem;
	text-align: center;
	color: #111111;
	z-index: 2;
	font-size: 5.2rem;
  font-weight: 500;
  line-height: 6.8rem;
  font-family: "Pretendard Variable";
}
.detail-visual-wrap .sub-visual .s-img-zone {
	position:relative;
	margin-top: 0;
}
.detail-visual-wrap .sub-visual .s-img-zone .flag-wrapper{
	display: none;
}
.detail-visual-wrap .sub-visual .s-img-zone .img-area {
	position: relative;
	overflow:hidden;
	/* min-height:558px; */
	height: 55.8rem;
}
.detail-visual-wrap .sub-visual .s-img-zone .img-area .img-bx {
	position: absolute;
	left:50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
}
.detail-visual-wrap .sub-visual .s-img-zone .img-area .img-bx img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: none;
}
.detail-visual-wrap .sub-visual-body .v-body-txt {
	position:relative;
	max-width: 192rem;
	margin: 0 auto;
	/* padding: 8rem 0 7rem 0; */
	padding: 8rem 0 !important;
}
.detail-visual-wrap .sub-visual-body .v-body-txt .t-txt-info{
	padding-bottom: 8rem;
}
.detail-visual-wrap .sub-visual-body .change-color {
	position:absolute;
	top:0;
	left:50%;
	transform: translateX(-50%);
	/* width:100%; */
	width: 100vw;
	/* height:74%; */
	height: 100%;
}
.detail-visual-wrap .sub-visual-body .t-html-module {
	position: relative;
	overflow:hidden;
	/* max-width: 1330px; */
	max-width: 133.2rem;
	margin:0 auto;
}
.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info {
	/* margin-bottom:40px; */
}
.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .txt01 {
	/* font-weight:700; */
	/* font-size:42px;
	line-height: 1.4; */
	font-size:4.4rem;
	line-height: 6rem;
	font-weight: 600;
	color:#111;
	/* letter-spacing:-2px; */
}
.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .txt01 .txt-typo-sm {color:#111;opacity: .3;}
.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-copy .txt02 {display:block;margin-bottom:16px;font-weight:700;font-size:18px;line-height: 1.5;color:#111}
.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-copy .txt03 {
	/* font-size:18px;
	line-height: 1.5; */
	font-size:1.8rem;
	line-height: 3rem;
	color:#111;
}
.detail-visual-wrap .sub-visual-body .t-html-module .img-bx img {width:100%}
.detail-visual-wrap .flag-bx {position:relative;max-width:1330px;margin:0 auto}
.detail-visual-wrap .flag-wrapper {position:absolute;left:1em;top:-29px;display:flex;padding-top:14px;z-index: 5;}
.detail-visual-wrap .flag-wrapper .flag-text-wrap {padding-top:14px}
.detail-visual-wrap .flag-wrap {width: 100px;height: 66px;}
.detail-visual-wrap .flag-wrap.coupon .flag-text {font-size:12px}
.detail-visual-wrap .flag-wrapper .flag-wrap + .flag-wrap {margin-left:8px}
.detail-visual-wrap .flag-text{font-family:'Noto Sans KR';font-style:normal;font-weight:500;font-size:14px;line-height:1.4em;}
.detail-visual-wrap .flag-icon.ico-coupon{width: 26px;height: 23px;}

@media (max-width: 767px){
	.detail-visual-wrap .sub-visual-body .v-body-txt .t-txt-info{
		padding: 0 2rem 4rem;
	}
}


/* Template Html*/
.t-html-bx .img-bx img {width:100%;height: 100%;object-fit: cover;}
.t-html-bx .img-bx .img-scale {position: absolute;left: 0;right: 0;top: 0;bottom: 0;transition: 0.4s;}
.t-html-bx .img-bx .img-scale img {height: 100%;position: absolute;left: 50%;transform: translateX(-50%);object-fit: cover;}
.t-html-bx .img-bx .img-scale:hover {-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2);}

.t-html-bx {
	/* max-width:133rem; */
	max-width:133.2rem;
	margin:0 auto;
	/* padding: 4rem 0; */
	margin-top: 10rem;
}
.t-html-bx .img-bx {overflow: hidden;}

.t-html-bx .t-html-module + .t-html-module {margin-top:80px}
.t-html-module {display: flex;align-items: flex-start;justify-content: space-between;overflow: hidden;}
.t-html-module.center {align-items: center;}

.t-video-wrap {margin:80px 0 0;}
.t-video-zone {position: relative;padding-bottom:56.25%}
.t-video-zone iframe,
.t-video-zone video {position: absolute;left:0;top:0;width:100%;height:100%}

.t-html-module .t-txt-info {color:#111;font-weight:700;word-break: keep-all;}
.t-html-module .t-txt-info.mt30, .t-html-module .t-txt-info.mt50{
	margin-top: 10rem !important;
}
.t-html-module .t-txt-info .txt01 {margin-bottom:34px;font-size:42px;line-height: 1.4;}
.t-html-module .t-txt-info .txt01 .txt-typo {margin-top:3px;font-size:42px;opacity: .3;font-family: 'Bodoni Moda';}
.t-html-module .t-txt-info .txt01 .txt-typo-sm {margin:0 0 8px 0;font-size:18px;opacity: 1;font-family: 'Bodoni Moda';color:#FFC907}
.t-html-module .t-txt-info .txt02 {font-size:18px;line-height: 1.5;color:#F07A0D;font-weight:400}
.t-html-module .t-txt-info .txt02 + .txt03 {margin-top:15px;}
.t-html-module .t-txt-info .txt03 {
	/* font-size:18px;
	line-height: 1.5; */
	font-size:1.8rem;
	line-height: 3rem;
	font-weight:400;
}
.t-html-module .t-txt-info .txt03 + .txt03 {margin-top:14px}
.t-html-module .img-caption {
	display: none;
}
.t-html-module .img-caption span em {font-family: 'Bodoni Moda';margin-right:10px}
.t-html-module .img-caption span {display:block;margin-top:15px;font-size:14px;color:#666;}
.t-html-module .t-img-info .img-bx {position:relative;width:100%;margin-top:36px;}

.t-html-module .t-left-area {width:51%;padding-right:9%}
.t-html-module .t-right-area {flex-shrink: 0;width:49%}
.t-html-module .t-right-area .t-img-info .img-bx {height:510px;margin-top:0}
.t-html-module.reverse {flex-direction: row-reverse;align-items: center;}
.t-html-module.reverse .t-left-area {width:51%;padding-left:10%;padding-right:0}
.t-html-module.reverse .t-right-area .t-img-info .img-bx {height:580px;margin-top:0}

.t-html-module.divide .t-right-area {display: flex;justify-content: space-between;align-items: flex-start;}
.t-html-module.divide .t-right-area .t-img-info {flex-shrink: 0;width:48%}
.t-html-module.divide .t-right-area .t-img-info .img-bx {height:580px;margin-top:0}
.t-html-module.divide .t-right-area .t-img-info + .t-img-info {margin:60px 0 0 0}
.t-html-module.divide .t-right-area .img-bx::before {content:'';display:block;position:absolute;top:0;width:100%;height:60%;background: linear-gradient(180deg, #3AA1FF 0%, rgba(255, 255, 255, 0) 100%);mix-blend-mode: multiply;opacity: 0.2;z-index: 2;}

.t-html-module.dynamic {padding-bottom:170px}
.t-html-module.dynamic .t-right-area {position:relative;width:42.406%}
.t-html-module.dynamic .t-right-area .t-img-info.big .img-bx {height:590px}
.t-html-module.dynamic .t-right-area .t-img-info.big .img-caption span {padding:0 20px 0 215px;line-height: 1.55;}
.t-html-module.dynamic .t-right-area .t-img-info.small {position: absolute;left:-113px;top:284px;width:314px}
.t-html-module.dynamic .t-right-area .t-img-info.small .img-bx {height:400px;}

.t-html-module .t-img-info .columns-bx {display: flex;align-items: flex-start;justify-content: space-between;overflow: hidden; gap: 2.4rem;}
.t-html-module .t-img-info .columns-bx.reserve {flex-direction: row-reverse;}
.t-html-module .t-img-info .columns-col {flex-shrink: 0}
.t-html-module .t-img-info .columns-col .img-bx {
	position:relative;
	/* height:720px; */
	height: 42rem;
}
/* .t-html-module .t-img-info .columns-col + .columns-col {width:32%} */

.t-html-module .t-img-info .columns-bx.three .columns-col {width:100%}
/* .t-html-module .t-img-info .columns-bx.three .columns-col {width:32%}
.t-html-module .t-img-info .columns-bx.three .columns-col:nth-child(2n) {margin-top:80px}
.t-html-module .t-img-info .columns-bx.three .columns-col:nth-child(3n) {margin-top:20px} */
/* .t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(1) .img-bx,
.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(3) .img-bx { height: 420px;}
.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(2) .img-bx {	height: 460px;} */

/* 고정된 넓이  1: 425 X 420 2: auto  3: 425 X 420 */
.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col{
	width: 42.5rem;
}
.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(1),
.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(3){
	margin-top: 2.4rem;
}
.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(2){
	flex: 1 0 auto;
}
.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(2) .img-bx{
	height: 47rem;
}

/* 기본 355 X 460 .w565 추가하면 넓어짐 */
.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col{
	/* max-width: 355px; */
	width: 33.5rem;
	/* margin-top: 0; */
}
.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col.w565{
	/* width: 43%;
	max-width: 565px;
	margin-top: 0; */
	flex: 1 0 auto;
}
.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col .img-bx {
	/* height: 460px; */
	height: 46rem;
}

/* 3개 고정된 425 X 460 */
.t-html-module .t-img-info .columns-bx.three.new-type03 .columns-col {
	width: calc(100%/3 - 1.6rem);
}
.t-html-module .t-img-info .columns-bx.three.new-type03 .columns-col .img-bx {
	/* height: 460px; */
	height: 42.2rem;
}

/* 3개 고정된 425 X 420 */
.t-html-module .t-img-info .columns-bx.three.new-type04 .columns-col {
	/* margin-top: 0; */
	width: calc(100%/3 - 1.6rem);
}
.t-html-module .t-img-info .columns-bx.three.new-type04 .columns-col .img-bx {
	/* height: 420px; */
	height: 42.2rem;
}

/* 이미지4개 425 X 450 + 425 X 450 + 425X205 • 425X205 오른쪽에 425X205 2개 배치  */
.t-html-module .t-img-info .columns-bx.new-type05 .columns-col{
	/* width: 32%; */
	width: 45.2rem;
}
.t-html-module .t-img-info .columns-bx.new-type05 .columns-col:last-child{
	width: auto;
	flex: 1 0 auto;
}
.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .img-bx {
	/* height: 450px; */
	height: 42rem;
}
.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .col-type01 {
	display: flex;
	flex-direction: column;
}
.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .col-type01 .img-bx{
	/* height: 205px; */
	height: 19.8rem;
}
.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .col-type01 .col-box:last-child .img-bx{
	margin-top: 13px;
}
.t-html-module .t-img-info .columns-bx.new-type05.caption .columns-col .col-type01 .col-box:last-child .img-bx{
	margin-top: 36px;
}
.t-html-module .columns-bx.new-type05 .columns-col .col-type01 .img-caption span {
	margin-top: 13px;
}

/* 이미지 2개 레이아웃 */
.t-html-module .t-img-info .columns-bx.type01 .columns-col {
	/* width:49%; */
	width:calc(50% - 1.2rem);
}
/* .t-html-module .t-img-info .columns-bx.type01 .columns-col + .columns-col {width:49%} */
.t-html-module .t-img-info .columns-bx.type01 .columns-col .img-bx {
	/* height:520px; */
	height:36rem;
}
.t-html-module .t-img-info .columns-bx.type01.h360 .columns-col .img-bx {
	/* height:360px; */
	height:36rem;
}

.t-html-module .t-img-info .columns-bx.type02 .columns-col {width:57.5%;}
.t-html-module .t-img-info .columns-bx.type02 .columns-col + .columns-col {width:40.5%}
.t-html-module .t-img-info .columns-bx.type02 .columns-col .img-bx {height:780px}

.t-html-module .t-img-info .columns-bx.type03 .columns-col {width:66%;}
.t-html-module .t-img-info .columns-bx.type03 .columns-col + .columns-col {width:32%}
.t-html-module .t-img-info .columns-bx.type03 .columns-col .img-bx {height:820px}
.t-html-module .t-img-info .columns-bx.type03.h420 .columns-col .img-bx {height:420px}

.t-html-module .t-img-info .columns-bx.type04 .columns-col {width:40.5%;}
.t-html-module .t-img-info .columns-bx.type04 .columns-col + .columns-col {width:57.5%}
.t-html-module .t-img-info .columns-bx.type04 .columns-col .img-bx {height:760px}


.t-html-module.full {display:block}
.t-html-module.full .t-txt-info .txt01 {
	/* margin-bottom:22px; */
	margin-bottom:4rem;
	font-size: 4rem;
	line-height: 5.6rem;
	font-weight: 600;
}
.t-html-module.full .t-txt-info .typo01{
	font-size: 2.8rem;
	line-height: 4.4rem;
	font-weight: 400;
	color: #666666;
	margin-bottom: 2rem;
	font-family: 'anth';
	letter-spacing: 2%;
}
.t-html-module.full .txt03 + .txt03 {margin-top:13px}
.t-html-module.full .t-html-bx .img-bx {min-height:720px}
.t-html-module.txt-both-side {display: block;}
.t-html-module.txt-both-side .t-txt-info {display: flex;align-items: flex-start;justify-content: space-between;}
.t-html-module.txt-both-side .t-txt-info .txt01 {flex-shrink: 0;width:34%;margin-bottom: 0;}

/* 커버스토리 상세 - 유의사항 (2026 신규스타일) */
.resort-coverstory-noti-wrap {
  /* margin-top: 7.2rem; */
	margin-top: 10rem;
  border: 1px solid #ddd;
  /* padding: 3.2rem; */
	padding: 4rem;
}
.resort-coverstory-noti-wrap .title-sub-area .sub-title {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 600;
  color: #111;
}
.resort-coverstory-noti-wrap .title-sub-area .sub-title:before {
  content:'';
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23111' stroke-width='1.2' d='M13.343 5.927H4.666m8.676 3.254H9.005M.69 1.227h.362c2.169.362 5.784.542 7.953.542s5.785-.18 7.954-.542h.361v15.546h-.18l-.112-.111a11.35 11.35 0 0 0-8.023-3.324c-2.169 0-5.784.181-7.953.543H.689z'/%3E%3C/svg%3E");
  background-size: 1.8rem;
}
.resort-coverstory-noti-wrap .title-sub-area .sub-title .ico {
  margin-right: 0.8rem;
}
.resort-coverstory-noti-wrap .text-box {
  padding: 0;
  background-color: #fff;
	min-height: auto;
	margin-top: 1.6rem;
}
.resort-coverstory-noti-wrap .text-box b{
	color: #111111;
	font-weight: 600;
}
.resort-coverstory-noti-wrap .text-box p{
	font-size: 1.6rem;
	line-height: 2.8rem;
	color: #444444;
}
.resort-coverstory-noti-wrap .text-box .desc-title {
  margin: 1.6rem 0 0.4rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.8rem;
  color: #111111;
}
.resort-coverstory-noti-wrap .text-box .text-list {
	max-width: none;
}
.resort-coverstory-noti-wrap .text-box .text-list>p:before {
	height: 2px;
	width: 2px;
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 1.2rem;
	border-radius: 50%;
	background-color: #444444;
}

/* 20231124 신규이미지 설정    */
/* pc 설정 */
@media (min-width: 768px){

	/* 고정된 넓이  1: 425 X 420 2: 425 X 460   3: 425 X 420 */
	/* .t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(1) .img-bx,
	.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(3) .img-bx { height: 420px;}
	.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(2) .img-bx {	height: 460px;}
	.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(2n) {margin-top: 0;}
	.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(1),
	.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col:nth-child(3) {margin-top: 20px;} */


	/* 기본 355 X 460 .w565 추가하면 넓어짐 */
	/* .t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col{ max-width: 355px; margin-top: 0;}
	.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col.w565{width: 43%; max-width: 565px; margin-top: 0;}
	.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col .img-bx {	height: 460px;	} */


	/* 3개 고정된 425 X 460 */
	/* .t-html-module .t-img-info .columns-bx.three.new-type03 .columns-col {	margin-top: 0;}
	.t-html-module .t-img-info .columns-bx.three.new-type03 .columns-col .img-bx {	height: 460px;} */
	/* 3개 고정된 425 X 420 */
	/* .t-html-module .t-img-info .columns-bx.three.new-type04 .columns-col {	margin-top: 0;}
	.t-html-module .t-img-info .columns-bx.three.new-type04 .columns-col .img-bx {	height: 420px;} */

	/* 왼쪽 텍스트 오른쪽 이미지   530* 510 */
	.t-html-module .t-left-area.new-type01 {    width: 60%;    padding-right: 7%;}
	.t-html-module .t-right-area.new-type01 {    width: 40%;   max-width: 530px;}

	/* 왼쪽 텍스트 오른쪽 이미지  335 X 460 */
	.t-html-module .t-left-area.w335 {width: 74%;}
	.t-html-module .t-right-area.w335 {width: 26%; max-width: 335px;}
	.t-html-module .t-right-area.w335 .t-img-info .img-bx {  height: 460px;}

	/* 이미지4개 425 X 450 + 425 X 450 + 425X205 • 425X205 오른쪽에 425X205 2개 배치  */
	/* .t-html-module .t-img-info .columns-bx.new-type05 .columns-col{ width: 32%;}
	.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .img-bx {height: 450px;}
	.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .col-type01 {display: flex;     flex-direction: column;}
	.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .col-type01 .img-bx{ height: 205px;}
	.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .col-type01 .col-box:last-child .img-bx{margin-top: 13px;}
	.t-html-module .t-img-info .columns-bx.new-type05.caption .columns-col .col-type01 .col-box:last-child .img-bx{margin-top: 36px;}
	.t-html-module .columns-bx.new-type05 .columns-col .col-type01 .img-caption span {margin-top: 13px;} */


	/* 20240304 트래브러리 모바일 설정 */
	/* .detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-copy .txt03.btxt {font-size: 24px;} */

	/* 20240604 인터뷰 폰트사이즈 추가 */
	.t-html-module .t-txt-info .txt04 {margin-bottom:20px;font-size:28px;line-height: 1.4; color: #F07A0D;}
	/* 20240604 인터뷰 폰트사이즈 추가 */

}

/* mo 설정 */
@media (max-width: 767px) {
	.t-html-module .t-img-info .columns-bx.three.new-type01 ,
	.t-html-module .t-img-info .columns-bx.three.new-type02 ,
	.t-html-module .t-img-info .columns-bx.three.new-type03 ,
	.t-html-module .t-img-info .columns-bx.three.new-type04 {flex-direction: column;}

	.t-html-module .t-img-info .columns-bx.three.new-type01 .columns-col ,
	.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col ,
	.t-html-module .t-img-info .columns-bx.three.new-type03 .columns-col ,
	.t-html-module .t-img-info .columns-bx.three.new-type04 .columns-col  {width: 100%;}

	/* 20240604 인터뷰 폰트사이즈 추가 */
	.t-html-module .t-txt-info .txt04 {margin-bottom:15px;font-size:22px; color: #F07A0D;}
	/* 20240604 인터뷰 폰트사이즈 추가 */

	/* 커버스토리 상세 - 유의사항 (2026 신규스타일) */
	.resort-coverstory-noti-wrap {
		margin-top: 6rem;
		padding: 2rem;
	}
	.resort-coverstory-noti-wrap .title-sub-area {
		padding: 0;
	}
	.resort-coverstory-noti-wrap .text-box p{
		font-size: 1.4rem;
		line-height: 2.2rem;
	}
}

/* 20231124 신규이미지 설정    */



/* Template */
.address-wrap .addr-list {width:100%;
	/* margin-top:45px; */
	margin-top:6rem;
	padding:0 0 0 0;
}
.address-wrap .addr-list i {display:inline-block;vertical-align: -2px;margin-right:12px}
.address-wrap .addr-list li + li {margin-top:18px}
.address-wrap .addr-list .addr01 {width:14px;height:17px;background-image: url('/assets/image/travelary/coverstory/ico_addr01.webp');}
.address-wrap .addr-list .addr02 {width:13px;height:13px;background-image: url('/assets/image/travelary/coverstory/ico_addr02.webp');}
.address-wrap .addr-list .addr03 {width:15px;height:16px;background-image: url('/assets/image/travelary/coverstory/ico_addr03.webp');}
.address-wrap .addr-list .addr04 {width:13px;height:14px;background-image: url('/assets/image/travelary/coverstory/ico_addr04.webp');}
.address-wrap .addr-list .addr05 {width:13px;height:14px;background-image: url('/assets/image/travelary/coverstory/ico_addr05.webp');}
.address-wrap .addr-list .txt {font-size:14px;color:#666;display: inline-block;line-height:1.4;letter-spacing: 0;box-sizing: border-box;}

.postbox-wrap{
	margin-bottom: 16rem;
}
.postbox-wrap .postbox-new {
	position: relative;
	/* margin-top:126px; */
}
.postbox-wrap .postbox-new .post{
	max-width: 32.9rem;
	/* height: 5.2rem; */
	margin: 0 auto;
	margin-bottom: 5.9rem;
}
.postbox-wrap .postbox-new .post .tit {
	/* font-family: 'Bodoni Moda';
	 font-style: normal;
	 font-weight: bold;
	 font-size: 52px;
	 line-height: 52px;
	 letter-spacing: -0.02em;
	 color: #000000; */
	 font-family: 'anth';
	 font-size: 5.2rem;
	 line-height: 6.8rem;
	 color: #000000;
	 letter-spacing: 2%;
	}
.postbox-wrap .postbox-new ul {
	display: flex;
	justify-content: center;
	gap: 2.6rem;
	/* margin: 0 -1rem; */
}
.postbox-wrap .postbox-new ul li {
	/* margin: 10px;
	min-width: 221px; */
	/* margin: 0 1.3rem;
	width: 31.3rem;
	height: 31.3rem; */
	width: 25%;
	aspect-ratio: 1 / 1;
}
.postbox-wrap .postbox-new ul li a {
	display:block;
	/* border:1px solid #fff; */
	width: 100%;
	height: 100%;
}
.postbox-wrap .postbox-new ul li .click-box {position: relative;-webkit-touch-callout: none;-webkit-user-select: none;-ms-user-select: none;user-select: none;width: 100%;height: 100%;}
.postbox-wrap .postbox-new ul li a:hover .click-box{
	/* border: 2px solid #816c5b; */
	box-shadow: inset 0 0 0 2px #816c5b;
}
.postbox-wrap .postbox-new ul li .click-box .img-box {
	position: relative;
	/* width: 313px;
	height:314px; */
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.postbox-wrap .postbox-new ul li a:hover .click-box .img-box img{
	display: none;
}
.postbox-wrap .postbox-new ul li .click-box .img-box::after {content: '';position:absolute;left:0;right:0;width:100%;height:100%;background-color:#000000;opacity: .4;}
.postbox-wrap .postbox-new ul li a:hover .click-box .img-box::after {display:none}
.postbox-wrap .postbox-new ul li .click-box .img-box img {width:100%;height: 100%;object-fit: cover; position:absolute;left:50%;top:50%;transform: translate(-50%, -50%);}
.postbox-wrap .postbox-new ul li .click-box .txt01 {
	position: absolute;
	/* width: 70%; */
	/* top: 5%;
	left: 10%; */
	width: 75%;
	top: 3rem;
	left: 3rem;
	font-family: "Pretendard Variable";
	font-size: 2.8rem;
	line-height: 4.4rem;
	color: #ffffff;
}
.postbox-wrap .postbox-new ul li a:hover .click-box .txt01{
	font-weight: 600;
	color: #816c5b;
}
.postbox-wrap .postbox-new ul li .click-box .area01 {
	position: absolute;
	bottom: 2rem;
	left: 3rem;
	/* bottom: 10%;
	left: 10%;  */
	width: 80%;
}
/* .postbox-wrap .postbox-new ul li .txt01 {font-family: 'Noto Sans KR';font-style: normal;font-weight: 300;font-size: 32px;line-height: 1.25;color: #FFFFFF;} */
.postbox-wrap .postbox-new ul li .area01 .area-txt01 {
	font-family: 'anth';
	font-size: 1.4rem;
	line-height: 2.6rem;
	letter-spacing: 2%;
	/* font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -0.02em; */
	color: #FFFFFF;
}
.postbox-wrap .postbox-new ul li a:hover .click-box .area01 .area-txt01{
	color: #816c5b;
}
.postbox-wrap .postbox-new ul li .area01 .area-txt01 span {
	/* font-family: 'Bodoni Moda'; */
}
.postbox-wrap .postbox-new .ico-more-03{
	display: none;
	background: url("/assets/image/travelary/ico_arrow_right02.webp") no-repeat center/cover;
	border: none;
	min-width: 4.8rem;
	min-height: 4.8rem;
}
.postbox-wrap .postbox-new .ico-more-03::before, .postbox-wrap .postbox-new .ico-more-03::after{
	display: none;
}
.postbox-wrap .postbox-new ul li a:hover .ico-more-03{
	display: block;
}

/* .postbox-wrap .postbox-new ul .sokcho001 a:hover {border: 1px solid #00C2FF;}
.postbox-wrap .postbox-new .sokcho001:hover .area01 .area-txt01 {color: #00C2FF;}
.postbox-wrap .postbox-new .sokcho001:hover {background:unset; }
.postbox-wrap .postbox-new .sokcho001:hover .txt01{color: #00C2FF; }
.postbox-wrap .postbox-new .sokcho001:hover .area01{color: #00C2FF;}
.postbox-wrap .postbox-new .sokcho001:hover .area01 .ico-more-03{position:absolute;display:block;right: 0em;bottom:35%;width:2em;border-top:0.2em solid #00C2FF;}
.postbox-wrap .postbox-new .sokcho001 a .area01 .ico-more-03:before{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #00C2FF;transform-origin:right;transform:rotate(45deg);}
.postbox-wrap .postbox-new .sokcho001 a .area01 .ico-more-03:after{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #14A48A;transform-origin:right;transform:rotate(-45deg);}
.postbox-wrap .postbox-new .sokcho001:hover .click-box .img-box img {opacity: 0;} */
/* postbox sokcho buyeo all */
/* .postbox-wrap .postbox-new ul .all a:hover {border: 1px solid #FF5245;;}
.postbox-wrap .postbox-new .all:hover .area01 .area-txt01 {color: #FF5245;;}
.postbox-wrap .postbox-new .all:hover {background:unset; }
.postbox-wrap .postbox-new .all:hover .txt01{color: #FF5245;; }
.postbox-wrap .postbox-new .all:hover .area01{color: #FF5245;;}
.postbox-wrap .postbox-new .all:hover .area01 .ico-more-03{position:absolute;display:block;right: 0em;bottom:35%;width:2em;border-top:0.2em solid #FF5245;;}
.postbox-wrap .postbox-new .all a .area01 .ico-more-03:before{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #FF5245;;transform-origin:right;transform:rotate(45deg);}
.postbox-wrap .postbox-new .all a .area01 .ico-more-03:after{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #FF5245;;transform-origin:right;transform:rotate(-45deg);}
.postbox-wrap .postbox-new .all:hover .click-box .img-box img {opacity: 0;} */
/* postbox buyeo */
/* .postbox-wrap .postbox-new ul .buyeo001 a:hover {border: 1px solid #14A48A;}
.postbox-wrap .postbox-new .buyeo001:hover .area01 .area-txt01 {color: #14A48A;}
.postbox-wrap .postbox-new .buyeo001:hover {background:unset; }
.postbox-wrap .postbox-new .buyeo001:hover .txt01{color: #14A48A; }
.postbox-wrap .postbox-new .buyeo001:hover .area01{color: #14A48A;}
.postbox-wrap .postbox-new .buyeo001:hover .area01 .ico-more-03{position:absolute;display:block;right: 0em;bottom:35%;width:2em;border-top:0.2em solid #14A48A;}
.postbox-wrap .postbox-new .buyeo001 a .area01 .ico-more-03:before{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #14A48A;transform-origin:right;transform:rotate(45deg);}
.postbox-wrap .postbox-new .buyeo001 a .area01 .ico-more-03:after{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #14A48A;transform-origin:right;transform:rotate(-45deg);}
.postbox-wrap .postbox-new .buyeo001:hover .click-box .img-box img {opacity: 0;}

.postbox-wrap .postbox-new ul .jeju001 a:hover {border: 1px solid #FF6B00;}
.postbox-wrap .postbox-new .jeju001:hover .area01 .area-txt01 {color: #FF6B00;}
.postbox-wrap .postbox-new .jeju001:hover {background:unset; }
.postbox-wrap .postbox-new .jeju001:hover .txt01{color: #FF6B00; }
.postbox-wrap .postbox-new .jeju001:hover .area01{color: #FF6B00;}
.postbox-wrap .postbox-new .jeju001:hover .area01 .ico-more-03{position:absolute;display:block;right: 0em;bottom:35%;width:2em;border-top:0.2em solid #FF6B00;}
.postbox-wrap .postbox-new .jeju001 a .area01 .ico-more-03:before{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #FF6B00;transform-origin:right;transform:rotate(45deg);}
.postbox-wrap .postbox-new .jeju001 a .area01 .ico-more-03:after{content:'';position:absolute;top:-0.2em;right:0;width:1em;border-top:0.2em solid #FF6B00;transform-origin:right;transform:rotate(-45deg);}
.postbox-wrap .postbox-new ul li a .area01 .ico-more-03{display: none;}
.postbox-wrap .postbox-new .jeju001:hover .click-box .img-box img {opacity: 0;} */

/* Wednesday coupon */
.section.detail-04 {
	padding-top: 8rem;
}
.section.detail-04 .section-inner{max-width: 133em; padding: 0; border-top: 1px solid #E5E5E5; position: relative;margin: 0 auto;}
.section.detail-04 .section-inner .flag-wrapper {position: absolute;left: 4rem;top: -1.4rem;display: flex;}
.section.detail-04 .section-inner .flag-wrapper .flag-wrap .flag-icon.ico-coupon{
	width: 2.4rem;
	height: 2.4rem;
	background: url("/assets/image/travelary/ico_coupon.webp") center no-repeat;
}
.section.detail-04 .section-inner .flag-wrapper .flag-wrap .flag-text{
  line-height: 1.4rem;
	font-weight: 500;
	font-family: "Pretendard Variable";
}
.section.detail-04 .detail-coupon-box .coupon-txt {
	margin-top: 12rem;
}
.section.detail-04 .detail-coupon-box .coupon-txt .txt01{
	display: inline-block;
	/* font-family: 'Bodoni Moda'; */
	font-family: 'anth';
	letter-spacing: -0.02em;
	font-style: normal;
	/* line-height: 1.4rem; */
	line-height: 3rem;
	margin-left: 4rem;
	vertical-align: top;
	/* margin-top: 1rem; */
	margin-top: 0.4rem;
	font-size: 1.8rem;
  font-weight: 400;
  color: #111111;
  margin-right: 10.5rem;
}
.section.detail-04 .detail-coupon-box .coupon-txt .txt02{
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-style: normal;
	font-weight: bold;
	font-size: 2.8rem;
	line-height: 3.6rem;
	color: #000000;
}
.section.detail-04 .detail-coupon-box .coupon-txt .txt02 span {
  background-color: transparent !important;
  background: linear-gradient(to top, rgba(129, 108, 91, 0.5) 50%, transparent 50%);
}
.section.detail-04 .detail-coupon-box .coupon-txt .txt02 em {position: relative;vertical-align: top;font-style: normal;font-weight: bold;font-size: 28px;line-height: 42px;color: #000000;background: linear-gradient(to top, #FFA8A2 50%, transparent 50%)}
.section.detail-04 .detail-coupon-box .coupon-txt .txt02 p {
  font-size: 2.8rem;
  font-weight: 600;
  color: #111111;
  line-height: 4.4rem;
  /* margin-top: 1rem; */
}
.section.detail-04 .detail-coupon-box .coupon-txt .txt02 p + p {
	/* margin-top: 1rem; */
}
.section.detail-04 .detail-coupon-box .coupon-txt .txt02 p.normal {
	font-size:2rem;
	font-weight:400;
}
.section.detail-04 .detail-coupon-box .coupon-txt + .coupon-list02{
	margin-top: 6rem;
}
.section.detail-04 .flag-wrap {width: 10rem;height: 6.6rem;}
.section.detail-04 .flag-icon.ico-coupon{width: 2.6em;height: 2.3em;}
.section.detail-04 .flag-icon.ico-coupon .flag-text{font-size: 1.2em;}
.section.detail-04 .coupon-alert {
	margin-left: 30.6rem;
	margin-top: 3.2rem;
}
.section.detail-04 .coupon-alert .btn-round {
	height: 4.8rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  cursor: pointer;
  background: #ffffff;
  justify-content: center;
  border: 1px solid #111111;
  border-radius: 0.4rem;
  min-width: 16rem;
  padding: 0 3rem;
}
.section.detail-04 .coupon-alert .btn-round .ico-coupon {
	display: none;
	width: 1.9em;height: 2.6em;background: url("/assets/image/travelary/icon_alert.webp") center no-repeat;background-position: center;background-repeat: no-repeat;background-size: contain; margin-right: 1em;}
.section.detail-04 .coupon-alert .btn-round .text {
	font-style: normal;
	font-weight: normal;
	font-size: 1.4rem;
	line-height: 2.6rem;
	color: #111111;
}

.coupon-list02 {
	/* padding-top: 4.6rem; */
}
.coupon-list02 ul {
	display: flex;
	flex-wrap: wrap;
	max-width:104rem;
	margin-left:auto;
}
.coupon-list02 li {
	margin:1.5rem;
	box-shadow: 1.2rem 1.2rem 5rem rgba(6, 6, 6, 0.15);
	border-radius: 0.8rem;
}
.coupon-list02 li a {
	position:relative;display:flex;justify-content: space-between;
	width: 31.3rem;
	min-height: 17rem;
	height:100%;
	font-family: "Pretendard Variable";
}
.coupon-list02 li a .coupon-tit {
	display:flex;
	width:100%;
	margin:0;
	align-items: center;
	padding: 1rem 1rem 1rem 2rem;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.coupon-list02 li a .coupon-tit em {
	font-size:1.6rem;
	line-height: 1.5;
	color:#111;
}
.coupon-list02 li a .btn-down {
	display:flex;
	flex-shrink: 0;
	width:6rem;
	justify-content: center;
	align-items: center;
	background:#F9F9F9;
	color:#111;
	border-radius: 0px 0.8rem 0.8rem 0px;
}
.coupon-list02 li.active a .btn-down {
	background: #816C5B;
}
.coupon-list02 li.active a .btn-down em {color:#fff;}
.coupon-list02 li:not(.opened) a .btn-down em {position:relative}
.coupon-list02 li:not(.opened) a .btn-down em .ico-down {
	transform: rotate( -90deg);
	position: absolute;
	right: 0;
	bottom: 0;
	background-size: 100%;
	display:inline-block;
	width:1.6rem;
	height:1.6rem;
	background: url("/assets/image/travelary/ico_down_black.webp") center no-repeat;
	background-size:cover;
}
.coupon-list02 li.active:not(.opened) a .btn-down em .ico-down {
	background-image: url("/assets/image/travelary/ico_down.webp");
}
.coupon-list02 li a .btn-down em {
	color:#111;
	font-weight:400;
	font-size:1.2rem;
	transform: rotate(90deg);
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-right: 2.6rem;
}
.coupon-list02 li.opened a,
.coupon-list02 li.close a {pointer-events: none;cursor: default}
.coupon-list02 li.opened .open-txt span {
	display:block;
	margin-bottom:1.4rem;
	font-size:1.6rem;
	color:#111;
	line-height: 1.625;
}
.coupon-list02 li.opened .open-txt strong {
	position:relative;
	font-weight:700;
	font-size:2rem;
	color:#111;
	background: linear-gradient(to top, #FFA8A2 50%, transparent 50%);
}
.coupon-list02 li.opened .btn-down {background:#F9F9F9;}
.coupon-list02 li.opened .btn-down em {
	color:#111;
	padding-right: 0;
}
.coupon-list02 li.close .deadline {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	/* font-size:20px; */
	font-size: 2rem;
	left:0;top:0;width:100%;height:100%;
	border-radius: 8px;
	/* font-weight:700; */
	font-weight: 600;
	color:rgb(153, 153, 153);
	background:rgba(153, 153, 153, 0.8);
	color:#fff;
	white-space: nowrap;}

/* 커버스토리 쿠폰 영역 */
.coupon-tit-name {
	font-size: 1.8rem;
    line-height: 3.6rem;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.coupon-tit-date {
		font-size: 1.6rem;
		line-height: 3.6rem;
		font-weight: 600;
		color: #111;
		background: linear-gradient(to top, #FFA8A2 50%, transparent 50%);
}

.coupon-tit-memo {
		font-size: 2rem;
		line-height: 3.6rem;
}

.coupon-list02 li a .coupon-tit em {
		line-height: 1.2;
}

.coupon-list02 .txt03 {
		margin-left: 306px;
		margin-top: 2.5em
}

.coupon-list02 .txt03 p {
		font-size: 20px;
		font-weight: 400;
		line-height: 42px;
		color: #000;
		word-break: keep-all;
}

.coupon-list02 .etcTxt {
		margin-left: 306px;
		margin-top: 1em;
		font-size: 15px;
		color: #e50113;
		word-break: keep-all;
}

@media (max-width: 767px) {
		.coupon-list02 .txt03 {
				margin-top: 0;
				margin-bottom: 2.5em;
		}

		.coupon-list02 .txt03, .coupon-list02 .etcTxt {
				margin-left: 0;
		}

		.coupon-list02 .txt03 p {
				font-size: 1.8rem;
				line-height: 2.4rem;
		}
}

.section.detail-04 .coupon-list {margin-top: 8em; }
.section.detail-04 .coupon-list ul {max-width: 102.1em;margin-left: auto;display: flex;flex-wrap: wrap; }
.section.detail-04 .coupon-list ul li {  height: 17em; box-shadow: 12px 12px 50px rgba(6, 6, 6, 0.15);border-radius: 8px;}
.section.detail-04 .coupon-list ul li {  width: 100%;max-width: 31.3em;background: url("/assets/image/travelary/coverstory/coupon00.webp") ;background-repeat: no-repeat; background-position: center;background-size: 100%;margin: 1em 1em 1em 0;}
.section.detail-04 .coupon-list ul li a {width: 31.3em;height: 17em;position: absolute;padding: 4em 65px 4em 4em;}
.section.detail-04 .coupon-list ul li div {display: inline-flex;justify-content: space-between;align-items: center;height: 4.5em; font-family: 'Noto Sans KR';font-style: normal;font-weight: normal;font-size: 2em;line-height: 30px;color: #111111;letter-spacing: 0;}
.section.detail-04 .coupon-list ul li div span {max-height:120px;overflow: hidden;}
.section.detail-04 .coupon-list ul li.opened {background: url("/assets/image/travelary/coverstory/opened.webp") ;background-repeat: no-repeat; background-position: right top;background-size: 60px;}
.section.detail-04 .coupon-list ul li.coupon01 {background: url("/assets/image/travelary/coverstory/coupon01.webp") ;background-repeat: no-repeat; background-position: center;background-size: 100%;}
.section.detail-04 .coupon-list ul li.coupon02 {background: url("/assets/image/travelary/coverstory/coupon02.webp") ;background-repeat: no-repeat; background-position: center;background-size: 100%;}
.section.detail-04 .coupon-list ul li.coupon00.red {background-image: url("/assets/image/travelary/coverstory/coupon_red.webp") ;background-repeat: no-repeat; background-position: center;background-size: 100%;}

.section.detail-04 .coupon-list ul li.coupon00.close a {pointer-events: none;cursor: default;}
.section.detail-04 .coupon-list ul .coupon00.close .deadline {display: flex;align-items: center;justify-content: center;position: absolute;left:0;top:0;width:100%;height:100%;border-radius: 8px;font-weight:700;color:rgb(153, 153, 153);background:rgba(153, 153, 153, 0.9);color:#fff}
.section.detail-04 .coupon-list ul .coupon00.opened {position: relative;}
.section.detail-04 .coupon-list ul .coupon00.opened .soon {display: flex;align-items: center;justify-content: flex-start;text-align:left;position: absolute;left:0;top:0;width:100%;height:100%;padding:0 60px 0 40px;border-radius: 8px;font-weight:700;}
.section.detail-04 .coupon-list ul .coupon00.opened .soon .open-txt {display:block;height: auto;line-height: 1;}
.section.detail-04 .coupon-list ul .coupon00.opened .soon .open-txt span {display:block;margin-bottom:18px;font-size:16px;color:#111;line-height: 1.625;}
.section.detail-04 .coupon-list ul .coupon00.opened .soon .open-txt strong {position:relative;display:block;font-weight:700;font-size:20px;color:#111}
.section.detail-04 .coupon-list ul .coupon00.opened .soon .open-txt strong::after {position: absolute;bottom: -3px;content: '';display: block;width: 100%;height: 10px;background: #FF5245;opacity: 0.5;transition: 0.3s;}

.pagination_wrap {
	/* margin-top: 120px; */
	margin: 10rem 0;
}
.pagination_wrap .pagination {width: 100%;max-width: 133rem;display: flex;justify-content: space-between;align-items: center;border-top: 1px solid #111111;}
.pagination_wrap .pagination button,
.pagination_wrap .pagination a {margin-top: 6rem;}
.pagination_wrap .pagination button:disabled {opacity: .5;}
.pagination_wrap .pagination .btn-prev .icon{
	display: inline-block;
	background: url("/assets/image/travelary/prev02.webp");
	/* width: 5.4rem;height: 1.9rem; */
	width: 5.4rem;height: 4rem;
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
}
.pagination_wrap .pagination .btn-list .icon{
	display: inline-block;
	background: url("/assets/image/travelary/bt_list.webp");
	width: 3rem;height: 2.6rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.pagination_wrap .pagination .btn-next .icon{
	display: inline-block;
	background: url("/assets/image/travelary/next02.webp");
	/* width: 5.4rem;height: 1.9rem; */
	width: 5.4rem;height: 4rem;
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
}

.reserve-btn {margin:6rem 0 10rem 0;text-align: center;}




@media (max-width:1330px) {
	/* Graphy */
	/* .graphy-search-wrap .search-bx h2 {font-size:28px}
	.graphy-search-wrap .search-link li {margin:0 16px}
	.graphy-search-wrap .search-link li a {font-size:24px}
	.graphy-search-wrap .search-zone {display:block;padding:20px 20px 20px 20px}
	.graphy-search-wrap .search-zone .form-col + .form-col {margin-left: 0;}
	.graphy-search-wrap .search-zone .form-col dl {display: block;}
	.graphy-search-wrap .search-zone .form-col dd {margin:0}
	.graphy-search-wrap .search-zone .form-container {display: block;}
	.graphy-search-wrap .search-zone .form-col dt {margin-bottom:10px}
	.graphy-search-wrap .search-zone .form-col {margin-top:20px}
	.graphy-search-wrap .search-zone .form-col:first-child {margin-top:0}
	.graphy-search-wrap .input-design-align {flex-wrap: wrap;} */

	/* 커버스토리 리스트 */
	/* .cover-story-wrap .main-content .photothumb {width:100%;max-width:100%} */

	/* .postbox-wrap .postbox-new ul li .click-box .img-box {width:250px;height:250px}
	.postbox-wrap .postbox-new ul li .click-box .txt01 {line-height: 1;}
	.postbox-wrap .postbox-new ul li .click-box .txt01 span {font-size:24px} */

}

@media (max-width:1100px) {
	/* Detail Popup */
	/* .recomm-pop .txt-wrap .sub-content {padding:28px 30px 0 30px}
	.recomm-pop .img-wrap img {width:100%}
	.recomm-pop .txt-info-bx .txt-cont02 {max-height:300px;height:300px} */
	/* .postbox-wrap .postbox-new ul li .click-box .img-box {width:219px;height:219px}
	.postbox-wrap .postbox-new ul li .click-box .txt01 {line-height: 1;}
	.postbox-wrap .postbox-new ul li .click-box .txt01 span {font-size:20px} */
	/* .cover-story-wrap .left-sidebar img {max-width:80%;}
	.content .flag-wrapper {right:0} */
}


@media (max-width:1024px) {

	/* Sub common(1024) */
	/* .visual-copy-sub {transform: translateX(0);left: 0;right: 0;padding: 0;text-align: center;}
	.visual-copy-sub .visual-title {font-size:80px}
	.visual-copy-sub .visual-text {font-size:24px;float: none;text-align: center;}
	.visual-copy-sub.back {top:300px;left:0}
	.visual-copy-sub.front {overflow:hidden;top:300px;left:0;color:#111111} */
	/* .visual-copy-sub.align-left .visual-text {max-width: 100%;text-align:center} */

	/* Graphy(1024) */
	/* .graphy-search-wrap .search-bx h2 {font-size:28px}
	.graphy-search-wrap .search-link li {margin:0 16px}
	.graphy-search-wrap .search-link li a {font-size:24px}
	.graphy-search-wrap .search-zone {display:block;padding:20px 20px 20px 20px;margin:0}
	.graphy-search-wrap .search-zone .form-col dl {display: block;}
	.graphy-search-wrap .search-zone .form-col dd {margin:0}
	.graphy-search-wrap .search-zone .form-container {display: block;}
	.graphy-search-wrap .search-zone .form-col dt {margin-bottom:10px}
	.graphy-search-wrap .search-zone .form-col {margin-top:20px}
	.graphy-search-wrap .search-zone .form-col:first-child {margin-top:0}
	.graphy-search-wrap .input-design {margin:6px;}
	.graphy-search-wrap .input-design-align {flex-wrap: wrap;}
	.graphy-search-wrap .input-design:first-child {margin-left:0}
	.graphy-search-wrap .btn-zone {display: flex;align-items: center;justify-content: space-between;padding:0 18px}
	.graphy-search-wrap .btn-zone button {width:50%;height:50px;border-radius: 25px;}
	.graphy-search-wrap .btn-zone button .txt {font-size:18px}
	.graphy-search-wrap .btn-zone button + button {margin-left:6px}
	.graphy-search-wrap .btn-zone i {margin-right:4px}
	.graphy-search-wrap .btn-zone i.ico-reset {width:20px;height:18px;}
	.graphy-search-wrap .btn-zone i.ico-search-w {width:19px;height:19px}
	.maps-wrap .maps-detail-bx {position: relative;width:100%}
	.maps-wrap .scrollbar-inner {height:auto;}
	.maps-wrap .list-result {padding:0 30px;font-size:20px} */

	/* .travelary-visual.graphy .visual-copy-sub {padding:0 30px;} */

	/* Detail Popup(1024) */
	/* .recomm-pop .right-zone .sub-header {padding:0 30px 0 10px}
	.recomm-pop .right-zone .sub-content {padding:20px 25px 0 25px}
	.recomm-pop .right-zone .recomm-course strong {font-size:18px}
	.recomm-pop .right-zone .recomm-course p {font-size:14px}
	.recomm-pop .right-zone .recomm-course::after {margin:10px 0}
	.recomm-pop .right-zone .recomm-course-detail {font-size:14px}
	.recomm-pop .img-wrap img {width:100%}
	.recomm-pop .txt-info-bx {padding: 20px 20px 80px 20px;}
	.recomm-pop .txt-info-bx .txt-cont02 {max-height:250px;height:250px} */

	/* activity(1024) */
	.travelary-visual.activity .visual-copy-sub {padding:0 30px;}

	/* 커버스토리 리스트(1024) */
	/* .cover-story-wrap .left-sidebar {width:26.1%;}
	.cover-story-wrap .main-content .photothumb {width:100%;max-width:100%}
	.cover-story-wrap .left-sidebar img {max-width:70%;}
	.item.photo{max-width:25em;}
	.content .flag-wrapper .flag-wrap {width:70px;height:44px}
	.content .flag-wrap .flag-text {font-size:10px}
	.content .flag-wrap .flag-box.style02 + .flag-text-wrap .flag-text {font-size:10px}
	.content .flag-wrap .flag-box.style02::after {height:36px}
	.content .flag-wrap .flag-text-wrap .wrap-svg svg {width: 74px;height: 22px;} */

	/* 커버스토리 상세(1024) */
	.detail-04 .section-inner,
	.postbox-wrap .section-inner,
	.travelary-newsletter .section-inner,
	.pagination_wrap .section-inner {
		/* margin:0 7em; */
		margin: 0 auto;
		width:auto;
	}
	.postbox-wrap .postbox-new .tab ul{
		/* flex-wrap: wrap; */
		/* justify-content: space-between;
		align-items: stretch; */
	 }
	.postbox-wrap .postbox-new .tab ul li{display: inline-block; }
	.postbox-wrap .postbox-new .tab ul::-webkit-scrollbar {display: none;}

	.section.detail-04.sokcho .coupon-list ul {justify-content: flex-end;}
	.section.detail-04 .detail-coupon-box .coupon-txt {text-align: center;}
	.section.detail-04 .detail-coupon-box .coupon-txt .txt01 {margin: 0 auto;display: block;}
	.section.detail-04 .detail-coupon-box .coupon-txt .txt02 {margin-top: 15px}
	.section.detail-04 .coupon-alert {margin: 25px auto;}
	.section.detail-04 .coupon-list ul {justify-content: space-between}
	.postbox-wrap .postbox-new ul li .click-box .img-box {
		/* width:236px;
		height:236px; */
		width: 100%;
		height: 100%;
	}
}

@media (max-width:767px){
	.m-show {display:block !important}
	.pc-show {display:none  !important}
	.pc-show{display:none;}
	.mo-show{display:block;}
	.cursor {display:none}

	/* Sub common(768) */
	.visual-copy-sub {transform: translateX(0);left: 0;right: 0;padding: 0;text-align: center;}
	.visual-copy-sub.back {
		/* top:223px; */
		top: 22.3rem;
	}
	.visual-copy-sub.front {
		/* top:223px; */
		top: 22.3rem;
	}
	.visual-copy-sub .visual-title {
		font-size:4.6rem;
		line-height: 5.6rem;
		font-weight: 700;
		font-family: 'anth';
		letter-spacing: -0.02em;
	}
	.visual-copy-sub .visual-text {
		margin-top:2rem;
		font-size:2rem;
		font-weight: 400;
		line-height: 3.2rem;
		float: none;
		text-align: center;
	}
	.visual-copy-sub.align-left .visual-title,
	.visual-copy-sub.align-left .visual-text {
		padding:0 2rem;
		text-align:left;
	}

	/* Template(768) */
	.visual-con {
		position:relative;
		/* padding: 107px 0 0 0; */
		line-height: 2.6rem;
	}
	.visual-con .v-txt {
		padding:0 18px;
		margin: 4rem 0 0 0;
	}
	.visual-con .v-txt strong br {display:none}
	.visual-con .v-flag {display:none}
	.visual-con .v-img {
		position: relative;
		/* height:auto; */
		height: 36rem;
		width: 100%;
	}
	.visual-con .v-img .imgbx {position: static;transform: none;}
	.visual-con .v-img .imgbx img {width:100%}

	/* Graphy(768) */
	.travelary-visual.graphy {height:auto;padding:0}
	.travelary-visual.graphy .visual-copy-sub {
		/* padding:0;
		top:80px; */
		padding:0 2rem;
		bottom: 10.5rem;
	}
	.travelary-visual.graphy .visual-copy-sub .wrap-svg {max-width:330px;height:43px;}
	.travelary-visual.graphy .visual-con .v-txt p{
		margin: 0 0 1.2rem 0;
	}
	.graphy-search-wrap {
		margin:0;
		/* padding:90px 0 0 0; */
		padding:0;
	}
	.graphy-search-wrap .search-bx{
		max-width: 100%;
		margin: 0 2rem;
	}
	.graphy-search-wrap .search-bx h2 {font-size:28px}
	.graphy-search-wrap .search-link {margin: 70px 0 44px;}
	.graphy-search-wrap .search-link li {
		/* margin: 0 16px; */
		margin: 0 1rem;
	}
	.graphy-search-wrap .search-link li a {
		/* font-size:20px; */
		font-size: 2rem;
		line-height: 3.6rem;
	}
	.graphy-search-wrap .search-link li.on a::after{
		bottom: 0.2rem;
	}
	.graphy-search-wrap .search-zone {
		display:block;
		/* padding:20px 20px 20px 20px; */
		padding:2rem;
	}
	.graphy-search-wrap .search-zone .form-col + .form-col {
		margin-left: 0;
	}
	.graphy-search-wrap .search-zone .form-col dl {display: block;}
	.graphy-search-wrap .search-zone .form-col dd {margin:0}
	.graphy-search-wrap .search-zone .form-container {display: block;}
	.graphy-search-wrap .search-zone .form-col dt {
		/* margin-bottom:10px; */
		margin: 0 0 1.6rem 0;
		line-height: 2.2rem;
	}
	.graphy-search-wrap .search-zone .form-col {
		/* margin-top:20px; */
		margin-top:2rem;
	}
	.graphy-search-wrap .search-zone .form-col:first-child {margin-top:0}
	/* .graphy-search-wrap .input-design {margin:6px;} */
	.graphy-search-wrap .input-design-align {
		/* flex-wrap: wrap; */
		gap: 1rem 0.6rem;
	}
	/* .graphy-search-wrap .input-design:first-child {margin-left:0} */
	.graphy-search-wrap .input-design label{

	}
	.graphy-search-wrap .btn-filter{
		line-height: 2.2rem;
	}
	.graphy-search-wrap .btn-zone {
		display: flex;
		align-items: center;
		justify-content: center;
		/* padding:0 18px; */
		padding: 0 2rem;
		/* margin:20px 0 40px; */
		margin: 2rem 0 6rem;
	}
	.graphy-search-wrap .btn-zone button {
		/* width:120px;
		height:40px;
		border-radius: 20px; */
		width: calc(50% - 0.4rem);
		min-width: auto;
	}
	.graphy-search-wrap .btn-zone button .txt {
		/* font-size:14px; */
		font-size: 1.5rem;
	}
	.graphy-search-wrap .btn-zone button + button {margin-left:8px}
	.graphy-search-wrap .btn-zone i {margin-right:4px}
	/* .graphy-search-wrap .btn-zone i.ico-reset {width:13px;height:12px;} */
	.graphy-search-wrap .btn-zone i.ico-search-w {width:15px;height:15px;vertical-align: -3px;}

	.maps-wrap .maps-api {
		position: relative;
		overflow: hidden;
		width: 100%;height: 0;
		/* padding-bottom: 56.25%; */
		height: 50rem;
	}
	.maps-wrap .maps-detail-bx {position: relative;width:100%}
	.maps-wrap .scrollbar-inner {height:auto;}
	.maps-wrap .list-result {
		/* padding:0 30px;
		font-size:20px; */
		padding: 2.4rem 2rem;
		font-size: 2rem;
		line-height: 3.2rem;
	}
	.maps-wrap .list-result span em{
		font-weight: 500;
	}
	.maps-wrap .maps-scroll li{
		padding: 3rem 3rem 3rem 4.6rem;
	}
	.maps-wrap .maps-scroll li .txt01 em{
		top: -1px;
		left: -2.8rem;
		font-size: 1.8rem;
		font-weight: 400;
		line-height: 3rem;
	}
	.maps-wrap .maps-scroll li .txt01{
		line-height: 2.6rem;
	}
	.maps-wrap .maps-scroll li .txt02 em{
		line-height: 2.2rem;
	}
	.maps-wrap .maps-scroll li .txt03 em{
		line-height: 2.2rem;
		padding: 0.3rem 1.2rem;
	}
	.maps-wrap .maps-scroll li.nodata {height:auto;padding:100px 0}

	/* withus(768) */
	.travelary-visual.withus {max-height:100vh;background: url('/assets/image/travelary/contents/withus_visual_mo.webp') no-repeat left top;background-size: 100%;}

	.place-area-wrap {
		/* padding:308px 0 100px; */
		/* padding: 37rem 0 6rem; */
		padding: 29rem 0 6rem;
	}
	.place-area-wrap .tab-menu-wrap {
		max-width: 100%;

		/* margin:48px auto 50px; */
		margin: 3.2rem 0 0 0;
		padding:0;
    padding-left: 2rem;
	}
	.place-area-wrap .tab-menu-wrap ul {
    justify-content: unset;
    gap: 2rem;
		padding-left: 0;
  }
	.place-area-wrap .tab-menu-wrap li a {font-size:20px}
	.place-area-wrap .tab-menu-wrap li.on .place-area-text{
		font-weight: 400;
	}

	.recom-item .txt-info {top: 200px;height: 0;padding:20px}
	.recom-item .detail-btn.hover .txt-info {top:200px;background:none !important; color: #111111;}
	.recom-item .detail-btn.hover .txt-info .txt02 {display:none}
	/* .recom-item .detail-btn.hover .txt-info.sokcho {color:#00C2FF}
	.recom-item .detail-btn.hover .txt-info.buyeo {color:#14A48A}
	.recom-item .detail-btn.hover .txt-info.jeju {color:#EC7100}
	.recom-item .detail-btn.hover .txt-info.multiple {color:#000} */

	.recommended-wrap.swiper-container {
		padding:4rem 1.8rem;
		margin:0;
	}
	.recommended-wrap .recommended-inner {
		padding:0 0 11rem 0;
	}
	.recommended-wrap .recom-item .detail-btn {
		transform: translate(0px, 0px) !important;
	}
	.resort-new-styles .recom-item:hover .detail-btn .txt-info{
		background: none !important;
	}
	.recommended-wrap .recom-item .img-zone {
		/* width:240px;
		height: 240px; */
		width:24rem;
		height: 24rem;
	}
	.recommended-wrap .recom-item .img-zone img {width:100%}
	.recommended-wrap .recom-item .txt-info .txt01 {
		/* font-size:24px;
		line-height: 34px; */
		font-size: 2.4rem;
		line-height: 3.6rem;
		font-weight: 500;
	}
	.recommended-wrap .recom-item .txt-info .txt02,
	.recommended-wrap .recom-item .txt-info .txt03 {display:none !important;}
	.recommended-wrap .swiper-slide {
		width:24rem !important;
		margin-right:6rem;
	}
	.recommended-wrap .swiper-scrollbar-container {position: relative;width:auto;margin:0;overflow: visible;}
	.recommended-wrap .swiper-scrollbar-container .swiper-scrollbar-drag {height:auto}
	/* Detail Popup(768) */
	#popup-detail.popup-group.open {
		display:block;
		/* position: absolute; */
		height:100%;
		overflow: auto;
	}
	.btn-popup-close {background: url('/assets/image/travelary/ico_close_01_mo.webp') center no-repeat;}
	.recomm-pop .swiper-button-next{
		right: 2rem;
	}
	.recomm-pop .swiper-button-prev{
		left: 2rem;
	}
	.recomm-pop .swiper-pagination{
		bottom: 2rem;
	}
	.recomm-pop .source {left:20px;top:20px;}
	.recomm-pop .manager {
		/* height:76px; */
		height:7.8rem;
		padding:0 18px;
	}
	.recomm-pop .manager .thumb {
		/* width:50px;
		height:50px;
		margin-right:14px; */
		width:5rem;
		height:5rem;
		margin-right:1.4rem;
	}
	.recomm-pop .manager .subject{
		line-height: 2.2rem;
	}
	.recomm-pop .txt-info-bx .tit {
		/* font-size:28px; */
		font-size:2.4rem;
		line-height: 3.6rem;
		width: 70%;
		margin: 0 auto;
	}
	.recomm-pop .detail-wrap {display: block;}
	.recomm-pop .detail-wrap .img-wrap {width:100%;height: 37.5rem;}
	.recomm-pop .detail-wrap .img-wrap img {width:100%;max-width:100%}
	.recomm-pop .detail-wrap .txt-wrap {width:100%}
	.recomm-pop .detail-wrap .txt-wrap .sub-content {padding:48px 18px}
	.recomm-pop .detail-wrap .txt-wrap .recomm-course::after {margin:40px 0}
	.recomm-pop .slick-prev {left:18px}
	.recomm-pop .slick-next {right:18px}
	.recomm-pop .slick-dots {bottom:20px}
	.recomm-pop .txt-info-bx {
		/* padding:50px 18px 140px; */
		padding: 4rem 2rem 14rem 2rem;
		height: auto;
		min-height: 50rem;
		overflow: inherit;
	}
	.recomm-pop .txt-info-bx .txt-cont02{
		height: auto;
		max-height: auto;
		overflow: visible;
	}
	.recomm-pop .txt-info-bx .copy{
		line-height: 3.2rem;
	}
	.recomm-pop .detail-wrap .txt-wrap .sns-share-area {
		/* bottom:40px;
		right:18px; */
		bottom:1.6rem;
		right:2rem;
	}
	.sns-share-area .share-list{
		top: -16.2rem;
		right: 0.3rem;
	}
	/* .recomm-pop .txt-info-bx .tit-sub {margin-bottom:12px} */
	.recomm-pop .txt-info-bx .address {
		/* margin-top: 44px; */
		margin-top: 2.4rem;
		padding-top: 2.4rem;
	}

	/* activity(768) */
	.travelary-visual.activity {height:100%;padding:0;align-items: flex-start;}
	.travelary-visual.activity .visual-copy-sub {padding:0;top:80px;transform: none;left:0}
	.travelary-visual.activity .visual-copy-sub .wrap-svg {max-width:241px;height:43px;}
	.travelary-visual.activity .visual-copy-sub .wrap-svg.mark {max-width:85px;height:28px;margin-left:6px;font-size:18px;line-height:1.5}

	.swiper-container.activity-list {margin:0 18px 68px 18px;overflow:visible}

	.swiper-container.activity-list {padding-bottom:0;}
	.activity-list-wrap .activity-tit h3 {margin:10px 0 24px 0}
	.activity-list-wrap .activity-list li:nth-child(3n+3) {margin-left:auto !important}
	.activity-list-wrap .activity-list .list-bx li {width:240px}
	.activity-list-wrap .activity-list .list-bx li .img .flag-caption {min-width: 75px;height:32px;border-radius: 16px;font-size:18px;line-height: 1.6;}

	.program-wrap {
		margin:15.8rem auto 14.4rem auto;
		color:#111;
	}
	.program-wrap .tbl-fixed-scroll {margin-bottom:6.7rem}
	.program-wrap .tbl-tit {margin-bottom:4.8rem}
	.program-wrap .tbl-data {table-layout: fixed;}
	.program-wrap .tbl-data tbody td:first-child {border-left:0}
	.program-wrap .tbl-data thead th {padding:0;height:6rem;font-size:1.6rem}
	.program-wrap .tbl-data th,
	.program-wrap .tbl-data th,
	.program-wrap .tbl-data td {padding:10px 5px;height:112px;font-size:16px;line-height: 1.625;vertical-align: middle;}
	.program-wrap .tbl-data td {text-align:center}
	.program-wrap .tbl-data .flag-caption {display: table;margin:0 auto}
	.program-wrap h2 {font-size:36px}
	.program-wrap h3 {margin-bottom:20px;font-size:18px;font-weight:700;text-align:center}

	/* 커버스토리 리스트(768) */
	.left-sidebar{position:relative;max-width:100%;top:0;float:unset;margin-top:unset;margin-right:unset;}
	.travel-util-area{
		/* padding:0 18px; */
		padding:0 2rem;
		margin-bottom: 2.6rem;
	}
	.columns div{display:inline-block;margin:0 0 15px;width:100%;max-width:100em;}
	.photothumb{width:100%;max-width:100em;height: 38rem;object-fit: cover;}
	.travelary-wrap .button-wrap{
		/* margin-top:6em; */
		margin-top:4rem;
		text-align:center;
		padding-bottom:12em;
		padding-left:0;
	}
	.grid{display:grid;grid-gap:0.5em;grid-template-columns:repeat(auto-fill, minmax(20em, 1fr));grid-auto-rows:2em;}
	.item.photo {max-width: 100%;}
	.detail-txtbox .detail-tit {height: 261px;}
	.section-inner.bg::before{top: 0;}
	.cover-story-wrap .left-sidebar {
		position: relative;
		top:0;float:none;
		width:100%;
		max-width:100%;
		height:auto;
		/* padding:84px 0 45px; */
		padding-bottom: 4rem;
		padding-top: 4rem;
	}
	.cover-story-wrap .left-sidebar .wrap-svg {
		/* max-width:242px */
		width: 20.4rem;
	}
	.cover-story-wrap .left-sidebar aside {margin:0 auto}
	.cover-story-wrap .left-sidebar aside .copy {
		/* margin:16px 0 19px;
		font-size:18px; */
		margin:0.8rem 0 2.8rem;
		line-height: 2.6rem;
	}
	.cover-story-wrap .left-sidebar aside .copy::before{
		margin: 0 auto -0.2rem auto;
	}
	.cover-story-wrap .left-sidebar .thumb-img{
		width: 25rem;
		margin: 3.2rem auto 0;
	}
	/* .cover-story-wrap .left-sidebar .thumb-img img {max-width:250px} */
	.cover-story-wrap .left-sidebar .travel-link-bx {position:relative;margin-top:40px}
	.cover-story-wrap .left-sidebar .travel-link.sticky{position:fixed;display:flex;top:63px;left:0;width:100%;margin:0;height:5em;z-index:90;background:#2346FF;padding:1.5em;justify-content:space-around;}
	.cover-story-wrap .left-sidebar .travel-link a{
		display:inline-block;
		margin-bottom:0;
		/* margin:0 10px; */
		margin: 0;
		/* font-family:'anth';
		font-style:normal;
		font-weight:400;
		font-size:2rem;
		line-height:3.6rem; */
		text-align:center;
		/* letter-spacing:-0.02em; */
		/* color:#FFFFFF; */
		/* color: rgba(255, 255, 255, 0.4); */
	}
	.cover-story-wrap .main-content {padding: 40px 0;}
	.cover-story-wrap .grid-wrapper{
		padding: 0 2rem;
	}
	.cover-story-wrap .grid {margin:0}
	.cover-story-wrap .grid .item{width: 100%;}
	.cover-story-wrap .grid .item a{display:block;margin: 0;}
	.cover-story-wrap .left-sidebar.static {position: relative;}

	/* .content {padding:0 18px} */
	.content .flag-wrapper {
		/* right:29px; */
		right:auto;
		left: 2rem;
	}
	.content .flag-wrapper .flag-wrap {width:100px;height:60px}
	.content .flag-wrap .flag-text {font-size:12px}
	.content .flag-wrap .flag-box.style02 + .flag-text-wrap .flag-text {font-size:12px}
	.content .flag-wrap .flag-box.style02::after {height:52px}
	.content .flag-wrap .flag-text-wrap .wrap-svg svg {width: 84px;height: 32px;}




	/* 커버스토리 상세(768) */
	.detail-visual-wrap .flag-wrapper {bottom: -35%;}
	.section.detail-04 {padding-top:85px}
	.section.detail-04 .section-inner {width:100%;margin:0}

	.coupon-list02 {margin-top:40px;}
	.coupon-list02 ul {display: flex;
    max-width: 104rem;
    margin-left: auto;
    flex-direction: column;}
	.coupon-list02 li {flex-shrink: 0;width: 100%;margin: 0 0 25px 0;}
	.coupon-list02 li.close .deadline {text-align:center;line-height: 1.4;}
	.coupon-list02 li a {flex-direction: column;width:100%;}
	.coupon-list02 li a .btn-down {width:100%;height:50px;border-radius: 0 0 8px 8px;}
	.coupon-list02 li a .btn-down em {
		transform:none;
		padding-right: 2.4rem;
		line-height: 2rem;
	}
	.coupon-list02 li a .coupon-tit {
		flex: 1 0 auto;
		padding:2rem;
		min-height:14.3rem;
		background:#fff;
		border-radius: 0.8rem 0.8rem 0 0;
	}
	.coupon-list02 li a .coupon-tit .coupon-tit-name {
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.coupon-list02 li a .coupon-tit em {
		font-size:1.6rem;
		line-height: 2.6rem;
	}
	.coupon-list02 li a .coupon-tit .coupon-tit-date {
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	.coupon-list02 li.opened a .coupon-tit {
		padding-right: 0;
	}
	.coupon-list02 li.opened a .coupon-tit .coupon-tit-date {
		background: none;
		text-decoration-line: underline;
		text-decoration-color: rgba(129, 108, 91, 0.5);
		text-decoration-thickness: 0.6em;
		text-underline-offset: -0.3em;
		text-decoration-skip-ink: none;
	}
	.coupon-list02 li:not(.opened) a .btn-down em .ico-down {
		transform: rotate(0);
		bottom: 0.2rem;
	}
	.coupon-list02 li.opened .open-txt span {font-size:1.8rem}
	.coupon-list02 li.opened .open-txt strong {font-size:16px;line-height: 1.5;}

	.section.detail-04 .coupon-list {margin-top:35px}
	.section.detail-04 .coupon-list ul {width:338px;margin:0 auto;justify-content: space-between;}
	.section.detail-04 .coupon-list ul li {position:relative;width:162px;min-height:194px;margin:25px 0 0 0;height:100%}
	.section.detail-04 .coupon-list ul li a {display:block;position:relative;width:100%;height:100%;padding:30px 18px 65px 18px;}
	.section.detail-04 .coupon-list ul li div {font-size:18px;height:100%;display:block;}
	.section.detail-04 .coupon-list ul li div span {max-height:100%}
	.section.detail-04 .coupon-list ul li div span br {display:none}
	.section.detail-04 .coupon-list ul li.coupon00.red {background-image: url("/assets/image/travelary/coverstory/coupon_red_mo.webp");background-position: left bottom;}
	.section.detail-04 .coupon-list ul li.opened {background-image: url("/assets/image/travelary/coverstory/opened_mo.webp");background-position: left bottom;background-size: 162px;}
	.section.detail-04 .coupon-list ul .coupon00.close .deadline {text-align: center}
	.section.detail-04 .coupon-list ul .coupon00.opened .soon {position:relative;padding: 19px 19px 60px 19px}
	.section.detail-04 .coupon-list ul .coupon00.opened .soon .open-txt span {margin-bottom:12px;font-size:14px;}
	.section.detail-04 .coupon-list ul .coupon00.opened .soon .open-txt strong {display:inline-block;line-height: 1.5;font-size:16px;letter-spacing: -2px;}
	.section.detail-04 .coupon-list ul .coupon00.opened .soon .open-txt strong::after {display:block}

	/* .section.detail-04 .coupon-alert .btn-round {height:60px} */
	.section.detail-04 .section-inner .flag-wrapper {left:18px}
	.section.detail-04 .detail-coupon-box {padding:0 18px}
	.section.detail-04 .detail-coupon-box .coupon-txt {text-align:left}
	.section.detail-04 .detail-coupon-box .coupon-txt br {display:none}
	.section.detail-04 .detail-coupon-box .coupon-txt .txt02 {margin-top:25px}
	.section.detail-04 .detail-coupon-box .coupon-txt + .coupon-list02{
		margin-top: 4rem;
	}

	.pagination_wrap {
		/* margin-top:6rem; */
		margin:6rem 0 7.8rem ;
	}
	.pagination_wrap .section-inner {width:100%;margin:0;padding: 0;}
	.pagination_wrap .section-inner .pagination {padding: 0 2rem;}
	.pagination_wrap .pagination .btn-prev .icon,.pagination_wrap .pagination .btn-next .icon{
		width: 3.7rem;
		height: 1.3rem;
	}

	.postbox-wrap{
		margin-bottom: 6rem;
	}
	.postbox-wrap .section-inner {width:100%;margin:0}
	.postbox-wrap .postbox-new {margin-top:9.5rem}
	.postbox-wrap .postbox-new .tab ul{
		display: flex;
		overflow-x: auto;
		justify-content:flex-start;
		flex-wrap: nowrap;
		padding: 0 1.4rem 0 2.1rem;
		gap: 1.5rem;
	}
	.postbox-wrap .postbox-new .tab ul li{
		/* margin-right:10px; */
		/* margin: 0 0.7rem; */
		width: 22rem;
		flex-shrink: 0;
		/* width: unset; */
		height: auto;
	}
	.postbox-wrap .postbox-new ul li .click-box .img-box {max-width: 22.1rem;height:22.1rem}
	.postbox-wrap .postbox-new ul li .click-box .img-box {}
	.postbox-wrap .postbox-new ul li .click-box .txt01 {font-size: 2rem;line-height: 1.5;top: 2rem;left: 2rem;}
	.postbox-wrap .postbox-new ul li .area01 .area-txt01{
		font-size: 1.8rem;
		line-height: 3rems;
	}
	.postbox-wrap .postbox-new .ico-more-03{
		width: 3.2rem;
		height: 3.2rem;
		min-width: 3.2rem;
		min-height: 3.2rem;
	}

	.reserve-btn .btn-round {min-height: 60px; min-width: 200px;}
	.reserve-btn .btn-round .text {font-size: 18px;}
	.reserve-btn .btn-round .ico-more-02{width:20px;}
	.reserve-btn .btn-round .ico-more-02, .ico-more-02:before, .ico-more-02:after, .white .ico-more-02, .white .ico-more-02:before, .white .ico-more-02:after {border-top-width: 2px;}
	.reserve-btn .btn-round .ico-more-02:before, .ico-more-02:after {width: 9px; top: -2px;}

	.travelary-newsletter .section-inner {margin:0}

	/* Template Html(768) */
	.t-html-bx {
		/* padding:45px 0; */
		margin-top: 6rem;
	}
	.t-html-bx .img-bx .img-scale {position: static;height: 100%;}
	.t-html-bx .img-bx .img-scale:hover {transform:none}

	.detail-visual-wrap .sub-visual {padding-top:72px}
	.detail-visual-wrap .sub-visual .sub-visual-tit {
		/* padding-bottom:10.3rem; */
	}
	.detail-visual-wrap .sub-visual .detail-visual-wrap .sub-visual-tit{
		margin-bottom: 5.4rem;
	}
	.detail-visual-wrap .sub-visual strong {
		font-size:1.8rem;
	}
	.detail-visual-wrap .sub-visual h1 {
		font-size: 2.4rem;
		line-height: 3.6rem;
		word-break: keep-all;
	}
	.detail-visual-wrap .sns-share-area {bottom:20px;right:18px}
	.detail-visual-wrap .sub-visual .s-img-zone {margin:0 0 0 0}
	.detail-visual-wrap .sub-visual .s-img-zone .img-area {min-height:280px}
	.detail-visual-wrap .sub-visual .s-img-zone .img-area .img-bx {left: 50%;transform: translate(-50%, -50%);top: 50%;}
	.detail-visual-wrap .sub-visual-body .v-body-txt {
		/* padding:57px 0 50px 0; */
		padding: 4rem 0 !important;
	}
	/* .detail-visual-wrap .sub-visual-body .change-color {height:87%;} */
	.detail-visual-wrap .sub-visual-body .t-html-module.txt-type01 .t-txt-info {display:block;padding:0 18px}
	/* .detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info {margin-bottom:37px} */
	.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-tit {width:100%;margin-bottom:20px}
	.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-tit span {font-size:28px}
	.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-copy strong {font-size:18px}
	.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-copy p {margin-top:16px;font-size:18px}
	.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .txt01 {margin-bottom:12px;font-size:28px}
	.detail-visual-wrap .sub-visual-body .t-html-module.full .t-txt-info .txt01 {
		font-size: 2.4rem;
		line-height: 3.6rem;
		/* margin-bottom:22px; */
	}
	.detail-visual-wrap .sub-visual-body .t-html-module .t-txt-info .sub-copy .txt03{
		font-size: 1.6rem;
		line-height: 2.4rem;
	}

	.t-video-wrap {margin:50px 18px}
	.t-html-module {
		display:block;
		/* padding:0 18px */
	}
	.t-html-bx .t-html-module + .t-html-module {margin-top:60px}
	.t-html-module.standard{
		padding: 0 1rem;
	}
	.t-html-module .t-left-area,
	.t-html-module .t-right-area {width:100%;padding:0}
	.t-html-module .t-img-info .img-bx {margin-top:40px;height:auto !important;min-height:inherit !important}
	.detail-visual-wrap .sub-visual .s-img-zone .img-area .img-bx::after,
	.t-html-module .t-img-info .img-bx::after {content: '';width:100%;height:100%;position: absolute;left:0;top:0;right:0;bottom:0;}
	.t-html-module .t-right-area .t-img-info .img-bx {margin-top:40px;}
	.t-html-module .t-img-info .img-bx img {
		position:static;
		width:100%;
		height: 100%;
		/* height:auto; */
		transform:none;
	}
	.t-html-module .t-txt-info.mt30, .t-html-module .t-txt-info.mt50{
		margin-top: 6rem !important;
	}
	.t-html-module .t-txt-info .txt01 .txt-typo {font-size:28px}
	.t-html-module .t-txt-info .txt01 {margin-bottom:21px;font-size:28px}
	.t-html-module .t-txt-info .txt02 + .txt03 {margin-top:11px}
	.t-html-module .t-txt-info .txt03 + .txt03 {margin-top:11px}
	.t-html-module .img-caption span {margin-top:10px}
	.t-html-module .img-caption span em {margin-right:9px}
	.t-html-module.reverse {display:block}
	.t-html-module.reverse .t-left-area {width:100%;padding:0}
	.t-html-module.reverse .t-right-area .t-img-info .img-bx {margin-top:40px}

	.t-html-module .t-img-info .columns-bx.three .img-bx {
		/* min-height:180px !important; */
		height: 32rem !important;
	}
	.t-html-module .t-img-info .columns-bx.three .img-bx .img-scale img {
		position: static;
		display: block;
		transform: none;
		width:100%;
	}
	.t-html-module .t-img-info .columns-bx.three .columns-col:nth-child(2n) {margin-top:20px}
	.t-html-module .t-img-info .columns-bx.three .columns-col:nth-child(3n) {margin-top:5px}

	.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col .img-bx{
		height: 44rem !important;
	}
	.t-html-module .t-img-info .columns-bx.three.new-type02 .columns-col.w565 .img-bx{
		height: 28rem !important;
	}

	.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .img-bx{
		height: 29.8rem !important;
	}
	.t-html-module .t-img-info .columns-bx.new-type05 .columns-col .col-type01 .img-bx {
		height: 20.6rem !important;
	}
	.resort-new-styles .t-html-module .t-img-info .columns-bx.new-type05.caption .columns-col .col-type01 .col-box:last-child .img-bx{
		margin-top: 0.8rem;
	}
	.t-html-module .t-img-info .columns-bx.type01.h360 .columns-col .img-bx,.t-html-module .t-img-info .columns-bx.type01 .columns-col .img-bx{
		height: 17.6rem !important;
	}

	.t-html-module.txt-both-side .t-txt-info .txt01 {width:100%}
	.t-html-module.txt-both-side .t-txt-info {display: block;}
	.t-html-module.dynamic {padding-bottom: 70px;}
	.t-html-module.dynamic .t-right-area {width:100%;display: flex;justify-content: flex-end;}
	.t-html-module.dynamic .t-right-area .t-img-info.big {width:82.6%}
	.t-html-module.dynamic .t-right-area .t-img-info.big .img-caption span {padding:0 5% 0 40%}
	.t-html-module.dynamic .t-right-area .t-img-info.small {left:0;top:inherit;bottom:-10%;width:46.02%}
	.t-html-module.dynamic .t-right-area .t-img-info.small .img-bx {margin-top:0}
	.t-html-module .t-img-info .columns-bx:not(.three) {
		/* display:block !important; */
		display: flex;
		flex-direction: column;
	}
	.t-html-module .t-img-info .columns-bx:not(.three) .columns-col {width:100% !important}

	.reserve-btn {
		margin:4rem 0 6rem 0;
	}
	.reserve-btn .btn.btn-primary.btn-xlg {
		width: auto;
	}
	.address-wrap .addr-list {
		/* padding:0 0 13px 0; */
	}
	.address-wrap .addr-list li {display: flex;}
	.address-wrap .addr-list i {margin-right:8px;vertical-align: middle;flex-shrink: 0;}
	.address-wrap .addr-list span {margin-top:-3px}
}

/* 수요쿠폰 아코디언 */
.coupon-accordion-wrap {margin-top:5px;}
.coupon-accordion-wrap .question{background: url("/assets/image/btn/btn_fold3.webp") no-repeat right center;}
.coupon-accordion-wrap .question a{display:block;padding:15px 0;}
.coupon-accordion-wrap .answer{display:none;}
.coupon-accordion-wrap.active .question{background: url("/assets/image/btn/btn_unfold3.webp") no-repeat right center;}
.coupon-accordion-wrap .agree-terms-box .inner-box{padding:10px; color:#666; line-height:21px; font-size:14px;}

/* 2022 바이라인 스타일 추가 */
.by-line{text-align:right;font-size:0;}
.by-line span{display:inline-block;font-size:16px;font-size:1.6rem;line-height:24px;line-height:2.4rem;color:#2c2c2c;}

.by-line.type1{margin-top:10px;}
.by-line.type1 span{position:relative;padding-left:20px;}
.by-line.type1 span:first-child{padding-right:20px;}
.by-line.type1 span:first-child::after{position:absolute;right:0;top:50%;margin-top:-8px;content:'';display:inline-block;width:1px;height:16px;background:#2c2c2c;}

.by-line.type2{margin-top:12px;}
.by-line.type2 span{padding:1px 20px;background:#e8e8e8;border-radius:13px;}
.by-line.type2 span:first-child{margin-right:12px;}

.by-line.type3{margin-top:25px;margin-top:2.5rem;}
.by-line.type3 span{display:block;}

/*  Activity 프로그램 영역 스타일 추가  */
.pc-show .tbl-sub-tit{margin-bottom:25px;font-family:'Noto Sans KR',sans-serif;font-size:37px;color:#111;text-align:center;}
.pc-show .tbl-data.centerTable td{text-align:center;}
.pc-show .tbl-data.centerTable th.borB,
.pc-show .tbl-data.centerTable td.borB{border-bottom:1px solid #B8B8B8!important;}
.pc-show .tableEtcList{margin:15px 0 50px;}
.pc-show .tableEtcList li{font-size:16px;line-height:1.5;}

@media (max-width: 768px){
	.program-wrap .tbl-fixed-scroll.style2{margin-bottom:20px;}
	.m-show .tableEtcList + h3{margin-top:50px;}
	.m-show .tableEtcList li{font-size:14px;line-height:1.6;}
}

/* 20220214 액티비티 영역 스와이퍼 변경 */
.activity-list-wrap{max-width:1510px;}
.activity-list-wrap .activity-tit{width:1330px;margin:0 auto;}
.activity-list-wrap .activitySweiprBox{position:relative; max-width:1510px;padding:0 90px 110px;margin:0 auto;}
.activity-list-wrap .activity-list2 .list-bx li .img img {width:100%}
.activity-list-wrap .activity-list2 .list-bx li .img {position: relative;overflow: hidden;}
.activity-list-wrap .activity-list2 .swiper-wrapper li a {position: relative;display:block}
.activity-list-wrap .activity-list2 .swiper-wrapper li a .img img {position: relative;transition: 0.4s;}
.activity-list-wrap .activity-list2 .img img {width:100%}
.activity-list-wrap .activity-list2 .tit {margin-top:20px;font-size:18px;line-height: 1.55;color:#111}
.activity-list-wrap .activity-list2 .detail {margin-top:13px;font-size:14px;color:#333333}
.activity-list-wrap .activity-list2 .detail span {vertical-align: middle;}
.activity-list-wrap .activity-list2 .detail i {display:inline-block;width: 5px;height: 5px;margin-left:4px;border-top: 1px solid #666;border-right: 1px solid #666;display: inline-block;transform: rotate(45deg);}
.activity-list-wrap .swiper-button{margin-top:-110px; position:absolute; top:50%; transition:all .3s ease-out; -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; -o-transition:all .3s ease-out; background:#fff; z-index:10; width:40px; height:40px; border:1px solid #333; border-radius:50%; text-align:center;}
.activity-list-wrap .swiper-button.pcHide{display:none;}

.activity-list-wrap .swiper-button.swiper-button-prev{left:0}
.activity-list-wrap .swiper-button.swiper-button-prev:before,
.activity-list-wrap .swiper-button.swiper-button-next:before{position:absolute; top:13px; display:inline-block;vertical-align:middle;width:11px;height:11px;content: '';border: solid #333;border-width: 0 1px 1px 0;}
.activity-list-wrap .swiper-button.swiper-button-prev:before{left:15px; transform: rotate(-225deg);-webkit-transform: rotate(-225deg);}
.activity-list-wrap .swiper-button.swiper-button-next{right:0;}
.activity-list-wrap .swiper-button.swiper-button-next:before{right:15px; transform: rotate(-45deg);-webkit-transform: rotate(-45deg);}

@media (max-width:768px){
	.activity-list-wrap{max-width:inherit;}
	.activity-list-wrap .activity-tit{width:auto;margin:0 auto;}
	.activity-list-wrap .activitySweiprBox{position:relative; max-width:inherit;padding:0;margin:0 auto;}
	.activity-list-wrap .swiper-button.pcHide{display:block;}
	.activity-list-wrap .swiper-button{margin-bottom:0;margin-top:0;top:inherit;bottom:-40px;display: inline-block;width: 22px;height: 15px;background: url('/assets/image/btn/btn_slide_arrow.webp') no-repeat;background-size: 22px 42px;text-indent: -9999px;border:none;}
	.activity-list-wrap .swiper-button.swiper-button-prev{background-position: 0 bottom;left:50%;margin-left:-40px; margin-right:20px;}
	.activity-list-wrap .swiper-button.swiper-button-prev:before,
	.activity-list-wrap .swiper-button.swiper-button-next:before{display:none;}
	.activity-list-wrap .swiper-button.swiper-button-next{background-position: 0 top;right:50%;margin-right:-40px; margin-left:20px;}
	.swiper-container.activity-list2{margin: 0 18px 68px 18px;overflow: visible;}
	.activity-list-wrap .activity-list2 li:nth-child(3n+3) {margin-left:auto !important}
	.activity-list-wrap .activity-list2 .list-bx li {width:240px}
	.activity-list-wrap .activity-list2 .list-bx li .img .flag-caption {min-width: 75px;height:32px;border-radius: 16px;font-size:18px;line-height: 1.6;}
}

/* 20220221 Template ADD */
.template-wrap .tbl-fixed-scroll .tbl-tit {display:block;margin-bottom:19px;font-size:24px;font-weight: 700;color:#111}
.template-wrap .tbl-data {width:100%;border-top:3px solid #111;}
.template-wrap .tbl-data thead th {padding:23px 30px;font-weight:700;border-left:0;font-size:20px}
.template-wrap .tbl-data tbody th {border-left:0;font-weight:700;}
.template-wrap .tbl-data th,
.template-wrap .tbl-data th,
.template-wrap .tbl-data td {padding:30px 30px;border-left:1px solid #B8B8B8;border-bottom:1px solid #B8B8B8;text-align: center;color:#111;font-size:18px;line-height: 1.55;vertical-align: middle;}
.template-wrap .tbl-data td {text-align:center}
.template-wrap .tbl-data tr td.bg {background:#F5F5F5;}
.template-wrap .tbl-data tbody td:first-child {border-left:0 ;}
.template-wrap .tbl-data tbody tr:last-child th,
.template-wrap .tbl-data tbody tr:last-child td {border-bottom:1px solid #111;}
.template-wrap .tbl-data .flag-caption {display:inline-block;font-size:14px;color:#fff;min-width: 50px;height:20px;vertical-align:2px;line-height:1.4;text-align:center;background: rgba(255, 82, 69, 0.9);border-radius: 10px;}
.template-wrap .tbl-data .btn-shortcuts {position:relative;border: 1px solid #E5E5E5;font-size:16px;font-weight: 400;border-radius: 30px;min-width: 120px;height: 40px;display: inline-block;text-align: center;line-height: 38px;}
.template-wrap .tbl-data .btn-shortcuts::after {content:'';display:inline-block;width:6px;height:6px;margin-left:6px;border:2px solid #111;border-width:1px 1px 0 0;vertical-align:2px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}

.t-html-module .t-txt-info .txt01 .txt-typo-sm.orange {color:#FF5245}
.t-html-module.standard {position: relative;overflow: visible;}

.detail-visual-wrap.type02 .sub-visual h1 {
	min-height:auto;
	margin:21px 0 0 0;
	/* font-size:42px; */
	font-size: 5.2rem;
	line-height: 6.8rem;
}
.detail-visual-wrap.type02 .sub-visual .s-copy {margin: 28px auto 34px;font-size:18px;font-weight:300}
.detail-visual-wrap.type02 .sub-visual .s-img-zone {
	margin:0 auto;
	/* max-width: 1280px; */
	max-width: 128rem;
}
.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area {
	/* min-height:580px */
	height: 70rem;
	min-height: 70rem;
}
.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area .img-bx img {vertical-align: top;}
.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area + p {margin:41px 0 69px;font-size:20px;font-weight:700;color:#111;line-height: 32px;}
.event-infomation-activity .t-section01{
	margin-top: 0;
}
.t-html-module.dynamic02 {display:block;position:relative;max-width: 1160px;margin: 0 auto;padding-bottom:55px}
.t-html-module.dynamic02 .t-txt-info {
	margin:0;
	width:100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	/* padding-top:18.194vw; */
	padding-top:34.4rem;
}
.t-html-module.dynamic02 .t-txt-info .txt01 {margin:0;letter-spacing: -1.5px;}
.t-html-module.dynamic02 .t-img-info .sidebx {display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
.t-html-module.dynamic02 .t-img-info .sidebx .side-inner {position:relative;}
.t-html-module.dynamic02 .t-img-info .sidebx .img-bx {margin:0}
.t-html-module.dynamic02 .t-img-info .side01 {
	/* margin-bottom:144px; */
	margin-bottom:12rem;
	justify-content: flex-end;
}
.t-html-module.dynamic02 .t-img-info .side01 .img-bx {
	/* width:780px;
	height:700px; */
	width:78.1rem;
	height:70.2rem;
	margin:0}
.t-html-module.dynamic02 .t-img-info .side01 .img-caption {padding-top:30px}
.t-html-module.dynamic02 .t-img-info .side01 .img-caption span {margin-top:13px;padding:0 0 0 0;font-size:16px;}
.t-html-module.dynamic02 .t-img-info .side01 .img-caption {font-size:18px;color:#111;line-height: 32px;}
.t-html-module.dynamic02 .t-img-info .side02 {position: relative;z-index: 5;}
.t-html-module.dynamic02 .t-img-info .side02 .side-inner {width:38.96%}
.t-html-module.dynamic02 .t-img-info .side02 .img-bx {
	overflow:visible;
	/*width:452px;height:530px;*/
	width: 46.1rem;
	height: 54.3rem;
}
.t-html-module.dynamic02 .t-img-info .side02 .img-bx .hash-tag {
	position:absolute;
	/* right:-355px; */
	/* top:50%; */
	/* right: auto; */
	left: 44rem;
	top: 21rem;
	/* margin-top:-90px; */
	/* font-weight:700; */
	font-weight: 600;
	width:372px;
	/* font-size:42px;
	line-height: 60px; */
	font-size: 4rem;
	line-height: 5.6rem;
	color:#111;
	z-index: 5;
	font-family: 'Pretendard Variable';
}
.t-html-module.dynamic02 .t-img-info .side02 .img-caption p {
	/* margin-top:15px;
	font-size:18px;
	line-height:32px; */
	/* color:#111; */
	/* min-height:96px; */
	font-size: 1.6rem;
	line-height: 2.8rem;
	color: #666666;
	margin-top: 2.6rem;
}
.t-html-module.dynamic02 .t-img-info .side03 {
	/* margin-top:-200px; */
	margin-top:-23rem;
	justify-content: flex-end;
}
.t-html-module.dynamic02 .t-img-info .side03 .side-inner {
	/* width:50.86% */
}
.t-html-module.dynamic02 .t-img-info .side03 .img-bx {
	/*width:590px;height:540px;*/
	width: 59.5rem;
	height: 54.3rem;
}

.t-html-module .program-info {
	position: absolute;
	/* right:60px;
	bottom:-30px; */
	right:6rem;
	bottom:-1rem;
	width:auto;
	/* background: #333333; */
	background: rgba(0,0,0,0.8);
	/* width:420px;
	min-height:240px; */
	/* padding:47px 50px; */
	padding: 4.4rem 3.2rem;
	/* box-shadow: 20px 20px 50px rgba(6, 6, 6, 0.15); */
}
.t-html-module .program-info .addr-list {margin:0 0 0 0}
.t-html-module .program-info .addr-list li {
	position: relative;
	display: flex;
	justify-content: space-between;
	/* padding-left:26px; */
}
.t-html-module .program-info .addr-list li + li{
	margin-top: 2rem;
}
.t-html-module .program-info .addr-list li .addr-list-tit{
	font-size: 1.6rem;
	line-height: 2.8rem;
	color: #ffffff;
	margin-right: 3.2rem;
}
.t-html-module .program-info .addr-list li i {position: absolute;left:0;top:5px}
.t-html-module .program-info .addr-list .addr01 {width:13px;height:13px;background-image: url('../../assets/image/travelary/contents/ico_addr01_w.webp');}
.t-html-module .program-info .addr-list .addr02 {width:14px;height:17px;background-image: url('../../assets/image/travelary/contents/ico_addr02_w.webp');}
.t-html-module .program-info .addr-list .addr03 {width:15px;height:16px;background-image: url('../../assets/image/travelary/contents/ico_addr03_w.webp');}
.t-html-module .program-info .addr-list .addr05 {width:13px;height:14px;background-image: url('../../assets/image/travelary/contents/ico_addr05_w.webp');}
.t-html-module .program-info .addr-list .txt {
	/* font-weight:400;
	font-size:16px;
	color:#fff;
	line-height:1.4; */
	font-weight:600;
	font-size:1.6rem;
	color:#ffffff;
	line-height:2.8rem;
	text-align: end;
	width: 32rem;
}

.program-configuration{
	margin-top: 6rem;
}
.program-configuration .section-inner{
	padding: 0 8rem;
}
.program-configuration dl {display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;color:#111;}
.program-configuration dl:first-child dt{
	border-top: 2px solid #111111;
}
.program-configuration dt {
	/* padding-top:20px; */
	padding-top: 4rem;
	flex-shrink: 0;
	/* width:15.62%; */
	width: 24rem;
	/* margin-right:3%; */
	margin-right: 4rem;
	/* border-top:2px solid #000; */
	border-top: 1px solid #dddddd;
	/* font-size:24px;
	font-weight:700;
	line-height:32px; */
	font-size:2.4rem;
	font-weight:600;
	line-height:4rem;
}
.program-configuration dd {
	/* width:81.18%;
	min-height:253px;
	padding:24px 0 5px; */
	flex: 1 0 auto;
	padding:4rem 0;
	border-top:2px solid #EBEBEB;
}
/* 20220614 수정 */
.program-configuration dd .program-list {display:flex;flex-direction:column;margin-bottom:13px;}
/* // 20220614 수정 */
.program-configuration dd .program-list {display:flex;margin-bottom:13px}
.program-configuration dd .program-list li::before {content: '';position:absolute;left:0;top:50%;transform: translateY(-50%); width:4px;height:4px;background:#FF5245}
.program-configuration dd .program-list li {
	position:relative;
	padding-left:10px;
	margin-right:62px;
	/* font-size:18px;
	line-height:32px; */
	font-size:1.8rem;
	line-height:3rem;
}
.program-configuration dd p {
	font-size: 1.6rem;
	line-height: 2.8rem;
	/* font-size:16px; */
	font-weight:400;
	/* line-height:30px; */
	color:#666;
}
.program-configuration dd p + p{
	margin-top: 0.4rem;
}
.program-configuration dd .order-list {}
.program-configuration dd .order-list .item {
	position:relative;
	overflow:hidden;
	/* padding:0 0 33px 29px; */
	padding:0 0 2.4rem 2.4rem;
}
.program-configuration dd .order-list .item em {
	/* content: ''; */
	position:absolute;
	left:0;
	top:0;
	/* width:19px;
	height:19px; */
	text-align:center;
	/* color:#fff; */
	/* line-height:18px; */
	/* font-size:12px; */
	/* font-weight:500; */
	color: #111111;
	line-height: 3rem;
	font-size: 1.8rem;
	font-weight: 600;
	border-radius:100%;
	/* background: #FF5245; */
}
.program-configuration dd .order-list .item em::after{
	content: "";
	display: block;
	position: absolute;
	right: -0.8rem;
	bottom: 0.9rem;
	width: 0.4rem;
	height: 0.4rem;
	background-color: #111111;
	border-radius: 50%;
}
/* .program-configuration dd .order-list .item::after {content: '';position:absolute;top:25px;left:9px;width:1px;height: calc(100% - 34px);background-color: #ddd;} */
.program-configuration dd .order-list .item:last-child {padding-bottom:0}
.program-configuration dd .order-list .item:last-child::after {display:none}
.program-configuration dd .order-list .item strong {
	display:block;
	/* margin-bottom:9px;
	font-size:18px; */
	color:#111;
	/* font-weight:400; */
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 3rem;
	}
.program-configuration dd .order-list .item li {
	/* margin-top:10px;
	font-size:16px;
	color:#666; */
	margin-top: 1.2rem;
	font-size: 1.6rem;
	line-height: 2.8rem;
	color: #444444;
}
.program-configuration dd .order-list .item li + li{
	margin-top: 0.4rem;
}

.t-notice-list {margin-top:140px}
.t-notice-list dl {display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;color:#111;}
.t-notice-list dt {
	display: flex;
	align-items: center;
	/* flex-shrink: 0;
	width:15.62%;
	margin-right:3%;
	font-size:24px;
	font-weight:700;
	line-height:32px; */
	font-size: 1.8rem;
	line-height: 3rem;
	font-weight: 600;
}
.t-notice-list dt::before {
	content: '';
	display:inline-block;
	/* width:22px;
	height:22px;
	margin-right:10px; */
	width:2.4rem;
	height:2.4rem;
	margin-right:0.8rem;
	vertical-align:-2px;
	background: url('../../assets/image/travelary/contents/ico_notice.webp') no-repeat left top;
}
.t-notice-list dd {
	/* width:81.18%;
	min-height:253px;
	padding:0 0 5px;
	font-size:16px;
	color:#666; */
	font-size: 1.6rem;
	line-height: 2.8rem;
	color: #444444;
	margin-top: 1.6rem;
}
.t-notice-list dd li::before {
	content: '-';
	display: inline-block;
	margin-right: 0.4rem;
	/* width: 4px;
	height: 4px;
	margin-right:6px;
	border-radius:2px;
	vertical-align:4px;
	background-color: #666666; */
}
/* .t-notice-list dd li + li {margin-top:12px} */

@media (max-width:1024px) {
	.program-configuration dd .program-list {display:block;margin-bottom:20px}
}


@media (max-width:768px){
	.template-wrap .tbl-fixed-scroll {margin-bottom:67px;margin:136px 0 0;border-bottom:0}
	.template-wrap .tbl-tit {margin-bottom:48px}
	.template-wrap .tbl-data {table-layout: fixed;}
	.template-wrap .tbl-data tbody td:first-child {border-left:0}
	.template-wrap .tbl-data thead th {padding:0;height:60px;font-size:16px}
	.template-wrap .tbl-data th,
	.template-wrap .tbl-data th,
	.template-wrap .tbl-data td {padding:10px 5px;height:112px;font-size:18px;line-height: 1.625;vertical-align: middle;}
	.template-wrap .tbl-data td {text-align:center}

	.detail-visual-wrap.type02 .sub-visual h1 {
		/* font-size:30px; */
		font-size:2.4rem;
		line-height: 3.6rem;
		font-weight: 600;
	}
	.detail-visual-wrap.type02 .sub-visual h1 br {display:none}
	.detail-visual-wrap.type02 .sub-visual .s-copy {
		/* font-size:20px; */
		font-size:1.4rem;
		line-height: 2.2rem;
		color: #666;
	}
	.detail-visual-wrap.type02 .sub-visual .sub-visual-tit {padding-bottom:50px}
	.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area {min-height: 300px;}
	.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area + p {margin-bottom:20px;padding:0 28px}
	.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area + p br {display:none}

	.t-html-module .t-txt-info .txt01 .txt-typo-sm.orange {color:#da291c}
	.t-html-module.dynamic02 {
		/* padding-bottom: 75px; */
		padding: 6rem 1rem 0;
	}
	.t-html-module.dynamic02 .t-txt-info {
		position: relative;
		padding-top: 0;
		margin-top: -6rem;
	}
	.t-html-module.dynamic02 .t-txt-info .txt01 {font-size:30px}
	.t-html-module.dynamic02 .t-txt-info .txt01 .txt-typo-sm {margin-bottom:15px}

	/* .t-html-module.dynamic02 .t-img-info .side01 {margin-bottom:139px} */
	.t-html-module.dynamic02 .t-img-info .side01 .img-bx {width:100%;}
	.t-html-module.dynamic02 .t-img-info .side01 {
		/* margin-top:-17px;
		padding-left:39px; */
		margin:-1.8rem 0 6rem;
		padding-left:3.6rem;
	}
	.t-html-module.dynamic02 .t-img-info .side01 .img-caption {padding-top:6px}
	.t-html-module.dynamic02 .t-img-info .side01 .img-caption span {margin-top:8px;line-height: 30px;}

	.t-html-module.dynamic02 .t-img-info .side02 .img-bx{
		width: 100%;
	}
	.t-html-module.dynamic02 .t-img-info .side02 .img-caption p {
		min-height: auto;
		margin-top: 1.2rem;
		font-size: 1.4rem;
		line-height: 2.2rem;
	}
	.t-html-module.dynamic02 .t-img-info .side02 .img-bx .hash-tag {
		margin:0;
		/* font-size:30px; */
		/* width:auto; */
		/* line-height: 44px; */
		/* top:72px; */
		/* right:-87px; */
		width: max-content;
		font-size: 2.4rem;
		line-height: 3.6rem;
		top: 9.5rem;
		left: 14.4rem;
	}
	.t-html-module.dynamic02 .t-img-info .side02 .side-inner {
		width:100%;
		/* padding-right:90px; */
		padding-right:9rem;
	}
	.t-html-module.dynamic02 .t-img-info .side03 {
		/* margin:40px 0 0 0; */
		margin:4rem 0 0 0;
	}
	.t-html-module.dynamic02 .t-img-info .side03 .side-inner {width:100%}
	.t-html-module.dynamic02 .t-img-info .side03 .img-bx{
		width: 100%;
	}

	.t-html-module .program-info {
		position: static;
		width:100%;
		min-height:auto;
		/* padding:36px 29px 32px 29px; */
		padding:2rem;
		height: auto;
	}
	.t-html-module .program-info .addr-list {padding:0}
	.t-html-module .program-info .addr-list li i {top:2px}
	.t-html-module .program-info .addr-list li{
		flex-direction: column;
	}
	.t-html-module .program-info .addr-list li + li{
		margin-top: 1.2rem;
	}
	.t-html-module .program-info .addr-list li .addr-list-tit{
		font-size: 1.4rem;
		line-height: 2.2rem;
	}
	.t-html-module .program-info .addr-list .txt{
		font-size: 1.4rem;
		line-height: 2.2rem;
		width: 100%;
		text-align: start;
	}
	.t-html-module.standard .t-img-info .img-bx {
		/* margin-top:32px; */
		margin-top:-3.2rem;
	}
	.t-html-module.standard .t-img-info .img-bx img {vertical-align: top;}

	.program-configuration {
		/* padding:60px 0 0 0; */
		margin-top: 4rem;
	}
	.program-configuration .section-inner{
		padding: 0;
	}
	.program-configuration dl {display:block;}
	.program-configuration dl + dl {
		/* margin-top:73px */
		margin-top:4rem;
	}
	.program-configuration dt {
		width:100%;
		/* padding:0 0 25px;
		border-top:0;
		border-bottom:2px solid #333333; */
		padding:0 0 1.6rem;
		border-top:0;
		border-bottom:2px solid #111111;
		font-size: 1.8rem;
		line-height: 2.6rem;
	}
	.program-configuration dl:first-child dt{
		border-top: none !important;
	}
	.resort-new-styles .program-configuration dl:not(:first-child) dt{
		border-top: none;
	}
	.program-configuration dd {
		width:100%;
		border:none !important;
		/* padding: 40px 0 5px; */
		padding: 2.4rem 0 0;
	}
	.program-configuration dd .program-list {display:block;margin-bottom:20px}
	.program-configuration dd .order-list .item{
		padding: 0 0 2rem 2rem;
	}
	.program-configuration dd .order-list .item em{
		font-size: 1.6rem;
		line-height: 2.4rem;
		font-weight: 500;
	}
	.program-configuration dd .order-list .item em::after{
		right: -0.5rem;
		bottom: 0.7rem;
		width: 0.3rem;
		height: 0.3rem;
	}
	.program-configuration dd .order-list .item strong{
		font-size: 1.6rem;
		line-height: 2.4rem;
		font-weight: 500;
	}
	.program-configuration dd .program-list li {
		margin-right:0;
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	/* .program-configuration dd .program-list li + li {margin-top:10px} */
	.program-configuration dd p{
		line-height: 2.4rem;
	}

	.t-notice-list {
		margin-top: 4rem;
		/* margin-top:120px; */
		/* padding:0 0 100px 0; */
	}
	.t-notice-list dl {display:block}
	.t-notice-list dt {
		width:100%;
		/* margin-bottom:20px; */
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	.t-notice-list dd {
		width:100%;
		min-height: auto;
		margin-top: 1.2rem;
		font-size: 1.4rem;
		line-height: 2.2rem;
	}
	/* .t-notice-list dd li {position:relative;padding-left:9px;line-height:30px}
	.t-notice-list dd li::before {position: absolute;left:0;top:13px;margin:0} */
	.t-notice-list dd li + li {margin:0}
}

/* 20220615 추가 */
.detail-img-wrap.dining.imgWrap + .content{margin-top:12rem;}
/* // 20220615 추가 */

/* 20220614 추가 */
.program-wrap .tbl-data .btn_reservation{padding:0 25px;display:inline-block;border:1px solid #e6e6e6;border-radius:20px;}
.program-wrap .tbl-data .btn_reservation span{display:inline-block;font-size:16px;line-height:38px;color:#000;}
.program-wrap .tbl-data .btn_reservation i{display: inline-block;width:7px;height:7px;margin-left:10px;line-height:38px;vertical-align:middle;border-top: 1px solid #000;border-right: 1px solid #000;transform: rotate(45deg);}
@media (max-width: 768px){
	.program-wrap .tbl-data td.reservationTd{height:30px;border-left:1px solid #B8B8B8!important;}
	.program-wrap .tbl-data .btn_reservation i{margin-left:5px;vertical-align:3px;}
}
.program-configuration dl.join dd{min-height:430px;}
.program-configuration.participate{
	/* margin-top:30px; */
	margin-top: 0;
}
.program-configuration.participate dt, .program-configuration.participate dd{
	border-top: 1px solid #dddddd !important;
	border-bottom: 1px solid #dddddd;
}
.program-configuration.participate dd{
	/* min-height:150px;
	font-size:16px;
	line-height:27px;
	color:#666; */
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 3rem;
	color: #111111;
	word-wrap:break-word;
	word-break:keep-all;
}
.program-configuration.participate + .t-notice-list{
	/* margin-top:105px; */
	margin-top:6rem;
}
.program-configuration.participate dd .btn{
	/* margin-top:20px;
	padding: 0 70px;
	font-size:16px;
	line-height:48px; */
	margin-top:1.2rem;
	/* padding: 0 70px; */
	height: 4.8rem;
	font-size:1.4rem;
	line-height:2.6rem;
	font-weight: 500;
}
.program-configuration.participate dd .btn i{
	display: none;
	/* display: inline-block; */
	width:7px;height:7px;margin-left:10px;line-height:48px;vertical-align:middle;border-top: 1px solid #fff;border-right: 1px solid #fff;transform: rotate(45deg);
}
.program-configuration.participate dd a{
	display: block;
	background-color: #111111;
	padding: 1.1rem 4rem;
	border-radius: 0.4rem;
	min-width: 16rem;
	width: fit-content;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2.6rem;
	color: #ffffff;
	margin-top: 1.2rem;
}
.event-infomation-activity .t-notice-list dl{
	flex-direction: column;
}


@media (max-width: 768px){
	.program-configuration dl.join dd{min-height:150px;}
	.program-configuration.participate dd .btn{
		/* margin-top:20px;
		width:100%;
		font-size:16px;
		line-height:48px;
		height:5rem; */
		margin-top:1.2rem;
		width:100%;
		font-size:1.4rem;
		line-height:2.2rem;
		height:4.8rem;
	}
	.program-configuration.participate dd a{
		padding: 1.3rem 4rem;
		width: 100%;
		line-height: 2.2rem;
		text-align: center;
	}
	.program-configuration.participate + .t-notice-list{
		/* margin-top:50px; */
		margin-top:4rem;
	}
	.program-configuration.participate dd .btn i{line-height:48px;}
	.program-configuration.participate dt{
		padding-top: 4rem;
		border-bottom: 2px solid #111111 !important;
	}
	.program-configuration.participate dd{
		font-size: 1.6rem;
		line-height: 2.4rem;
		font-weight: 600;
	}
}

/* 20220706 트래브러리 액티비티 모바일 이미지 수정 */
@media (max-width: 768px){
	.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area{
		/* min-height:auto; */
		min-height: auto;
		height: auto;
		aspect-ratio: 320/145;
		width: 100%;
	}
	.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area .img-bx{position:relative;transform:inherit;top:inherit;left:inherit;}
	/* 20220712 수정 */
	.detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area .img-bx img{max-width:100%;transform:scale(1);}

	/* 20220711 커버스토리 */
	.detail-visual-wrap .sub-visual .img-area .img-bx img{transform:scale(0.5);}

	/*액티비티 상세*/
	.event-infomation-activity .t-section01{
		padding: 0;
	}
	.resort-new-styles .event-infomation-activity .template-extension-wrap .flag-extension-wrapper .flag-wrapper{
		top: 18.2rem;
		left: 0.8rem;
	}
	.resort-new-styles .detail-visual-wrap.type02 .sub-visual .s-img-zone .img-area+p{
		margin: 3.2rem 0 6rem;
		font-size: 1.8rem;
		line-height: 2.6rem;
	}
	.t-html-module.full .t-txt-info .txt01{
		font-size: 2.4rem;
		line-height: 3.6rem;
	}
	.t-html-module.full .t-txt-info .typo01{
		font-size: 2rem;
		line-height: 3.6rem;
		margin-bottom: 0.8rem;
	}
}



/* 신규 트레브러리 */
br.mo {
	display: none;
}
.template-wrap.newSt .detail-visual-wrap .sub-visual-body .change-color {
	height: 52%;
}
.template-wrap.newSt .detail-visual-wrap .sub-visual-body .v-body-txt {
	padding-top: 77px;
}
.template-wrap.newSt .t-html-module .t-txt-info {
	margin-bottom: -100px;
}
.template-wrap.newSt .t-html-module .t-txt-info .txt01 .txt-typo {
	margin-top: 0;
	display: block;
	font-size: 18px;
	letter-spacing: 0;
	color: #fff;
}
.template-wrap.newSt .t-html-module .t-txt-info .sub-copy .txt03.editor {
	font-size: 14px;
	font-style: italic;
}
.template-wrap.newSt .t-html-module .t-txt-info .sub-copy .txt03 {
	letter-spacing: 0;
	line-height: 1.6;
}
.template-wrap.newSt .info-txt-wrap {
	margin-top: 55px;
}
.template-wrap.newSt .info-txt-wrap .txt-bx:first-child {
	margin-top: 0;
}
.template-wrap.newSt .info-txt-wrap .txt-bx {
	margin-top: 55px;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .tit {
	font-size: 42px;
	font-weight: 700;
	color: #000;
	word-break: keep-all;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .sub-tit {
	font-size: 30px;
	font-weight: 700;
	color: #000;
	word-break: keep-all;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .txt {
	margin-top: 25px;
	display: inline-block;
	font-size: 18px;
	color: #000;
	word-break: keep-all;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .link-wrap {
	margin-top: 30px;
	display: flex;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .link-wrap .anchor-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 25px;
	border: 1px solid #111;
	border-radius: 30px;
	min-width: 125px;
	height: 60px;
	padding: 0 20px;
	cursor: pointer;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .link-wrap .anchor-btn span {
	font-size: 18px;
	color: #111;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .link-wrap .anchor-btn .ico-more-02 {
	transform: rotate(90deg);
}
.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap {
	margin-top: 20px;
	display: flex;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap .hashtag {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 25px;
	border: 1px solid #f6f6f6;
	border-radius: 30px;
	background: #f6f6f6;
	min-width: 170px;
	height: 60px;
	padding: 0 20px;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap .hashtag em {
	font-size: 18px;
	color: #111;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap .coupon {
	margin-left: 140px;
	min-width: 240px;
	background: #111;
	justify-content: space-evenly;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap .coupon .flag-icon.ico-coupon {
	display: block;
	width: 26px;
	height: 23px;
	background: url('/assets/image/travelary/ico_coupon.webp') center no-repeat;
	background-size: contain;
}
.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap .coupon span {
	font-size: 18px;
	color: #fff;
}
.template-wrap.newSt .t-html-module .t-txt-info .txt-typo {
	display: inline-block;
	font-family: 'Bodoni Moda';
	font-size: 18px;
	color: #fa5858;
}
.template-wrap.newSt .t-html-module .t-txt-info .tit {
	margin: 25px 0 20px;
	font-size: 42px;
	font-weight: 700;
	word-break: keep-all;
}
.template-wrap.newSt .t-html-module .t-txt-info .txt {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
}
.template-wrap.newSt .place-wrap .columns-bx {
	margin-top: 150px;
}
.template-wrap.newSt .place-wrap .columns-bx.full .columns-col .img-bx {
	height: auto;
}
.template-wrap.newSt .place-wrap .t-img-info + .t-img-info .columns-bx {
	margin-top: 0;
}
.template-wrap.newSt .place-wrap .columns-bx.three .img-bx {
	margin-top: 0;
}
.template-wrap.newSt .place-wrap > .columns-bx + .columns-bx {
	margin-top: 150px;
}
.template-wrap.newSt .place-wrap .columns-bx.type02 .columns-col {
	width: 57.5%;
}
.template-wrap.newSt .place-wrap .columns-bx.type02 .columns-col+.columns-col {
	width: 36%;
}
.template-wrap.newSt .place-wrap .columns-bx.type04 .columns-col {
	width: 36%;
}
.template-wrap.newSt .place-wrap .columns-bx.type04 .columns-col+.columns-col {
	width: 57.5%;
}
.template-wrap.newSt .place-wrap .columns-bx.type04 .columns-col .img-bx {
	height: 590px;
	margin-top: 0;
}
.template-wrap.newSt .place-wrap .columns-bx.type02 .columns-col .img-bx {
	height: 590px;
	margin-top: 0;
}
.template-wrap.newSt .place-wrap .columns-bx .txt-bx .tit {
	margin-bottom: 20px;
	font-size: 42px;
	font-weight: 700;
	color: #111;
}
.template-wrap.newSt .place-wrap .columns-bx .txt-bx .text {
	font-size: 18px;
	color: #111;
	word-break: keep-all;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
}
.template-wrap.newSt .place-wrap .columns-bx .address-wrap .addr-list {
	margin-top: 40px;
}
.photo-book-wrap {
	padding: 150px 50px;
}
.photo-book-wrap .t-html-module.dynamic {
	padding-bottom: 195px;
}
.photo-book-wrap .t-html-module.dynamic .t-txt-info .txt01 {
	margin-bottom: 15px;
	font-size: 42px;
	color: #fff;
	font-weight: bold;
}
.photo-book-wrap .t-html-module.dynamic .t-txt-info .txt-typo {
	font-family: 'Bodoni Moda';
	font-size: 42px;
	color: #fff;
	opacity: 0.3;
}
.photo-book-wrap .t-html-module.dynamic .t-txt-info .sub-copy {
	margin-top: 55px;
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	line-height: 1.6;
}
.photo-book-wrap .t-html-module.dynamic .t-left-area {
	width: 42%;
	padding-right: 0;
}
.photo-book-wrap .t-html-module.dynamic .t-right-area {
	width: 46%;
}
.photo-book-wrap .link-wrap .tit {
	margin-bottom: 35px;
	font-size: 42px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
.photo-book-wrap .link-wrap .link-bx {
	text-align: center;
}
.photo-book-wrap .link-wrap .link-bx .btn-round {
	margin: 0 12.5px;
	min-width: 135px;
	color: #fff;
	font-size: 18px;
	border-color: #fff;
}
.photo-book-wrap .link-wrap .link-bx .btn-round .ico-more-02 {
	border-color: #fff;
}
.photo-book-wrap .link-wrap .link-bx .btn-round .ico-more-02::after {
	border-color: #fff;
}
.photo-book-wrap .link-wrap .link-bx .btn-round .ico-more-02::before {
	border-color: #fff;
}
.template-wrap.newSt .photo-book-wrap .t-left-area .t-txt-info {
	margin-bottom: 0;
}
/* 모바일 */
@media(max-width:768px) {
	/* css 수정 */
	.detail-visual-wrap .sub-visual .s-img-zone .img-area {
		/* min-height: 279px; */
		min-height: 28.8rem;
		height: 28.8rem;
	}
	br.mo {
		display: block;
	}
	.template-wrap.newSt .detail-visual-wrap .sub-visual .s-copy {
		margin: 10px 0 20px;
	}
	.template-wrap.newSt .detail-visual-wrap .sub-visual-body .v-body-txt {
		padding-top: 57px;
	}
	.template-wrap.newSt .detail-visual-wrap .sub-visual-body .change-color {
		height: 48%
	}
	.template-wrap.newSt .info-txt-wrap {
		margin-top: 34px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .tit {
		font-size: 28px;
		line-height: 38px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .sub-tit {
		font-size: 26px;
		line-height: 36px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .txt {
		margin-top: 20px;
		font-size: 18px;
		line-height: 28px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx {
		margin-top: 30px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .link-wrap {
		margin-top: 24px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .link-wrap .anchor-btn {
		margin-right: 10px;
		min-width: 106px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap {
		flex-direction: column;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap .hashtag {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.template-wrap.newSt .info-txt-wrap .txt-bx .hashtag-Wrap .coupon {
		margin-left: 0;
		margin-top: 30px;
		height: 60px;
	}
	.template-wrap.newSt .t-html-module .t-txt-info {
		margin-bottom: -70px;
	}
	.template-wrap.newSt .t-html-module .t-txt-info .tit {
		margin: 10px 0 25px;
		font-size: 28px;
		line-height: 38px;
	}
	.template-wrap.newSt .t-html-module .t-txt-info .txt {
		line-height: 28px;
		word-break: keep-all;
	}
	.template-wrap.newSt .place-wrap .columns-bx {
		margin-top: 95px;
	}
	.template-wrap.newSt .place-wrap .columns-bx .txt-bx .tit {
		font-size: 28px;
		line-height: 38px;
		word-break: keep-all;
	}
	.template-wrap.newSt .place-wrap .columns-bx .txt-bx .text {
		line-height: 28px;
		word-break: keep-all;
	}
	.template-wrap.newSt .t-html-module .t-img-info .columns-bx.type02,
	.template-wrap.newSt .t-html-module .t-img-info .columns-bx.type04 {
		display: flex !important;
		flex-direction: column;
	}
	.template-wrap.newSt .t-html-module .t-img-info .columns-bx.type02 {
		flex-direction: column-reverse;
	}
	.template-wrap.newSt .place-wrap .columns-bx .address-wrap .addr-list {
		margin-top: 30px;
		padding-bottom: 35px;
	}
	.photo-book-wrap {
		margin: 0 18px;
		padding: 40px 20px 100px;
	}
	.photo-book-wrap .t-html-module.dynamic {
		padding: 0;
		overflow: inherit;
	}
	.photo-book-wrap .t-html-module.dynamic .t-txt-info .txt01 {
		margin-bottom: 5px;
		font-size: 28px;
	}
	.photo-book-wrap .t-html-module.dynamic .t-txt-info .txt-typo {
		font-size: 28px;
	}
	.photo-book-wrap .t-html-module.dynamic .t-txt-info .sub-copy {
		margin-top: 45px;
	}
	.photo-book-wrap .t-html-module.dynamic .t-right-area .t-img-info.big .img-bx {
		margin-top: 30px;
	}
	.photo-book-wrap .t-html-module.dynamic .t-right-area .t-img-info.small {
		bottom: -16%
	}
	.photo-book-wrap .t-html-module.dynamic .t-left-area {
		width: 100%;
		padding-right: 0;
	}
	.photo-book-wrap .t-html-module.dynamic .t-right-area {
		width: 100%;
	}
	.photo-book-wrap .link-wrap {
		padding-top: 110px;
	}
	.photo-book-wrap .link-wrap .tit {
		margin-bottom: 35px;
		font-size: 28px;
		font-weight: bold;
		color: #fff;
		text-align: center;
	}
	.photo-book-wrap .link-wrap .link-bx {
		display: flex;
		justify-content: space-between;
	}
	.photo-book-wrap .link-wrap .link-bx .btn-round {
		margin: 0;
		min-width: 93px;
		height: 60px;
	}
	.template-wrap.newSt .ico-more-02::before,
	.template-wrap.newSt .ico-more-02::after {
		width: 9px;
		top: -2px;
	}
	.template-wrap.newSt .photo-book-wrap .t-left-area .t-txt-info {
		margin-bottom: 0;
	}
}


/* 20230801 트래브러리 부여 수정 */
@media (min-width: 769px) {
	.address-wrap .addr-list .new-ico {
		display: flex;
	}
	.address-wrap .addr-list .new-ico i {
		margin-top: 2px;
	}
}

/* 20240705 트래브러리 액티비티 개선 */
.badge-orange {background-color: #E7B32D;}
.program-wrap .list-box {padding: 0 1%;}
.program-wrap ul.ui-tab {width: 100%; padding: 0;}
.program-wrap .list-box .tab-menu ul > li a > span {height: auto;}
.tab-content .travel-content {position: relative;}
.activity-area {
	position: relative;
	display: flex;
	width: 100%;
	box-sizing:border-box;
	flex-wrap: wrap;
	gap: 3.2rem 2.8rem;
}
.activity-area .activity-box {
	flex: 1 0 calc(100% / 3 - 5.6rem / 3);
	max-width: calc(100%/3 - 1.86rem);

}
.activity-area  + .activity-area {position: relative; margin-top: 5px;}
.activity-area .activity-box .colum-content {position: relative; display: flex; flex-direction: column; height: 100%;  }
.activity-area .activity-box .colum-content .img {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
	/* padding-bottom: 67%; */
	padding-bottom: 55%;
}
.activity-area .activity-box .colum-content .img img {    display: block;    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%; object-fit: cover;}
.activity-area .activity-box .colum-content .badge + .txt-area {
	margin-top: 1.6rem;
}
.activity-area .activity-box .colum-content .txt-area {padding: 2.4rem 0 1.6rem 0 ;}
.activity-area .activity-box .colum-content .txt-area .tit { display: -webkit-box;       word-wrap: break-word;    overflow: hidden;    -webkit-line-clamp: 1; -webkit-box-orient: vertical;}
.activity-area .activity-box .colum-content .txt-area .txt{ display: -webkit-box;       word-wrap: break-word;    overflow: hidden;    -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.activity-area .activity-box .colum-content .txt-area .tit {  font-size: 2.2rem;   color: #333;    font-weight: 700;  }
.activity-area .activity-box .colum-content .txt-area .txt {min-height: 4.2rem; margin-top: 10px;   font-size: 1.4rem;  line-height: 1.5;  color: #666; }
.activity-area .activity-box .colum-content .info-area div{ font-size: 1.4rem;    color: #666;  line-height: 1.5;   display: -webkit-box;		word-wrap: break-word;		overflow: hidden;		-webkit-line-clamp: 1;		-webkit-box-orient: vertical;}
.activity-area .activity-box .colum-content .info-area .info-box {display: flex; justify-content: space-between; align-items: flex-end; color: #333;    padding-bottom: 16px;		}
.activity-area .activity-box .colum-content .info-area .info-box:first-child{	border-bottom: 1px solid #DDDDDD; }
.activity-area .activity-box .colum-content .info-area .info-box .price-info {display: flex;			align-items: flex-end;}
.activity-area .activity-box .colum-content .info-area .info-box .price-info .price {font-size: 2.2rem; color: #333333;}
.activity-area .activity-box .colum-content .info-area .info-time {margin: 1.6rem 0 0.8rem; min-height: 4.8rem; width: 100%;}
.activity-area .activity-box .colum-content .info-area .info-time [class^="time-"] span{ color: #333333; margin-right: 0.6rem;}
.activity-area .activity-box .colum-content .detail-btn{position: relative; font-size: 1.4rem; color: #fff;     display: flex;			gap: 2px;			justify-content: space-between;    }
.activity-area .activity-box .colum-content .detail-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #333333;
}
.activity-area .activity-box .colum-content .detail-btn a.red-btn {background-color: #D93028;}
.program-wrap.activity .tab-menu ul{display: flex;              align-items: center;}
.program-wrap.activity .tab-menu ul > li { flex: 1; height: 100%;}
.program-wrap.activity .tab-menu ul > li a { line-height: 5.3rem; padding: 0;}

@media (max-width: 767px) {
	.activity-area  {    flex-direction: column; gap: 0;}
	.activity-area .activity-box {
		/* flex: 1 1 100%;
		max-width: 100%;
		margin-bottom: 35px; */
		margin-bottom: 2.4rem;
		min-width: 100%;
	}
	.activity-area .activity-box .colum-content .txt-area .tit {font-size: 2.2rem; font-weight: 400;}
	.activity-area .activity-box .colum-content .txt-area .txt {font-size: 1.4rem; min-height: 100%; margin-top: .6rem; }
	.activity-area .activity-box .colum-content .txt-area { padding: 1rem 1rem 0.1rem 1rem;}
	.activity-area .activity-box .colum-content .info-area div {font-size: 1.4rem;}
	.activity-area .activity-box .colum-content .info-area {padding: 0 1rem 0; margin-top: 0.5rem;}
	.activity-area .activity-box .colum-content .detail-btn a {
		flex: 1;
		padding: 0;
	}
	.activity-area .activity-box .colum-content .info-area .info-time {font-size: 1.4rem;     margin: .8rem 0 0 0;}
	.activity-area .activity-box .colum-content .info-area .info-box {    padding-bottom: 8px;}
	.program-wrap.activity {margin: 0;}
}

/* 20240723 : 김해리조트 트래브러리 수정 */
@media (max-width: 767px) {
	.graphy-content-wrap {margin-top: 22rem;}
	.cover-story-wrap .left-sidebar .travel-link {
		display: flex;
		margin-top: 3.2rem;
		gap: 0 2rem;
		/* row-gap: 1.2rem; */
		overflow-x: scroll;
		flex-wrap: wrap;
		/* flex-direction: column; */
		justify-content: center;
	}
	.cover-story-wrap .left-sidebar .travel-link a.all { width: 100%; }
	.cover-story-wrap .left-sidebar .travel-link::-webkit-scrollbar { display: none; }
}
