@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

@font-face {
  font-family: 'AppleSDGothicNeo';
  font-weight:300;
  src: url('../fonts/AppleSDGothicNeoL.ttf') format('truetype'), url('../fonts/AppleSDGothicNeoL.woff') format('woff'), url('../fonts/AppleSDGothicNeoL.woff2') format('woff2'), url('../fonts/AppleSDGothicNeoL.eot');
}
@font-face {
  font-family: 'AppleSDGothicNeo';
  font-weight:400;
  src: url('../fonts/AppleSDGothicNeoR.ttf') format('truetype'), url('../fonts/AppleSDGothicNeoR.woff') format('woff'), url('../fonts/AppleSDGothicNeoR.woff2') format('woff2'), url('../fonts/AppleSDGothicNeoR.eot');
}
@font-face {
  font-family: 'AppleSDGothicNeo';
  font-weight:500;
  src: url('../fonts/AppleSDGothicNeoM.ttf') format('truetype'), url('../fonts/AppleSDGothicNeoM.woff') format('woff'), url('../fonts/AppleSDGothicNeoM.woff2') format('woff2'), url('../fonts/AppleSDGothicNeoM.eot');
}
@font-face {
  font-family: 'AppleSDGothicNeo';
  font-weight:600;
 src: url('../fonts/AppleSDGothicNeoSB.ttf') format('truetype'), url('../fonts/AppleSDGothicNeoB.woff') format('woff'), url('../fonts/AppleSDGothicNeoB.woff2') format('woff2'), url('../fonts/AppleSDGothicNeoB.eot');
}
@font-face {
  font-family: 'AppleSDGothicNeo';
  font-weight:700;
  src: url('../fonts/AppleSDGothicNeoB.ttf') format('truetype'), url('../fonts/AppleSDGothicNeoB.woff') format('woff'), url('../fonts/AppleSDGothicNeoB.woff2') format('woff2'), url('../fonts/AppleSDGothicNeoB.eot');
}
@font-face {
   font-family: 'AppleSDGothicNeo';
  font-weight:800;
  src: url('../fonts/AppleSDGothicNeoEB.ttf') format('truetype'), url('../fonts/AppleSDGothicNeoEB.woff') format('woff'), url('../fonts/AppleSDGothicNeoEB.woff2') format('woff2'), url('../fonts/AppleSDGothicNeoEB.eot');
}
@font-face {
  font-family: 'AppleSDGothicNeo';
  font-weight:900;
  src: url('../fonts/AppleSDGothicNeoH.ttf') format('truetype'), url('../fonts/AppleSDGothicNeoH.woff') format('woff'), url('../fonts/AppleSDGothicNeoH.woff2') format('woff2'), url('../fonts/AppleSDGothicNeoH.eot');
}

*{
	outline:none;
	word-break:keep-all;
}

html,body{
	width:100%; font-family: 'AppleSDGothicNeo', 'Noto Sans KR', sans-serif;
	font-size:1em;
	font-weight:500;
	word-break:keep-all;
	scroll-behavior: smooth;
	transition:ease 0.5s;
}
html::-webkit-scrollbar {
    width: 10px;
  }
html::-webkit-scrollbar-thumb {
    background-color: #1a7c57;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
  }
html::-webkit-scrollbar-track {
    background-color: rgba(255,255,255.3);
    border-radius: 10px;
    /* box-shadow: inset 0px 0px 5px rgba(255,255,255, .3); */
  }


[animate] {opacity: 0; transition-property: opacity,transform; transition-timing-function: cubic-bezier(.25,.46,.45,.94); transition-duration: .5s;}
[animate=fade-up] {transform: translate3d(0,80px,0);}
[animate=fade-up][animate-transform="y-200"] {transform: translate3d(0,200px,0);}
[animate=fade-up][animate-dutaion="1s"] {transition-duration: 1s;}
[animate=fade-up][animate-dutaion="1.2s"] {transition-duration: 1.2s;}
[animate=fade-up][animate-dutaion="1.3s"] {transition-duration: 1.3s;}
[animate=fade-up][animate-dutaion="1.4s"] {transition-duration: 1.4s;}
[animate=fade-up][animate-dutaion="1.6s"] {transition-duration: 1.6s;}
[animate=fade-up][animate-dutaion="1.8s"] {transition-duration: 1.8s;}
[animate=fade-up][animate-dutaion="2s"] {transition-duration: 2s;}
[animate=fade-up][animate-dutaion="2.2s"] {transition-duration: 2.2s;}

[animate].on {opacity: 1;}
[animate=fade-up].on {transform: translateZ(0);}

.wrap{
}

/* 이미지 슬라이드 */
.main_visual {
	position: relative;
	overflow: hidden;
	height: 100vh;
}
.mv_slider {
	height:100%;
}
.mv_slider .mv_slide_item {
	position: relative;
	width: 100%;
	height: 100%;
}
.mv_slide_item1{
  background:url('../img/main_visual1.png')no-repeat center center / cover;
}
.mv_slide_item2{
  background:url('../img/main_visual2.png')no-repeat center center / cover;
}
.mv_slide_item3{
  background:url('../img/main_visual3.png')no-repeat center center / cover;
}
.mv_txt_wrap{
	position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);	
	padding:0 20px;
	width:100%;
}
.mv_txt{
    text-align: center;
}
.mv_txt h1{
	color: #05613e;
    font-size: 3.5em;
    font-weight: 900;
	line-height: 1.4;
}
.mv_txt span{
	color: #000;
    font-size: 2em;
    font-weight: 500;
	display:block;
}
.mv_btn{
	margin-top:35px;
}
.mv_inquiry_btn{
	display:inline-block;
	font-size: 1.3em;
    color: #fff;
    background: #1a7c57;
    padding: 14px 40px 14px 54px;
    border-radius: 50px;
	margin:20px auto;
}
.mv_inquiry_btn img{
	display: inline-block;
    margin-bottom: 5px;
    margin-left: 20px;
}
.mv_more_btn{
	display:block;
	font-size: 1em;
    font-weight: 500;
}
.mv_inquiry_btn{
}
.slick-list, .slick-track{
	height:100%;
}
/* 진행 표시줄 */
.progress {
	display: flex;
	position: absolute;
	left: 50%;
	bottom: 50px;
	transform: translate(-50%, 0);
}
.progress > li {
	position: relative;
	flex-grow: 1;
	cursor: pointer;
	width:78px;
	height: 4px;
	background: rgba(255,255,255,0.5);
	margin:0 4px;
}
.progress > li .bar {
	position: absolute;
	top: 0;left: 0;
	width: 0;
	height: 4px;
	background-color: #ffffff;
}
.progress > li.active .bar {
	animation:countingBar 3.5s linear forwards;
}
@keyframes countingBar {
    0% {width: 0;}
    100% {width:100%;}
}

.flex{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.inner{
	max-width:1500px;
	width:100%;
	padding:150px 50px;
	margin:0 auto;
}
.pd_inner{
	padding:100px 25px;
}


.con_tit{
	font-size:2em;
	color:#000;
	font-weight:800;
	letter-spacing: -0.04em;
    line-height: 1.4;
	word-break:keep-all;
}
.con_tit span{
	font-size:0.5em;
	display:block;
	font-weight:600;
	margin-top:20px;
}
.con_txt{
	padding-top:18px;
}
.con_txt p{
	padding-top:15px;
	font-size:1.2em;
}

.img_br{
	overflow:hidden;
	border-radius:35px;
}
.img_br img{
	display:block;
	width:100%;
}

/* intro */
.intro_wrap{
	align-items: center;
	justify-content: space-between;
}
.intro_img{
	width:45%;
}
.intro_txt{
	width:45%;
}

/* balloon */
.balloon{
	background:#fff6e3;
}
.balloon .inner{
	padding:100px 25px;
}
.balloon .con_tit{
	text-align:center;
	margin-top:80px;
	color:#05613e;
}
.bubble {
  position: relative;
  text-align: center;
  padding: 20px 35px;
  color: #000;
  border-radius: 80px;
  font-size: 1.5em;
  font-weight: 600;
}

.bubble:before {
	content: "";
    position: absolute;
    bottom: -15px;
    right: 20%;
    height: 18px;
    border-right: 30px solid #ddc6a5;
    background: #ddc6a5;
    -webkit-border-bottom-right-radius: 40px 25px;
    -moz-border-radius-bottomright: 40px 25px;
    border-bottom-right-radius: 40px 25px;
    -webkit-transform: translate(0, -2px);
    -moz-transform: translate(0, -2px);
    -ms-transform: translate(0, -2px);
    -o-transform: translate(0, -2px);
    transform: translate(0, -2px);
}

.bubble:after {
	content: "";
    position: absolute;
    bottom: -17px;
    right: 20%;
    width: 60px;
    height: 15px;
    background: #fff6e3;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-radius-bottomright: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    -webkit-transform: translate(-30px, -2px);
    -moz-transform: translate(-30px, -2px);
    -ms-transform: translate(-30px, -2px);
    -o-transform: translate(-30px, -2px);
    transform: translate(-20px, -2px);
}
.bubble1{
	background:#ddc6a5;
	left:28%;
	max-width:370px;
}
.bubble2{
	background:#ffc266;
	left:50%;
	margin-top:30px;
	max-width:420px;
}
.bubble2:before{
  border-right:60px solid #ffc266;
  background:#ffc266; 
}
.bubble3{
	background:#f9b579;
	left:15%;
	margin-top:-15px;
	max-width:480px;
}
.bubble3:before{
  border-left: 30px solid #f9b579;
  background:#f9b579; 
}
.bubble3:before {
    left: 20%;
    right: auto;
    border-left: 30px solid #f9b579;
	border-right:0;
    background: #f9b579;
    -webkit-border-bottom-left-radius: 40px 25px;
    -moz-border-radius-bottomleft: 40px 25px;
    border-bottom-left-radius: 40px 25px;

    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
	
}

.bubble3:after {
    left: 28%;
    right: auto;
    background: #fff6e3;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-radius-bottomleft: 20px 20px;
    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
}


/* product */
.product .con_tit{
	text-align:center;
	margin-bottom:150px;
}
.product_item {
    padding-top: 80px;
    width: 50%;
    padding-right: 10%;
	padding-top: 30%
}
.product_box2{
	margin:280px 0 100px 0;
}
.product_box2 .product_item{
	width:50%;
	padding-left:10%;
	padding-right:0;
}
.product_box{
	justify-content: space-between;
	align-items: flex-start;
}
.product_item .product_top{}
.product_top{}

.product_name {
    color: #1a7c57;
    position: relative;
    font-size: 3em;
    font-weight: 800;
}
.product_name span {
    display: block;
    position: absolute;
    left: -10px;
    bottom: -40px;
    color: rgba(0, 0, 0, 0.05);
    font-size: 3em;
    font-weight: 900;
}
.product_des {
    font-size: 1.6em;
    line-height: 1.3;
    padding: 15px 0 25px 0;
    font-weight: 700;
}
.product_more {
    display: table;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #2a2a2a;
    font-weight: 800;
    margin-bottom: 50px;
}
.product_more img{
	display: inline-block;
    margin-bottom: 3px;
    margin-left: 20px;
    width: 10px;
}

.product_txt {
    font-size: 1.1em;
}
.product_txt p{
	padding-top:5px;
	word-break:keep-all;
}
.product_txt_des {
    background: #eef4fb;
    padding: 20px 25px;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 25px;
}
.product_txt_des p{
	padding-top:0;
}
.product_txt_des span{
    font-weight: 500;
    display: block;
    padding-top: 15px;
	line-height:1.3;
}
.product_img{
	width:45%;
	position: sticky;
	top:20%;
}


/* certified */
.certified{
	background:#fce6bd;
}
.certified_wrap{
	justify-content: center;
	column-gap: 6%;
    margin-top: 50px;
}
.certified .con_tit{
	color:#521f01;
	text-align:center;
	font-weight:500;
}
.certified .con_tit b{
	display:block;
}
.certified_icon{
	width:200px;
	height:200px;
	border-radius:100%;
	position:relative;	
	background:#fff;
	transition: border 0.3s ease-in-out;
}
.certified_icon img{
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:45%;
}
.certified_item p{
	text-align: center;
    color: #521f01;
    display: block;
    margin-top: 20px;
    font-weight: 800;
    font-size: 1.3em;
}
.certified_item p img{
	transform:scale(0);
	transition: transform, margin 0.3s ease-in-out;
	width:0;
}
.certified_item:hover p img{
	transform:scale(1);
	display: inline-block;
    margin: 0 0 0 10px;
	width:auto;
}
.certified_item:hover .certified_icon{
	border:6px solid #edc1a4;
}


/* news */
.news{}
.news .con_tit{
	font-weight:700;
	font-size:1.7em;
}
.news_wrap{
	margin-top:40px;
}

/* slogans */
.slogans{
	/* background-image:url('../img/slogans.png');
	background-repeat:no-repeat;
	background-position:center center;
	background-attachment:fixed; */
	overflow:hidden;
	position:relative;
}
.slogans_bg{
	/* position: fixed;
	top: 0; 
	left: 0; 
	width: 100%;
	height: 100%;
	background-image: url('../img/slogans.png');
	background-size: cover;
	background-position: center center;
	transform: translateZ(0);
	will-change: transform; */
	clip: rect(0, auto, auto, 0);
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;

}
.slogans_bg_img{
	background-image: url('../img/slogans2.png');
	position: fixed;
	  display: block;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background-size: cover;
	  background-position: center center;
	  z-index:-1;
}
.slogans_txt {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    line-height: 1.4;
    font-weight: 700;
}
.slogans_txt span{
    display: block;
    font-size: 0.6em;
    padding-top: 50px;
    font-weight: 400;
}

/* inquiry */
.inquiry{}
.inquiry_wrap{
	border-radius: 30px;
    overflow: hidden;
	margin-top:35px;
}
.inquiry_img{
	width:50%;
	background:url('../img/inquiry_img.png')no-repeat center center / cover;
}
.inquiry .con_tit{
	.display: flex;
    justify-content: space-between;
	align-items: center;
}
.inquiry .con_tit span.inquiry_num{
	font-size: 0.58em;
    display: block;
    font-weight: 500;
    letter-spacing: 0.03em;
    display: block;
    padding: 0 25px;
    border: 1px solid #bcbcbc;
    border-radius: 30px;
    height: 56px;
    line-height: 56px;
	margin-top:0;
}
.inquiry_txt{
	background:#f5f9ff;
	padding:50px 45px;
	width:50%;
}

/* faq */
.faq .inner{
	padding: 50px 50px 150px 50px;
}
.accord{
	margin-top:20px;
}
.accord .insta-trans,.accord .insta-trans *{
	transition:none! important
}
.accord .accord-panel{
	/* margin:0 0 1.5em; */
	/* padding:20px 0; */
	position: relative;
    font-size: 1.05em;
    padding-left: 20px;
}
.accord-panel:before{
	content:'A.';
	display:block;
	position:absolute;
	left:0;
}
.accord .accord-panel.concealed,.accord .accord-panel.revealed{
	height:auto;
	overflow:hidden;
	opacity:1;
	transition:.25s linear;
}
.accord .accord-panel.concealed{
	height:0! important;
	margin:0;
	opacity:0;
	transition-delay:0s
}
.accord .accord-panel.revealed{
	padding-top:20px;
}
.accord .accord-item:has(>.accord-panel.revealed)>.accord-heading>.accord-chevron{
	transform:scaleY(-1);
	filter: invert(10%) sepia(95%) saturate(4731%) hue-rotate(207deg) brightness(97%) contrast(101%);
}
.accord .accord-item{
	overflow:hidden;
	transition:.25s linear;
	border-bottom: 1px solid #d6d6d6;
	padding:20px 0;
}
.accord .accord-heading{
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2em;
    transition: .25s linear;
	position:relative;
	padding-left:25px;
}
.accord-heading:before{
	content:'Q.';
	display:block;
	position:absolute;
	left:0;
	top:0;
}
.accord .accord-heading:focus,.accord .accord-heading:hover{
	color:#004099
}
.accord-heading:focus:before, .accord-heading:hover:before{
	color:#004099
}
.accord .accord-item:has(.revealed){
	z-index:1;
	transition:.25s linear;
}

/* footer */
.footer{
	padding:100px 0;
	background:#222;
}
.footer_inner{
	max-width:1500px;
	width:100%;
	padding:0 50px;
	margin:0 auto;
	font-size:0.9em;
}
.footer_info{
	width:50%;
	padding-right:5%;
	color:#b3b3b3;
}
.footer_info img{
	width:120px;
	display:block;
	margin-bottom:15px;
}
.footer_info p{
	display:block;
}
.footer_info p span:after{
	display:inline-block;
	content:'|';
	padding:0 10px;
}
.footer_info p span:last-child:after{
	display:none;
}
.footer_info p.copy{
	padding-top:8px;
}
.footer_info p span a{
	color: #b3b3b3;
    pointer-events: unset;
    cursor: default;
}

.footer_sitemap{
	width:50%;
}
.footer_sitemap ul {
	display:flex;
	width: 100%;
    justify-content: flex-end;
}
.footer_sitemap ul li{
	padding-right:15%;
}
.footer_sitemap ul li:last-child{
	padding-right:0;
}
.footer_sitemap ul li a{
	color:rgba(255,255,255,0.8);
	display:block;
	font-weight:400;
	padding-bottom:10px;
}
.footer_sitemap ul li a:first-child{
	color:rgba(255,255,255,1);
	font-size:1.15em;
	font-weight:600;
}
.footer_sitemap ul li a:hover{
	color:rgba(255,255,255,1);
}


.preparing_page{
	width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.preparing_page_img{
	width: 100%;
    margin: 0 auto;
    text-align: center;
}
.preparing_page_img svg{
	max-width: 1000px;
    width: 100%;
}
.preparing_page_txt {
    margin-top: -120px;
}

.new_preparing_page{
	max-width:800px;
	width:100%;
	margin:0 auto;
	margin-bottom:200px;
	text-align:center;
}
.new_preparing_page .preparing_page_txt{
	margin-top:-80px;
}

.home_btn{
	display:inline-block;
	font-size: 1.2em;
    color: #fff;
    background: #1a7c57;
    padding: 14px 40px 14px 54px;
    border-radius: 50px;
	margin:30px auto;
}
.preparing_page_txt{
	
}
.preparing_page_txt p:nth-child(1){
	font-size:2.3em;
	font-weight:800;
	color:#000;
}
.preparing_page_txt p:nth-child(2){
	font-size:1.2em;
	padding-top:10px;
	color:#000;
}
.home_btn img{
	display: inline-block;
    margin-bottom: 5px;
    margin-left: 20px;
}



@media screen and (max-width:1500px){
	
}

@media screen and (max-width:1400px){
	.inner{
		padding: 100px 50px;
	}
	.con_tit{
		font-size:1.7em;
	}
	.con_tit span{
		font-size:0.6em;
	}
	.mv_txt h1{
		font-size:3em;
	}
	.mv_txt span{
		font-size: 1.8em;
	}
	.intro_txt{
		width:45%;
	}
	.intro_txt .con_txt p{
		word-break:keep-all;
	}
	.intro_txt .con_txt p br{
		display:none;
	}
	.bubble{
		font-size:1.2em;
	}
	.balloon .inner {
		padding: 80px 25px;
	}
	.balloon .con_tit {
		margin-top: 60px;
	}
	.product_name{
		font-size:2.5em;
	}
	.product .con_tit{
		margin-bottom:100px;
	}
	.product_name span{
		bottom: -20px;
	}
	.product_item{
		padding-right:5%;
	}
	.product_box2 .product_item{
		padding-left:5%;
	}
	.certified_icon{
		width:150px;
		height:150px;
	}
	
	.slogans_txt{
		font-size:2em;
	}
	.inquiry .con_tit span.inquiry_num{
		font-size:0.55em;
	}
	.news .con_tit{
		font-size:1.5em;
	}
	.faq .inner{
		padding: 50px 50px 150px 50px;
	}
	.footer {
		padding:80px 0;
	}
	.footer_inner {
		flex-direction: column-reverse;
	}
	.footer_sitemap {
		width: 100%;
	}
	.footer_sitemap ul {
		display: flex;
		width: 100%;
		justify-content: center;
	}
	.footer_info {
		width: 100%;
		padding-right:0;
		text-align:center;
	}
	.footer_sitemap ul li {
		padding: 0 5%;
	}
	.footer_sitemap ul li:last-child{
		padding:0 5%;
	}
	.footer_info img{
		margin:30px auto;
		margin-top:60px;
	}

	
}

@media screen and (max-width:1118px){
	.mv_txt h1{
		font-size:2.6em;
	}
	.mv_txt span{
		font-size: 1.5em;
	}
	.con_tit{
		font-size:1.4em;
	}
	.con_txt p{
		font-size:1em;
	}
	.bubble {
        font-size: 1.1em;
    }
	.bubble3{
		margin-top:15px;
	}
	.balloon .inner {
        padding: 60px 25px;
    }
	.balloon .con_tit {
        margin-top: 40px;
    }
	.product_name span{
		font-size:2.5em;
	}
	.product_des {
		font-size: 1.2em;
		line-height: 1.4;
	}
	.product_name {
        font-size: 2.3em;
    }
	.product_txt {
		font-size: 1em;
	}
	.product_box2 {
		margin: 180px 0 50px 0;
	}
	.product_more{
		font-size:0.9em;
	}
	.product_item{
		padding-right:0;
	}
	.product_box2 .product_item {
        padding-left: 0;
    }
	.news .con_tit {
        font-size: 1.3em;
    }
	.inquiry .con_tit span.inquiry_num {
        font-size: 0.7em;
    }
	.inquiry_img{
		width:40%;
	}
	.inquiry_txt{
		width:60%;
	}    
	.slogans_txt {
        font-size: 1.5em;
    }
	.slogans_txt span {
		font-size: 0.8em;
		word-break:keep-all;
	}
	.inquiry_img{
		width:0;
	}
	.inquiry_txt{
		width:100%;
	}
	.accord .accord-heading{
		font-size:1.1em;
	}
	.accord .accord-panel{
		font-size:1em;
	}
	.footer {
        padding: 40px 0;
    }
	.footer_sitemap{
		display:none;
	}
	.footer_info img {
        margin: 30px auto;
        margin-top: 0;
    }
	.footer_inner{
		font-size:0.85em;
	}

	
}

@media screen and (max-width:912px){
	.inner{
		width:100%;
		padding:80px 60px;
	}
	.bubble1 {
		left: 20%;
		max-width:320px;
	}
	.bubble2{
		left:45%;
		max-width:350px;
	}
	.bubble3{
		left:5%;
	}
	.intro_wrap{
		flex-direction: column;
	}
	.intro_img{
		width:100%;
		height:400px;
	}
	.intro_txt {
        width: 100%;
        margin-top: 40px;
    }
	.intro_txt .con_tit br{
		display:none;
	}
	.intro_txt .con_txt p{
		padding-top:0;
	}
	.product_img {
		width: 100%;
		position: static;
		height:450px;
	}
	.product .con_tit{
		margin-bottom:60px;
	}
	.product_des {
		word-break:keep-all;
	}
	.product_des br{
		display:none;
	}

	.product_item{
		width:100%;
		padding-top:60px;
	}
	.product_box1{
		flex-direction: column-reverse;
	}	
	.product_box2 {
		flex-direction: column;
        margin: 80px 0 0 0;
    }
	.product_box2 .product_item{
		width:100%;
	}
	.product_name span {
        bottom: -20px;
        right: 0;
		left:auto;
    }
	.product_des {
        font-size: 1.1em;
		padding:15px 0 15px 0;
    }
	.product_name {
        font-size: 2em;
    }
	.product_more{
		padding:8px 22px;
		margin-bottom:30px;
	}
	.certified_icon {
        width: 120px;
        height: 120px;
    }
	.certified_item p{
		font-size:1em;
	}
	
	.certified_icon img{
		width:40%;
	}
	.faq .inner{
		padding: 50px 60px 80px 60px;
	}
	.footer .inner{
		padding:0 60px;
	}
}

@media screen and (max-width:768px){
	.eng_mv_txt br{
		display:none;
	}
	.mv_txt h1 {
        font-size: 2em;
    }
	.mv_txt span {
        font-size: 1.2em;
    }
	.mv_inquiry_btn {
		font-size: 1.1em;
		padding: 12px 30px 14px 44px;
		margin:10px auto;
	}
	.bubble1{
		left:5%;
	}
	.bubble2 {
        left: 10%;
    }
	.certified_wrap{
		column-gap:2%;
	}
	.intro_img{
		height:auto;
	}
	.product_img{
		height:auto;
	}
	.slogans{
		height:300px;
	}
	.home_btn {
		font-size: 1.1em;
		padding: 12px 30px 14px 44px;
		margin:10px auto;
	}
	.preparing_page_img{
		overflow: hidden;
		position: relative;
		height: 70%;
	}
	.preparing_page_img svg {
		width: 800px;
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
    }
	.preparing_page_txt {
		margin-top: -120px;
	}
	.new_preparing_page{
		margin-bottom:80px;
	}
	.new_preparing_page .preparing_page_txt {
		margin-top: -40px;
	}


}	
@media screen and (max-width:600px){
    .mv_txt h1 {
        font-size: 2em;
        word-break: keep-all;
    }
	.mv_txt span {
        font-size: 1.2em;
        line-height: 1.3;
		padding:0 50px;
		margin-top:10px;
    }
	.inner{
		padding:80px 25px;
	}
	.bubble1 {
        left: 5%;
		max-width:250px;
    }
	.bubble2 {
        left: 13%;
		max-width:280px;
    }
	.bubble3{
		max-width:300px;
	}
	.bubble3:before {
		left: 20%;
		bottom: -20px;
	}
	.bubble3:after {
		left: 32%;
		height:18px;
		bottom:-20px;
	}
	.product .con_tit {
		word-break:keep-all;
	}
	.product .con_tit br{
		display:none;
	}
	.product_img{
		height:auto;
	}
	.product_item{
		padding-top:40px;
	}
	.product_des {
        padding: 5px 0 10px 0;
    }
	.product_name {
        font-size: 1.6em;
        font-weight: 800;
    }
	.product_name span {
        font-size: 2em;
    }
	.product_box2{
		margin:110px 0 0 0;
	}
	.product_txt p{
		padding-top:0;
	}
	.product_txt_des span{
		line-height:1.5;
	}
	.product_more{
		margin-bottom:30px;
	}
	.product_txt {
        border-top: 1px solid #ddd;
        padding-top: 25px;
    }
	.product_more img{
		margin-bottom:2px;
	}
	.certified_wrap{
		flex-wrap:wrap;
		column-gap: 0;
		margin-top:20px;
	}
	.certified_item{
		width:50%;
		margin-top:15px;
	}
	.certified_item p{
		margin-top:10px;
	}
	.certified_icon {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
	.news .inner{
		padding:80px 25px 40px 25px;
	}
	.slogans{
		height:400px;
		overflow: hidden;
	}
	.slogans_bg {
		clip: unset;
	}
	.slogans_bg_img{
		height:500px;
		position:absolute;
	}
	.accord .accord-heading{
		align-items: flex-start;
	}
	.accord-chevron{
		width: 15px;
		display: block;
		padding-top: 6px;
	}
	.accord .accord-item:has(>.accord-panel.revealed)>.accord-heading>.accord-chevron{
		transform: scaleY(-1) translateY(-4px);
	}
	.inquiry_txt {
        padding: 30px 25px;
    }
	.inquiry .con_tit span.inquiry_num {
		padding: 0 15px;
		height: 40px;
		line-height: 40px;
	}
	.faq .inner {
        padding: 20px 25px 80px 25px;
    }
	.footer_info p span{
		display:inline-block;
		padding:0 10px;
	}
	.footer_info img{
		width:100px;
	}
	.footer_info p span:after{
		display:none;
	}
	.preparing_page_img{
		height: 80%;
	}
	.preparing_page_img svg {
        width: 500px;
	}
	.preparing_page_txt p:nth-child(1) {
		font-size: 1.6em;
	}
	.preparing_page_txt p:nth-child(2){
		font-size:1.1em;
	}
	.home_btn {
        font-size: 1.1em;
        padding: 10px 30px 10px 44px;
        margin: 30px auto;
    }
}