@import
	url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap')
	;

body {
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	text-decoration: none;
	color: #343434;
}

ul, li {
	list-style: none;
}

a {
	font-family: 'Didact Gothic', sans-serif;
	font-family: 'Poppins', sans-serif;
	color: inherit;
}

.login {
	/* 	margin-left: 50px; */
	display: flex;
	gap: 10px;
}

.login a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.login img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

.no-italic {
	font-style: normal !important;
	color: #007BC3;
}
/* 기생충 모달영역 */
.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 100;
	display: none;
}

.modal_con {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64%;
	display: flex;
	background: #fff;
}

.modal_con>img {
	width: 39%;
}

.modal_con ul {
	margin-left: 50px;
	display: grid;
	align-items: center;
	align-content: center;
}

.modal_con ul li:nth-child(1) {
	font-size: 2em;
	font-weight: 700;
	color: #007BC3;
	font-style: italic;
}

.modal_con ul li:nth-child(2) {
	font-size: 1.7em;
}

.modal_con ul li:nth-child(3) {
	font-size: 1.3em;
	font-weight: 700;
	margin-top: 50px;
}

.modal_con ul li:nth-child(4) p {
	max-width: 540px;
	word-break: keep-all;
	margin-top: 8px;
}

.modal_btn {
	cursor: pointer;
	position: absolute;
	top: 25px;
	right: 30px;
	background: none;
}
/* 헤더영역 */
header {
	position: fixed;
	top: 0;
	left: 0;
	height: 80px;
	width: 100%;
	background: #fff;
	z-index: 1000;
	border-bottom: 1px solid #ddd;
}

header nav {
	position: relative;
	margin: auto;
	max-width: 1440px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-text {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu {
	display: flex;
	gap: 60px;
}

.headerList {
	display: flex;
	width: 60%;
	height: 80px;
	justify-content: space-evenly;
	align-items: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	border-radius: 50px;
	position: absolute;
	left: 20%;
	top: -150px;
	background-color: #FFFF;
}

.logo img {
	max-width: 180px;
	margin-top: 4px;
}

header .gnb {
	line-height: 80px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .gnb .menu {
	display: flex;
	gap: 60px;
}

header .gnb li {
	font-size: 1.2em;
	font-weight: 700;
	cursor: pointer;
}

header .gnb li span:hover {
	color: #007BC3;
}
/*헤더 로그인 영역*/
.login {
	/* 	margin-left: 50px; */
	display: flex;
	gap: 10px;
}

.login a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.login img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

/* 헤더 언어영억 */
.languageBox {
	display: block;
	position: relative;
	width: 80px;
	height: 28px;
	margin-left: 60px;
}

.languageBox a {
	font-size: 14px;
	font-weight: 700;
}

.langEng {
	width: 100%;
	height: 100%;
	border: 1px solid #ccc;
	border-radius: 20px;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
	cursor: pointer;
}

.langEng>p {
	font-size: 14px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}

.langEng.ckEvent>p {
	color: #fff;
}

.langEng.ckEvent {
	background: #007BC3;
	border-color: #007BC3;
}

.langEng.ckEvent .far {
	color: #fff;
	rotate: 180deg;
}

.far {
	transition: all .4s;
}

.far::after {
	content: '\f107';
	font-family: "Font Awesome 5 Pro";
	font-weight: 600;
}

.orderlang {
	position: absolute;
	top: 32px;
	left: 1px;
	width: 100%;
	height: 0;
	border: 1px solid #ccc;
	background: #fff;
	padding: 0 15px;
	border-radius: 20px;
	z-index: -10;
	transition: all .25s;
	display: none;
}

.orderlang.on {
	height: 28px;
	display: block;
	z-index: 100;
}

.orderlang a {
	display: block;
	width: 100%;
	text-align: left;
	transition: all .2s;
}

.orderlang a span {
	position: relative;
	display: inline-block
}

.orderlang a span:before {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 0;
	display: block;
	height: 1px;
	width: 0;
	background-color: #007BC3;
	transition: all .3s;
}

.orderlang a:hover span:before {
	width: 100%;
}

/* ----헤더영역 끝 */
.topscroll {
	cursor: pointer;
	width: 52px;
	height: 52px;
	border-radius: 100px;
	position: fixed;
	right: 40px;
	bottom: 40px;
	background: #007BC3;
	z-index: 100;
}

.topscroll span {
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	display: flex;
	justify-content: center;
}

.topscroll span img {
	width: 45%;
	margin-top: 10px;
}
/* 메인 이미지 텍스트 영역 */
.main {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.main_bg {
	width: 100%;
	position: absolute;
	left: 0;
	top: 80px;
	/* object-fit: cover; */
}

.tit {
	width: 100%;
	height: 90px;
	position: relative;
	/* top: 50%;
    transform: translateY(-50%); */
	z-index: 10;
	position: relative;
}

.tit h1 {
	/* 	color: #fff; */
	/* 	font-size: 66px; */
	/* 	font-weight: 700; */
	/* 	text-align: center; */
	/* 	margin-top: 40px; */
	/* 	position: absolute; */
	/* 	width: 100%; */
	/* 	top: 50%; */
	/* 	left: 50%; */
	/* 	transform: translate(-50%, -50%); */
	
}
/* ----메인 이미지 텍스트 영역 끝 */
.contents {
	margin: 0 auto;
	max-width: 1440px;
	position: relative;
	top: 60px;
}

.main_text>span {
	display: block;
	max-width: 1440px;
	font-size: 1.125em;
	line-height: 1.6em;
	margin: auto;
	text-align: center;
}

.emp_text {
	font-weight: 700;
}

section {
	max-width: 100%;
	padding-top: 180px;
	text-align: center;
}

section h2 {
	/* 	background: url(../images/tit\ bar.png) no-repeat top center; */
	padding-top: 20px;
	font-size: 2.5rem;
}

/* 기생충 리스트 시작*/
.mobile_list {
	display: none;
}

.parasite_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	margin-top: 80px;
}

.species {
	width: 20%;
	padding: 0 1%;
	margin-bottom: 4%;
}

.species>.specie_box {
	cursor: pointer;
	border: 1px solid #ddd;
	display: block;
	transition: transform .8s;
}

.species>.specie_box:hover {
	transform: translateY(-30px);
	/* transition-property: all;
    transition-duration: .6s; */
}

.species img {
	width: 100%;
}

.species .name {
	border-bottom: 1px solid #ddd;
	height: 100px;
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	font-weight: 700;
	font-style: italic;
	margin: auto;
	line-height: 28px;
	padding-bottom: 6px;
}

.species .micron {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile_text {
	display: none;
}

/* ----- 기생충 리스트 끝*/

/* 사용방법 섹션 시작 */
#use {
	padding-top: 150px;
}

.click_con>div {
	display: none;
	margin-top: 60px;
}

.click_con>div.on {
	display: flex;
	justify-content: center;
	align-items: center;
}

.click_tit {
	display: flex;
	justify-content: center;
}

.click_tit h3.on {
	color: #007BC3;
	border-bottom: 4px solid #007BC3;
}

.click_tit h3 {
	cursor: pointer;
	padding-bottom: 5px;
	margin-top: 50px;
	color: #aaa;
	font-weight: 700;
	font-size: 1.4em;
}

.click_tit h3:hover {
	color: #007BC3;
	font-weight: 700;
}

.click_tit div {
	margin: 50px 40px 0 40px;
	border: 1px solid #aaa;
}

.pre_img {
	background: url(../images/use1.png);
	background-size: cover;
	background-position: center;
	height: 450px;
	width: 500px;
}

.mat_img {
	background: url(../images/use2.png);
	background-size: 100%;
	background-position: center;
	height: 450px;
	width: 500px;
}

.use_text {
	max-width: 638px;
	text-align: left;
	margin-left: 80px;
}

.use_text li {
	padding: 15px 0;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #aaa;
	font-size: 1.125em;
	min-width: 638px;
}

.use_text .number span {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	background: #5E5E5E;
	width: 28px;
	height: 28px;
	line-height: 28px;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	margin-right: 20px;
}

.use_text li:nth-child(3) {
	position: relative;
	align-items: flex-start;
}

.use_text .tip_text {
	margin-top: 6px;
	color: #007BC3;
	font-weight: 600;
}

.use_text .cau_text {
	color: #FF3154;
	font-weight: 600;
}

.use_text li:nth-child(5) {
	border: none;
	font-size: 1em;
	padding-top: 10px;
}
/* use microscope 사용법 */
#micro_text li {
	align-items: center;
}

#micro_text li:nth-child(4) {
	align-items: flex-start;
	word-break: keep-all;
}

#micro_text li:nth-child(5) {
	font-size: 1.125em;
	border-bottom: 1px solid #aaa;
}

#micro_text li:nth-child(6) {
	align-items: flex-start;
}

#micro_text li:nth-child(7) {
	border: none;
	font-size: 1em;
	padding: 10px 0 0 0;
}
/* ----사용방법 끝 */

/* 어플리케이션 시작 */
.app_tit {
	background-image: url(../images/request-bg.png);
}

.app_con {
	display: flex;
	justify-content: space-between;
}

.app_con li {
	margin-bottom: 200px;
	position: relative;
}

.app_con li:first-child {
	background-image: url(../images/application2.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 700px;
	height: 250px;
}

.app_con li:last-child {
	background-image: url(../images/application1.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 700px;
	height: 250px;
}

.app_con li div {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	align-items: center;
}

.app_con li span {
	color: #fff;
	font-size: 1.5em;
	font-weight: 600;
}

.app_con li button {
	margin: auto;
	margin-top: 16px;
	display: block;
	width: 300px;
	height: 60px;
}

.app_con li button a {
	color: #aaa;
	font-size: 1.5em;
	font-weight: 700;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 60px;
	transition: all 0.2s;
	background: #fff;
}

.app_con li button a:hover {
	color: #fff;
	background: #007BC3;
}
/*----- 어플리케이션 끝 */

/* 푸터영역 시작 */
footer {
	background: #343434;
}

.footerbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1440px;
	height: 100%;
	margin: auto;
}
/* .footerbox img{
    margin-bottom: 10px;
} */
.footerbox>div>p {
	margin-bottom: 20px;
}

.footerbox p, .footerbox .ag-name {
	font-size: 12px;
	color: #fff;
}

.footerbox .ag-name {
	font-size: 18px;
	font-weight: 700;
}

.footerbox .address>p:last-child {
	color: #aaa;
	width: 400px;
	margin-top: 5px;
	word-break: keep-all;
	font-weight: 300;
}

.parasite img {
	width: 32%;
}
/* ---푸터영역 끝 */

/* 모바일용 사용법 */
.usemobile {
	padding-top: 100px;
	display: none;
}

.usemobile .use_tit p {
	font-size: 1.5em;
}

.usemo_con {
	margin: 0 48px;
	display: flex;
	margin-top: 32px;
	justify-content: space-between;
}

.usemo_con>ul {
	width: 48%;
}

.usemo_con li:last-child {
	margin-top: 10px;
	font-size: 1.5em;
	font-weight: 700;
}

.pre_moimg {
	background: url(../images/use1.png);
	background-size: cover;
	background-position: center;
	height: 200px;
	width: 100%;
}

.mat_moimg {
	background: url(../images/use2.png);
	background-size: cover;
	background-position: right;
	height: 200px;
	width: 100%;
}

#mobliePopCrm1, #mobliePopCrm2, #moCrmOpen {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 100%;
	top: 0;
	z-index: 1000;
	background: #fff;
	transition: left 0.4s ease-in-out;
	-webkit-transform: translateZ(0);
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	overflow-y: auto;
}

.main_text .mobile_toptxt {
	display: none;
}
/* 팝업메뉴 */
.pop {
	display: none;
}

.pg-titbox {
	font-weight: 600;
}

.pg-titbox h2 {
	font-size: 24px;
	padding-left: 4px;
	font-weight: 600;
	font-family: "proxima-nova", sans-serif;
	letter-spacing: -0.7px;
}

.pg-titbox p {
	font-size: 60px;
	line-height: 70px;
}

@media ( max-width : 1440px) {
	.modal_con {
		width: 70%;
	}
	.modal_con ul li:nth-child(1) {
		font-size: 2vw;
	}
	.modal_con ul li:nth-child(2) {
		font-size: 1.6vw;
	}
	.modal_con ul li:nth-child(3) {
		font-size: 1.2vw;
		margin-top: 40px;
	}
	.modal_con ul li:nth-child(4) {
		font-size: 1vw;
	}
	.modal_con ul li:nth-child(4) p {
		max-width: 300px;
	}
	header nav {
		padding: 0 17px;
	}
	.tit h1 {
		/* 		font-size: 5vw; */
		
	}
	.specie_box .name {
		font-size: 1.7vw;
		height: 80px;
		line-height: 1.3em;
		padding-bottom: 7px;
	}
	.specie_box .micron {
		height: 60px;
		font-size: 1vw;
	}
}

@media ( max-width : 1000px) {
	.modal_con {
		width: 75%;
	}
	.modal_con>img {
		width: 43%;
	}
	.modal_con ul {
		margin-left: 40px;
	}
	.modal_con ul li:nth-child(3) {
		margin-top: 30px;
	}
	.modal_con ul li:nth-child(4) p {
		max-width: 220px;
	}
	.modal_btn {
		top: 15px;
		right: 10px;
	}
	.modal_btn img {
		width: 80%;
	}
}

@media ( max-width :768px) {
	#use {
		padding: 0;
	}
	.main_text .pc_toptxt {
		display: none;
	}
	.main_text .mobile_toptxt {
		display: block;
	}
	section {
		padding-top: 0;
	}
	section h2 {
		padding-top: 10px;
	}
	.use_tit {
		padding-top: 100px;
		display: none;
	}
	section h2 {
		font-size: 2.8em;
	}
	.usemobile {
		display: block;
	}
	header nav {
		height: 100%
	}
	header .logo {
		top: 22px;
	}
	header .gnb li {
		font-size: 1.5em;
	}
	header .gnb .menu {
		display: none;
	}
	.logo img {
		max-width: 140px;
	}
	.main {
		/* 		height: 260px; */
		
	}
	.tit h1 {
		/* 		font-size: 5.5vw; */
		
	}
	.main_text>span {
		padding: 0 24px;
		font-size: 12px;
		line-height: 1.6em;
		text-align: center;
		word-break: keep-all;
	}
	.crm_list {
		margin-top: 60px;
	}
	.crm_tit {
		background: #f5f5f5;
		height: 280px;
	}
	.crm_tit li {
		align-items: center;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
	.crm_tit h2 {
		line-height: 1.3em;
		margin: auto;
	}
	.crm_tit p {
		font-size: 3.2vw;
		width: 60%;
		margin: auto;
	}
	.parasite_list {
		margin: 0;
		display: none;
	}
	.mobile_list {
		display: block;
	}
	.mobile_specie>div {
		text-align: left;
		display: grid;
		align-content: center;
		margin-left: 32px;
	}
	.mobile_specie .name {
		font-size: 14px;
		font-weight: 700;
		font-style: italic;
	}
	.mobile_specie .micron {
		font-size: 14px;
	}
	.moarrow {
		position: absolute;
		top: 50%;
		right: 0;
		margin-right: 48px;
	}
	.moarrow-fold>img {
		transform: rotate(-180deg);
	}
	.species {
		width: 100%;
		border-bottom: 1px solid #aaa;
		margin: 0;
		padding: 48px 0px;
	}
	.species .specie_box {
		display: flex;
		align-items: center;
		border: none;
	}
	.specie_box img {
		width: 30%;
	}
	.species div {
		text-align: left;
		margin-left: 48px;
	}
	.mobile_text {
		align-content: center;
		padding: 48px 88px 48px 48px;
		background: #eee;
		text-align: left;
		word-break: keep-all;
		height: 100%;
		font-size: 0.8rem;
		border-bottom: 1px solid #ddd;
	}
	.mobile_text p {
		font-weight: 700;
		font-size: 1rem;
		margin-bottom: 10px;
	}
	.usemobile>li p {
		font-size: 1.5em;
	}
	.app_tit {
		height: 100%;
	}
	.app_tit li {
		height: 100%;
		align-content: center;
	}
	.app_tit span {
		color: #FFFFFF;
		font-size: 1.1rem;
		font-weight: bold;
	}
	.app_tit button:hover {
		cursor: pointer;
	}
	.app_con li {
		margin-bottom: 100px;
	}
	.app_con li:first-child {
		margin-left: 48px;
		margin-right: 16px;
	}
	.app_con li:last-child {
		margin-left: 16px;
		margin-right: 48px;
	}
	.app_con li div {
		width: 80%;
	}
	.app_con li span {
		line-height: 1em;
		font-size: 3.5vw;
		width: 50%;
	}
	.app_con li button {
		width: 100%;
	}
	.app_con li div button a {
		color: #007BC3;
		font-size: 1.8em;
	}
	.footerbox {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#footercon {
		/* 		margin: 0 48px; */
		
	}
	.cocoon {
		/* 		border-bottom: 1px solid #4a4a4a; */
		/* 		padding: 80px 0 60px 0; */
		
	}
	.parasite {
		padding-top: 60px;
	}
	.footerbox {
		display: block;
	}
	.footerbox img {
		width: 23%;
	}
	.parasite img {
		width: 30%;
	}
	.footerbox p {
		font-size: 1.5em;
		letter-spacing: -0.6px;
	}
	.footerbox .sc-display {
		color: #fff;
		letter-spacing: 0;
	}
	.footerbox .ag-name {
		display: inline;
		letter-spacing: -0.6px;
		font-weight: 700;
	}
	.footerbox .address>p:last-child {
		width: 90%;
	}
	.topscroll {
		right: 30px;
		bottom: 30px;
	}
	header .gnb {
		gap: 10px;
	}
	/* 팝업메뉴 */
	.pop {
		display: none;
		z-index: 99;
	}
	.pop-on {
		display: block;
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(25deg, rgba(85, 197, 208, 1) 0%,
			rgba(0, 141, 210, 1) 100%, rgba(166, 206, 56, 1) 100%);
		animation: slideDown 0.3s ease-in-out both;
	}
	.pop-off {
		display: block;
		position: fixed;
		top: 0%;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(25deg, rgba(85, 197, 208, 1) 0%,
			rgba(0, 141, 210, 1) 100%, rgba(166, 206, 56, 1) 100%);
		animation: slideUp 0.3s ease-in-out both;
	}
	.pop-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 80px;
		padding: 0 24px;
	}
	.pop-logo>img {
		width: 94.29px;
		height: 13.26px;
	}
	.btn-pop-close {
		width: 25px;
		height: 25px;
		background-image: url('../images/mob-close.png');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
		background-color: inherit;
		cursor: pointer;
	}
	.pop-menu {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: calc(100% - 58px);
	}
	.pop-menu>li {
		margin: 0 0 30px 0;
	}
	.pop-menu>li:last-child {
		margin: 0;
	}
	.pop-menu>li span {
		font-size: 32px;
		color: #fff;
		font-weight: 600;
		cursor: pointer;
	}
	.pop-menu>li>a {
		font-weight: 700;
		font-size: 32px;
		color: #FFF;
	}
	header .btn-menu span {
		display: block;
		background: #343434;
		width: 26px;
		height: 2px;
		border-radius: 3px;
		margin-left: 6px;
	}
	header .btn-menu span:nth-child(1) {
		margin-bottom: 6px;;
	}
	header .btn-menu span:nth-child(3) {
		margin-top: 6px;
	}
	@
	keyframes slideDown {from { top:-100%;
		
	}
	to {
		top: 0;
	}
}

@
keyframes slideUp {from { top:0;
	
}

to {
	top: -100%;
}

}
}
@media ( max-width :550px) {
	body {
		font-size: 10px;
	}
}

@media ( max-width :520px) {
	header {
		height: 56px;
	}
	header .logo {
		top: 16px;
	}
	.logo img {
		max-width: 128px;
		margin-top: 6px;
	}
	header .gnb {
		line-height: 56px;
	}
	header .gnb li {
		font-size: 1rem;
	}
	.main {
		/* 		height: 236px; */
		
	}
	.main .main_bg {
		top: 56px;
	}
	.tit h1 {
		/* 		top: 50%; */
		
	}
	.main p {
		font-size: 1.4rem;
	}
	.contents {
		top: 0;
	}
	.languageBox {
		display: none;
	}
	.log-bg {
		width: 100%;
		height: 100%;
		background: url(/images/login-bg.png) no-repeat;
		position: absolute;
		z-index: -10;
	}
	section h2 {
		font-size: 3.5em;
		color: #FFFF;
	}
	.main_text>span {
		font-size: 12px;
	}
	.usemobile {
		padding-top: 70px;
	}
	.usemobile>li p {
		font-size: 2em;
	}
	.mobile_specie {
		/* 		padding: 24px 0 24px 24px; */
		
	}
	.mobile_specie>div {
		margin-left: 16px;
	}
	.mobile_specie .name {
		font-size: 14px;
		letter-spacing: -0.8px;
	}
	.mobile_specie .micron {
		font-size: 14px;
	}
	.moarrow {
		width: 4%;
		margin-right: 24px;
	}
	.mobile_text {
		align-items: center;
		font-size: 1.6em;
		padding: 24px;
	}
	.mobile_text p {
		font-size: 1rem;
	}
	.mobile_text span {
		font-size: 13px;
		line-height: 19px;
	}
	.crm_list {
		margin-top: 32px;
	}
	.crm_tit {
		height: 200px;
	}
	.usemobile>.use_tit>li>p {
		font-size: 1.8em;
	}
	.usemo_con {
		margin: 40px 24px;
	}
	.usemo_con li:last-child {
		font-size: 1.1rem;
	}
	.app_con li {
		margin-bottom: 48px;
	}
	.app_con li:first-child {
		height: 140px;
		margin-left: 24px;
		margin-right: 10px;
	}
	.app_con li:last-child {
		height: 140px;
		margin-left: 10px;
		margin-right: 24px;
	}
	.app_con li div>span {
		font-size: 15px;
	}
	.app_con li div>button a {
		font-size: 1rem;
	}
	.app_con li button {
		height: 48px;
	}
	.app_con li button a {
		line-height: 48px;
	}
	.app_con li div>span {
		line-height: 18px;
	}
	footer {
		/* 		padding: 26.5px 0; */
		
	}
	#footercon {
		/* 		margin: 0 24px; */
		
	}
	.footerbox img {
		width: 30%;
	}
	.parasite img {
		width: 35%;
	}
	#footercon p {
		font-size: 12px;
		font-weight: 500;
	}
	.footerbox .address>p:last-child {
		width: 93%;
		letter-spacing: -0.6px;
	}
	.cocoon {
		/* 		padding: 0 0 48px; */
		
	}
	.parasite {
		padding-top: 48px;
	}
	.topscroll {
		width: 46px;
		height: 46px;
		right: 20px;
		bottom: 20px;
	}
	.topscroll span {
		font-size: 12px;
	}
	.topscroll span img {
		width: 40%;
	}
	.pop-top {
		height: 55px;
	}
	.btn-pop-close {
		width: 22px;
		height: 22px;
	}
}

@media ( max-width :400px) {
	body {
		font-size: 6px;
	}
	.main {
		/* 		height: 140px; */
		
	}
	.main_text>span {
		line-height: 22px;
		font-size: 2.3em;
	}
	.mobile_text {
		font-size: 2em;
	}
	.pre_moimg, .mat_moimg {
		height: 150px;
	}
	.usemo_con li:last-child {
		font-size: 0.9rem;
	}
	.usemobile>li p {
		font-size: 2em;
	}
	.app_con li:first-child, .app_con li:last-child {
		height: 120px;
	}
	.app_con li div>span {
		line-height: 10px;
	}
	.app_con li div button {
		height: 40px;
		margin-top: 8px;
	}
	.app_con li div button a {
		font-size: 1em;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#footercon p {
		font-size: 12px;
	}
	#footercon .ag-name {
		font-size: 12px;
	}
	.footerbox img {
		margin-bottom: 4px;
	}
}