@charset "UTF-8";

/*main*/
main {
	position: relative;
	width: 100%;
}

main>section {
	position: relative;
	width: 100%;
	height: 100%;
}

.main-visual-content {
	position: relative;
	width: 100%;
	height: 100%;
}

.main-visual-text {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	position: absolute;
	left: 30%;
	top: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
}

.main-visual-text>span {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 34px;
}

.main-visual-text>span:after {
	content: '';
	position: absolute;
	right: -130px;
	top: calc(50% - 1px);
	width: 100px;
	height: 1px;
	background: #fff;
}

.main-visual-ani {
	position: relative;
	margin: 0 0 80px;
	overflow: hidden;
}

.main-visual-ani>p {
	overflow: hidden;
}

.main-visual-ani>p>span {
	position: relative;
	display: block;
	font-size: 64px;
	line-height: 88px;
	font-weight: 700;
	color: #fff;
	transform: translateY(140%);
	opacity: 0;
}

.main-visual-ani>p>span {
	animation: slideIn 0.8s ease-in-out forwards;
}

@keyframes slideIn {
	0% {
		transform: translateY(140%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.main-visual-text .swiper-container {
	width: 100%;
	height: 100vh;
}

.main-visual-text .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
	position: static;
	width: auto;
	display: flex;
	align-items: center;
}

.main-visual-text .swiper-pagination-bullet {
	position: relative;
	display: block;
	width: 34px;
	height: 34px;
	background: transparent;
}

.main-visual-text .swiper-pagination-bullet:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.5);
}

.main-visual-text .swiper-pagination-bullet-active {
	background: inherit;
	border: 1px solid #fff;
}

.main-visual-text .swiper-pagination-bullet-active:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #fff;
}

.swiper-slide {
	width: 100%;
	height: auto;
	flex-shrink: 0;
	transition: width 0.3s ease;
}

.swiper-slide>img {
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.main-visual-content .slide-next-01,
.main-visual-content .slide-prev-01 {
	color: #fff;
	width: 60px;
	height: 60px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 100%;
}

.main-visual-content .slide-next-01:after,
.main-visual-content .slide-prev-01:after {
	font-size: 14px;
}

.main-visual-content .slide-next-01>span {
	display: block;
	position: absolute;
	left: -80px;
	font-size: 16px;
	line-height: 19px;
	font-weight: 700;
}

.main-visual-content .slide-prev-01>span {
	display: block;
	position: absolute;
	right: -80px;
	font-size: 16px;
	line-height: 19px;
	font-weight: 700;
}

.main-visual-content .swiper-horizontal {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-search {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: calc(100vh - 100px);
	transform: translateX(-50%);
	z-index: 10;
	width: 1320px;
	height: 180px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.14);
}

.product-search>div {
	width: 50%;
	height: 100%;
	padding: 30px 66px 50px;
}

.product-search .category {
	background: #f65252;
	border-radius: 8px 0 0 8px;
	color: #fff;
}

.category>p {
	font-size: 24px;
	line-height: 29px;
	font-weight: 700;
	margin: 0 0 24px;
}

.category>form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.category>form>div {
	width: calc(100% / 4 - 10px);
}

.category input[type="checkbox"] {
	display: none;
}

.category label {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 0 0 0 30px;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
	cursor: pointer;
}

.category label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.category input[type="checkbox"]:checked+label::before {
	content: '✓';
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	background: #fff;
	color: #f65252;
}

.product-search .search-bar {
	background: #fff;
	border-radius: 0 8px 8px 0;
}

.search-bar>p {
	font-size: 24px;
	line-height: 29px;
	font-weight: 700;
	color: #121212;
	margin: 0 0 36px;
}

.search-bar>div {
	position: relative;
	width: 100%;
}

.search-bar>div>input {
	display: block;
	width: 100%;
	padding: 0 0 4px;
	outline: 0;
	border: 0;
	border-bottom: 2px solid #b5b5b5;
	font-size: 18px;
	line-height: 21px;
	font-weight: 400;
	color: #999;
}

.search-bar>div>button {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 26px;
	height: 26px;
	background: url(/image/client/main/img-main-search.png) 50% 50% / contain no-repeat;
	font-size:0;
}

.products {
	background: #fff;
	padding: 165px 0 80px;
}

.products:before {
	content: '';
	position: absolute;
	left: 8px;
	top: 187px;
	display: block;
	width: 742px;
	height: 146px;
	background: url(/image/client/main/bg-ilyang-01.png) left 30% / 100% 100% no-repeat;
}

.products:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 590px;
	height: 100%;
	background: #F2F1F5 url(/image/client/main/bg-ilyang-02.png) right 80% / 450px 450px no-repeat;
}

.section-content-box {
	position: relative;
	z-index: 10;
	max-width: 1320px;
	margin: 0 auto;
	height: 100%;
	overflow: hidden;
}

.section-title-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	margin: 0 0 60px;
	overflow: hidden;
}

.section-title-box>p {
	overflow: hidden;
}

.section-title-box p span {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	transition: transform 1s ease, opacity 1s ease;
}

.section-title-box.active p span {
	opacity: 1;
	transform: translateY(0);
}

.section-title-eng {
	margin: 0 0 12px;
}

.section-title-eng>span {
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	color: #f51b1b;
}

.section-title-kor {
	margin: 0 0 22px;
}

.section-title-kor>span {
	font-size: 48px;
	line-height: 57px;
	font-weight: 700;
	color: #121212;
}

.section-dialog>span {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #333;
}

.product-list {
	position: relative;
	width: 1320px;
}

.product-list .swiper-horizontal {
	max-width: 98%;
	margin: 0 auto 80px;
	overflow: hidden;
	padding: 10px;
}

.product-item.swiper-slide {
	position: relative;
	width:auto;
	height: 400px;
	background: #fff url(/image/client/common/img-logo.png) 50% 20px / 40% auto no-repeat;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 60px 40px 80px;
}

.product-item>img {
	height: 100%;
	object-fit:contain;
}

.product-hover {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 0 25px 40px;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(171, 19, 19, 0.1) 0%, #ab1313 89.5%);
	border-radius: 8px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
}

.product-item:hover .product-hover {
	pointer-events: auto;
	opacity: 1;
}

.product-category {
	display: inline-flex;
	margin: 0 0 13px;
}

.product-category>span {
	display: inline-block;
	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	color: #fff;
	padding: 6px 13px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 20px;
}

.product-name {
	font-size: 24px;
	line-height: 29px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.product-explanation {
	min-height: 40px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 20px;
}

.product-hover>div:last-of-type {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.product-hover>div:last-of-type>span {
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
}

.product-hover>div:last-of-type>span>a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 40px;
	font-size: 14px;
	line-height: 17px;
	font-weight: 400;
	color: #fff;
}

.products .slide-next-02,
.products .slide-prev-02 {
	color: #888888;
	width: 60px;
	height: 60px;
	border: 1px solid rgba(136, 136, 136, 0.5);
	border-radius: 100%;
}

.products .slide-next-02:after,
.products .slide-prev-02:after {
	font-size: 14px;
}

.products .slide-next-02 {
	right: 160px;
	top: 60%;
	transform: translateY(-50%);
}

.products .slide-prev-02 {
	left: 160px;
	top: 60%;
	transform: translateY(-50%);
}

.btn-mall {
	display: block;
	width: 174px;
	height: 48px;
	border: 1px solid #f51b1b;
	border-radius: 50px;
	margin: 0 auto;
}

.btn-mall a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	padding: 15px 35px;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
	color: #f51b1b;
}

.btn-mall a:after {
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	background: url(/image/client/main/img-btn-mall-arr.png) 50% 50% / contain no-repeat;
}

.btn-mall:hover {
	background: #f51b1b;
}

.btn-mall:hover a {
	color: #fff
}

.btn-mall:hover a:after {
	background: url(/image/client/main/img-btn-mall-arr02.png) 50% 50% / contain no-repeat;
}

.newsletter {
	padding: 110px 0 190px;
	height: auto;
}

.newsletter .section-title-box {
	margin: 0 0 90px;
}

.newsletter-wrap {
	background: url(/image/client/main/newsletter-bg.png) center center / 100% auto no-repeat;
}

.newsletter-box {
	width: 1320px;
	height: 560px;
	background: linear-gradient(133.23deg, #ff4e4e 5.26%, #fe6b6b 23.74%, #222071 100%);
	border-radius: 10px;
	margin: 0 auto;
	overflow: hidden;
}

.newsletter-item {
	text-align: center;
}

.newsletter-item>img {
	margin: 0 0 20px;
	height: auto;
}

.newsletter-item>p {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	margin: 0 0 16px;
}

.btn-news-down {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 50px;
}

.btn-news-down>a {
	display: block;
	padding: 10px 30px;
	font-size: 14px;
	line-height: 17px;
	font-weight: 500;
	color: #fff;
}

.newsletter-box .swiper-horizontal {
	margin: 110px 132px 26px;
	overflow: hidden;
}

.newsletter .slide-next-03,
.newsletter .slide-prev-03 {
	color: #fff;
	width: 60px;
	height: 60px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 100%;
}

.newsletter .slide-next-03:after,
.newsletter .slide-prev-03:after {
	font-size: 14px;
}

.newsletter .slide-next-03 {
	right: 18%;
	top: 50%;
}

.newsletter .slide-prev-03 {
	left: 18%;
	top: 50%;
}

.newsletter .swiper-pagination-bullets.swiper-pagination-horizontal {
	position: static;
}

.newsletter .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
}

.newsletter .swiper-pagination-bullet-active {
	background: #fff;
}

.faq {
	display: flex;
	width: 100%;
	height: 220px;
}

.faq-box {
	position:relative;
	display: flex;
	flex-direction: column;
	width: 50%;
	height: 100%;
	overflow:hidden;
}

.faq-box:first-of-type:after {
	content:'';
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	display:block;
	width:100%;
	height:100%;
	background: url(/image/client/main/banner-01.jpg) 50% 50% / cover no-repeat;
	transition:transform 0.3s ease;
}

.faq-box:last-of-type:after {
	content:'';
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	display:block;
	width:100%;
	height:100%;
	background: url(/image/client/main/banner-02.jpg) 50% 50% / cover no-repeat;
	transition:transform 0.3s ease;
}

.faq-box:hover:after{
	transform:scale(1.4);
}

.faq-box>a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 43px 0 0;
}

.faq-box:first-of-type>a {
	padding-left: 300px;
}

.faq-box:last-of-type>a {
	padding-left: 50px;
}

.faq-tit {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 28px;
	line-height: 33px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 9px;
}

.faq-tit:after {
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	background: url(/image/client/main/img-btn-mall-arr02.png) 50% 50% / contain no-repeat;
}

.faq-dialog {
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

.main-modal-wrap {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 51;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 40px;
}

.main-modal {
    height: 500px;
}

.main-modal-box {
    width:100%;
    height: calc(100% - 42px);
}

.main-modal-box a{
	display:block;
	width:100%;
	height:100%;
}

.main-modal-box img {
    width: 100%;
    height: 100%;
}

.main-modal-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.main-modal-btn button {
    width: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 34px;
    padding: 4px 8px;
    color: #000;
}

@media screen and (max-width:1320px) {
	.section-content-box {
		max-width: calc(100% - 100px);
	}

	.product-search {
		width: calc(100% - 100px);
	}

	.product-list {
		width: calc(100% - 100px);
		margin: 0 auto;
		padding: 20px 0 0;
		overflow: hidden;
	}

	.products .slide-next-02 {
		right: 20px;
	}

	.products .slide-prev-02 {
		left: 20px;
	}

	.newsletter-box {
		width: calc(100% - 100px);
	}

	.newsletter .slide-next-03 {
		right: 80px;
	}

	.newsletter .slide-prev-03 {
		left: 80px;
	}
}

@media screen and(max-width:1280px) {

}

@media screen and (max-width: 1024px) {
	.main-nav-bg{
		display:none;
	}

	.main-visual-text{
		left:35%;
	}
	
	.main-visual-content .slide-next-01>span,
	.main-visual-content .slide-prev-01>span{
		display:none;
	}

	.product-search{
		flex-direction: column-reverse;
		box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.14);
		background: #fff;
		height: auto;
		border-radius: 10px;
		padding: 30px 20px;
	}

	.product-search>div{
		width:100%;
	}

	.product-search .search-bar{
		padding: 0;
		border-radius:10px 10px 0 0;
		margin: 0 0 10px;
	}

	.product-search .category{
		border-radius:0 0 10px 10px;
		background:#fff;
		color:#555;
		padding: 0;
	}

	.product-search .category>p{
		display:none;
	}

	.category label:before{
		border:1px solid #555;
	}

	.section-content-box{
		max-width: calc(100% - 40px);
	}	

	.products:before{
		display:none;
	}

	.products:after{
		width: 100%;
		left: 0;
		background: #F2F1F5;
	}

	.product-list{
		width:calc(100% - 10px);
	}
	
	.product-list .swiper-horizontal{
		width:100%;
		max-width: initial;
	}
	
	.products .slide-next-02,
	.products .slide-prev-02{
		display:none;
	}

	.faq{
		flex-direction:column;
		height: 440px;
	}
	
	.faq-box{
		width:100%;
	}

	.faq-box:first-of-type>a,
	.faq-box:last-of-type>a{
		padding:43px 60px;
	}
}

@media screen and (max-width: 768px) {
	.main-visual-content .slide-next-01, .main-visual-content .slide-prev-01{
		display:none;
	}

	.product-item.swiper-slide{
		height:500px;
	}

	.newsletter-box{
		height:600px;
	}
}

@media screen and (max-width: 640px) {
	.main-visual-ani>p>span{
		font-size: 50px;
		line-height: 64px;
	}
	
	.product-item.swiper-slide{
		height:285px;
	}

	.product-name {
		font-size: 20px;
		line-height: 25px;
	}

	.newsletter-box{
		width: 100%;
		height: 500px;
		border-radius: 0;
	}

	.newsletter-box .swiper-horizontal{
		margin: 80px 80px 10px;
	}
	
	.newsletter .slide-next-03,
	.newsletter .slide-prev-03 {
		display:none;
	}

	.main-modal-wrap{
	flex-direction: column;
	align-items: center;
	overflow-y: auto;
	}
}

@media screen and (max-width:480px){
	.main-visual-ani>p>span{
		font-size: 40px;
		line-height: 54px;
	}

	.product-search{
		width:calc(100% - 20px);
	}

	.product-name {
		font-size: 18px;
		line-height: 23px;
	}

	.product-item>img{
		width:100%;
		height:100%;
		object-fit:contain;
	}

	.product-hover>div:last-of-type>span>a{
		text-align:center;
		padding:10px 20px;
	}
	
	.category>form>div{
		width:calc(100% / 3 - 10px);
	}

	.main-modal-btn{
		flex-direction:column;
	}

	.main-modal-btn button{
		width:100%;
	}

	.main-modal{
		height:700px;
	}

	.main-modal-box{
		height:calc(100% - 84px);
	}
}

@media screen and (max-width:420px){
	.main-visual-text{
		left: 0;
		right: 0;
		transform: translateY(-50%);
		padding: 0 0 0 20px;
	}

	.category>form>div{
		width:calc(100% / 2 - 10px);
	}

	.products{
		padding:200px 0 80px;
	}
}

@media screen and (max-width:360px){
	.product-item.swiper-slide{
		padding: 60px 0px 80px;
	}

	.main-modal-wrap{
		padding:20px;	
	}
}

@media screen and (max-width:320px){
	.product-hover>div:last-of-type>span>a{
		padding:10px 10px;
	}

	.main-modal-wrap{
		padding:5px 10px;
	}
}
