@charset "UTF-8";
/* CSS Document */
/*기본CSS*/

* {
	margin:0;
	padding:0;
	border:0;
}
a {
	text-decoration:none !important;
	color:#393939 !important;
}
ol,ul {
	list-style:none;
}
body {
	font-size:14px;
	color:#fff;
	overflow-x: hidden;
	font-family: 'GmarketSans' !important;
	width: 100%;
    height: 100%;
}
img {
	vertical-align: middle;
}

.left {
	text-align: left;
}

/*--기본CSS--*/

/*top버튼*/

#fade_btn {
	position:fixed;
	display:none;
	color:#fff !important;
	text-align:center;
	right:2%;
	bottom:50px;
}

#top_btn {
	background: #293c7f;
	position:fixed;
	z-index:999;
	right:2%;
	bottom:50px;
	border-radius:100%;
	border:1px solid #293c7f;
	color:#fff !important;
	width:60px;
	height:60px;
	text-align:center;
	line-height: 60px;
	font-size:14px;
}

.kakaoChatPc {
	display: none;
	position: fixed;
	z-index: 999;
	right: 2%;
	bottom: 124px;
}

#naver {
	position:fixed;
	right:2%;
	bottom:124px;
}
/*//top버튼*/

/*header*/
input[id="menuicon"] {
	display:none;
}
html {
	position:relative;
	overflow-x:hidden;
}
button {
	background:none !important;
}
.menu_btn_wrap>a {
	color:#393939 !important;
}
header {
	width:100%;
	height:104px;
	background:#fff;
	border-bottom:2px solid #eeeeee;
	position:fixed;
	transition:top 0.2s ease-in-out;
	top:0;
	z-index: 998;
}

.main_menu {
	text-align: center;
}

.main_logo {
	width:100%;
}

.nav-up {
    top: -104px;
}

.dropdown_menubar {
	display: none;
}

header:hover .dropdown_menubar {
	display: block;
	background-color: #fff;
}

.sub_menu {
	width: 100%;
	height: auto;
	text-align: center;
}

.sub_menu>div>a>h5 {
	font-size:20px;
	font-weight: bold;
	margin-top:12px
}

.sub_menu>div>a>p {
	font-size:16px;
	margin-top:12px;

}

.area_desc {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	font-size:20px;
}
.menu_logo {
	margin:60px auto 0;
	text-align:center;
}
.menu_logo>button>img {
	width:100%;
}

.main_menu>a>div {
	font-size:18px;
	color:#393939;
	height: 80px;
	line-height: 104px;
}

.overlay_wrap {
	background:#fff;
}

.overlay_wrap>div {
	margin:0 auto;
	text-align: center;
	padding-top:14px;
}


.overlay_wrap>div>a {
	color:#393939;
}

.overlay_wrap>div>a>h5 {
	font-size:30px;
	color:#393939;
	padding-bottom: 14px;
	padding-top: 14px;
	border-top:1px #eeeeee solid;
	border-bottom:1px #eeeeee solid;
}

.overlay_wrap>div>a>h5:hover {
	color:#fff;
	background:#6fba2c;
	transition:all 0.5s
}

.n_store {
	border-bottom:1px solid #eee;
}
.menubtn {
	display:none;
	width:32px;
	height:28px;
	position:absolute;
	top:50%;
	right:14px;
	transform:translateY(-50%);
	cursor:pointer;
	z-index:999;
}
.menubtn span {
	display:block;
	position:absolute;
	width:80%;
	height:2px;
	background:#a0a0a0;
	transition:all 0.35s;
}
.menubtn span:nth-child(1) {
	top:20%;
	left:50%;
	transform:translateX(-50%);
}
.menubtn span:nth-child(2) {
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
.menubtn span:nth-child(3) {
	bottom:20%;
	left:50%;
	transform:translateX(-50%);
}
.conta {
	width:100%;
	position:relative;
}
.conta .contents {
	width:1200px;
	margin:0 auto;
	min-height:700px;
	border:1px solid #eee;
	z-index:30;
	transition:0.35s;
}
.conta .sidebar {
	position:fixed;
	top:0;
	right:-300px;
	width:300px;
	height:100%;
	background:#fff;
	border:1px solid #eee;
	z-index:30;
	transition:0.35s;
}
input[id=menuicon]:checked ~ header .menubtn {
	z-index:50;
}
input[id=menuicon]:checked ~ header .menubtn span:nth-child(1) {
	top:50%;
	left:50%;
	transform:translate(-50%,-50%) rotate(135deg);
}
input[id=menuicon]:checked ~ header .menubtn span:nth-child(2) {
	left:50%;
	transform:translate(-50%,-50%);
	opacity:0;
}
input[id=menuicon]:checked ~ header .menubtn span:nth-child(3) {
	bottom:50%;
	left:50%;
	transform:translate(-50%,-50%) rotate(-135deg);
}
input[id="menuicon"]:checked ~ .conta .sidebar {
	right:0;
}




/* 햄버거메뉴스타일 */
.mobile_menu_btn {
	position: absolute;
	transition: .3s ease-in-out;
	width: 36px;
	height: 34px;
	display: none;
	top: 4rem;
	right: 2rem;
	z-index: 999;
}

	.mobile_menu_btn span {
		position: absolute;
		height: 2px;
		width: 100%;
		background-color: #393939;
		top: 0;
		transition: transform .2s ease-in-out, opacity .2s ease-in-out;
	}

		.mobile_menu_btn span:nth-child(1) {
			top: 0px;
		}

		.mobile_menu_btn span:nth-child(2),
		.mobile_menu_btn span:nth-child(3) {
			top: 9px;
		}

		.mobile_menu_btn span:nth-child(4) {
			top: 18px;
		}

	.mobile_menu_btn.active span {
		background-color: #393939;
	}

		.mobile_menu_btn.active span:nth-child(1),
		.mobile_menu_btn.active span:nth-child(4) {
			opacity: 0;
		}

		.mobile_menu_btn.active span:nth-child(2) {
			transform: rotate(45deg);
		}

		.mobile_menu_btn.active span:nth-child(3) {
			transform: rotate(-45deg);
		}

	.overlay {
		position:fixed;
		background:#fff;
		top:0;
		right:0;
		width:45%;
		height:0;
		opacity: 0;
		visibility: hidden;
		display: flex;
		justify-content:center;
		align-items: center;
		transition: 0.3s;
		z-index: 998;
	}

	nav ul li {
		text-align: left;
		margin:1rem 0;
		opacity: 0;
	}

	nav ul li p {
		display: block;
		font-size:16px;
		font-weight: 500;
		line-height: 20px;
		transition: all 0.5;
	}

	nav ul li a {
		text-decoration: none;
		color:#393939 !important;
		font-weight: 700;
		font-size:28px;
		opacity:0.75;
		transition:opacity 0.2s ease;
	}

	nav ul li a:hover {
		opacity: 1;
	}

	@keyframes fadeInLeft {
		0% {
			opacity: 0;
			transform: translateX(-25%);
		}

		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.overlay.visible {
		height:100%;
		opacity: 1;
		visibility: visible;
	}

	.overlay.visible nav ul li {
		animation: fadeInLeft 0.3s ease forwards;
	}

	.overlay.visible nav ul li:nth-child(1) {
		animation-delay: 0.23s;
		margin-bottom: 20px;
	}
	.overlay.visible nav ul li:nth-child(2) {
		animation-delay: 0.26s;
	}
	.overlay.visible nav ul li:nth-child(3) {
		animation-delay: 0.29s;
	}
	.overlay.visible nav ul li:nth-child(4) {
		animation-delay: 0.32s;
	}
	.overlay.visible nav ul li:nth-child(5) {
		animation-delay: 0.35s;
	}
	.overlay.visible nav ul li:nth-child(6) {
		animation-delay: 0.38s;
	}

	.overlay.visible nav ul li:nth-child(7) {
		animation-delay: 0.41s;
	}

	@media(max-width:991px) {
		.main_menu {
			display: none;
		}
		.mobile_menu_btn {
			display: block;
		}

		.sub_logo {
			display: none;
		}

		.sub_menu {
			display: none;
		}
	
		.sns_icons_m {
			text-align: center;
		}
	
		.sns_icons_m>div {
			display: inline-block;
			margin-right: 5px;
			margin-left: 5px;
		}
	}
/*header*/

/*company*/
.company_sub_banner {
	background-size: cover;
	height: 460px;
	margin:0 auto;
	background:url("../img/sub_banner.jpg") no-repeat center center;
	background-size:cover;
}

ul.tab_lists{
	margin-top:40px;
	padding: 0px;
	list-style: none;
}
ul.tab_lists li {
    background: none;
    display: inline-block;
    cursor: pointer;
    width: 49%;
    height: 60px;
    margin-right: 3px;
    margin-left: 3px;
    text-align: center;
    border: 2px solid #293c7f;
    border-radius: 100px;
    font-size: 30px;
    font-weight: 500;
    line-height: 56px;
    color: #293c7f;
}

ul.tab_lists li.current-view{
	background:#293c7f;
	color:#fff;
}

.tab_click{
	display: none;
}

.tab_click.current-view{
	display: inherit;
	margin-top:40px;
}

.company_info_wrap {
	margin-bottom: 40px;
}

.company_title {
	font-size: 40px;
	font-weight: 700;
}


.bar_2 {
	width:260px !important;
	height:2px;
	background-color: #393939;
	margin-top:26px;
}

.bar_left {
	width:100px;
	height:2px;
	background-color: #393939;
	display: inline-block;
	text-align: left;
}


.company_title_ment {
	font-size:20px;
	margin-top:20px;
	margin-bottom: 20px;
}

.working_img>img {
	width:100%;
}

.permission_wrap {
	margin-bottom: 40px;
}

.permit_business>h4 {
	text-align: center;
	font-size:40px;
	font-weight: 700;
}

.permit_business>h5 {
	text-align: center;
	font-size:24px;
	font-weight: 700;
}

.permit_business>p {
	text-align: center;
	margin-top: 12px;
	font-size:20px;
	font-weight: 500;
}

.permission_list {
	margin-top:20px;
}

.permission_list>div>img {
	width:100%;
}

.business_wrap {
	text-align: center;
	margin-bottom: 40px;
}

.company_business>h4 {
	font-size:40px;
	font-weight: 700;
}

.company_business>h5 {
	font-size:24px;
	font-weight: 700;
}

.company_business>p {
	margin-top: 12px;
	font-size:20px;
	font-weight: 500;
}

.knowhow {
	margin-top:40px;
}

.m_knowhow {
	display: none;
}

.workers {
	margin-bottom: 40px;
}

.workers>img {
	width:100%;
}

.location_content {
	margin-bottom: 40px;
}

.work_time {
	font-size:40px;
	font-weight: 700;
	margin-top:40px;
}

.work_time>span {
	color:#293c7f;
}

.location_info {
	font-size:20px;
	margin-top:40px;
	text-align: right;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	ul.tab_lists li{
		width: 47%;
		height: 50px;
		line-height: 50px;
		font-size: 15px;
	}


.company_business>h4 {
	font-size:28px;
	font-weight: 700;
}

.company_business>h5 {
	font-size:20px;
	font-weight: 700;
}

.company_business>p {
	margin-top: 12px;
	font-size:16px;
	font-weight: 500;
}

.permission_list>div>img {
	width:80%;
	display: block;
	margin:0 auto;
}

.permit_business>h4 {
	text-align: center;
	font-size:28px;
	font-weight: 700;
}

.permit_business>h5 {
	text-align: center;
	font-size:20px;
	font-weight: 700;
}

.permit_business>p {
	text-align: center;
	margin-top: 12px;
	font-size:16px;
	font-weight: 500;
}

.bar_2 {
	display: none;
}

.company_title {
	font-size:30px;
}

.company_title_ment {
	font-size:18px;
}

.company_business>h4 {
	font-size:28px;
	font-weight: 700;
}

.working_img {
	width:100%;
	margin-top:20px;
}


.company_business>h5 {
	font-size:24px;
	font-weight: 700;
}

.company_business>p {
	font-size:16px;
	font-weight: 500;
}

.knowhow {
	display: none;
}

.m_knowhow {
	display: block;
	width:100%;
}

.m_knowhow>img {
	width:100%;
}

.work_time {
	font-size:28px;

}

.location_info {
	font-size: 14px;
	margin-top:10px;
	text-align: left;
}

	
}


/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	ul.tab_lists li{
		width:48%;
		height:60px;
		margin:none;
		font-size: 18px;
	}

	.bar_2 {
		display: none;
	}

	.company_title {
		font-size:30px;
	}

	.company_title_ment {
		font-size:18px;
	}

	.company_business>h4 {
		font-size:32px;
		font-weight: 700;
	}

	.working_img {
		width:100%;
		margin-top:20px;
	}

	
	.company_business>h5 {
		font-size:24px;
		font-weight: 700;
	}
	
	.company_business>p {
		font-size:18px;
		font-weight: 500;
	}

	.permission_list>div>img {
		width:80%;
		display: block;
		margin:0 auto;
	}

	.permit_business>h4 {
		text-align: center;
		font-size:32px;
		font-weight: 700;
	}
	
	.permit_business>h5 {
		text-align: center;
		font-size:24px;
		font-weight: 700;
	}
	
	.permit_business>p {
		text-align: center;
		margin-top: 12px;
		font-size:18px;
		font-weight: 500;
	}

	.knowhow {
		display: none;
	}
	
	.m_knowhow {
		display: block;
		width:100%;
	}
	
	.m_knowhow>img {
		width:100%;
	}

	.work_time {
		font-size:32px;

	}

	.location_info {
		font-size: 18px;
		margin-top:10px;
		text-align: left;
	}

}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	ul.tab_lists li{
		width:45%;
		height:60px;
		margin:none;
		font-size: 24px;
	}

	.bar_2 {
		display: none;
	}

	.company_title {
		font-size:30px;
	}

	.company_title_ment {
		font-size:18px;
	}


	.company_business>h4 {
		font-size:32px;
		font-weight: 700;
	}


	.working_img {
		width:100%;
		margin-top:20px;
	}

	
	.company_business>h5 {
		font-size:24px;
		font-weight: 700;
	}
	
	.company_business>p {
		font-size:18px;
		font-weight: 500;
	}

	.permit_business>h4 {
		text-align: center;
		font-size:32px;
		font-weight: 700;
	}
	
	.permit_business>h5 {
		text-align: center;
		font-size:24px;
		font-weight: 700;
	}
	
	.permit_business>p {
		text-align: center;
		margin-top: 12px;
		font-size:18px;
		font-weight: 500;
	}

	.knowhow {
		display: none;
	}
	
	.m_knowhow {
		display: block;
		width:100%;
	}
	
	.m_knowhow>img {
		width:100%;
	}

	.work_time {
		font-size:26px;
	}

	.location_info {
		margin-top:10px;
		font-size: 18px;
		text-align: right;
	}


}

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	ul.tab_lists li{
		width:45%;
		height:60px;
		margin:none;
		font-size: 24px;
	}

	.work_time {
		font-size:30px;
	}

	.knowhow>img {
		width:100%;
	}
}
/*//작은PC*/

/*//company*/

/*생산능력*/

.produce_wrap {
	margin-top: 80px;
	text-align: left;
}

.washing_machines {
	margin-bottom: 40px;
}

.washing_machines img {
	width:100%;
}

.producing_name>h5 {
	font-size:48px;
	font-weight: 700;
}

.producing_name>h5>span {
	color:#293c7f;
}

.producing_name>p {
	font-size:24px;
	margin-top:10px;
}


.greeting {
	text-align: center;
	margin-bottom: 40px;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.producing_name>h5 {
		font-size:28px;
		font-weight: 700;
	}

	.producing_name>p {
		font-size:16px;
		margin-top:10px;
		margin-bottom: 40px;
	}

	.greeting>img {
		width:80%;
	}
}
/*//작은 스마트폰*/

/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	.producing_name>h5 {
		font-size:32px;
		font-weight: 700;
	}

	.producing_name>p {
		font-size:18px;
		margin-top:10px;
		margin-bottom: 40px;
	}

	.greeting>img {
		width:50%;
	}
}
/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.producing_name>h5 {
		font-size:32px;
		font-weight: 700;
	}

	.producing_name>p {
		font-size:18px;
		margin-top:10px;

	}

	.washing_machines>div>img {
		margin-top:40px;
		width:100%;
	}

	.greeting>img {
		width:50%;
	}

}
/*//테블릿*/
/*//생산능력*/


/*제품소개*/

.product_sub_banner {
	background-size: cover;
	height: 460px;
	margin:0 auto;
	background:url("../img/sub/product_banner.jpg") no-repeat center center;
	background-size:cover;
}

.ibc_wrap {
	margin-top:40px;
	margin-bottom: 40px;
}

.about_title {
	font-size:40px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 40px;
}

.about_title>span {
	color:#293c7f;
}

.long_bar {
	width:2px;
	height:274px;
	background:#393939;
	margin:62px auto;
}

.sample_explain>h5 {
	font-size:40px;
	font-weight: 700;
	margin-top:20px;
}

.sample_explain>h5>span {
	color: #293c7f;
}

.sample_explain>p {
	margin-top:20px;
	font-size:24px;
	margin-bottom: 20px;
}

.purschase_btns {
	width:200px;
	font-size:24px;
	font-weight: 500;
	height:60px;
	color:#293c7f;
	border: 1px solid #293c7f;
	border-radius: 50px;
	line-height: 58px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
}

.purschase_btns:hover {
	background:#293c7f;
	color:#fff;
	font-weight: 700;
	transition:all 0.5s;
}

.ibc_detail_wrap {
	margin-bottom: 40px;
}

.chart_detail_wrap {
	width:100%;
	margin-top:40px;
	margin-bottom: 40px;
}


.chart_detail_wrap>div {
	border-bottom:1px solid #eee;
}


.chart_detail_wrap>div:last-child {
	border-bottom:2px solid #eee;
}

.chart_detail_wrap>div>div {
	display: inline-block;
	font-size:18px;
	vertical-align: middle;
	text-align: center;
	height: 76px;
}

.chart_detail_wrap .complain {
	width:13%;
	background:#293c7f;
	font-size:32px;
	color:#fff;
	font-weight: 700;
	line-height: 76px;
	
}

.chart_detail_wrap .date {
	width:86%;
	font-size:32px;
	color:#393939;
	font-weight: 500;
	line-height: 76px;
}

.ibc_packing_wrap {
	background:#f5faf5;
	padding:40px;
	margin-bottom: 40px;
}

.packing_list {
	margin-bottom: 40px;
}

.packing_list_mob {
	display: none;
}

.packing_list_tab {
	display: none;
}

.parts_title {
	font-size:18px;
	color:#727171;
	font-weight: 700;
	letter-spacing:11px;
}

.ibc_parts>div>div>img {
	margin-bottom: 10px;
	text-align: center;
	width:100%;
}


.parts_title>div {
	color:#90c31f;
	font-size:40px;
	font-weight: 700;
	letter-spacing:90px;
}

.parts_title>p {
	font-size:18px;
	color:#727171;
	font-weight: 700;
	letter-spacing:13px;
}

.partname {
	width:100%;
	height:30px;
	border-radius: 20px;
	background-color: #90c31f;
	margin:0 auto;
	color:#fff;
	font-size:18px;
	line-height: 30px;
	text-align: center;
}

.export_wrap {
	margin-bottom: 40px;
}

.export_title {
	font-size:40px;
	font-weight: 700;
}

.export_title>span {
	color:#293c7f;
}

.export_title>p {
	font-size:20px;
	font-weight: 500;
}

.bar_3 {
	width:100px !important;
	height:2px;
	background-color: #393939;
	margin-top:10px;
	margin-bottom: 20px;
}

.compare_wrap {
	margin-bottom: 40px;
}

.answer_wrap {
	margin-top:40px;
}

.answer_title {
	font-size:36px;
	font-weight: 700;
}

.answer_comment {
	font-size:24px;
	font-weight: 500;
}

.machine_img>img {
	width:100%;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.about_title {
		font-size:28px;
	}

	.sample_ibc>img {
		width: 100%;
	}

	.sample_explain>h5 {
		font-size: 28px;
	}

	.sample_explain>p {
		font-size: 16px;
	}

	.purschase_btns {
		width: 130px;
		font-size: 18px;
		font-weight: 500;
		height: 46px;
		color: #293c7f;
		border: 1px solid #293c7f;
		border-radius: 50px;
		line-height: 46px;
		text-align: center;
		display: inline-block;
		margin-right: 5px;
	}

	.packing_list {
		display: none;
	}

	.packing_list_tab {
		display: none;
	}

	.packing_list_mob {
		display: block;
	}


	.parts_title {
		font-size:18px;
		color:#727171;
		font-weight: 700;
		letter-spacing:10px;
	}
	.ibc_parts>div>div {
		margin-bottom: 20px;
	}
	.ibc_parts>div>div>img {
		margin-bottom: 10px;
		text-align: center;
		width:100%;
	}
	
	
	.parts_title>div {
		color:#90c31f;
		font-size:40px;
		font-weight: 700;
		letter-spacing:90px;
	}
	
	.parts_title>p {
		font-size:18px;
		color:#727171;
		font-weight: 700;
		letter-spacing:11px;
	}

	.export_title {
		font-size:28px;
		font-weight: 700;
	}
	
	
	.export_title>p {
		font-size:16px;
		font-weight: 500;
	}

	.export_meaning>img {
		width:100%;
		text-align: center;
	}

	.answer_title {
		font-size:28px;
		font-weight: 700;
	}
	
	.answer_comment {
		font-size:16px;
		font-weight: 500;
	}
}

/*//작은 스마트폰*/


/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	.purschase_btns {
		width: 152px;
		font-size: 20px;
		font-weight: 500;
		height: 50px;
		color: #293c7f;
		border: 1px solid #293c7f;
		border-radius: 50px;
		line-height: 50px;
		text-align: center;
		display: inline-block;
		margin-right: 10px;
	}

	
	.about_title {
		font-size:32px;
	}

	.sample_ibc {
		text-align: center;
		margin-bottom: 40px;
	}

	.sample_explain>h5 {
		font-size:32px;
	}

	.sample_explain>p {
		font-size:18px;
	}

	.ibc_parts>div>div>img {
		text-align: center;
		width:100%;
		margin-top:20px;
	}

	.export_title {
		font-size:32px;
	}
	
	.export_title>p {
		font-size:18px;
	}

	.export_meaning{
		margin-top:40px;
	}

	.export_meaning>img {
		width:100%;
		text-align: center;
	}

	.machine_img>img {
		width:100%;
	}

	.answer_title {
		font-size:32px;
	}

	.answer_comment {
		font-size:18px;
		margin-top:16px;
	}

}
/*//스마트폰*/


/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.purschase_btns {
		width: 152px;
		font-size: 20px;
		font-weight: 500;
		height: 50px;
		color: #293c7f;
		border: 1px solid #293c7f;
		border-radius: 50px;
		line-height: 50px;
		text-align: center;
		display: inline-block;
		margin-right: 10px;
	}

	.packing_list {
		display: none;
	}


	.packing_list_tab {
		display: block;
		margin-bottom: 40px;
	}
	
	.about_title {
		font-size:32px;
	}

	.sample_ibc {
		text-align: center;
		margin-bottom: 40px;
	}

	.sample_ibc>img {
		width:100%;
	}

	.sample_explain {
		margin:none;
	}

	.sample_explain>h5 {
		font-size:30px;
	}

	.sample_explain>p {
		font-size:16px;
	}

	.ibc_parts>div>div>img {
		text-align: center;
		width:100%;
		margin-top:20px;
	}

	.parts_title>span {
		letter-spacing: 5px;
		
	}

	.parts_title>div {
		font-size: 32px;
		letter-spacing: 74px;

	}

	.parts_title>p {
		letter-spacing: 10px;
		font-size:14px;
		
	}

	.partname {
		width:100%;
		height:30px;
		border-radius: 20px;
		background-color: #90c31f;
		margin:0 auto;
		color:#fff;
		font-size:16px;
		line-height: 30px;
		text-align: center;
	}

	.export_title {
		font-size:32px;
	}
	
	.export_title>p {
		font-size:18px;
	}

	.export_meaning{
		margin-top:40px;
	}

	.export_meaning>img {
		width:100%;
		text-align: center;
	}

	.machine_img>img {
		width:100%;
	}

	.answer_title {
		font-size:32px;
	}

	.answer_comment {
		font-size:18px;
		margin-top:16px;
	}

}
/*//테블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.packing_list {
		display: none;
	}

	.packing_list_tab {
		display: block;
		margin-bottom: 40px;
	}
}
/*//작은PC*/


/*//제품소개*/


/*취급주의사항*/
.short_bar {
	width:2px;
	height:200px;
	background:#393939;
	margin:56px auto;
}

.common_wrap {
	margin-bottom: 40px;
}

.common_title {
	font-size:40px;
	color:#393939;
	font-weight: bold;
}

.common_title>span {
	color:#293c7f;
}

.common_title_ment {
	font-size:20px;
	font-weight: 500;
	text-align: right;
	margin-top:40px;

}

.merterial_wrap {
	margin-bottom: 40px;
}

.merterial_box {
	width: 572px !important;
	height: 248px;
	padding-top:20px;
	font-size:24px;
	color:#393939;
	text-align: center;
	background: #eee;
	border-radius: 30px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 40px;
}

.m_caution_wrap {
	display: none;
}

.caution_wrap {
	margin-bottom: 40px;
}

.product_steelshot>img {
	width:100%;
}

.product_caution_view>div {
	width:100%;
	height:82px;
	border: 1px solid #293c7f;
	border-radius: 100px;
	margin-bottom: 10px;
}

.product_caution_view>div>div {
	float: left;
    font-size: 64px;
    color: #293c7f;
    line-height: 80px;
    font-weight: 700;
    margin-left: 16px;
}

.product_caution_view>div>p {
	float: left;
	font-size:20px;
	margin-top: 10px;
    margin-left: 10px;
}

.caution_bar {
	width:100%;
	height: auto;
	background: #293c7f;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size:24px;
	font-weight: 700;
	text-align: center;
	color:#fff;
	border-radius: 100px;
	margin-top:40px;
}

.caution_bar>span {
	color:#ffe100;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.common_title {
		font-size:28px;
		color:#393939;
		font-weight: bold;
	}
	
	
	.common_title_ment {
		font-size:16px;
		font-weight: 500;
		text-align: left;
		margin-top:20px;
	}

	.merterial_box {
		width: 100% !important;
		height: auto;
		padding-top:20px;
		padding-bottom: 20px;
		font-size:18px;
	}

	.caution_wrap {
		display: none;
	}

	.caution_bar {
		width:100%;
		height: auto;
		background: #293c7f;
		padding-top: 20px;
		padding-bottom: 20px;
		font-size:14px;
		font-weight: 700;
		text-align: center;
		color:#fff;
		border-radius: 0;
		margin-top:40px;
	}

	.m_caution_wrap {
		display: block;
		margin-top:10px
	}

	.m_product_caution_view {
		height: auto;
		padding-top:10px;
		padding-bottom:10px;
	}
	

	.m_product_caution_view>div>div {
		width:100%;
		height: auto;
		padding-top:10px;
		padding-bottom: 10px;
		padding-left:10px;
		background: #293c7f;
		font-size:32px;
		color:#fff;
		font-weight: 700;
	}
	
	.m_product_caution_view>div>p {
		width:100%;
		height: auto;
		padding-top:10px;
		padding-bottom: 10px;
		background:#fff;
		font-size:14px;
		margin-left: 10px;
	}
	
	.m_caution_bar {
		background: #293c7f;
		width: 100%;
		height: auto;
		padding-top:20px;
		padding-bottom:20px;
		font-size:18px;
		line-height: 20px;
		color:#fff;
		font-weight: 700;
	}

}
/*//작은 스마트폰*/

/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	.common_title {
		font-size:32px;
		color:#393939;
		font-weight: bold;
	}
	
	.common_title>span {
		color:#293c7f;
	}
	
	.common_title_ment {
		font-size:18px;
		font-weight: 500;
		text-align: left;
		margin-top:20px;
	}

	.merterial_box {
		width: 100% !important;
		height: auto;
		padding-top:20px;
		padding-bottom: 20px;
		font-size:24px;
	}

	.caution_wrap {
		display: none;
	}

	.m_caution_wrap {
		display: block;
		margin-top:10px
	}

	.m_product_caution_view {
		height: auto;
		padding-top:10px;
		padding-bottom:10px;
	}
	

	.m_product_caution_view>div>div {
		width:100%;
		height: auto;
		padding-top:10px;
		padding-bottom: 10px;
		padding-left:10px;
		background: #293c7f;
		font-size:32px;
		color:#fff;
		font-weight: 700;
	}
	
	.m_product_caution_view>div>p {
		width:100%;
		height: auto;
		padding-top:10px;
		padding-bottom: 10px;
		background:#fff;
		font-size:16px;
		margin-left: 10px;
	}
	
	.m_caution_bar {
		background: #293c7f;
		width: 100%;
		height: auto;
		padding-top:20px;
		padding-bottom:20px;
		font-size:18px;
		line-height: 20px;
		color:#fff;
		font-weight: 700;
	}


	.product_steelshot {
		margin-bottom: 20px;
	}

	.product_steelshot>img {
		width:100%;
		text-align: center;
	}
	
	.product_caution_view {
		height: auto;
		padding-top:10px;
		padding-bottom:10px;
	}
	
	.product_caution_view>div>div {
		float: left;
		font-size:36px;
		color:#293c7f;
		line-height: 80px;
		margin-left: 10px;
	}
	
	.product_caution_view>div>p {
		float: left;
		font-size:12px;
		margin-top: 22px;
		margin-left: 10px;
	}
	
	.caution_bar {
		height: auto;
		border-radius:1px;
		font-size:18px;
	}
	
}
/*//스마트폰*/

/*태블릿*/
@media (min-width:769px) and (max-width:991px) {
	.common_title {
		font-size:32px;
		color:#393939;
		font-weight: bold;
	}
	
	.common_title>span {
		color:#293c7f;
	}
	
	.common_title_ment {
		font-size:16px;
		font-weight: 500;
		text-align: left;
		margin-top:20px;
	}

	.merterial_box {
		width: 100% !important;
		height: auto;
		padding-top:20px;
		padding-bottom: 20px;
		font-size:24px;
	}

	.product_steelshot {
		margin-bottom: 20px;
	}

	.product_steelshot>img {
		width:100%;
		text-align: center;
	}
	
	.product_caution_view {
		height: auto;
		padding-top:10px;
		padding-bottom:10px;
	}
	
	.product_caution_view>div>div {
		float: left;
		font-size:50px;
		color:#293c7f;
		line-height: 80px;
		margin-left: 4px;
	}
	
	.product_caution_view>div>p {
		float: left;
		font-size:18px;
		margin-top: 14px;
		margin-left: 10px;
	}
	
	.caution_bar {
		border-radius:1px;
		font-size:18px;
	}
}
/*//태블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.common_title {
		font-size:42px;
		color:#393939;
		font-weight: bold;
	}
	
	.common_title>span {
		color:#293c7f;
	}
	
	.common_title_ment {
		font-size:18px;
		font-weight: 500;
		margin-top:20px;
	}

	.merterial_box {
		width: 100% !important;
		height: auto;
		padding-top:20px;
		padding-bottom: 20px;
		font-size:24px;
	}

	.product_steelshot {
		margin-bottom: 20px;
	}

	.product_steelshot>img {
		width:100%;
		text-align: center;
	}
	
	.product_caution_view {
		height: auto;
		padding-top:10px;
		padding-bottom:10px;
	}
	
	.product_caution_view>div>div {
		float: left;
		font-size:56px;
		color:#293c7f;
		line-height: 80px;
		margin-left: 10px;
	}
	
	.product_caution_view>div>p {
		float: left;
		font-size:20px;
		margin-top: 12px;
		margin-left: 10px;
	}
	
	.caution_bar {
		line-height: auto;
		border-radius:100px;
		font-size:20px;
	}
}

/*//작은PC*/


/*공용CSS_2*/

.common_detail {
	margin-bottom: 40px;
}

.product_common {
	margin-bottom: 80px;
}

.product_bigtitle {
	text-align: center;
	margin-bottom: 40px;
}

.product_bigtitle>div {
	font-size:48px;
	font-weight: 700;
	color:#293c7f;
}

.product_bigtitle>p {
	font-size:32px;
	font-weight: 500;
	color:#c8c9ce;
	letter-spacing: 5px;
}

.product_bigimg {
	text-align: center;
}

.product_chart {
	width:100%;
	margin-top:10px;
	margin-bottom: 40px;
}

.product_chart>div {
	border-bottom:1px solid #eee;
}

.product_chart>div:first-child {
	border-top:2px solid #eee;
}

.product_chart>div:last-child {
	border-bottom:2px solid #eee;
}

.product_chart>div>div {
	display: inline-block;
	font-size:20px;
	vertical-align: middle;
	height: 44px;
}

.product_chart .subject {
	width:26%;
	background:#293c7f;
	text-align: center;
	font-size:28px;
	color:#fff;
	font-weight: 700;
	line-height: 44px;
	
}

.product_chart .subject_content {
	width:70%;
	font-size:20px;
	color:#393939;
	font-weight: 500;
	line-height: 44px;
	padding-left: 10px;
	padding-right: 10px;
}


.types {
	width: 100%;
	height:60px;
	color:#fff;
	text-align: center;
	line-height: 60px;
	font-weight: 700;
	font-size:40px;
	background: #293c7f;
	border-radius: 50px;
	margin-top:14px;
}

.product_types>div>div>img {
	display: block;
	margin: 0 auto;
}

.common_product_title {
	font-size:40px;
	font-weight: 700;
}


.common_product_title>span {
	color:#293c7f;
}

.common_product_title>p {
	font-size:24px;
	font-weight: 500;
}

.classic_ibc_wrap {
	margin-bottom: 120px;
}

.majors {
	margin-top:40px;
}

.majors>img {
	width:100%;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {

	.product_bigtitle>div {
		font-size:36px;
	}

	.product_bigtitle>p {
		font-size:24px;
		font-weight: 500;
	}

	.product_bigimg>img {
		width:80%;
		text-align: center;
	}

	.pd_detail_steel {
		display: block;
		margin:0 auto
	}

	.pd_detail_steel>img {
		width:50%;
	}

	.common_product_title {
		font-size:32px;
	}

	.common_product_title>p {
		font-size:18px;
	}

	.product_types>div>div {
		margin-top:40px;
	}

	.product_types>div>div>img {
		width:70%;
	}
	

	.common_middle_title {
		text-align: center;
		margin-bottom: 80px;
	}
	
	.common_middle_title>div {
		font-size:32px;
		margin-bottom: 20px;
		font-weight: 700;
	}
	
	.common_middle_title>div>span {
		color:#293c7f;
		font-size: 32px;
	
	}
	
	.common_middle_title>p {
		font-size:18px !important;
	}

	.product_chart .subject {
		width:100%;
		font-size:20px;
		text-align: center;
		
	}
	
	.product_chart .subject_content {
		height: auto;
		width:100%;
		font-size:14px;
		color:#393939;
		font-weight: 500;
		line-height: 44px;
		text-align: center;
	}

	.majors>img {
		width:100%;
		text-align: center;
	}
}

/*//작은 스마트폰*/

/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {

	.product_bigtitle>div {
		font-size:36px;
	}

	.product_bigtitle>p {
		font-size:24px;
		font-weight: 500;
	}

	.product_bigimg>img {
		width:80%;
		text-align: center;
	}

	.pd_detail_steel {
		display: block;
		margin:0 auto
	}

	.pd_detail_steel>img {
		width:50%;
	}

	.common_product_title {
		font-size:32px;
	}

	.common_product_title>p {
		font-size:18px;
	}

	.product_types>div>div {
		margin-top:40px;
	}

	.product_types>div>div>img {
		width:70%;
	}

	.product_chart .subject {
		width:100%;
		font-size:20px;
		
	}
	
	.product_chart .subject_content {
		text-align: center;
		height: auto;
		width:100%;
		font-size:16px;
		color:#393939;
		font-weight: 500;
		line-height: 44px;
	}
	

	.common_middle_title {
		text-align: center;
		margin-bottom: 80px;
	}
	
	.common_middle_title>div {
		font-size:32px;
		margin-bottom: 20px;
		font-weight: 700;
	}
	
	.common_middle_title>div>span {
		color:#293c7f;
		font-size: 32px;
	
	}
	
	.common_middle_title>p {
		font-size:18px !important;
	}

	.majors>img {
		width:100%;
		text-align: center;
	}
}

/*//스마트폰*/

/*태블릿*/
@media (min-width:769px) and (max-width:991px) {
	.product_bigtitle>div {
		font-size:36px;
	}

	.product_bigtitle>p {
		font-size:24px;
		font-weight: 500;
	}

	.product_bigimg>img {
		width:50%;
		text-align: center;
	}

	.pd_detail_steel>img {
		width:30%;
	}

	.common_product_title {
		font-size:32px;
	}

	.common_product_title>p {
		font-size:18px;
	}

	.product_types>div>div {
		margin-top:0px;
	}

	.product_types>div>div>img {
		width:100%;
	}

	.types {
		font-size:30px;
	}

	.common_middle_title {
		text-align: center;
		margin-bottom: 80px;
	}
	
	.common_middle_title>div {
		font-size:32px;
		margin-bottom: 20px;
		font-weight: 700;
	}
	
	.common_middle_title>div>span {
		color:#293c7f;
		font-size: 32px;
	
	}
	
	.common_middle_title>p {
		font-size:18px !important;
	}

	.majors>img {
		width:100%;
		text-align: center;
	}
}
/*//태블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.product_types>div>div>img {
		width:100%;
	}

	.majors>img {
		width:100%;
		text-align: center;
	}
}

/*//공용CSS_2*/


/*세척제품*/

.washed_ibc_wrap {
	margin-top:156px;
	margin-bottom: 40px;
}

.character_bigtitle{
	font-size:42px;
	font-weight: 700;
	text-align: center;
	color:#0f5e98;
}

.character_bigtitle>span {
	color:#0eeeee;
}

.washed_ibc_desc {
	width:600px;
	height:70px;
	margin:0 auto;
	color:#ffe100;
	background-color: #00a0e9;
	text-align: center;
	line-height: 70px;
	border-radius: 50px;
	font-weight: 500;
	font-size:22px;
}

.washed_ibc_pd_detail {
	background-color: #0f5e97;
	padding-top: 40px;
	padding-bottom: 40px;
	width:100%;
	height: auto;
	margin-top:80px;
}

.washed_caution_desc {
	margin-top:40px;
}

.washed_caution_desc>div {
	font-size:48px;
	font-weight: 700;
	color:#fff;
}

.washed_caution_desc>p {
	font-size:26px;
	font-weight: 500;
	color:#fff;
}

.washed_caution_desc>p>span {
	font-size:26px;
	font-weight: 700;
	color:#ffe100;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {

	.character_bigtitle {
		font-size:32px;
	}

	.washed_ibc_desc {
		width:100%;
		text-align: center;
		padding-top:10px;
		border-radius: 0;
		font-weight: 500;
		font-size:18px;
		line-height: inherit;
	}

	.washed_ibc_pd_detail {
		background:#0f5e98;
		padding-top:40px;
		padding-bottom: 40px;
		height: auto;
	}

	.washed_caution_desc>div {
		font-size:32px;
		font-weight: 700;
		color:#fff;
	}

	.washed_caution_img {
		width:100%;
		display: block;
		margin:0 auto;
	}
	.washed_caution_img>img {
		width:100%;
		display: block;
		margin:0 auto;
	}

	.washed_caution_desc>div {
		font-size:28px;
	}

	.washed_caution_desc>p {
		font-size:16px;
	}

	.washed_caution_desc>p>span {
		font-size:16px;
	}
}
/*//작은 스마트폰*/

/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {

	.washed_ibc_desc {
		width:100%;
		text-align: center;
		border-radius: 50px;
		font-weight: 500;
		font-size:20px;
	}

	.washed_ibc_pd_detail {
		background:#0f5e98;
		padding-top:40px;
		padding-bottom: 40px;
		height: auto;
	}

	.washed_caution_desc>div {
		font-size:32px;
		font-weight: 700;
		color:#fff;
	}

	.washed_caution_img {
		width:80%;
		display: block;
		margin:0 auto;
	}

	.washed_caution_desc>div {
		font-size:32px;
	}

	.washed_caution_desc>p {
		font-size:18px;
	}

	.washed_caution_desc>p>span {
		font-size:18px;
	}
}
/*//스마트폰*/



/*테블릿*/
@media (min-width:769px) and (max-width:991px) {

	.washed_ibc_desc {
		width:100%;
		text-align: center;
		border-radius: 50px;
		font-weight: 500;
		font-size:20px;
	}

	.washed_ibc_pd_detail {
		background:#0f5e98;
		padding-top:40px;
		padding-bottom: 40px;
		height: auto;
	}



	.washed_caution_img>img {
		width:100%;

	}

	.washed_caution_desc>div {
		color:#fff;
		font-size:32px;
	}

	.washed_caution_desc>p {
		font-size:20px;
	}

	.washed_caution_desc>p>span {
		font-size:20px;
	}
}
/*//테블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
		.washed_ibc_desc {
		width:100%;
		text-align: center;
		border-radius: 50px;
		font-weight: 500;
		font-size:26px;
	}

	.washed_ibc_pd_detail {
		background:#0f5e98;
		padding-top:40px;
		padding-bottom: 40px;
		height: auto;
	}


	.washed_caution_img>img {
		width:100%;

	}

	.washed_caution_desc>div {
		color:#fff;
		font-size:40px;
	}

	.washed_caution_desc>p {
		font-size:24px;
	}

	.washed_caution_desc>p>span {
		font-size:24px;
	}


}
/*//작은PC*/
/*//세척제품*/


/*폐기,폐수용*/
.wasted_ibc_pd_detail {
	padding-top: 40px;
	padding-bottom: 40px;
	width:100%;
	height: auto;
	margin-top:80px;
	background-color: #293c7f;
}

.wasted_caution_desc {
	color:#fff;
	margin-top:80px;
}

.wasted_caution_desc>div {
	font-size:48px;
	font-weight: 700;
	margin-bottom: 20px;
}

.wasted_caution_desc>p {
	font-size:26px;
	color:#fff;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {

	.wasted_caution_img>img {
		width:80%;
		display: block;
		margin:0 auto;
	}


	.wasted_caution_desc>div {
		font-size:28px;
	}

	.wasted_caution_desc>p {
		font-size:16px;
	}
}


/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {

	.wasted_caution_img>img {
		width:80%;
		display: block;
		margin:0 auto;
	}


	.wasted_caution_desc>div {
		font-size:32px;
	}

	.wasted_caution_desc>p {
		font-size:18px;
	}
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {

	.wasted_caution_desc {
		margin-top:60px;
	}


	.wasted_caution_img>img {
		width:100%;
	}


	.wasted_caution_desc>div {
		font-size:32px;
	}

	.wasted_caution_desc>p {
		font-size:18px;
	}
}

/*//테블릿*/



/*//폐기,폐수용*/

/*프레임*/

.common_middle_title {
	text-align: center;
	margin-bottom: 80px;
}

.common_middle_title>div {
	font-size:40px;
	margin-bottom: 20px;
	font-weight: 700;
}

.common_middle_title>div>span {
	color:#293c7f;

}

.common_middle_title>p {
	font-size:26px;
	margin-top: 20px;
	font-weight: 500;
}

.frame_pd_caution {
	margin-bottom: 40px;
}

.frame_steel_shot {
	margin-top:40px;
}

.frame_pd_detail>h5 {
	font-size:40px;
	font-weight: 700;
	margin-top:100px;
	margin-bottom: 20px;
}

.frame_pd_detail>h5>span {
	color:#293c7f;
}

.frame_pd_detail>p {
	font-size:28px;
	font-weight: 700;
	margin-top:5px
}

.frame_pd_detail>p>span {
	color:#293c7f;
}


/*작은 스마트폰*/
@media (min-width:320px) and (max-width:768px) {

	.frame_pd_detail>h5 {
		font-size:28px;
		margin-top:20px;
	}

	.frame_pd_detail>p {
		font-size:16px;
	}

	.m_purschase_btns {
		width:100%;
	}
}

/*//작은 스마트폰*/

/*스마트폰*/
@media (min-width:320px) and (max-width:768px) {

	.frame_pd_detail>h5 {
		font-size:32px;
		margin-top:20px;
	}

	.frame_pd_detail>p {
		font-size:18px;
	}
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.frame_pd_caution {
		margin-top:40px;
	}

	.frame_steel_shot {
		width:100%;
	}

	.frame_steel_shot>img {
		width:100%;
	}

	.frame_pd_detail>h5 {
		font-size:32px;
		margin-top:40px;
	}

	.frame_pd_detail>p {
		font-size:18px;
	}
}

/*//테블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.frame_steel_shot>img {
		width:100%;
	}
}
/*//작은PC*/
/*//프레임*/

/*철드럼*/
.steel_drum_wrap {
	margin-bottom: 40px;
}

.pd_sub_title {
	font-size:40px;
	font-weight: 700;
	color:#293c7f;
}

.drum_types {
	margin-bottom: 80px;
}

.drum_desc {
	margin-top: 40px;
}

.drum_desc>p {
	font-size:28px;
}

.drum_desc>p>span {
	color:#293c7f;
	font-weight: 700;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:768px) {

	.drum_types>div>img {
		display: block;
		width:80%;
		margin:0 auto;
	}

	.pd_sub_title {
		font-size:28px;
	}

	.drum_desc>p {
		font-size:16px;
	}
}
/*//작은스마트폰*/

/*스마트폰*/
@media (min-width:320px) and (max-width:768px) {

	.drum_types>div>img {
		display: block;
		width:80%;
		margin:0 auto;
	}

	.pd_sub_title {
		font-size:32px;
	}

	.drum_desc>p {
		font-size:18px;
	}
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.drum_types>div>img {
		width:100%;
	}

	.drum_desc {
		margin-top:20px;
	}

	.pd_sub_title {
		font-size:32px;
	}

	.drum_desc>p {
		font-size:18px;
	}
}
/*//테블릿*/


/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.drum_types>div>img {
		width:100%;
	}
}

/*//작은PC*/
/*//철드럼*/

/*sub_banner공통*/

	.sub_banner {
		width: 100%;
		height: 460px;
		margin:0 auto;
		background:url("../img/sub/consumer_banner.jpg") no-repeat center center;
		background-size:cover;
	}


.big_title {
	font-size:48px;
	font-weight: bold;
	text-align: center;
	color:#fff;
	margin-top:240px;
}

.sub_title {
	font-size: 24px;
	color: #fff;
	text-align: center;

}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.big_title {
		font-size:32px;
		font-weight: 700;
	}

	.sub_title {
		font-size: 16px;
	}
}
/*//작은 스마트폰*/

/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	.big_title {
		font-size:40px;
		font-weight: 700;
	}

	.sub_title {
		font-size: 20px;
	}
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.big_title {
		font-size:40px;
		font-weight: 700;
	}

	.sub_title {
		font-size: 20px;
	}

}

/*//sub_banner공통*/

/*고객문의접수,공지사항*/
.sub_contents_title {
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	margin-top:48px;
}

.sub_contents_title_left {
	font-size: 40px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 20px;
	margin-top:48px;
}

.bar {
	width:100px;
	height:2px;
	background-color: #393939;
	margin:0 auto;
}


.bar_title_left {
	width:100px;
	height:2px;
	background-color: #393939;
}

.sub_title_ment {
	font-size:20px;
	margin-top:20px;
	text-align: center;
}

.sub_title_ment_left {
	font-size:20px;
	margin-top:20px;
	text-align: left;
}

.tablewrap {
	margin-top:40px;
	margin-bottom: 40px;
}

.tablewrap>table>thead {
	border-top:2px solid #ddd;
	font-size:18px;
	height: 60px;
}

.tablewrap>table>thead>tr>th {
	line-height: 40px;
}

.tablewrap>table>thead>tr>th {
	text-align: center;
}

.tablewrap>table>tbody {
	font-size:16px;
	text-align: center;
}

.tablewrap>table>tbody>tr {
	height: 50px;
}
.tablewrap>table>tbody>tr>td {
	line-height: 36px;
}

.tablewrap>table>tbody>tr:last-child {
	border-bottom: 1px solid #ddd;
}

.table_sub_titles {
	text-align: left;
}

.question_alert {
	font-size:16px;
	background:#293c7f;
	color:#fff;
	padding-top:10px;
	padding-bottom: 10px;
	border-radius: 20px;
}

.search_box {
	margin-top:40px;
	text-align: left;
}

.search_box>div>div>input {
	border: 1px solid #000;
	border-radius: 2px;
	width: 210px;
	height: 36px;
}

.search_button {
	width:90px;
	height: 36px;
	color:#fff;
	line-height: 36px;
	background:#293c7f;
	display: inline-block;
	text-align: center;
}

.writing {
	width:120px;
	height: 36px;
	margin:0 auto;
	line-height: 36px;
	background:#293c7f;
	color:#fff;
}

.search_box>div>div>form {
	display: inline-block;
	width:100px;
	height: 38px;
	border: 1px solid #000;
	border-radius: 2px;
	line-height: 36px;
}

#paging {
	text-align: center;
}

#paging>strong {
	font-size: 16px;
    margin-left: 5px;
    margin-right: 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 100px;
    border: 1px solid #393939;
}

#paging>a{
	font-size: 16px;
    margin-left: 5px;
    margin-right: 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 100px;
    border: 1px solid #393939;
}

.write_btn {
	margin-top:40px;
	margin-bottom: 40px;
	text-align: center;
}

.write_btn>input {
	border-radius: 100px;
}

.table_detail_wrap>table {
	width:100%;		
	font-size:20px;
	text-align: left;
	margin-top:40px;
	margin-bottom: 40px;
}

  .table_detail_wrap>table tbody th {
	width: 150px;
	height: 60px;
	font-weight: bold;
	border-bottom: 1px solid #eee;
	background: #293c7f;
	line-height: 58px;
	font-weight: 700;
	text-align: center;
	color: #fff;
  }
  .table_detail_wrap>table td {
	width: 350px;
	padding: 10px;
	border-bottom: 1px solid #eee;
  }

  .table_detail_wrap>table>tbody>tr:first-child {
	border-top: 1px solid #eee;
  }
  
  .complain_list{
	width:100%;
	font-size:16px;
	margin-bottom: 40px;
  }

  .complain_list>ul>li {
	width: 100%;
	height: 60px;
	border-bottom: 1px solid #eee;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space:nowrap;
  }

  .complain_list>ul>li:first-child {
	border-top: 1px solid #eee;
  }

  
  .complain_list>ul>li>a {
	line-height: 58px;
  }

  .complain_list>ul>li>a>strong {
	margin-left: 10px;
  }

  .complain_list>ul>li>a>span {
	margin-left: 10px;
  }

.delete_btn {
		margin:0 auto;
		text-align: center;
		width:255px;
		height:42px;
		background:#ff0000;
		line-height: 42px;
		border-radius: 100px;
		color:#fff;
}

/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.sub_contents_title {
		font-size: 30px;

	}

	.question_alert {
		font-size:14px;
		background:#293c7f;
		color:#fff;
		padding-top:10px;
		padding-bottom: 10px;
		border-radius: 0px;
		margin-top:20px;
	}

	.sub_contents_title_left {
		font-size: 30px;
	}


	.sub_title_ment_left {
		font-size:16px;
	}

	.search_box>div>div>input {
		border: 1px solid #000;
		border-radius: 2px;
		width: 100%;
		height: 36px;
		margin-top:10px;
	}
	
	.search_button {
		width:100%;
		height: 36px;
		color:#fff;
		line-height: 36px;
		background:#293c7f;
		display: inline-block;
		text-align: center;
		margin-top:10px;
	}
	
	.writing {
		width:100%;
		height: 36px;
		margin:0 auto;
		line-height: 36px;
		background:#293c7f;
		color:#fff;
	}
	
	.search_box>div>div>form {
		display: inline-block;
		width:100%;
		height: 38px;
		border: 1px solid #000;
		border-radius: 2px;
		line-height: 36px;
	}

	.search_box>div>div>form>select {
		width:100%;
	}

	.tablewrap>table>tbody>tr:last-child {
		border-bottom: 1px solid #ddd;
	}

	.q_number {
		display: none;
	}

	.writer {
		display: none;
	}

	.table_detail_wrap>table tbody th {
		display: block;
		width:100%;
	  }
	  .table_detail_wrap>table td {
		display: block;
		width:100%;
		text-align: center;
	  }

	  .delete_btn {
		margin:0 auto;
		text-align: center;
		width:255px;
		height:42px;
		background:#ff0000;
		line-height: 42px;
		border:none;
		color:#fff;
}

}
/*//작은 스마트폰*/

/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	.sub_contents_title {
		font-size: 30px;

	}

	.question_alert {
		font-size:14px;
		background:#293c7f;
		color:#fff;
		padding-top:10px;
		padding-bottom: 10px;
		border-radius: 0px;
		margin-top:20px;
	}

	.sub_contents_title_left {
		font-size: 30px;
	}


	.sub_title_ment_left {
		font-size:16px;
	}

	.search_box>div>div>input {
		border: 1px solid #000;
		border-radius: 2px;
		width: 100%;
		height: 36px;
		margin-top:10px;
	}
	
	.search_button {
		width:100%;
		height: 36px;
		color:#fff;
		line-height: 36px;
		background:#293c7f;
		display: inline-block;
		text-align: center;
		margin-top:10px;
	}
	
	.writing {
		width:100%;
		height: 36px;
		margin:0 auto;
		line-height: 36px;
		background:#293c7f;
		color:#fff;
	}
	
	.search_box>div>div>form {
		display: inline-block;
		width:100%;
		height: 38px;
		border: 1px solid #000;
		border-radius: 2px;
		line-height: 36px;
	}

	.search_box>div>div>form>select {
		width:100%;
	}

	.tablewrap>table>tbody>tr:last-child {
		border-bottom: 1px solid #ddd;
	}

	.q_number {
		display: none;
	}

	.writer {
		display: none;
	}

	.table_detail_wrap>table tbody th {
		display: block;
		width:100%;
	  }
	  .table_detail_wrap>table td {
		display: block;
		width:100%;
		text-align: center;
	  }
	
	.delete_btn {
			margin:0 auto;
			text-align: center;
			width:255px;
			height:42px;
			background:#ff0000;
			line-height: 42px;
			border:none;
			color:#fff;
	}
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.search_box>div>div>input {
		border: 1px solid #000;
		border-radius: 2px;
		width: 100%;
		height: 36px;
		margin-top:10px;
	}
	
	.search_button {
		width:100%;
		height: 36px;
		color:#fff;
		line-height: 36px;
		background:#293c7f;
		display: inline-block;
		text-align: center;
		margin-top:10px;
	}
	
	.writing {
		width:100%;
		height: 36px;
		margin:0 auto;
		line-height: 36px;
		background:#293c7f;
		color:#fff;
	}
	
	.search_box>div>div>form {
		display: inline-block;
		width:100%;
		height: 38px;
		border: 1px solid #000;
		border-radius: 2px;
		line-height: 36px;
	}

	.search_box>div>div>form>select {

		width:100%;

	}
	.question_alert {
		font-size:14px;
	}

	.tablewrap>table>tbody>tr:last-child {
		border-bottom: 1px solid #ddd;
	}

}
/*//고객문의접수,공지사항*/

/*서브컨텐츠 타이틀*/

.sub_big_title {
	font-size: 30px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 20px;
	margin-top:48px;
}

.sub_big_title>span {
	color:#293c7f;
}

.sub_big_title>label>input{
	width: 20px;
    height: 20px;
    margin-right: 10px;
}
/*//서브컨텐츠 타이틀*/

/*관리자,고객글쓰기*/
.pure-group>div {
	font-size:24px;
	margin-top:10px;
}


.pure-group>div>div>input {
	width:100%;
	height:60px;
	font-size:24px;
	color:#393939;
	padding-left:10px;
	padding-right:10px;
	border: 1px solid #393939;
}

.pure-group>div>div>textarea {
	width:100%;
	height:400px;
	font-size:24px;
	color:#393939;
	padding-left:10px;
	padding-right:10px;
	border: 1px solid #393939;
}

.pure-button {
	width:100%;
	height:60px;
	line-height: 60px;
	border-radius: 5px;
	font-size:24px;
	background:#393939 !important;
}

.tips_position {
	position: relative;
	width:100%;
}

.tips {
	position: absolute;
    top: 38%;
    right: 8%;
}

.tips>img {
	width:80%;
}

.files_send {
	margin-top:10px;
}

.fileadd {
	height: 42px;
	font-size:18px;
	color:#fff;
	background:#293c7f;
	line-height: 42px;
	text-align: center;
	margin-bottom: 40px;
}

.fileexport {
	height: 42px;
	font-size:18px;
	color:#393939;
	background:#eeeeee;
	line-height: 42px;
	text-align: left;
}

.fileexport>button {
	width:80px;
	height:36px;
	line-height: 38px;
	border: 1px solid #393939;
	margin-top : 4px;
	margin-right: 12px;
}

.btns {
	margin-bottom: 40px;
	text-align: center;
}

.btns>div {
	display: inline-block;
	margin-left:5px;
	margin-right: 5px;
	width:120px;
	height:42px;
	background:#293c7f;
	line-height: 42px;
	color:#fff;
}

.btns>div>button {
	width:120px;
	height:42px;
}

  @media (min-width:992px) and (max-width:1199px) {
	.pure-group>input {
		font-size: 20px;
	}
	  	
	.pure-group>textarea {
		font-size: 20px;
	}
	

  }

  @media (min-width:769px) and (max-width:991px) {
	.pure-group>input {
		font-size: 18px;
	}
	  	
	.pure-group>textarea {
		font-size: 18px;
	}

	fieldset>div>div>label {
		font-size:20px;
	}
}


  @media(max-width:768px) {
	.pure-group>input {
		font-size: 16px;
	}
	
	.pure-group>textarea {
		font-size: 16px;
	}

	.fileadd {
		font-size:18px;
		margin-bottom: 0px;
	}

	.fileexport {
		height: 42px;
		font-size:16px;
		color:#393939;
		background:#eeeeee;
		line-height: 42px;
		text-align: left;
		margin-bottom: 20px;
	}


	.btns>div {
		display: inline-block;
		margin-left:5px;
		margin-right: 5px;
		width:120px;
		height:42px;
		background:#293c7f;
		line-height: 42px;
		color:#fff;
	}

	fieldset>div>div>label {
		margin-top:20px;
		font-size:20px;
	}
	
}

/*//관리자,고객글쓰기*/

/*관리자,고객글쓰기_출력페이지*/
.consumer_detail_wrap {
	width:100%;
	margin-top:40px;
	margin-bottom: 40px;
}

.consumer_detail_titles {
	width:100%;
	height: 60px;
	background: #004b57;
	color:#fff;
	font-weight: bold;
}

.consumer_detail_wrap>div {
	border-bottom:1px solid #eee;
}


.consumer_detail_wrap>div>div {
	display: inline-block;
	font-size:18px;
	vertical-align: middle;
	text-align: center;
	padding: 15px 0;
}

.consumer_detail_wrap .name {
	width:10%;
}

.consumer_detail_wrap .complain {
	width:79%;
}

.consumer_detail_wrap .date {
	width:9%;
}

.complain_details {
	width:100%;
	height:auto;
	background: #eeeeee;
	padding: 24px;
    font-size: 18px;
}

.complain_screenshot {
	width:100%;
	background: #393939;
	color:#fff;
}

/*//관리자,고객글쓰기_출력페이지*/

/*login*/

#login_back {

	height:auto;
	background-size:cover;
	position: relative;
}

#login_grid {
	padding-top:50px;
	width:1170px;
	height: 425px;
	display: grid;
	margin:0 auto;
	text-align: center;
	color:#393939;
	font-size:20px;
	padding-bottom: 50px;
}

#login_grid>p {
	margin-top:20px;
	margin-bottom: 20px;
}

.login_text>label {
	display: block;

}

.login_text>input {
	width:300px;
	height:40px;
	border: 1px solid #393939;
	border-radius: 5px;
	margin-top:15px;
	margin-bottom: 20px;
}

.login_btn {
	width:190px;
	height:40px;
	margin:0 auto;
	border:1px solid #393939;
	border-radius: 5px;
	line-height: 38px;
}

.back {
	margin-top:40px;
}

.secret_wrap {
	height: auto;
	padding-bottom: 10px;
}

.secret_bar {
	width:100%;
	height:58px;
	font-size:36px;
	font-weight: 500;
	color:#fff;
	background:#293c7f;
}

.secret_bar>span {
	margin-left:10px;
}

.secret_desc {
	font-size:18px;
	color:#393939;
}

.secret_desc>p {
	margin-top:18px;
}

.confirm_password>label {
	font-size: 18px;
	font-weight: 700;
	margin-right: 10px;
}

.confirm_password>input {
	width: 200px;
    height: 38px;
    border: 1px solid #eee;
    border-radius: 5px;
}


.confirm_btn {
	width:60px;
	height:38px;
	font-weight: 500;
	border-radius: 5px;
	line-height: 38px;
	background:#293c7f !important;
	color:#fff;
}

@media (max-width:768px) {
	#login_grid{
		display:block;
		width:100%;
		margin:0 auto;
		background-size:cover;
	}


}

@media (min-width:769px) and (max-width:991px) {


	#login_grid {

		display: grid;
		width:750px;
		margin:0 auto;
	}
}

/*//login*/


/*footer*/
.footer {
	background-color: #393939;
	height: auto;
	padding: 20px;
	font-size:14px;
	color:#fff;
}

.footer_logo {
	font-size:18px;
	font-weight: 700;
}

.footer_info {
	margin-top:20px;
}

.private_law>a>h5 {
	margin-top:20px;
	color:#fff;
	font-size:16px;
	font-weight: 700;
}

.sitemap_menu {
	margin-top:20px;
	border-top: 1px solid #a0a0a0;
	
}

.sitemap_menu>div>a {
	color:#fff !important;
}

.sitemap_menu>div>a>h5 {
	font-size:18px;
	font-weight: bold;
	margin-top:12px
}

.sitemap_menu>div>a>p {
	font-size:14px;
	margin-top:12px;

}

/*스마트폰*/
@media (min-width:320px) and (max-width:768px) {
	.sitemap_menu{
		display: none;
	}
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.sitemap_menu{
		display: none;
	}

}
/*//테블릿*/

/*//footer*/