@charset "UTF-8";
/*@import url(../codefont/fonts.css);*/

.img100 {
	width:auto;
}

#wrap {
	position: relative;
	margin: 0;
	padding: 0;
	text-align: center;
}

.inner1200 {
	width: 1200px !important;
	margin: 0px auto;
}
.inner1440 {
	width: 1440px !important;
	margin: 0px auto;
}
@media (max-width:1439px) {
.inner1440 {
	width: 100% !important;
}
}
@media (max-width:1199px) {
.inner1200 {
	width: 100% !important;
}
}

h2 {
	color: #202020;
	line-height:1.4;
	font-size: 60px;
	font-weight: 700;
	margin-top:0;
	margin-bottom:30px;
}
h3 {
	color: #202020;
	line-height:1.4;
	font-size: 45px;
	font-weight: 700;
	margin-top:0;
	margin-bottom:30px;
}
h4 {
	color: #202020;
	line-height:1.4;
	font-size: 28px;
	font-weight: 700;
	margin-top:0;
	margin-bottom:30px;
}
h5 {
	color: #202020;
	line-height:1.4;
	font-size: 20px;
	font-weight: 700;
	margin-top:0;
	margin-bottom:30px;
}
@media (max-width:767px) {
h2 {
	font-size: 48px;
}
h3 {
	font-size: 36px;
}
}
@media (max-width:539px) {
h3 {
	font-size: 30px;
}
h4 {
	font-size: 21px;
}
}

/*--- top ---*/
#top-banner {
	position: relative;
	z-index: 9;
	background-color:#f5f5f5;
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
	clear: both;
}
#top-banner .top-banner-inner {
	width: 1240px;
	margin: 0 auto;
	padding: 0;
}

#top {
	box-sizing:border-box;
	margin:0;
	padding:0 100px;
}
.top-inner {
	position: relative;
	height:36px;
	margin: 10px auto;
}
@media (max-width: 1439px) {
#top {
	padding-right:45px;
	padding-left:45px;
}
}
@media (max-width: 1199px) {
#top {
	padding-right:15px;
	padding-left:15px;
}
}

.top-util-menu {
	float:right;
	margin-top:4px;
	margin-right:60px;
}
.top-util-menu li {
	position: relative;
	float: left;
	font-size: 13px;
	line-height: 32px;
	padding: 0px;
	margin: 0px 12px;
}
.top-util-menu li::before {
	content:'';
	display:none;
	position:absolute;
	width:1px;
	height:12px;
	left:-12px;
	top:50%;
	margin-top:-6px;
	background-color:#ddd;
}
.top-util-menu li:first-child::before {
	display:none;
}
.top-util-menu li a {
	color: #555;
	text-decoration: none;
}
.top-util-menu li a:hover {
	color:#000;
	text-decoration:underline;
}


#logo-section {
	position: relative;
	z-index: 9;
	clear: both;
	width: 100%;
	height: 80px;
	text-align: center;
	background-color:#fff;
}
.logo-section-inner {
	position: relative;
	width: 1240px;
	margin: 0 auto;
}
.logo-section-inner .top-cs {
	position: absolute;
	top: 10px;
	right: 0;
}
.logo-section-inner .logo {
	position: absolute;
	left: 0%;
	top: 10px;
}
.logo-section-inner .top-naver {
	position: absolute;
	top: 10px;
	right: 270px;
}

/*--- 검색바 ---*/
#search-wrap {
    position: absolute;
	z-index:200;
    top:0px;
    right:210px;
    transition: all 0.5s ease-in-out;
}
#search-wrap.active {
    right:280px;
    transition: all 0.3s ease-in-out;
}

#search-wrap .input-holder {    
    height: 42px;
    width:42px;
    overflow: hidden;
    background: rgba(255,255,255,0);
    border-radius:6px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
#search-wrap.active .input-holder {
    width:450px;
    border-radius: 50px;
	border:2px solid #ccc;
    background: rgba(255,255,255,1);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}
#search-wrap .input-holder .search-input {
    width:100%;
    height: 32px;
    padding:0px 50px 0 20px;
    opacity: 0;
    position: absolute;
    top:3px;
    left:0px;
    background: transparent;
    box-sizing: border-box;
    border:none;
    outline:none;
    font-weight: 400;
    line-height: 20px;
    color:#000;
    transform: translate(0, 60px);
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition-delay: 0.3s;
}
#search-wrap.active .input-holder .search-input {
    opacity: 1;
    transform: translate(0, 0);
}
#search-wrap .input-holder .search-icon {
    width:42px;
    height:42px;
    border:none;
    border-radius:6px;
    background: #FFF;
    padding:0px;
    outline:none;
    position: relative;
    z-index: 202;
    float:right;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#search-wrap.active .input-holder .search-icon {
    width: 32px;
    height:32px;
    margin:3px 5px;
    border-radius: 30px;
}
#search-wrap .input-holder .search-icon span {
    width:22px;
    height:22px;
    display: inline-block;
    vertical-align: middle;
    position:relative;
    transform: rotate(-45deg);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
}
#search-wrap.active .input-holder .search-icon span {
    transform: rotate(-45deg);
}
#search-wrap .input-holder .search-icon span::before,
#search-wrap .input-holder .search-icon span::after {
    position: absolute; 
    content:'';
}
#search-wrap .input-holder .search-icon span::before {
    width: 3px;
    height: 11px;
    left: 10px;
    top: 11px;
    border-radius: 2px;
    background: #acacac;
}
#search-wrap .input-holder .search-icon span::after {
    width: 14px;
    height: 14px;
    left: 4px;
    top: 0px;
    border-radius: 16px;
    border: 3px solid #acacac;
}
#search-wrap .close {
    position: absolute;
    z-index: 201;
    top:7px;
    right:7px;
    width:25px;
    height:25px;
    cursor: pointer;
    transform: rotate(-180deg);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition-delay: 0.2s;
}
#search-wrap.active .close {
    right:-35px;
    transform: rotate(45deg);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition-delay: 0.5s;
}
#search-wrap .close::before,
#search-wrap .close::after {
    position:absolute;
    content:'';
    background: #666;
    border-radius: 2px;
}
#search-wrap .close::before {
    width: 3px;
    height: 25px;
    left: 11px;
    top: 0px;
}
#search-wrap .close::after {
    width: 25px;
    height: 3px;
    left: 0px;
    top: 11px;
}
/** serach-old **
.search-bar {
	float:none;
	width: 347px;
	height: 35px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-webkit-border-radius: 50px;
}
.g_window .gbox {
	float: left;
	margin: 1px 0px 1px 17px;
}
.g_window .gbox input {
	float: none;
	width: 295px;
	margin: 0px;
	padding: 0;
	border: 0;
	outline: none;
	text-align: left;
	color: #000000;
	background: transparent;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
.g_window input[type=image] {
	float: left;
}
.g_window .btn_arw {
	position: absolute;
	top: 6px;
	left: 392px;
}
.g_window .btn_arw a {
	display: block;
	padding: 7px 5px;
}*/
/***** Search END *****/
@media (max-width:1199px) {
#search-wrap {
	display:none;
}
}

#copy {
	clear: both;
	width: 100%;
	margin:70px 0px 0 0;
	padding:40px 0px;
	text-align: center;
	background-color:#fff;
}
.copy-inner {
	position: relative;
	margin: 0px auto;
}
.bottom-utilmenu {
	clear:both;
	float:left;
	padding: 0px;
	margin: 0px 0px 20px 25px;
	display: inline-block;
}
.bottom-utilmenu li {
	float: left;
	position:relative;
	margin: 0px 1px;
	padding:0px 20px;
	line-height:24px;
}
.bottom-utilmenu li::before {
	content:'';
	display:block;
	width:1px;
	height:12px;
	position:absolute;
	top:50%;
	left:-1px;
	transform:translateY(-50%);
}
.bottom-utilmenu li:first-child::before {
	display:none;
}
.bottom-utilmenu a,
.bottom-utilmenu a:hover {
	cursor:pointer;
	font-size:14px;
	font-weight:200;
	color: #fff;
	text-decoration: none;
}
.bottom-brand {
	display:inline-block;
	width:170px;
	margin:0 auto 20px auto;
	text-align:center;
}
.copyright {
	clear: both;
	margin:0px auto;
	padding:0px 15px;
	text-align:center;
	color: #9c9c9c;
	font-size: 13px;
	font-weight:300;
}
.copyright a {
	color: #999;
}
.copyright span.gline {
	display:inline;
	margin:0px 10px;
}
.esc {
	position: absolute;
	bottom: 8px;
	right: 8px;
}
@media (max-width:767px) {
.copyright {
	font-size:12px;
}
.copyright span.gline {
	clear:both;
	display:block;
	margin:0;
}
}

.qm {
	position:fixed;
	z-index:90;
	right:45px;
	bottom:80px;
}
.qmbtn_top {
	display:block;
	position:relative;
	width:38px;
	height:38px;
	cursor:pointer;
	background-color:#202020;
}
.qmbtn_top::after {
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	right:0;
	width:38px;
	height:38px;
	background-color:transparent;
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:24px;
	background-image:url(/img/icons/i_arrow_white.png);
	transform:rotate(180deg);
	opacity: .5;
}
.qmbtn_top:hover::after {
	opacity:1;
}
@media (max-width:1439px) {
.qm {
	right:25px;
}
}
@media (max-width:1080px) {
.qm {
	bottom:30px;
}
}
@media (max-width:539px) {
.qm {
	right:10px;
}
}

/*--- Main --*/
#Visual-section {
	position: relative;
	width: 100%;
	height: 550px;
	margin: 0px;
	text-align: center;
	z-index:1;
}
@media (max-width:1023px) {
#Visual-section {
	height:412px;
}
}
@media (max-width:767px) {
#Visual-section {
	height:290px;
}
}
@media (max-width:539px) {
#Visual-section {
	height:226px;
}
}
@media (max-width:420px) {
#Visual-section {
	height:193px;
}
}
@media (max-width:359px) {
#Visual-section {
	height:150px;
}
}

#mainReview {
	clear: both;
	display:table;
	width:100%;
	min-height:680px;
	margin: 0;
	padding:40px 0px 80px 0px;
	text-align: center;
	background-color:#252525;
}
#mainReview h2 {
	clear: both;
	margin: 40px auto;
	padding: 0;
	text-align: center;
	font-size:48px;
	font-weight:300;
	color:#fff;
}
#mainReview h2:after {
	content: "";
	display: block;
	width: 52px;
	border-bottom: 1px solid #555;
	margin: 15px auto;
}
#mainReview .mReview-inner {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
}
#mainReview .mReview-inner li {
	float: left;
	box-sizing:border-box;
	width: 16.6%;
	height:142px;
	margin: 0px;
	padding: 0;
	border:0px solid #666;
	background-color:#666;
}
#mainReview .mReview-inner li img {
	width: 100%;
	height: 100%;
	border: 0;
	opacity:1;
}
#mainReview .mReview-inner li:hover img {
	opacity: .5;
}

#notice-wrap {
	clear: both;
	display:block;
	width: 100%;
	text-align: center;
	margin: 0;
	padding:40px 0px 80px 0px;
	background-color:#fff;
}
#notice-wrap h2 {
	clear: both;
	margin: 40px auto;
	padding: 0;
	text-align: center;
	font-size:48px;
	font-weight:300;
	color:#000;
}
#notice-wrap h2:after {
	content: "";
	display: block;
	width: 52px;
	border-bottom: 1px solid #555;
	margin: 15px auto;
}
#notice-wrap .main-notice {
	position:relative;
	width: 1200px;
	padding:0px;
	margin:0px auto;
}
#notice-wrap .main-notice .up {
	float: left;
	width: 459px;
	height: 166px;
	padding: 24px 60px 0 60px;
	border: 1px solid #d9d9d9;
	background-color: #fff;
}
#notice-wrap .main-notice .order {
	float: right;
	width: 459px;
	height: 166px;
	padding: 24px 60px 0 60px;
	border: 1px solid #d9d9d9;
	background-color: #fff;
}
.main-notice ul {
	list-style:none;
	display: inline-block;
	width:100%;
	padding: 0;
	margin: 0;
	border-top: 2px solid #24366e;
}
.main-notice li {
	list-style:none;
	display:inline-block;
	width: 100%;
	padding:12px 8px;
	text-align:left;
	color:#000;
	font-size: 16px;
	line-height: 21px;
	border-bottom:1px solid #e6e8ec;
	background-color:#fff;
}
.main-notice li:hover {
	background-color:#eaf1fa;
}

.main-notice li a {
	float: left;
	width:75%;
	display: inline-block;
	color:#000;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.main-notice li span.date {
	float: right;
	width:25%;
	display: inline-block;
	text-align-last:right;
}

#Ban-square {
	clear: both;
	width: 100%;
	margin: 80px 0px;
	display:table;
}
#Ban-square .square-Box {
	float: left;
	width: 33.3%;
	box-sizing:border-box;
	margin: 0px;
	padding:0;
	text-align:center;
	border:0;
	background:url(/img/main/bn_gline.png) no-repeat 0% 50%;
}
#Ban-square .square-Box:first-child {
	background:none;
}
#Ban-square .square-Box > div {
	clear:both;
}
#Ban-square .square-Box a {
	display:block;
	width:100%;
	height:100%;
	text-decoration:none;
}
#Ban-square .square-Box .title {
	line-height:32px;
	font-size:27px;
	font-weight:400;
	color:#000;
}
#Ban-square .square-Box .stitle {
	margin-bottom:18px;
	padding-bottom:18px;
	font-size:13px;
	font-weight:200;
	color:#898989;
	background:url(/img/main/title_line.png) no-repeat 50% 100%;
}
#Ban-square .square-Box .ban-content {
	padding:0 45px;
	word-break:keep-all;
	line-height:21px;
	font-size:16px;
	font-weight:400;
	color:#000;
}
#Ban-square .square-Box .banicon {
	width:100%;
	height:186px;
	background-size:96px;
	background-repeat:no-repeat;
}
.i_tel {
	padding-top:130px;
	background-image:url(/img/icons/i_tel.png);
	background-position:50% 25px;
}
.i_map {
	background-image:url(/img/icons/i_map.png);
	background-position:50% 50%;
}
.i_portfolio {
	background-image:url(/img/icons/i_portfolio.png);
	background-position:50% 50%;
}

#Wide-section {
	clear:both;
	width:100%;
	display:block;
}
#Wide-section .widebox {
	position:relative;
	width:50%;
	padding:50px;
}
#Wide-section .widebox .bg_shadow {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:#252525;
	opacity: .7;
}
#Wide-section .widebox._left {
	float:left;
	background:url(/img/main/wideimg_L.jpg) no-repeat 100% 50% #252525;
	background-size:cover;
}
#Wide-section .widebox._right {
	float:right;
	background:url(/img/main/wideimg_R.jpg) no-repeat 0% 50% #2c2f3f;
	background-size:cover;
}
#Wide-section .widebox .wide-textbox._left {
	float:left;
	text-align:left;
}
#Wide-section .widebox .wide-textbox._right {
	float:right;
	text-align:left;
}
#Wide-section .widebox .wide-textbox {
	position:relative;
	width:550px;
	height:260px;
	font-size:15px;
	color:#fff;
}
#Wide-section .widebox .wide-textbox a {
	display:block;
	width:100%;
	height:100%;
	color:#fff;
	text-decoration:none;
}
#Wide-section .widebox .wide-textbox h3 {
	clear:both;
	height:30px;
	margin-bottom:30px;
	line-height:30px;
	font-size:24px;
	font-weight:700;
	color:#fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
 }
#Wide-section .widebox .wide-textbox h4 {
	clear:both;
	margin-bottom:10px;
	line-height:21px;
	font-size:18px;
	font-weight:400;
	color:#b7b7b7;
	text-decoration:underline;
	text-underline-position: under;
}
#Wide-section .widebox .wide-textbox .widecon {
	clear:both;
	min-height:88px;
	word-break:break-all;
}
#Wide-section .widebox .wide-textbox .btn_more {
	position:absolute;
	bottom:0;
	display:inline-block;
	padding:5px 8px;
	border:1px solid #fff;
	background-color:transparent;
}
#Wide-section .widebox .wide-textbox a:hover > div.btn_more, 
#Wide-section .widebox .wide-textbox .btn_more:hover {
	background-color:rgba(0,0,0,0.3);
}

#main3Box-section {
	clear:both;
	display:block;
	padding:100px 0px;
	text-align:center;
	background-color:#1b1f3a;
}
#main3Box-section .main3Box-inner {
	margin:0 auto;
}
#main3Box-section h2 {
	clear:both;
	margin-bottom:45px;
	text-align:left;
	color:#fff;
	font-size:32px;
	font-weight:700;
}
#main3Box-section ul {
	list-style:none;
	display:inline-block;
	width:100%;
	margin:0;
	padding:0;
}
#main3Box-section ul li {
	list-style:none;
	box-sizing:border-box;
	float:left;
	width:33.3%;
	padding:0 30px;
	text-align:left;
	font-size:15px;
	color:#b7b7b7;
}
#main3Box-section ul li:first-child {
	padding:0 60px 0 0;
}
#main3Box-section ul li:last-child {
	padding:0 0 0 60px;
}
#main3Box-section ul li .imgbox {
	clear:both;
	width:100%;
	margin-bottom:30px;
}
#main3Box-section ul li .imgbox img {
	width:100%;
	height:auto;
}
#main3Box-section ul li .title {
	clear:both;
	margin-bottom:12px;
	text-align:left;
	font-size:24px;
	font-weight:600;
	color:#fff;
}
#main3Box-section ul li .contxt {
	clear:both;
	height:45px;
	margin-bottom:30px;
}
#main3Box-section ul li a.btn_more {
	clear:both;
	display:inline-block;
	width:120px;
	padding:10px;
	cursor:pointer;
	text-align:center;
	font-size:14px;
	color:#999;
	border:1px solid #999;
	background-color:transparent;
}
#main3Box-section ul li a.btn_more:hover {
	color:#fff;
	text-decoration:none;
	border:1px solid #fff;
}

#mainTile-section {
	clear:both;
	display:block;
	padding:100px 0px;
	text-align:center;
	background-color:#fff;
}
#mainTile-section .mainTile-inner {
	margin:0 auto;
	display:inline-block;
}
#mainTile-section .Tile-left, #mainTile-section .Tile-right {
	float:left;
	width:50%;
}
#mainTile-section .bigTile {
	display:inline-block;
	box-sizing:border-box;
	width:100%;
	height:580px;
	padding:5px;
}
#mainTile-section .smallTile {
	display:inline-block;
	box-sizing:border-box;
	float:left;
	width:50%;
	height:290px;
	padding:5px;
}
#mainTile-section .thumbsTile {
	display:block;
	position:relative;
	width:100%;
	height:100%;
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:cover;
}
#mainTile-section .thumbsTile._bg1 {
	background-image:url(/img/main/tileimg_1.jpg);
}
#mainTile-section .thumbsTile._bg2 {
	background-image:url(/img/main/tileimg_2.jpg);
}
#mainTile-section .thumbsTile._bg3 {
	background-image:url(/img/main/tileimg_3.jpg);
}
#mainTile-section .thumbsTile._bg4 {
	background-image:url(/img/main/tileimg_4.jpg);
}
#mainTile-section .thumbsTile._bg5 {
	background-image:url(/img/main/tileimg_5.jpg);
}

#mainTile-section .thumbsTile .textbox {
	position: absolute;
	left:30px;
	right:30px;
	bottom:30px;
	text-align:left;
	line-height:18px;
	font-size:15px;
	color:#fff;
}
#mainTile-section .thumbsTile .textbox h4 {
	margin-bottom:10px;
	line-height:24px;
	font-size:20px;
	font-weight:700;
}

#Production-wrap {
	clear:both;
	width:100%;
	display:block;
	position:relative;
	height:760px;
	background:url(/img/main/bg_work.jpg) no-repeat 50% 0% #e1e2e7;
}
#Production-wrap .Prd-img {
	position:absolute;
	top:80px;
	right:0;
	margin-right:0px;
}
#Production-wrap .Prd-list {
	width:516px;
	float:left;
	margin:0 0 0 120px;
	padding:215px 0px 0px 0px;
	list-style:none;
}
#Production-wrap .Prd-list li {
	display:inline-block;
	width:100%;
	list-style:none;
	margin:9px 0px;
	padding:0;
}
#Production-wrap .PrdBox {
	display:block;
	width:100%;
	height:56px;
	margin:0;
	padding:0px 85px 0px 32px;
	vertical-align:middle;
	/*line-height:52px;*/
	letter-spacing:-0.05em;
	font-size:28px;
	font-weight:400;
	background:url(/img/main/btn_arr.png) no-repeat 94% 50%;
	background-color: transparent;
	border: 2px solid #6a6c76;
	border-radius:30px;
	-moz-border-radius:30px;
	-webkit-border-radius:30px;
}
#Production-wrap .PrdBox:hover {
	background:url(/img/main/btn_arr_og.png) no-repeat 94% 50%;
	background-color:#303030;
	border-color:#303030;
}
#Production-wrap .PrdBox .Prd-title {
	float:left;
	line-height:52px;
	text-align:left;
	color:#000;
}
#Production-wrap .PrdBox .Prd-title span {
	color:#000;
}
#Production-wrap .PrdBox .Prd-price {
	float:right;
	line-height:52px;
	text-align:right;
	color:#000;
}
#Production-wrap .PrdBox:hover > .Prd-title,
#Production-wrap .PrdBox:hover > .Prd-price {
	color:#fff;
}
#Production-wrap .PrdBox:hover > .Prd-title span {
	color:#f7941e;
}

/*** IE에만 별도 적용 ***/
/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.bottom-utilmenu li {
	background-position:0 3px;
}

}
 
/*--- //END Main --*/

#contents {
	clear:both;
	width: 100%;
	min-height:360px;
	text-align:center;
}

.contents-inner {
	position:relative;
	margin:0 auto;
}

.contents-side {
	position:relative;
	width:calc(100% - 240px);
	margin-left:240px;
}
.contents-side._sidenone {
	width:100%;
	margin-left:0;
}

#LNB {
	position: absolute;
	z-index:9;
	top:60px;
	left:0;
	width:200px;
	height:100%;
	margin-right:40px;
}
#LNB .left-menu {
	width:calc(100% - 40px);
	margin-left:20px;
	margin-right:20px;
	text-align:left;
}
#LNB .left-menu h2 {
	margin-bottom:24px;
	line-height:1.3;
	font-size:21px;
	font-weight:800;
	color:#202020;
}
#LNB .left-menu ul {
	list-style:none;
	margin:0;
	padding:0;
}
#LNB .left-menu li {
	margin:10px 0px;
	word-break:break-all;
}
#LNB .left-menu li a {
	display:block;
	padding:5px 0px;
	color:#555;
	text-decoration:none;
}
#LNB .left-menu li a:hover {
	color:#555;
	text-decoration:underline;
}
@media (max-width:1023px) {
.contents-side {
	width:100%;
	margin-left:0px;
}

#LNB {
	position:relative;
	width:100%;
	height:auto;
	top:0;
	margin-right:0;
	padding:20px 0 10px 0;
	border-bottom:1px solid #ddd;
}

#LNB .left-menu h2 {
	margin-bottom:15px;
}
#LNB .left-menu li {
	margin-top:5px;
	margin-bottom:5px;
}
}

/*** MEMBER CSS ***/
.login-wrap {
	width:400px;
	margin:0 auto;
}
.login-wrap._joinpage {
	width:700px;
}
.login-wrap._joinpage2 {
	width:460px;
	min-height:480px;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}

.login-wrap h3 {
	font-weight:300;
	font-size:30px;
	font-family:Arial;
	/*font-family:'Merriweather', serif;*/
}
.login-wrap h5 {
	font-weight:400;
	font-family:Arial;
}
.login-wrap .login-bottom {
	position:relative;
	margin-top:60px;
}
.login-wrap .login-bottom::before {
	content:'';
	display:block;
	position:absolute;
	top:-30px;
	width:100%;
	border-top:1px solid #c0c0c0;
}
.login-Form {
	width: 400px;
	box-sizing:border-box;
	margin: 30px auto;
	padding:0px 45px;
	text-align: center;
}
.login-Form._joinform {
	width:100%;
	padding:0;
	text-align:left;
}

.login-Form > * {
	clear:both;
	display:flex;
	flex-wrap:wrap;
	margin-bottom:15px;
}
.login-Form > * > * {
	flex:1 0 0%;
}

/*
.login-Form._joinform > :nth-child(2) > * > *,
.login-Form._joinform > :nth-child(3) > * > * {
	margin-top:15px;
}
*/
.login-Form._joinform > :nth-child(1) > * > * {
	margin-top:15px;
}
.login-Form._joinform > * > * > :first-child {
	margin-top:0;
}
.loginForm-subject  {
	flex:0 0 auto;
	width:130px;
	margin-right:20px;
	line-height:32px;
	font-weight:400;
	color:#222;
}
.loginForm-input {
	position:relative;
}
.loginForm-input._id::before,
.loginForm-input._pw::before {
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:-45px;
	width:32px;
	height:32px;
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:24px;
	opacity: 0.3;
}
.loginForm-input._id::before {
	background-image:url(/img/icons/i_id.png);
}
.loginForm-input._pw::before {
	background-image:url(/img/icons/i_password.png);
}
.loginForm-input input {
	width: 100%;
	height: 32px !important;
	box-sizing: border-box;
	padding: 0px 10px !important;
	line-height: 32px;
	color: #000;
	text-align: left;
	border: 0px !important;
	background-color: #f0f0f0;
}
.loginForm-btn > * {
	width:100% !important;
	height: 32px !important;
	line-height: 32px !important;
}

.join-form .join-schbox {
	width: 300px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 10px 10px 0px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #f5f5f5;
}
.join-form .join-schbox ul {
	clear: both;
	display: inline-block;
	width: 100%;
	margin: 10px auto;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.join-form .join-schbox li {
	padding: 5px;
	text-align: left;
	border-top: 1px solid #ddd;
	background-color: #fff;
}
.join-form .join-schbox li:first-child {
	border-top: 0px;
}

.join-welcome {
	flex:0 0 auto;
	width:100%;
	font-family:Arial;
	font-size:28px;
	word-break:keep-all;
	text-align: justify;
}

.mypage-tab {
	clear: both;
	width: 100%;
	height: 78px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	margin-bottom: 40px;
}
.mypage-tab a {
	display: block;
	float: left;
	width: 33.3%;
	box-sizing: border-box;
	border-left: 1px solid #ddd;
	line-height: 76px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #454545;
}
.mypage-tab a.bdnone {
	border-left: 0px;
}

@media (max-width:767px) {
.login-wrap._joinpage {
	width:100%;
}
}
@media (max-width:539px) {
.login-wrap._joinpage2 {
	width:100%;
}

.login-wrap .login-bottom {
	margin-top:50px;
}
.login-wrap .login-bottom::before {
	top:-25px;
}

.login-Form {
	width:100%;
	padding-right:10px;
}
.login-Form > * {
	margin-bottom:12px;
}

.loginForm-subject {
	width:100px;
}
}
@media (max-width:420px) {
.login-wrap {
	width:100%;
}
.login-Form > * > * {
	flex:0 0 auto;
	width:100%;
}
.loginForm-subject {
	width:100%;
	margin-right:0;
}

}

/*** SUB CSS ***/
.location {
	display:none;
	position:relative;
	width: 100%;
	height: 300px;
	text-align: center;
	margin: 0px auto;
	padding-top:160px;
	background:url(/img/subvisual.jpg) no-repeat 50% 0%;
	background-size:cover;
}
.location ul {
	display:inline-block;
	margin:0 auto;
	padding:0;
}
.location li {
	display:none;
	margin:0;
	padding:0;
	font-size:48px;
	font-weight:300;
	color:#fff;
	text-shadow:0px 0px 7px rgba(0,0,0,.8);
}
.location li:after {
	content: "";
	display: block;
	width: 52px;
	border-bottom: 1px solid #fff;
	margin: 15px auto;
}
.location li:last-child {
	display: block;
/*	background:url(/img/st_line.png) no-repeat 50% 100%;*/
}

.sub-headimg {
	clear:both;
	margin-bottom:0;
	padding-top:40px;
	text-align:center;
	font-size:32px;
	color:#151515;
}
@media (max-width:767px) {
.sub-headimg {
	padding-top:25px;
	font-size:28px;
}
}

#sub-con {
	position:relative;
	box-sizing:border-box;
	width: 100%;
	word-break:keep-all;
}

.introduce-inner {
	clear:both;
	box-sizing:border-box;
	width:750px;
	margin:60px auto;
	padding:0;
	line-height:1.8;
	text-align:justify;
	color:#333;
	font-size:17px;
	word-break:keep-all;
}
.introduce-inner h4 {
	margin-bottom:45px;
	text-align:center;
}
.introduce-inner .itrdimg {
	clear:both;
	margin-top:60px;
}
@media (max-width:1023px) {
.introduce-inner {
	padding-left:25px;
	padding-right:25px;
}
}
@media (max-width:767px) {
.introduce-inner {
	width:100%;
}
}
@media (max-width:539px) {
.introduce-inner {
	padding-left:15px;
	padding-right:15px;
	font-size:14px;
}
}

.bg_making {
	background:url(/img/making/bg_making.jpg) no-repeat;
	background-size: cover;
}
#sub-con .making-inner {
	position:relative;
	display:inline-block;
	width:100%;
	min-height:1085px;
}
#sub-con .making-inner .making_img {
	float:right;
	width:57%;
	text-align:right;
	vertical-align:top;
}
#sub-con .making-inner .making_img img {
	width:auto;
}
#sub-con .making-inner .making-contents {
	position:absolute;
	top:150px;
	left:50%;
	margin-left:-600px;
	width:600px;
	box-sizing:border-box;
}
#sub-con .making-inner .making-contents h2 {
	clear:both;
	margin-bottom:10px;
	line-height:45px;
	text-align:left;
	font-size:40px;
	font-weight:600;
	color:#333;
}
#sub-con .making-inner .making-contents h3 {
	clear:both;
	margin-bottom:30px;
	padding-left:36px;
	line-height:45px;
	text-align:left;
	font-family:"Arial Black", Gadget, sans-serif;
	font-size:40px;
	color:#ef2222;
	background:url(/img/icons/i_won.png) no-repeat 0% 50%;
}
#sub-con .making-inner .making-contents h3 span {
	font-size:0.7em;
}
#sub-con .making-inner .making-contents .making-tab {
	clear:both;
	float:left;
	list-style:none;
	display:inline-block;
	padding:0;
	margin:0 0 60px 0;
}
#sub-con .making-inner .making-contents .making-tab li {
	float:left;
	list-style:none;
	padding:0;
	margin-right:12px;
}
#sub-con .making-inner .making-contents .making-tab li a {
	display: block;
	height:45px;
	box-sizing:border-box;
	padding:10px 15px;
	line-height:21px;
	font-size:18px;
	font-weight:400;
	color:#9199a4;
	background-color:transparent;
	border:2px solid #adbaca;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
}
#sub-con .making-inner .making-contents .making-tab li a:hover,
#sub-con .making-inner .making-contents .making-tab ._active {
	color:#0e71d7;
	text-decoration:none;
	border-color:#3587ed;
}
#sub-con .making-inner .making-contents p {
	line-height:24px;
	text-align:left;
	font-size:16px;
	color:#000;
}
#sub-con .making-inner .making-contents .making-info {
	list-style:none;
	width:100%;
	display:inline-block;
	padding:0;
	margin:0;
	border-top:3px solid #538ee6;
	border-bottom:1px solid #555;
}
#sub-con .making-inner .making-contents .making-info li {
	box-sizing:border-box;
	margin:0;
	padding:10px 15px;
	line-height:24px;
	text-align:left;
	font-size:16px;
	color:#000;
	border-top:1px solid #d8dde4;
}
#sub-con .making-inner .making-contents .making-info li:first-child {
	border-top:0px;
}
#sub-con .making-inner .making-contents .making-info li.bg {
	background-color:#daf2fa;
}
#sub-con .making-inner .making-contents .making-info li strong {
	font-weight:600;
}
#sub-con .making-inner .making-contents .btn-align {
	clear:both;
	margin-top:40px;
	text-align:center;
}
#sub-con .making-inner .making-contents .btn-align a {
	display:inline-block;
	margin:0 8px;
}


#sub-con .pfList-sec {
	padding: 0;
	margin-top:30px;
}

#sub-con .pfList-sec h3 {
	margin-bottom:20px;
	text-align:center;
	font-family:Arial Black, Arial, sans-serif ;
	font-size:40px;
	font-weight:bold;
	color:#192c64;
}

#sub-con .pfList-sec .sitelist {
	clear:both;
	position:relative;
	margin-top:40px;
}
#sub-con .pfList-sec .pfList {
	position:relative;
	margin-bottom:10px;
}
#sub-con .pfList-sec .pfList:before {
	content:"";
	display:block;
	background-color:#eee;
	width:3px;
	height:100%;
	position:absolute;
	left:50%;
	top:10px;
	margin-left:-2px;
}
#sub-con .pfList-sec .pfList:after {
	content:"";
	display:table;
	clear:both;
}
#sub-con .pfList-sec .pfList li {
	position:relative;
	width:100%;
	margin-bottom:45px;
	line-height:24px;
	font-size:16px;
	font-weight:300;
	color:#000;
	word-break:break-all;
}
#sub-con .pfList-sec .pfList li a {
	color:#000;
}
#sub-con .pfList-sec .pfList li img {
	margin-top:15px;
	border:1px solid #eee;
}

#sub-con .pfList-sec .pfList li:before {
	content:"";
	display:block;
	width:75px;
	height:38px;
	position:absolute;
	top:-4px;
	right:49.5%;
	background-image:url(/img/etc/arr_portfolio.png);
	background-size:75px 38px;
}
#sub-con .pfList-sec .pfList li:nth-child(even) {
	float:left;
	padding-right:57.2%;
	text-align:right;
}
#sub-con .pfList-sec .pfList li:nth-child(odd) {
	float:right;
	padding-left:57.2%;
	text-align:left;
}
#sub-con .pfList-sec .pfList li:nth-child(odd):before {
	transform:rotate(180deg);
	left:49.5%;
	right:auto;
}
#sub-con .pfList-sec .pfList li span {
	display:block;
	color:#f70;
}
#sub-con .pfList-sec .pfList li i {
	display:inline-block;
	height:18px;
	padding:0px 5px;
	line-height:18px;
	vertical-align:middle;
	text-align:center;
	font-size:10px;
	font-family:sans-serif, dotum;
	color:#fff;
	background-color:#5894ef;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

#sub-con .pfList-sec .pfTab-selbox {
    display: none;
	text-align:center;
}
#sub-con .pfList-sec .pfTab-selbox select {
	width:300px;
	height:42px;
	box-sizing:border-box;
	padding: .2em .8em;
	font-size:16px;
	font-weight:bold;
	color:#000;
	background-color:#fff;
	border:1px solid #ddd;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}

#sub-con .pfList-sec .pfTab-btnbox {
    position: relative;
    z-index: 2;
    display: block;
	width:100%;
	border:1px solid #ddd;
	border-width:1px 0px;
	background-color: #fff;
}
#sub-con .pfList-sec .pfTab-button {
	display: table;
	table-layout: fixed;
	width:auto;
	margin:0 auto;
	padding:0;
	list-style: none;
}
#sub-con .pfList-sec .pfTab-button li {
	display: table-cell;
	width:auto;
	height: 50px;
	padding:0 10px;
	font-family: Arial, Helvetica, sans-serif;
}
#sub-con .pfList-sec .pfTab-button li a {
	display:block;
	padding:0px 2px;
	text-align: center;
	line-height: 48px;
	font-size:18px;
	font-weight:bold;
	color: #bbb;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}
#sub-con .pfList-sec .pfTab-button li:not(:first-child) a {
	border-left: none;
}
#sub-con .pfList-sec .pfTab-button li a:hover {
	color:#000;
}
#sub-con .pfList-sec .pfTab-button .is-active a {
	color:#000;
	border-bottom-color: #42a1f9;
}

#sub-con .faqWrap {
	margin: 40px auto;
}
#sub-con .faqWrap .faqline {
	position: relative;
	display: block;
	padding: 0;
	text-align:left;
	border-bottom: 1px solid #ededed;
	cursor: pointer;
}
#sub-con .faqWrap .faqline:first-child {
	border-top: 1px solid #2d4c9a;
}
#sub-con .faqWrap .faqline .tit {
	color: #000;
	font-size: 21px;
	transition: color 0.3s ease-out;
}
#sub-con .faqWrap .faqline:hover .tit {
	color: #0a7ac8;
}
.faqline .question {
	position: relative;
	display: block;
	padding: 25px 120px;
	background: url('/img/icons/i_faq_q.png') 36px 50% no-repeat;
}
.faqline .question .iconDiv {
	position: absolute;
	right: 40px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.faqline .question .iconDiv img {
	width:40px;
	height:auto;
	opacity:.3;
}
.faqline .answer {
	position: relative;
	display: none;
	padding: 40px 120px;
	word-break:keep-all;
	color: #333;
	line-height: 24px;
	font-size:16px;
	background: url('/img/icons/i_faq_a.png') 40px 40px no-repeat #f5f6f9;
	background-size:52px;
	border-top: 1px solid #e4e4e4;
}
.modA {
	position: absolute;
	right: 30px;
	bottom: 30px;
	color: #e82b2b;
}

.order-process {
	clear: both;
	width: 100%;
	margin: 30px auto;
	padding: 1px 0px;
	display: inline-block;
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
}
.order-process dl {
	list-style: none;
	margin: 1px 0px;
	padding: 0;
	width: 100%;
	display: inline-block;
	background-color: #f5f5f5;
}
.order-process dt, .order-process dd {
	box-sizing: border-box;
}
.order-process dt {
	float: left;
	width: 22%;
	padding: 15px 0px;
	text-align: center;
}
.order-process dd {
	float: left;
	width: 78%;
	padding: 15px;
	text-align: left;
}
table.cata td {
	text-align: left;
	padding-left: 10px;
}
.add-btn {
	width: 100%;
	margin-top: 10px;
}
.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-family: gulim, dotum, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	padding: .7em 2em .55em;
	text-shadow: 0 0px 0px rgba(0,0,0,.3);
	-webkit-border-radius: .5em;
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 0px 0px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}
.button02 {
	display: inline-block;
	width: 132px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-family: gulim, dotum, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	padding: 0.5em 0 0.5em 0;
	/*text-shadow: 0 1px 1px rgba(0,0,0,.3);*/

	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button02:hover {
	text-decoration: none;
}
.button02:active {
	position: relative;
	top: 1px;
}
/* orange */

.orange {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top, #faa51a, #f47a20);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top, #f88e11, #f06015);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top, #f47a20, #faa51a);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}
/* gray */

.gray {
	color: #000;
	border: solid 0px #ccc;
	background: #ccc;
}
.gray:hover {
	color: #e9e9e9;
	background: #616161;
	background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
	background: -moz-linear-gradient(top, #757575, #4b4b4b);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
.gray:active {
	color: #afafaf;
	background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
	background: -moz-linear-gradient(top, #575757, #888);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}
/* blue */

.blue {
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top, #00adee, #0078a5);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue:hover {
	color: #d9eef7;
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top, #0095cc, #00678e);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}
.blue:active {
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top, #0078a5, #00adee);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}
/* white */

.white {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top, #fff, #ededed);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white:hover {
	color: #606060;
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top, #fff, #dcdcdc);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.white:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top, #ededed, #fff);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}
/* POP-sale receipt */

#REC_wrap {
	margin: 0;
	padding: 0;
	width: 600px;
	font-size: 12px;
	color: #333333;
}
#REC_wrap table {
	font-size: 12px;
}
.REC_toplogo {
	width: 100%;
	float: left;
	clear: both;
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 12px;
}
.REC_toplogo ul {
	float: left;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.REC_toplogo li {
	float: left;
	margin: 0;
	padding: 0;
}
.REC_toplogo li.h1 {
	float: right;
	font-size: 40px;
	font-weight: bold;
}
#REC_info {
	width: 100%;
	clear: both;
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 12px;
	padding-bottom: 12px;
}
#REC_info ul.date {
	float: left;
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
	clear: both;
}
.date li {
	float: left;
	font-size: 12px;
	margin: 0;
	padding: 0;
}
.date li.right {
	float: right;
}
#REC_info ul.shop {
	float: left;
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
	clear: both;
}
.shop li {
	float: left;
	font-size: 12px;
	margin: 0;
	padding: 0;
}
.shop li.right {
	float: left;
	padding-left: 10px;
}
#REC_con {
	width: 100%;
	clear: both;
}
.REC_table {
	width: 600px;
	border-top: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
}
.REC_table th {
	border-bottom: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	background-color: #777777;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
}
.REC_table th {
	border-bottom: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	background-color: #738384;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	padding: 3px 5px;
}
.REC_table td {
	border-bottom: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	color: #333333;
	padding: 3px 5px;
}
.REC_table td.td2 {
	background-color: #f1f1f1;
}
.REC_table td.to {
	background-color: #ffdddd;
	color: #ff0000;
}



/*------------ slide swiper ------------*/
.swiper-slide {
	text-align: center;
	font-size: 13px;
	font-weight:bold;
	font-family: 'Nanum Square', 'NanumSquare';
	letter-spacing:-1px;
	color: #000;
	background: transparent;
	
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-slide a {
	color: #000;
}

.swiper-visual {
	width: 100%;
	height: 100%;
}
.swiper-visual .swiper-slide {
	background-position: 50% 50%;
	background-size: contain;
}

.swiper-visual._v_pc {
	display:block;
}
.swiper-visual._v_mb {
	display:none;
}
/*
@media (max-width:420px) {
.swiper-visual._v_pc {
	display:none;
}
.swiper-visual._v_mb {
	display:block;
}
}*/

/*------------ //END// slide swiper ------------*/

