

/* ========== main visual ========== */
#mainVisual.main_visual {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#mainVisual .mv_frame,
#mainVisual .slide_wrap {
	position: relative;
	width: 100%;
	height: 100%;
}
#mainVisual .slider-wrap {
	position: relative;
	height: 60rem;
}
#mainVisual .slide-list {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
}
#mainVisual .slide-list.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}
#mainVisual .slide-list .bn_bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
/* #mainVisual .slide-list .bn_bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}
#mainVisual .slide-list.slide-2 .bn_bg::after {
	background: rgba(0, 0, 0, 0.1);
}
#mainVisual .slide-list.slide-3 .bn_bg::after {
	background: rgba(0, 0, 0, 0.15);
} */
#mainVisual .slide-list .bn_bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#mainVisual .slide-list.slide-2 .bn_bg img,
#mainVisual .slide-list.slide-3 .bn_bg img {
	object-position: center bottom;
}
#mainVisual .slide-list .txt_wrap {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: center;
	padding: 0 16rem;
	width: 100%;
	max-width: 192rem;
	margin: 0 auto;
	box-sizing: border-box;
}
#mainVisual .slide-list .title_wrap {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
#mainVisual .slide-list .title_wrap > *,
#mainVisual .slide-list .mark_wrap {
	opacity: 0;
}
#mainVisual .slide-list .title_wrap span {
	display: block;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1.4;
}
#mainVisual .slide-list .title_wrap span b {
	font-weight: 700;
}
#mainVisual .slide-list .title_wrap h3 {
	font-size: 4.8rem;
	font-weight: 200;
	line-height: 1.2;
	margin: 0;
}
#mainVisual .slide-list .title_wrap h3 b {
	font-weight: 600;
}
#mainVisual .slide-list .mark_wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
#mainVisual .slide-list .mark_wrap p {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
}
#mainVisual .slide-list .mark_btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 2.8rem;
	border: 1px solid #fff;
	border-radius: 6rem;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
	box-sizing: border-box;
	text-decoration: none;
	cursor: pointer;
	pointer-events: auto;
	overflow: hidden;
	isolation: isolate;
	background: transparent;
	transition: border-color 0.3s ease, color 0.3s ease;
}
#mainVisual .slide-list .mark_btn::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(165deg, #009688 3%, #437fcd 97%);
	transform: translateX(-100%);
	transition: transform 0.4s ease;
	z-index: -1;
}
#mainVisual .slide-list .mark_btn:hover {
	border-color: transparent;
	color: #fff;
}
#mainVisual .slide-list .mark_btn:hover::before {
	transform: translateX(0);
}
#mainVisual .slide-list.theme_light {
	color: #fff;
}
#mainVisual .slide-list.theme_dark {
	color: #111;
}
#mainVisual .slide-list.theme_dark .mark_wrap p {
	color: #111;
}
#mainVisual .indicator-wrap {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	width: fit-content;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 6rem;
	padding: 0.8rem 1.2rem;
	position: absolute;
	bottom: 4rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
#mainVisual .indicator-wrap span {
	display: block;
	width: 1rem;
	height: 1rem;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 100%;
	cursor: pointer;
}
#mainVisual .indicator-wrap span.active {
	background: #fff;
}
#mainVisual .mo_only {
	display: none !important;
}
#mainVisual .pc_only {
	display: flex !important;
}

#mainVisual + main {
	margin-top: 0 !important;
}

/* 공통 사용 */
section .comm-title-wrap {
	text-align: center;
	margin-bottom: 6rem;
}
section .comm-title-wrap h3 {
	font-family: 'Trirong';
	font-size: clamp(4rem, 6vw, 6.8rem);
	font-weight: 500;
	letter-spacing: -.5px;
	background: linear-gradient(90deg, #14332D 40%, #009688 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
section .comm-title-wrap p {
	font-size: clamp(1.6rem, 2vw, 2rem);
	color: #666;
	margin-top: 1.2rem;
}
section .link-btn {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: fit-content;
	padding: 1.3rem 3rem;
	border-radius: 5rem;
	border: 1px solid #000;
	color: #000;
	font-size: 1.6rem;
	font-weight: 600;
	transition: background-color 0.3s ease;
}
section .link-btn:hover {
	background-color: #f7f7f7;
}
.sec1 {
	background: #f8f8f8;
	padding: 8rem 0;
}
.sec1 .sec1_inner {
	display: flex;
	align-items: center;
	gap: 6rem;
}
.sec1 .comm-title-wrap {
	flex-shrink: 0;
	width: 30rem;
	text-align: left;
	margin-bottom: 0;
}
.sec1 .comm-title-wrap h3 {
	font-family: 'Trirong', serif;
	font-size: 3rem;
	font-weight: 500;
	font-style: italic;
	letter-spacing: -0.015em;
	line-height: 1;
	color: #111;
	background: none;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	background-clip: initial;
}
.sec1 .comm-title-wrap p {
	margin-top: 1.5rem;
	font-size: 1.6rem;
	line-height: 1.4;
	color: #666;
}
.sec1 .comm-title-wrap .mo_br {
	display: none;
}
.sec1 .pick-wrap {
	flex: 1;
	min-width: 0;
}
.sec1 .pick-wrap ul {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 1rem;
}
.sec1 .pick-wrap ul li {
	flex: 1;
	min-width: 0;
}
.sec1 .pick-wrap ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	height: 14.8rem;
	padding: 2rem 1rem;
	border-radius: 0.4rem;
	background: #fff;
	box-sizing: border-box;
	transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.sec1 .pick-wrap ul li a .ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
}
.sec1 .pick-wrap ul li a .ico img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: filter 0.3s ease;
}
.sec1 .pick-wrap ul li a p {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	color: #111;
	text-align: center;
	word-break: keep-all;
	transition: color 0.3s ease;
}
.sec1 .pick-wrap ul li a:hover {
	background: linear-gradient(138deg, #009688 3%, #437fcd 97%);
	box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.15);
}
.sec1 .pick-wrap ul li a:hover .ico img {
	filter: brightness(0) invert(1);
}
.sec1 .pick-wrap ul li a:hover p {
	color: #fff;
}

.sec2 {
	padding: 16rem 0;
}
.sec2 .sec2_top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;
	margin-bottom: 8rem;
}
.sec2 .comm-title-wrap {
	margin-bottom: 0;
}
.sec2 .comm-title-wrap h3 {
	font-size: 4.8rem;
	font-style: italic;
	letter-spacing: -0.024rem;
}
.sec2 .reserve-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6rem;
	padding: 1rem 1.8rem 1rem 1rem;
	border: 1px solid #ddd;
	border-radius: 6rem;
	background: linear-gradient(180deg, #fff 0%, #f5f5f5 50%, #fff 100%);
	background-size: 100% 200%;
	background-position: center top;
	box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: #111;
	box-sizing: border-box;
	transition: background-position 0.45s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sec2 .reserve-btn:hover {
	background-position: center bottom;
	border-color: #ccc;
	box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
}
.sec2 .reserve-btn .reserve-left {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.sec2 .reserve-btn .reserve-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	overflow: hidden;
}
.sec2 .reserve-btn .reserve-ico img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.sec2 .reserve-btn .reserve-txt {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
}
.sec2 .reserve-btn .reserve-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 50%;
	background: linear-gradient(138deg, #009688 0%, #437fcd 50%, #009688 100%);
	background-size: 200% 200%;
	background-position: 0% 0%;
	color: #fff;
	font-size: 2rem;
	transition: background-position 0.45s ease;
}
.sec2 .reserve-btn:hover .reserve-arrow {
	background-position: 100% 100%;
}
.sec2 .sec2_content {
	display: flex;
	align-items: stretch;
	gap: 8rem;
}
.sec2 .sec2_banner {
	position: relative;
	flex-shrink: 0;
	width: 47rem;
	min-height: 55.1rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 4rem 3rem;
	box-sizing: border-box;
	color: #fff;
	background: url("../_img/main/sec2-banner.jpg") no-repeat center / cover;
}
.sec2 .sec2_banner .banner_badge {
	position: absolute;
	top: 3rem;
	right: 3rem;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	background: #c2a064;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	color: #fff;
}
.sec2 .sec2_banner .banner_txt {
	position: relative;
	z-index: 1;
}
.sec2 .sec2_banner .banner_sub {
	display: block;
	font-size: 2.2rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}
.sec2 .sec2_banner .banner_txt p {
	margin: 0;
	font-size: 6.4rem;
	font-weight: 400;
	line-height: 1.2;
}
.sec2 .sec2_banner .banner_txt p b {
	font-weight: 700;
}
.sec2 .sec2_slider {
	position: relative;
	flex: 1;
	min-width: 0;
	box-sizing: border-box;
}
.sec2 .sec2-swiper {
	overflow: hidden;
}
.sec2 .sec2-swiper .swiper-slide {
	height: auto;
}
.sec2 .card_img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 336 / 400;
	margin-bottom: 2rem;
}
.sec2 .card_img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sec2 .card_img .card_label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	box-sizing: border-box;
}
.sec2 .card_body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.sec2 .card_desc {
	margin: 0;
	min-height: 5rem;
	font-size: 1.8rem;
	line-height: 1.4;
	color: #444;
	word-break: keep-all;
}
.sec2 .card_offer {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.sec2 .card_benefit {
	margin: 0;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.4;
	color: #111;
	word-break: keep-all;
}
.sec2 .card_benefit b {
	font-weight: 700;
}
.sec2 .card_price {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.sec2 .card_price .price_origin {
	font-size: 1.6rem;
	line-height: 1.4;
	color: #999;
	text-decoration: line-through;
}
.sec2 .card_price .price_sale {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	color: #009688;
}
.sec2 .sec2-nav {
	position: absolute;
	top: 17.6rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	padding: 0;
}
.sec2 .sec2-nav.swiper-button-disabled {
	opacity: .5;
	cursor: default;
	pointer-events: none;
}
.sec2 .sec2-prev {
	left: -2.4rem;
}
.sec2 .sec2-next {
	right: -2.4rem;
}
.sec2 .sec2-scrollbar {
	display: none;
}

.sec3 {
	position: relative;
	padding: 14rem 0 16rem;
	background: url("../_img/main/sec3-bg.jpg") no-repeat center / cover;
}
.sec3 .comm-title-wrap h3 {
	font-size: 4.8rem;
	font-style: italic;
	color: #fff;
	background: none;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: #fff;
	background-clip: initial;
}
.sec3 .comm-title-wrap p {
	color: #fff;
}
.sec3 .sec3_board {
	display: flex;
	align-items: stretch;
	gap: 2rem;
}
.sec3 .sec3_col {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.sec3 .review_card {
	background: #fff;
	border-radius: 0.4rem;
	overflow: hidden;
}
.sec3 .review_card > a {
	display: block;
	color: inherit;
	text-decoration: none;
	height: 100%;
}
.sec3 .review_card.has_img > a {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.sec3 .review_img {
	padding: 3rem 3rem 0;
}
.sec3 .review_img img {
	display: block;
	width: 100%;
	height: auto;
}
.sec3 .review_body {
	padding: 3rem;
}
.sec3 .review_card.has_img .review_body {
	padding-top: 3rem;
}
.sec3 .review_star {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 1rem;
}
.sec3 .review_star span {
	display: block;
	width: 2rem;
	height: 2rem;
	background: #827565;
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.sec3 .review_body h4 {
	margin: 0 0 1rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}
.sec3 .review_body p {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.4;
	color: #444;
	word-break: keep-all;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sec3 .sec3_slider {
	display: none;
}

.sec4 {
	background: #f8f8f8;
	padding: 16rem 0;
}
.yt-slider-wrap {
	overflow: hidden;
}
.yt-track {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease;
	will-change: transform;
}
.yt-slide {
	flex-shrink: 0;
}
.yt-slide a {
	display: block;
	color: #000;
}
.yt-slide a .thumb-wrap {
	overflow: hidden;
	aspect-ratio: 510 / 287;
}
.yt-slide a:hover .thumb-wrap img {
	transform: scale(1.2);
}
.yt-slide a .thumb-wrap img {
	width: 100%;
	display: block;
	transition: transform 0.4s ease;
}
.yt-slide a .title-box {
	margin-top: 2rem;
}
.yt-slide a .title-box p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
}
.yt-slide a .title-box span {
	display: block;
	font-size: 1.6rem;
	line-height: 1.4;
	color: #999;
	margin-top: .5rem;
}

.sec5 .grid-wrap {
	background: #fff;
	padding: 16rem 0;
}
.sec5 .grid-wrap .feature_list {
	display: flex;
	align-items: flex-start;
	gap: 6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sec5 .grid-wrap .feature_card {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.sec5 .grid-wrap .feature_img {
	overflow: hidden;
	aspect-ratio: 1920 / 1080;
}
.sec5 .grid-wrap .feature_img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sec5 .grid-wrap .feature_body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.sec5 .grid-wrap .feature_tags {
	margin: 0;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	color: #c2a064;
	word-break: keep-all;
}
.sec5 .grid-wrap .feature_txt {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 2rem;
	border-top: 1px solid #ddd;
}
.sec5 .grid-wrap .feature_txt h3 {
	margin: 0;
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
	word-break: keep-all;
}
.sec5 .grid-wrap .feature_txt h3 span {
	font-weight: 700;
}
.sec5 .grid-wrap .feature_txt p {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.6;
	color: #777;
	word-break: keep-all;
}

.sec5 .process-wrap {
	background: #fff;
	padding: 0 0 16rem;
}
.sec5 .process-wrap .comm-title-wrap {
	margin-bottom: 8rem;
}
.sec5 .process-wrap .contents-wrap {
	display: flex;
	align-items: flex-start;
	gap: 8rem;
}
.sec5 .process-wrap .list-wrap {
	display: flex;
	align-items: stretch;
	gap: 4rem;
	flex-shrink: 0;
	width: 47rem;
}
.sec5 .process-wrap .process_line {
	position: relative;
	width: 0.1rem;
	background: #ccc;
	flex-shrink: 0;
}
.sec5 .process-wrap .process_indicator {
	position: absolute;
	left: -0.1rem;
	top: 1.4rem;
	width: 0.3rem;
	height: 2rem;
	background: #000;
	transition: top 0.3s ease;
}
.sec5 .process-wrap .list-wrap ul {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sec5 .process-wrap .list-wrap ul li {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 4.8rem;
	padding: 1rem 0;
	font-size: 2rem;
	color: #999;
	cursor: pointer;
	transition: color 0.3s;
}
.sec5 .process-wrap .list-wrap ul li span {
	width: 2.8rem;
	flex-shrink: 0;
	font-weight: 400;
	line-height: 1;
}
.sec5 .process-wrap .list-wrap ul li p {
	margin: 0;
	font-weight: 500;
	line-height: 1;
	word-break: keep-all;
}
.sec5 .process-wrap .list-wrap ul li.active {
	color: #000;
}
.sec5 .process-wrap .process_panel {
	position: relative;
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.sec5 .process-wrap .process_panel::before {
	content: "";
	position: absolute;
	left: 9rem;
	bottom: -10rem;
	z-index: 0;
	width: 112rem;
	max-width: calc(100% + 20rem);
	height: 43.4rem;
	background: #f4f5f7;
	pointer-events: none;
}
.sec5 .process-wrap .process_head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 4rem;
}
.sec5 .process-wrap .desc-wrap {
	flex: 1;
	min-width: 0;
}
.sec5 .process-wrap .desc-wrap h4 {
	margin: 0;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.4;
	color: #000;
	word-break: keep-all;
	transition: opacity 0.3s;
}
.sec5 .process-wrap .desc-wrap p {
	margin: 0;
	font-size: 2rem;
	line-height: 1.4;
	color: #444;
	word-break: keep-all;
	transition: opacity 0.3s;
}
.sec5 .process-wrap .process_more_pc {
	flex-shrink: 0;
	margin: 0;
}
.sec5 .process-wrap .img-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 86rem;
	aspect-ratio: 860 / 484;
	overflow: hidden;
	background: #fff;
}
.sec5 .process-wrap .img-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s;
}
.sec5 .process-wrap .process_more_mo,
.sec5 .process-wrap .process_slider {
	display: none;
}

.sec6 {
	padding: 16rem 0;
}
.sec6 .content-wrap ul {
	display: flex;
	gap: 5rem;
}
.sec6 .content-wrap ul li .img-wrap {
	overflow: hidden;
}
.sec6 .content-wrap ul li .img-wrap:hover img {
	transform: scale(1.2);
}
.sec6 .content-wrap ul li .img-wrap img {
	width: 100%;
	transition: transform 0.4s ease;
}
.sec6 .content-wrap ul li .title-box {
	margin-top: 3rem;
}
.sec6 .content-wrap ul li .title-box p {
	font-size: clamp(2rem, 2.4vw, 2.4rem);
	font-weight: 600;
	line-height: 1.4;
	color: #000;
	margin-bottom: 1rem;
}
.sec6 .content-wrap ul li .title-box span {
	display: block;
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1.5;
	color: #000;
}

.sec7 {
	padding: 16rem 0;
	background: #F8F8F8;
}
.sec7 .slider-wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
.sec7 .sec7-swiper {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	margin: 0;
	box-sizing: border-box;
}
.sec7 .swiper-slide {
	height: auto;
	min-width: 0;
	box-sizing: border-box;
}
.sec7 .product_card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
	height: 100%;
	color: inherit;
	text-decoration: none;
	box-sizing: border-box;
}
.sec7 .img-wrap {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	aspect-ratio: 500 / 500;
	background: #f5f5f5;
}
.sec7 .img-wrap img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.sec7 .product_card:hover .img-wrap img {
	transform: scale(1.05);
}
.sec7 .text-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 1.5rem;
	min-width: 0;
	min-height: 32rem;
	padding: 3rem 1.5rem;
	border-top: 2px solid #111;
	border-bottom: 0;
	box-sizing: border-box;
	overflow-wrap: anywhere;
	word-break: keep-all;
}
.sec7 .type_img_text .text-wrap {
	border-top: 0;
	border-bottom: 2px solid #111;
}
.sec7 .text-wrap h4 {
	margin: 0;
	font-family: "Marcellus", "Pretendard", serif;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.4;
	color: #111;
	word-break: keep-all;
}
.sec7 .text-wrap > p {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.6;
	color: #777;
	word-break: keep-all;
}
.sec7 .text-wrap > p span {
	color: #111;
	font-weight: 600;
}
.sec7 .text-wrap .properties {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	margin: 0;
}
.sec7 .text-wrap .properties p {
	margin: 0;
	padding: 0.6rem 2rem;
	border: 1px solid #deaa61;
	border-radius: 6rem;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.2;
	color: #deaa61;
	text-align: center;
	white-space: nowrap;
}
.sec7 .text-wrap .check_list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sec7 .text-wrap .inner_list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
}
.sec7 .text-wrap .check_list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #777;
}
.sec7 .text-wrap .check_list li + li {
	margin-top: 0;
}
.sec7 .text-wrap .check_list li img {
	width: 1.4rem;
	height: 1.1rem;
	flex-shrink: 0;
}
.sec7 .text-wrap .card_note {
	margin: 0;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.6;
	color: #111;
}
.sec7 .sec7-scrollbar {
	display: none;
}

@media (min-width: 1201px) {
	.sec7 .sec7-swiper {
		overflow: visible;
	}
	.sec7 .sec7-swiper .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 5rem;
		transform: none !important;
	}
	.sec7 .swiper-slide {
		width: auto !important;
		min-width: 0;
		margin: 0 !important;
	}
}

.sec8 {
	padding: 16rem 0;
}
.sec8 .comm-title-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.sec8 .list-wrap ul {
	display: flex;
	gap: 3rem;
}
.sec8 .list-wrap ul li {
	width: 100%;
}
.sec8 .list-wrap ul li a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #ccc;
	padding: 6rem 4rem;
	width: 100%;
	max-width: 37.8rem;
	height: 37.8rem;
}
.sec8 .list-wrap ul li a .title-box span {
	display: block;
	font-size: 1.4rem;
	line-height: 1.4;
	color: #14332d;
	margin-bottom: 1rem;
}
.sec8 .list-wrap ul li a .title-box h4 {
	font-size: clamp(2.2rem, 2.5vw, 2.8rem);
	line-height: 1.4;
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}
.sec8 .list-wrap ul li a .date {
	font-size: 1.6rem;
	line-height: 1.4;
	color: #666;
}
.sec8 .banner-wrap {
	display: flex;
	gap: 3rem;
	margin-top: 8rem;
}
.sec8 .banner-wrap .banner {
	color: #fff;
	width: 100%;
	padding: 6rem 4rem;
}
.sec8 .banner-wrap .banner-1 {
	background: url("../_img/main/banner-img-01.png") no-repeat center / cover;
}
.sec8 .banner-wrap .banner-2 {
	background: url("../_img/main/banner-img-02.png") no-repeat center / cover;
}
.sec8 .banner-wrap .banner span {
	display: block;
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}
.sec8 .banner-wrap .banner h5 {
	font-size: clamp(2.4rem, 2.4vw, 2.8rem);
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 2rem;
}
.sec8 .banner-wrap .banner p {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	line-height: 1.4;
}

.notice-wrap {
	border-top: 1px solid #ddd;
	padding: 6rem 0;
}
.notice-wrap h3 {
	font-size: clamp(2.4rem, 3.2vw, 3.6rem);
	font-weight: 700;
	margin-bottom: 2rem;
	color: #009688;
}
.notice-wrap p {
	font-size: clamp(1.8rem, 2.4vw, 2.4rem);
	line-height: 1.4;
	color: #444;
}
.notice-wrap .logo-wrap {
	overflow: hidden;
	margin-top: 4rem;
	width: 100%;
}
.notice-wrap .logo-track {
	display: flex;
	width: max-content;
	animation: logo_marquee 40s linear infinite;
}
.notice-wrap .logo-set {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 6rem;
	padding-right: 6rem;
}
.notice-wrap .logo-wrap img {
	display: block;
	object-fit: contain;
	flex-shrink: 0;
}
@keyframes logo_marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.notice-wrap .logo-track {
		animation: none;
	}
}


@media (min-width: 1201px) and (max-width: 1820px) {
	.sec2 .sec2_slider {
		padding-right: 9rem;
	}
	.sec2 .sec2-next {
		right: 8rem;
	}
}

@media (max-width: 1400px) {
	.sec5 .process-wrap .contents-wrap {
		gap: 5rem;
	}
	.sec5 .process-wrap .list-wrap {
		width: 36rem;
	}
}

@media (max-width: 1280px) {
	.notice-wrap .logo-set {
		gap: 4rem;
		padding-right: 4rem;
	}
}

@media (max-width: 1200px) {
	.sec2 .sec2_slider {
		padding: 0;
	}
	.sec2 .sec2-nav {
		display: none;
	}
	.sec2 .sec2-scrollbar {
		display: block;
		margin-top: 1.5rem;
		height: 0.2rem;
		background: #eee;
		border-radius: 0;
	}
	.sec2 .sec2-scrollbar .swiper-scrollbar-drag {
		background: #111;
		border-radius: 0;
	}
}

@media (max-width: 1199px) {
	.sec1 .sec1_inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 4rem;
	}
	.sec1 .comm-title-wrap {
		width: 100%;
		max-width: 30rem;
	}
	.sec1 .pick-wrap {
		width: 100%;
	}
	.sec1 .pick-wrap ul {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
	.sec1 .pick-wrap ul li a {
		height: 14.8rem;
	}

	.sec5 .process-wrap .process_panel::before {
		height: 32rem;
	}
}

@media (max-width: 1024px) {
	.sec1 .pick-wrap ul li a {
		height: 13rem;
		padding: 1.5rem 0.6rem;
		gap: 1.2rem;
	}
	.sec1 .pick-wrap ul li a .ico {
		width: 5rem;
		height: 5rem;
	}
	.sec1 .pick-wrap ul li a p {
		font-size: 1.3rem;
	}
	.sec2 .sec2_content {
		gap: 4rem;
	}
	.sec2 .sec2_banner {
		width: 36rem;
		min-height: 48rem;
	}
	.sec2 .sec2_banner .banner_txt p {
		font-size: 4.8rem;
	}
}

@media (max-width: 1200px) {
	.sec7 {
		padding: 8rem 0;
	}
	.sec7 .slider-wrap {
		overflow: hidden;
	}
	.sec7 .sec7-swiper {
		overflow: hidden;
	}
	.sec7 .sec7-swiper .swiper-wrapper {
		display: flex;
		align-items: stretch;
		gap: 0;
		box-sizing: border-box;
	}
	.sec7 .swiper-slide {
		height: auto;
		min-width: 0;
		box-sizing: border-box;
	}
	.sec7 .swiper-slide.type_text_img .product_card .img-wrap {
		order: -1;
	}
	.sec7 .text-wrap {
		min-height: auto;
		width: 100%;
		min-width: 0;
		gap: 1.2rem;
		padding: 2rem 0 0;
		border-top: 0;
		border-bottom: 0;
		overflow-wrap: anywhere;
		word-break: keep-all;
	}
	.sec7 .type_img_text .text-wrap {
		border-bottom: 0;
	}
	.sec7 .text-wrap h4 {
		font-size: 2.2rem;
	}
	.sec7 .text-wrap > p {
		font-size: 1.6rem;
	}
	.sec7 .text-wrap .properties p {
		font-size: 1.4rem;
		padding: 0.5rem 1.6rem;
	}
	.sec7 .text-wrap .check_list li {
		font-size: 1.5rem;
	}
	.sec7 .text-wrap .check_list li img {
		width: 1.6rem;
		height: 1.6rem;
	}
	.sec7 .text-wrap .card_note {
		font-size: 1.8rem;
	}
	.sec7 .sec7-scrollbar {
		display: block;
		margin-top: 3rem;
		height: 0.2rem;
		background: rgba(0, 0, 0, 0.1);
	}
	.sec7 .sec7-scrollbar .swiper-scrollbar-drag {
		background: #111;
		border-radius: 0;
	}
}

@media (max-width: 992px) {
	.sec5 .process-wrap .contents-wrap {
		flex-direction: column;
		gap: 4rem;
	}
	.sec5 .process-wrap .list-wrap {
		width: 100%;
		gap: 0;
	}
	.sec5 .process-wrap .process_line {
		display: none;
	}
	.sec5 .process-wrap .list-wrap ul {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.sec5 .process-wrap .list-wrap ul li {
		width: auto;
		height: auto;
		min-height: 4.8rem;
		padding: 1rem;
	}
	.sec5 .process-wrap .img-wrap {
		width: 100%;
		max-width: none;
	}
	.sec5 .process-wrap .process_panel::before {
		display: none;
	}
	.sec5 .process-wrap .process_head {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}
	.sec8 .list-wrap ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	.sec8 .list-wrap ul li a {
		max-width: 100%;
		height: 27rem;
	}
	.sec8 .banner-wrap {
		flex-direction: column;
	}
}


@media (max-width: 768px) {
	.container {
		max-width: 100%;
	}
	#mainVisual .slider-wrap {
		height: 48rem;
	}
	#mainVisual .slide-list {
		justify-content: center;
	}
	/* #mainVisual .slide-list .bn_bg::after {
		background: rgba(0, 0, 0, 0.34);
	}
	#mainVisual .slide-list.slide-2 .bn_bg::after {
		background: rgba(0, 0, 0, 0.2);
	}
	#mainVisual .slide-list.slide-3 .bn_bg::after {
		background: rgba(0, 0, 0, 0.4);
	} */
	#mainVisual .slide-list .txt_wrap {
		align-items: center;
		gap: 2rem;
		padding: 0 1.5rem;
		text-align: center;
	}
	#mainVisual .slide-list .title_wrap {
		align-items: center;
		width: 100%;
	}
	#mainVisual .slide-list .title_wrap span {
		font-size: 1.4rem;
	}
	#mainVisual .slide-list .title_wrap h3 {
		font-size: 2.2rem;
	}
	#mainVisual .slide-list .mark_wrap {
		justify-content: center;
		gap: 0.4rem;
		width: 100%;
	}
	#mainVisual .slide-list .mark_wrap p {
		width: 100%;
		font-size: 1.4rem;
		text-align: center;
	}
	#mainVisual .slide-list .mark_btn {
		padding: 0.8rem 1.6rem;
		font-size: 1.3rem;
	}
	#mainVisual .slide-list.theme_dark {
		color: #fff;
	}
	#mainVisual .slide-list.theme_dark .mark_wrap p {
		color: #fff;
	}
	#mainVisual .indicator-wrap {
		bottom: 2rem;
	}
	#mainVisual .pc_only {
		display: none !important;
	}
	#mainVisual .mo_only {
		display: flex !important;
	}
	.sec5 .grid-wrap {
		padding: 6rem 0;
	}
	.sec5 .grid-wrap .feature_list {
		flex-direction: column;
		gap: 4rem;
	}
	.sec5 .grid-wrap .feature_card {
		gap: 2rem;
	}
	.sec5 .grid-wrap .feature_body {
		gap: 1.5rem;
	}
	.sec5 .grid-wrap .feature_tags {
		font-size: 1.6rem;
		line-height: 1.4;
	}
	.sec5 .grid-wrap .feature_txt {
		gap: 0;
		padding-top: 1.5rem;
	}
	.sec5 .grid-wrap .feature_txt h3 {
		font-size: 2rem;
	}
	.sec5 .grid-wrap .feature_txt p {
		font-size: 1.6rem;
	}
	.sec5 .process-wrap {
		padding: 0 0 7rem;
	}
	.sec5 .process-wrap .comm-title-wrap {
		margin-bottom: 3rem;
	}
	.sec5 .process-wrap .process_more_mo {
		display: flex;
		margin: 0 auto 3rem;
		padding: 1rem 2rem;
		font-size: 1.4rem;
	}
	.sec5 .process-wrap .process_more_mo img {
		width: 1.8rem;
		height: 1.8rem;
	}
	.sec5 .process-wrap .contents-wrap {
		display: none;
	}
	.sec5 .process-wrap .process_slider {
		display: block;
	}
	.sec5 .process-wrap .process-swiper {
		overflow: hidden;
	}
	.sec5 .process-wrap .process-swiper .swiper-slide {
		height: auto;
	}
	.sec5 .process-wrap .process_slider .img-wrap {
		width: 100%;
		max-width: none;
		aspect-ratio: 330 / 186;
		box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.2);
	}
	.sec5 .process-wrap .process_slider .desc-wrap {
		margin-top: 3rem;
	}
	.sec5 .process-wrap .process_slider .desc-wrap h4 {
		margin: 0;
		font-size: 2rem;
		font-weight: 500;
		line-height: 1.4;
		color: #000;
		word-break: keep-all;
	}
	.sec5 .process-wrap .process_slider .desc-wrap p {
		margin: 0.5rem 0 0;
		font-size: 1.6rem;
		line-height: 1.4;
		color: #666;
		word-break: keep-all;
	}
	.sec5 .process-wrap .process-pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0.6rem;
		margin-top: 3rem;
	}
	.sec5 .process-wrap .process-pagination .swiper-pagination-bullet {
		margin: 0;
		width: 0.6rem;
		height: 0.6rem;
		background: rgba(0, 0, 0, 0.1);
		opacity: 1;
		border-radius: 1.4rem;
	}
	.sec5 .process-wrap .process-pagination .swiper-pagination-bullet-active {
		background: #000;
	}
	.sec6 .content-wrap ul {
		gap: 3rem;
		flex-wrap: wrap;
	}
	.sec6 .content-wrap ul > li {
		width: 100%;
	}
	.sec1 {
		padding: 4rem 0;
	}
	.sec1 .sec1_inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}
	.sec1 .comm-title-wrap {
		width: 100%;
		max-width: 30rem;
	}
	.sec1 .comm-title-wrap h3 {
		font-size: 2.2rem;
		letter-spacing: -0.011em;
	}
	.sec1 .comm-title-wrap p {
		margin-top: 1rem;
		font-size: 1.4rem;
	}
	.sec1 .comm-title-wrap .mo_br {
		display: inline;
	}
	.sec1 .pick-wrap {
		width: 100%;
	}
	.sec1 .pick-wrap ul {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem 0;
	}
	.sec1 .pick-wrap ul li a {
		height: auto;
		min-height: 7.2rem;
		padding: 1rem 0.4rem;
		gap: 1rem;
		background: transparent;
		box-shadow: none;
		border-radius: 0.4rem;
	}
	.sec1 .pick-wrap ul li a .ico {
		width: 5rem;
		height: 4.6rem;
	}
	.sec1 .pick-wrap ul li a p {
		font-size: 1.3rem;
		white-space: nowrap;
	}
	.sec1 .pick-wrap ul li a:hover {
		background: linear-gradient(138deg, #009688 3%, #437fcd 97%);
		box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.15);
		padding: 1rem 0.4rem;
	}
	.sec2 {
		padding: 6rem 0;
	}
	.sec2 .sec2_top {
		gap: 0;
		margin-bottom: 3rem;
	}
	.sec2 .comm-title-wrap h3 {
		font-size: 2.2rem;
	}
	.sec2 .reserve-btn {
		display: none;
	}
	.sec2 .sec2_content {
		flex-direction: column;
		gap: 1.5rem;
	}
	.sec2 .sec2_banner {
		width: 100%;
		min-height: 12rem;
		height: 12rem;
		padding: 1.5rem;
		justify-content: center;
	}
	.sec2 .sec2_banner .banner_badge {
		top: 1rem;
		right: 1rem;
		width: 4.6rem;
		height: 4.6rem;
		font-size: 1.2rem;
	}
	.sec2 .sec2_banner .banner_sub {
		font-size: 1.4rem;
		margin-bottom: 0.5rem;
		color: #425959;
	}
	.sec2 .sec2_banner .banner_txt p {
		font-size: 2.4rem;
		color: #111;
	}
	.sec2 .card_img {
		aspect-ratio: 1 / 1;
		margin-bottom: 2rem;
	}
	.sec2 .card_img .card_label {
		padding: 0.8rem 1rem;
		font-size: 1.5rem;
	}
	.sec2 .card_body {
		gap: 1rem;
	}
	.sec2 .card_desc {
		order: 2;
		min-height: 0;
		font-size: 1.4rem;
	}
	.sec2 .card_offer {
		order: 1;
	}
	.sec2 .card_benefit {
		font-size: 1.6rem;
	}
	.sec2 .card_price {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.sec2 .card_price .price_origin {
		font-size: 1.4rem;
	}
	.sec2 .card_price .price_sale {
		font-size: 1.6rem;
	}
}

@media (max-width: 767px) {
	.sec2 .sec2_banner {
		background-image: url("../_img/main/sec2-banner-mo.jpg");
	}
	.sec3 {
		padding: 6rem 0;
	}
	.sec3 .comm-title-wrap h3 {
		font-size: 2.2rem;
	}
	.sec3 .sec3_board {
		display: none;
	}
	.sec3 .sec3_slider {
		display: block;
	}
	.sec3 .sec3-swiper {
		overflow: hidden;
	}
	.sec3 .sec3-swiper .swiper-slide {
		height: auto;
	}
	.sec3 .review_img {
		padding: 1.5rem 1.5rem 0;
	}
	.sec3 .review_body {
		padding: 1.5rem;
	}
	.sec3 .review_card.has_img .review_body {
		padding-top: 1.5rem;
	}
	.sec3 .review_star span {
		width: 1.6rem;
		height: 1.6rem;
	}
	.sec3 .review_body h4 {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
	.sec3 .review_body p {
		font-size: 1.6rem;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.sec3 .sec3-scrollbar {
		margin-top: 3rem;
		height: 0.2rem;
		background: rgba(255, 255, 255, 0.35);
	}
	.sec3 .sec3-scrollbar .swiper-scrollbar-drag {
		background: #fff;
		border-radius: 0;
	}
}

@media (max-width: 680px) {
	.sec5 .process-wrap .list-wrap ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.sec6 .content-wrap ul {
		flex-direction: column;
	}
	.sec6 .content-wrap ul li .title-box {
		margin-top: 2rem;
	}
	.sec8 .banner-wrap .banner {
		padding: 3rem 2.5rem;
	}
	.sec8 .list-wrap ul {
		grid-template-columns: 1fr;
	}
	.sec8 .list-wrap ul li a {
		height: 22rem;
		padding: 4rem 3rem;
	}

	.sec3, .sec4, .sec6, .sec8 {
		padding: 8rem 0;
	}
	section .comm-title-wrap {
		margin-bottom: 3rem;
	}
	.sec8 .banner-wrap {
		margin-top: 3rem;
	}
}

@media (max-width: 420px) {
	.sec5 .process-wrap .list-wrap ul {
		grid-template-columns: 1fr;
	}
	.sec5 .process-wrap .list-wrap ul li {
		width: 100%;
	}
	.sec8 .comm-title-wrap {
		flex-direction: column;
		align-items: center;
		gap: 3rem;
	}
}