/* reset */
html {
	height: 100%;
}
body {
	font-family: 'Noto Sans Korean';
	height: 100%;
	word-break: keep-all;
	overflow-y: scroll;
}
h1 {
	font-size: 1.7em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size:1.3em;
}
h4 {
	font-size:1.1em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Noto Sans Korean';
	font-weight: bold;
}
ul,
ol,
dd {
	list-style: none;
	padding: 0;
	margin: 0;
}
label {
	font-weight: normal;
}
th label {
	font-weight: bold;
}
legend {
	display: none;
	border: none;
}
a {
	-webkit-transition: color .5s ease;
	transition: color .5s ease;
}
a:link,
a:visited,
a:hover,
a:focus,
a:active {
	text-decoration: none;
}
#wrap {
	overflow: hidden;
}

/* header */
#header {
	position: fixed;
	width: 100%;
	height: 100px;
	border-bottom: 1px solid #000;
	z-index: 2;
	background-color: #fff;
	-webkit-transition: all .5s ease;
    transition: all .5s ease;
}
#header nav {
	position: relative;
	text-align: center;
}
#header .logo {
	position: absolute;
	top: 28px;
	left: 15px;
	margin: 0;
	-webkit-transition: top .5s ease;
	transition: top .5s ease;
}
#header .logo img {
	width: 77px;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
}
#header .logo img.shop {
	width: 124px;
}
#header .gnb-list {
	display: inline-block;
	margin-top: 53px;
	-webkit-transition: margin-top .5s ease;
	transition: margin-top .5s ease;
}
#header .gnb-list > li {
	position: relative;
	display: inline-block;
	padding: 0 2em;
}
#header .gnb-list a {
	color: #222;
	font-size: 16px;
	position: relative;
	padding: 1.5em 0;
}
#header .gnb-list > li > a:after {
	content: '';
	position: absolute;
	top: 51px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #111;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
}
#header .gnb-list > li.on > a:after,
#header .gnb-list > li.active > a:after {
	width: 100%;
}
#header .gnb-list > li i {
	display: none;
	position: absolute;
	right: 15px;
	top: 17px;
	cursor: pointer;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
#header .gnb-list a:hover {
	color: #777;
}
#header .gnb-list > li i:hover {
	color: #777;
}
#header .gnb-list > li.on i {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
#header .snb-list {
	display: none;
	position: absolute;
	text-align: left;
	top: 46px;
	left: 13px;
	background-color: #111;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(41,41,41,.75);
	box-shadow: 0px 1px 1px 0px rgba(41,41,41,.75);
	min-width: 192px;
	z-index: 1;
}
#header .snb-list > li {
	width: 100%;
	padding: 1em;
	border-bottom: 1px solid #292929;
}
#header .snb-list > li a {
	color: #999 ;
	font-size: 15px;
}
#header .snb-list > li a:hover {
	color: #eee;
}
#header .tnb-list {
	position: absolute;
	top: 1em;
	right: 15px;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
#header .tnb-list > li {
	display: inline-block;
	position: relative;
	padding: 0 .2em;
}
#header .tnb-list > li:after {
	content: '.';
	position: absolute;
	left: -4px;
	top: -3px;
}
#header .tnb-list > li:first-child:after {
	content: '';
	padding-left: 0;
}
#header .tnb-list > li:last-child {
	padding-right: 0em;
}
#header .tnb-list > li.language {
	padding-left: 1em;
	margin-left: .8em;
	border-left: 1px solid #aaa;
	line-height: .9em;
}
#header .tnb-list > li.language:after {
	content: '';
}
#header .tnb-list a {
	color: #444;
	font-size: 13px;
}
#header .tnb-list a:hover {
	color: #777;
}
#header form {
	position: absolute;
	top: 50px;
	right: 15px;
	-webkit-transition: top .5s ease;
	transition: top .5s ease;
}
#header .search-label {
	position: relative;
}
#header .search-input {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #f4f4f4;
	padding-left: 30px;
	width: 180px;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
}
#header .search-input:focus {
	width: 230px;
}
#header .search-label i {
	position: absolute;
	top: 7px;
	left: 9px;
}
#header .gnb-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 15px;
    width: 20px;
    height: 20px;
}
#header .gnb-toggle span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    margin-top: -1px;
    background-color: #000;
}
#header .gnb-toggle span:hover {
    background-color: #777;
}
#header .gnb-toggle span:before, #header .gnb-toggle span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    content: "";
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
#header .gnb-toggle span:before {
    -webkit-transform: translateY(-350%);
    transform: translateY(-350%);
}
#header .gnb-toggle span:after {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
}
#header.on .gnb-toggle span {
    background-color: transparent;
}
#header.on .gnb-toggle span:before {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}
#header.on .gnb-toggle span:after {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}
#container {
	padding-top: 100px;
	min-height: 50vh;
}
@media only screen and (max-width: 1200px) {
	#header .gnb-list {
		margin-top: 50px;
	}
	#header .gnb-list > li {
		padding: 0 1.5em;
	}
	#header .gnb-list a {
		padding: 1em 0;
	}
	#header .gnb-list > li > a:after {
		top: 44px;
	}
	#header .snb-list {
		top: 49px;
		left: 6px;
	}
	#header .search-input {
		width: 150px;
	}
	#header .search-input:focus {
		width: 180px;
	}
}
@media only screen and (min-width: 992px) {
	.scroll-on #header {
		height: 70px;
	}
	.scroll-on #header .tnb-list {
		-webkit-transform: translateY(-200%);
		transform: translateY(-200%);
	}
	.scroll-on #header .logo {
		position: absolute;
		top: 15px;
		left: 15px;
	}
	.scroll-on #header .gnb-list {
		margin-top: 25px;
	}
	.scroll-on #header form {
		top: 25px;
	}
	.scroll-on #header .logo img {
		width: 60px;
	}
	.scroll-on #header .logo img.shop {
		width: 90px;
	}
}
@media only screen and (max-width: 992px) {
	body.gnb-on {
		overflow-y: hidden;
	}
	#header {
		height: 65px;
		top: 0;
		left: 0;
		background-color: rgba(255, 255, 255, 1);
	}
	#header.on {
		height: 100vh;
		overflow: auto;
	}
	#header nav {
		height: 65px;
		overflow: hidden;
	}
	#header.on nav {
		height: 100vh;
		padding-bottom: 30px;
		overflow: auto;
	}
	#header .logo {
		top: 12px;
		left: 5%;
	}
	#header .logo img {
		top: 12px;
		left: 5%;
		width: 70px;
	}
	#header .logo img.shop {
		width: 90px;
	}
	#header .gnb-list {
		border-top: 1px solid #292929;
		margin-top: 65px;
		width: 100%;
		text-align: left;
		-webkit-transform: translateY(-300%);
		transform: translateY(-300%);
		-webkit-transition: transform .5s ease;
		transition: transform .5s ease;
	}
	#header.on .gnb-list {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	#header .gnb-list > li {
		display: block;
		width: 100%;
		border-bottom: 1px solid #292929;
		padding: 1em;
	}
	#header .gnb-list a {
		font-size: 15px;
	}
	#header .gnb-list > li i {
		display: block;
	}
	#header .snb-list {
		position: relative;
		top: 0px;
		background-color: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	#header .snb-list > li {
		padding: 1em;
		border-bottom: none;
	}
	#header .snb-list > li:first-child {
		padding-top: 2em;
	}
	#header .snb-list > li a {
		color: #222;
		font-size: 14px;
	}
	#header .gnb-list > li > a:after {
		display: none;
	}
	#header .tnb-list {
		opacity: 0;
		position: relative;
		text-align: left;
		top: 0;
		right: 0;
		-webkit-transform: translateY(-300%);
		transform: translateY(-300%);
		-webkit-transition: transform .5s ease;
		transition: transform .5s ease;
	}
	#header.on .tnb-list {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	#header .tnb-list li {
		width: 100%;
		border-bottom: 1px solid #292929;
		padding: 1em;
	}
	#header .tnb-list > li:after {
		content: '';
	}
	#header .tnb-list > li.language {
		padding-left: 1em;
		margin-left: 0;
		border-left: none;
		line-height: 1em;
	}
	#header .tnb-list > li:last-child {
		padding-right: 0em;
	}
	#header .tnb-list > li a {
		font-size: 15px;
	}
	#header form {
		display: none;
	}
	#header .gnb-toggle {
		display: block;
	}
	#container {
		padding-top: 65px;
	}
}

/* main-visual */
#main-visual .slide-list li {
	height: 320px;
	overflow: hidden;
}
#main-visual .slide-content, #main-visual .slide-img {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	opacity: 0;
}
#main-visual .position-right-bottom {
	position:absolute;
	width: 50%;
	right:0;
	bottom:0;
}
#main-visual h2 {
	font-size: 2.5em;
}
#main-visual h3 {
	font-size: 2em;
}
#main-visual .slide-btn-list {
	height: 100%;
	opacity: .1;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}
#main-visual .slide-btn-list:hover {
	opacity: 1;
}
#main-visual .slide-btn-list li {
	position: absolute;
	top :0;
	height: 100%;
	padding: 0 30px;
	background-color: rgba(0, 0, 0, .1);
	cursor: pointer;
}
#main-visual .slide-btn-list li:first-child {
	left: 0px;
}
#main-visual .slide-btn-list li:last-child {
	right: 0px;
}
#main-visual .slide-btn-list a {
	color: #fff;
	font-size: 2em;
}
@media only screen and (max-width: 992px) {
	#main-visual h2 {
		font-size: 2em;
	}
	#main-visual h3 {
		font-size: 1.5em;
	}
	#main-visual .slide-list li {
		height: 300px;
	}
}
@media only screen and (max-width: 414px) {
	#main-visual h2 {
		font-size: 1.25em;
	}
	#main-visual h3 {
		font-size: 1.25em;
	}
	#main-visual .slide-list li {
		height: 200px;
	}
	#main-visual .slide-content {
		width: 100%;
	}
	#main-visual .slide-img {
		display: none;
	}
}

/* main-banner */
#main-banner,
#main-banner .col-sm-4,
#main-banner .col-sm-6 {
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
}
#main-banner .col-sm-6 {
	margin: 15px 0;
}

#main-banner .col-sm-6:first-child,
#main-banner .col-sm-6:nth-child(2) {
	margin-top: 5px;
}
#main-banner .banner {
	max-width: 55%;
	margin: 0 auto;
	color: #fff;
}
#main-banner h1,
#main-banner h2 {
	margin: 0 0 10px 0;
}
#main-banner h5 {
	padding: 10px 0 30px 0;
	font-weight: 400;
	font-size: .95em;
	line-height: 1.6em;
}
#main-banner a {
	padding: 7px 13px;
	border:1px solid #fff;
	color: #fff;
	background-color: rgba(39, 128, 227, 0);
	font-size: .9em;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
#main-banner hgroup {
	height: 272px;
}
#main-banner hgroup:hover a {
	background-color: rgba(39, 128, 227, 1);
	border-color: rgb(39, 128, 227);
}
@media only screen and (max-width: 1200px) {
	#main-banner .banner {
		max-width: 70%;
	}
}
@media only screen and (max-width: 992px) {
	#main-banner hgroup {
		height: 230px;
	}
	#main-banner .col-sm-6:nth-child(2) {
		margin-top: 15px;
	}
	#main-banner .col-sm-4 {
		margin-top: 15px;
	}
}
@media only screen and (max-width: 414px) {
	#main-banner .banner {
		max-width: 80%;
	}
}

/* main-product */
#main-product {
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
}
#main-product .img {
	padding: 15px;
	height: 260px;
}
#main-product .text {
	padding: 15px;
	height: 110px;
	color: #000;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
#main-product h5 {
	margin-top: 0;
}
#main-product .item p {
	display: none;
}
#main-product .item:hover p {
	display: block;
}
#main-product .item:hover .text {
	background-color: #2780e3;
	color: #fff;
}
@media only screen and (max-width: 992px) {
	#main-product .text {
		height: 120px;
	}
	#main-product p {
		font-size: .9em;
	}
}
@media only screen and (max-width: 768px) {
	#main-product .item {
		display: block;
		margin: 15px 0;
	}
}
/* main-latest */
#main-latest .latest {
	position: relative;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 20px 0px;
}
#main-latest .latest:after {
	content: '';
	position: absolute;
	width: 1px;
	left: 50%;
	top: 16px;
	height: 50%;
	background-color: #ddd;
}
#main-latest .latest.eng:after {
	display: none;
}
#main-latest article {
	width: 100%;
	padding: 0 25px;
	position: relative;
}
#main-latest h5 {
	margin: 0;
}
#main-latest h5 a {
	color: #000;
}
#main-latest p {
	position: static;
	margin: 0;
}
#main-latest p a {
	display: block;
	padding-bottom: 7px;
	color: #777;
}
#main-latest p i {
	font-size: 1.3em;
	position: absolute;
	right: 0;
	top: 2px;
}
@media only screen and (max-width: 768px) {
	#main-latest .latest:after {
		display: none;
	}
	#main-latest article {
		padding: 7px 15px 0 15px;
	}
	#main-latest p i {
		top: 9px;
	}
}

/* main-app-banner */
#main-app-banner .banner {
	height: 170px;
}
#main-app-banner .banner > div {
	padding-left: 30px;
}
#main-app-banner h2 {
	margin:0 0 10px 0;
}
#main-app-banner .banner-text {
	width: 50%;
	float: right;
	font-size: 1.5em;
}

/* shop-visual */
#shop-visual .slide-list li {
	height: 320px;
	overflow: hidden;
}
#shop-visual .slide-content, #shop-visual .slide-img {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	opacity: 0;
}
#shop-visual .position-right-bottom {
	position:absolute;
	width: 50%;
	right:0;
	bottom:0;
}
#shop-visual h2 {
	font-size: 3em;
}
#shop-visual .slide-btn-list {
	height: 100%;
	opacity: .1;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}
#shop-visual .slide-btn-list:hover {
	opacity: 1;
}
#shop-visual .slide-btn-list li {
	position: absolute;
	top :0;
	height: 100%;
	padding: 0 30px;
	background-color: rgba(0, 0, 0, .1);
	cursor: pointer;
}
#shop-visual .slide-btn-list li:first-child {
	left: 0px;
}
#shop-visual .slide-btn-list li:last-child {
	right: 0px;
}
#shop-visual .slide-btn-list a {
	color: #fff;
	font-size: 2em;
}
@media only screen and (max-width: 992px) {
	#shop-visual h2 {
		font-size: 2em;
	}
	#shop-visual .slide-list li {
		height: 300px;
	}
	#main-app-banner .banner-text {
		width: 80%;
		float: right;
		font-size: 1em;
	}
}
@media only screen and (max-width: 414px) {
	#shop-visual h2 {
		font-size: 1.25em;
	}
	#shop-visual .slide-list li {
		height: 200px;
	}
	#shop-visual .slide-content {
		width: 100%;
	}
	#shop-visual .slide-img {
		display: none;
	}
}

/* shop-app-banner */
#shop-app-banner .banner {
	height: 170px;
}
#shop-app-banner .banner > div {
	padding-left: 60px;
}
#shop-app-banner h2 {
	font-size: 2em;
}
#shop-app-banner h5 {
	color: #777;
}

@media only screen and (max-width: 414px) {
	#shop-app-banner .banner > div {
		padding-left: 20px;
	}
}

/* shop-cs-info */
#shop-cs-info .center-bar {
	position: relative;
}
#shop-cs-info .center-bar:after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 150px;
	background-color: #ddd;
}
#shop-cs-info h5 {
	margin: 0;
}
#shop-cs-info .cs-list li {
	color: #777;
	padding-bottom: 8px;
}
#shop-cs-info .icon-list {
}
#shop-cs-info .icon-list li {
	padding: 10px 30px;
	display: inline-block;
}
#shop-cs-info .icon-list li span {
	display: inline-block;
	width: 71px;
	color: #777;
	padding-left: 15px;
	font-weight: 700;
}
@media only screen and (max-width: 992px) {
	#shop-cs-info .icon-list li {
		padding: 10px 15px;
	}
}
@media only screen and (max-width: 768px) {
	#shop-cs-info .cs-list {
		margin: 15px 0;
		border-bottom: 1px solid #ddd;
		padding-bottom: 15px;
	}
	#shop-cs-info .center-bar:after {
		display: none;
	}
	#shop-cs-info .icon-list li img {
		width: 40px;
	}
}

/* shop-latest */
#shop-latest .latest {
	border-top: 1px solid #ddd;
	padding: 20px 0;
	overflow: hidden;
}
#shop-latest h5 {
	margin: 0;
}
#shop-latest a {
	color: #777;
}
#shop-latest h5 a {
	color: #111;
}
#shop-latest .latest-btn {
	border-left: 1px solid #ddd;
}
#shop-latest .latest-btn a {
	display: inline-block;
	padding: 0 13px;
}
#shop-latest .latest-list {
	position: relative;
}
#shop-latest .latest-list li {
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	display: none;
}
#shop-latest .latest-list li:first-child {
	display: block;
}
#shop-latest .latest-list li a {
	position: relative;
	display: block;
}
#shop-latest .latest-list li .datetime {
	position: absolute;
	right: 0;
}
@media only screen and (max-width: 992px) {
	#shop-latest .latest-btn a {
		padding: 0 7px;
	}
}

/* shop-floating */
#shop-floating {
	position: fixed;
	top: 100px;
	right: 20px;
	-webkit-transition: top ease .5s;
	transition: top ease .5s;
}
.scroll-on #shop-floating {
	top: 65px;
}
#shop-floating .floating-list li {
	position: relative;
}
#shop-floating .floating-list li:last-child {
	margin-top: 15px;
}
#shop-floating .float-badge {
	position: absolute;
	display: inline-block;
	font-size: .9em;
	top: 9px;
	right: 17px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #dd241f;
	color: #fff;
	text-align: center;
}
/* sub-visual */
#sub-visual {
	padding: 50px;
}
#sub-visual h1 {
	position: relative;
	margin: 0 0 15px 0;
	padding-bottom: 15px;
}
#sub-visual h1:after {
	content: '';
	position: absolute;
	top: 40px;
	left: 50%;
	margin-left: -15px;
	height: 1px;
	width: 30px;
	background-color: #fff;
}
#sub-visual h6 {
	margin: 0;
	line-height: 1.4em;
	font-weight: 400;
}

/* sub-nav */
#sub-nav {
	padding: 15px;
}
#sub-nav .snb-list li {
	position: relative;
	display: inline-block;
	width: 13.5%;
	vertical-align: middle;
}
#sub-nav .snb-list li:after {
	content: '';
	position: absolute;
	top: 2px;
	right: 0;
	height: 19px;
	width: 1px;
	background-color: #ccc;
}
#sub-nav .snb-list li:last-child:after {
	display: none;
}
#sub-nav .snb-list li a {
	display: block;
	width: 100%;
	color: #444;
}
#sub-nav .snb-list li a:hover,
#sub-nav .snb-list li a.active {
	color: #0075c3
}

@media only screen and (max-width: 768px) {
	.drop-menu-btn {
		display: block;
	}
	#sub-nav .snb-list {
		display: none;
	}
	#sub-nav .snb-list.on {
		display: block;
	}
	#sub-nav .snb-list li {
		margin: 0 auto;
		padding: 0;
		color: #444;
		border: 1px solid #444;
		border-top: none;
		background-color: #fff;
		width: 90%;
	}
	#sub-nav .snb-list li:after {
		display: none;
	}
	#sub-nav .snb-list li a {
		padding: 7px;
	}
}

/* category-nav */
#category-nav {
	border-bottom: 1px solid #ddd;
	background-color: #f9f9f9;
	padding: 30px 0;
}
#category-nav .category-list li {
	display: inline-block;
	margin: 0 10px;
}
#category-nav .category-list li a {
	display: inline-block;
	color: #444;
	border: 1px solid #444;
	background-color: #fff;
	padding: 14px 35px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
#category-nav .category-list li a.on,
#category-nav .category-list li a:hover {
	background-color: #444;
	color: #fff;
}
#category-nav .category-btn {
	position: relative;
	display: block;
	margin: 0 auto;
	color: #444;
	border: 1px solid #444;
	background-color: #fff;
	width: 90%;
	padding: 7px;
	display: none;
}
#category-nav .category-btn i {
	position: absolute;
	right: 10px;
	font-weight: 700;
	font-size: 1.2em;
}
@media only screen and (max-width: 768px) {
	#category-nav {
		padding: 15px 0;
	}
	#category-nav .category-list li {
		margin: 0 7px;
	}
	#category-nav .category-list li a {
		padding: 10px;
	}
}
@media only screen and (max-width: 414px) {
	#category-nav .category-list {
		display: none;
		padding: 0;
	}
	#category-nav.on .category-list {
		display: block;
	}
	#category-nav .category-btn {
		display: block;
	}
	#category-nav .category-list li {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
	}
	#category-nav .category-list li a {
		width: 90%;
		margin: 0;
		padding: 7px;
		border-top: none;
	}
}

/* Dana i */
.pump_i_ft {width:100%;}
.pump_i_ft ul:after {display:block; clear:both; content:'';}
.pump_i_ft li {float:left; height:360px; margin-bottom:10px;}
.pump_i_ft li:nth-child(1), .pump_i_ft li:nth-child(4){width:60%;}
.pump_i_ft li:nth-child(2), .pump_i_ft li:nth-child(3){width:40%;}
.pump_i_ft li:nth-child(5) {width:100%;}

.pump_i_ft li > div {height:100%;}
.pump_i_ft li:nth-child(1) > div, 
.pump_i_ft li:nth-child(3) > div {margin-right:10px;}

.pump_i_tt {padding:30px;}
.pump_i_tt_right {padding:30px; text-align: right;}
.pump_i_tt_right_bottom {padding:30px; position: absolute; bottom: 0; right: 0;}

.i_ttl {font-size:24px; color:#fff; margin-bottom: 10px; font-weight: bold;}
.i_ttl_right {font-size:24px; color:#fff; font-weight: bold; text-align: right;}
.i_tts {font-size:20px; color:#fff; font-weight: 500;}

.pump_i1 {background:url('/img/sub/danai_img_1.jpg') right bottom no-repeat; background-size: cover;}
.pump_i2 {background:url('/img/sub/danai_img_2.jpg') center top no-repeat; background-size: cover;}
.pump_i3 {background:url('/img/sub/danai_img_3.jpg') center bottom no-repeat; background-size: cover;}
.pump_i4 {background:url('/img/sub/danai_img_4.jpg') right top no-repeat; background-size:cover; position: relative;}
.pump_i5 {background:url('/img/sub/danai_img_5.jpg') center top no-repeat; background-size: cover; }

/* RS */
.pump_area {max-width:1170px; margin:0 auto;}
.pump_area_h2 {font-weight:bold; font-size:1.5em; margin-bottom:20px; display:inline-block;}
.pump_area_m {font-weight:bold; font-size:1.2em; margin-bottom:10px;}

.pump_rs_ft {width:100%;}
.pump_rs_ft ul:after {display:block; clear:both; content:'';}
.pump_rs_ft li {float:left; height:360px; margin-bottom:10px;}
.pump_rs_ft li:nth-child(1), .pump_rs_ft li:nth-child(4){width:70%;}
.pump_rs_ft li:nth-child(2), .pump_rs_ft li:nth-child(3){width:30%;}
.pump_rs_ft li:nth-child(5) {width:100%;}

.pump_rs_ft li > div {height:100%;}
.pump_rs_ft li:nth-child(1) > div, 
.pump_rs_ft li:nth-child(3) > div {margin-right:10px;}

.pump_rs_tt {padding:40px;}
.ttl {font-size:18px; color:#0085dd; margin-bottom:10px; font-weight:bold;}
.tts {font-size:15px; color:#000; font-weight:bold; line-height:1.6;}

.pump_rs1 {background:url('/img/sub/pump_img1.jpg') right bottom no-repeat; background-size: cover;}
.pump_rs2 {background:url('/img/sub/pump_img2.jpg') left bottom no-repeat; background-size: cover;}
.pump_rs3 {background:url('/img/sub/pump_img3.jpg') right bottom no-repeat; background-size: cover;}
.pump_rs4 {background:url('/img/sub/pump_img4.jpg') left bottom no-repeat; background-size: cover;}
.pump_rs5 {background:url('/img/sub/pump_img5.jpg') center bottom no-repeat; background-size: cover;}


.line {width:100%; height:1px; background:#eee; margin:50px 0;}
.pump_spec_in {float:right;}

@media only screen and (max-width: 768px) {
	.pump_rs_ft li:nth-child(1), .pump_rs_ft li:nth-child(4){width:100%;}
	.pump_rs_ft li:nth-child(2), .pump_rs_ft li:nth-child(3){width:100%;}
}

.table thead tr {
	border-top: 2px solid #000;
	border-bottom: 1px solid #ddd;
	background-color: #f5f5f5;
}
.table>thead>tr>th {
	border-bottom: none;
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
	padding: 15px;
}
.table th {
	padding: 15px;
	text-align: center;
}
.table th, .table td {
	border-bottom: 1px solid #ddd;
}
.spec-list li {
    line-height: 1.9em;
}
.table th[scope=row] {
	background-color: #f5f5f5;
	padding: 15px;
	text-align: left;
	min-width: 130px;
	width: 25%;
}
.table.border {
	border-top: 2px solid #000;
	border-bottom: 1px solid #ddd;
}
table a:not(.btn), .table a:not(.btn) {
	text-decoration: none;
}

@media only screen and (max-width: 768px) {
	.table th[scope=row] {
		min-width: 100px;
	}
}
@media only screen and (max-width: 414px) {
	.table th[scope=row] {
		min-width: 0px;
	}
}



/* footer */
#footer nav {
	position: relative;
	padding: 1em 0;
}
#footer .nav-list li {
	display: inline-block;
	padding: 0 .7em;
	border-left: 1px solid #333;
	line-height: 1em;
}
#footer .nav-list li:first-child {
	padding-left: 0;
	border-left: none;
}
#footer .nav-list li a {
	color: #aaa;
}
#footer .nav-list li a:hover {
	color: #ccc;
}
#footer .sitemap-btn a {
	color: #aaa;
}
#footer .sitemap-btn a i {
	color: #555;
	font-size: 15px;
	font-weight: 700;
	margin-left: .2em;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
#footer .sitemap-btn a:hover {
	color: #aaa;
}
#footer .sitemap-btn a i.on {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
#footer .sitemap {
	position: absolute;
	top: 0;
	z-index: -1;
	background-color: #fff;
	border: 1px solid #111;
	border-bottom: none;
	width: 100%;
	opacity: 0;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
#footer .sitemap.on {
	opacity: 1;
	z-index: 1;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
#footer .sitemap-header {
	padding: 10px;
	border-bottom: 1px solid #111;
}
#footer .sitemap-header a {
	color: #111;
}
#footer .sitemap-header a i {
	font-size: 15px;
	font-weight: 700;
	margin-left: .2em;
}
#footer .sitemap-nav {
	overflow: hidden;
	padding: 30px;
}
#footer .sitemap-list {
	float: left;
	width: 20%;
}
#footer .sitemap-list li {
	padding: 5px 0;
}
#footer .sitemap-list a {
	color: #111;
}
#footer .sitemap-list .header {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 10px;
}
#footer .sitemap-list .header:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 1px;
	background-color: #111;
	left: 0;
	bottom: 1px;
}
#footer .copyright-wrap {
	border-top: 1px solid #292929;
	padding: 1.5em 0;
	color: #555;
	font-size: .9em;
}
#footer .copyright-nav {
	padding-left: 3px;
	padding-bottom: 10px;
}
#footer .copyright-nav li {
	position: relative;
	display: inline-block;
	margin-right: 10px;
}
#footer .copyright-nav li:after {
	content: '';
	position: absolute;
	top: 5px;
	right: -7px;
	width: 1px;
	height: 10px;
	background-color: #666;
}
#footer .copyright-nav li:last-child:after {
	display: none;
}
#footer .copyright-nav a {
	color: #686868;
}
#footer address {
	margin: .2em;
}
#footer address strong {
	color: #686868;
}
#footer address a {
	color: #686868;
}
#footer address a:hover {
	color: #888;
}
#footer .copyright {
	padding: 1em 0;
}
#footer .copyright a {
	color: #555;
	margin-left: 10px;
}
#footer .copyright a:hover {
	color: #888;
}
#footer .logo {
	text-align: right;
	margin-top: 1em;
}
@media only screen and (max-width: 414px) {
	#footer address span {
		display: block;
	}
	#footer .site-map-btn a i {
		margin-left: 0;
		font-size: 1.5em;
	}
}

/* common-style-set */
.hr {
	position: relative;
}
.hr:before {
	content: '';
	height: 3px;
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	background-color: #ddd;
}
.hr .heading {
	position: absolute;
	top:0;
	left: 50%;
	margin: 0 0 0 -100px;
	width: 200px;
	background-color: #fff;
}
.hr .heading a {
	color: #000;
}
.point-bar {
	position: relative;
}
.point-bar:after {
	content: '';
	position: absolute;
	top: -25px;
	left: 50%;
	margin-left: -2px;
	width: 3px;
	height: 15px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #00baff;
}
.drop-menu-btn {
	position: relative;
    display: block;
    margin: 0 auto;
    color: #444;
    border: 1px solid #444;
    background-color: #fff;
    width: 90%;
    padding: 7px;
    display: none;
}
.drop-menu-btn i {
	position: absolute;
    right: 10px;
    font-weight: 700;
    font-size: 1.2em;
}
.text-section h2 {
	margin: 0 0 15px 0;
}
.text-section h4 {
	line-height: 1.5em;
}
.text-section p {
	margin: 0;
	line-height: 1.7em;
}
.has-bottom-bar {
	position: relative;
}
.has-bottom-bar:after {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	height: 1px;
	background-color: #fff;
}
.border-top {
	border-top: 1px solid #ddd;
}
.border-bottom {
	border-bottom: 1px solid #ddd;
}
.sub-tab h4 {
	display: inline-block;
	margin: 0 1px 0 0;
}
.sub-tab h4:last-child {
	margin-right: 0;
}
.sub-tab.sub-tab-2 h4 {
	width: 24%;
}
.sub-tab.sub-tab-3 h4 {
	width: 32%;
}
.sub-tab.sub-tab-4 h4 {
	width: 32.5%;
}
.sub-tab.sub-tab-5 h4 {
	width: 19%;
}
.sub-tab h4 a {
	display: inline-block;
	color: #666;
	background-color: #eee;
	width: 100%;
	padding: 15px 0;
	border:1px solid #ccc;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.sub-tab h4 a:hover,
.sub-tab h4 a.active {
	color: #fff;
	background-color: #248edf;
	border-color: #0085dd;
}
.sub-tab-content {
	display: none;
}
.sub-tab-content.active {
	display: block;
}
.spec-list li {
	line-height: 1.9em;
}
.border-box h5,
.border-box p {
	line-height: 1.7em;
	color: #666;
	margin: 0;
}
.border {
	border: 1px solid #ddd;
}
@media only screen and (max-width: 992px) {
	.sub-tab.sub-tab-md h4 {
		width: 100%;
		margin: 1px 0 0 0 ;
	}
}
@media only screen and (max-width: 768px) {
	.drop-menu-btn {
		display: block;
	}
	.sub-tab.sub-tab-sm h4 {
		width: 100%;
		margin: 1px 0 0 0 ;
	}
}
@media only screen and (max-width: 414px) {
	.text-section p.pad-left-right {
		padding-left: 15px;
		padding-right: 15px;
	}
	.sub-tab.sub-tab-xs h4 {
		width: 100%;
		margin: 1px 0 0 0 ;
	}
}

/* common-position-set */
.overflow-hidden {
	overflow: hidden;
}
.img-block {
	width: 100%;
}
.inline-block {
	display: inline-block;
}
.relative {
	position: relative;
}
.valign90 {
    position: relative;
    display: block;
    top: 90%;
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
}
.valign80 {
    position: relative;
    display: block;
    top: 80%;
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
}
.valign70 {
    position: relative;
    display: block;
    top: 70%;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
}
.valign50 {
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.valign30 {
    position: relative;
    display: block;
    top: 30%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.height-100 {
	height: 100vh;
}
.height-50 {
	height: 50vh;
}
.height-40 {
	height: 40vh;
}
.height-30 {
	height: 30vh;
}
.height-25 {
	height: 25vh;
}
.height-20 {
	height: 20vh;
}
.height-10 {
	height: 10vh;
}
.bg-photo {
    position: relative;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}
.bg-photo-parallax {
    -webkit-background-attachment: fixed;
    background-attachment: fixed;
}
.bg-photo-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    background: rgba(0,0,0,0.5);
}
.bg-photo-overlay-gradient {
    height: 100%;
    width: 100%;
    position: absolute;
    background: transparent;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.7) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.7) 100%)
}
.bg-main-01 {
	background-image: url(../img/main/main_vs01_bg.jpg);
}
.bg-main-02 {
	background-image: url(../img/main/main_vs02_bg.jpg);
}
.bg-main-banner-01 {
	background-image: url(../img/main/main_con01.jpg);
}
.bg-main-banner-02 {
	background-image: url(../img/main/main_con02.jpg);
}
.bg-main-banner-03 {
	background-image: url(../img/main/main_con03.jpg);
}
.bg-main-banner-04 {
	background-image: url(../img/main/main_con04.jpg);
}
.bg-main-banner-05 {
	background-image: url(../img/main/banner.png);
}
.bg-main-banner-eng-05 {
	background-image: url(../img/eng/main/banner.png);
}
.bg-main-banner-usa-05 {
	background-image: url(../img/eng/main/banner_usa2.png);
}
.bg-shop-01 {
	background-image: url(../img/mall_main/main_vs01_bg.jpg);
}
.bg-shop-02 {
	background-image: url(../img/mall_main/main_vs02_bg.jpg);
}
.bg-shop-banner-pump {
	background-image: url(../img/mall_main/main_vs02_bg.jpg);
}
.bg-shop-banner-01 {
	background-image: url(../img/mall_main/con_01.jpg);
}
.bg-shop-banner-02 {
	background-image: url(../img/mall_main/con_02.jpg);
}
.bg-shop-banner-03 {
	background-image: url(../img/mall_main/con_03.jpg);
}
.bg-shop-banner-04 {
	background-image: url(../img/mall_main/banner.png);
}
.bg-sub-visual-01 {
	background-image: url(../img/sub/sub_vs01.jpg);
}
.bg-sub-visual-02 {
	background-image: url(../img/sub/sub_vs02.jpg);
}
.bg-sub-visual-03 {
	background-image: url(../img/sub/sub_vs03.jpg);
}
.bg-sub-visual-04 {
	background-image: url(../img/sub/sub_vs04.jpg);
}
.bg-corp-01 {
	background-image: url(../img/sub/corp_01.jpg);
}
.bg-corp-03 {
	background-image: url(../img/sub/corp_03.jpg);
}
.bg-history {
	background-image: url(../img/sub/history_prt_bg.jpg);
}
.bg-product-feature-01 {
	background-image: url(../img/sub/danar_ft_bg01.jpg);
}
.bg-product-feature-02 {
	background-image: url(../img/sub/danar_ft_bg02.jpg);
}
.bg-product-feature-03 {
	background-image: url(../img/sub/danar_ft_bg03.jpg);
}
.bg-product-feature-04 {
	background-image: url(../img/sub/IIS_ft_bg01.jpg);
}
.bg-product-feature-05 {
	background-image: url(../img/sub/IIS_ft_bg02.jpg);
}
.bg-product-feature-06 {
	background-image: url(../img/sub/IIS_ft_bg03.jpg);
}
.bg-product-feature-07 {
	background-image: url(../img/sub/IIS_ft_bg04.jpg);
}
.bg-product-feature-eng-01 {
	background-image: url(../img/eng/sub/danar_ft_bg01.jpg);
}
.bg-product-feature-eng-02 {
	background-image: url(../img/eng/sub/danar_ft_bg02.jpg);
}
.bg-product-feature-eng-03 {
	background-image: url(../img/eng/sub/danar_ft_bg03.jpg);
}
.bg-product-feature-eng-04 {
	background-image: url(../img/eng/sub/IIS_ft_bg02.jpg);
}
.bg-product-feature-usa-04 {
	background-image: url(../img/eng/sub/dana2s_ft_bg02.jpg);
}
.bg-diabetes-01 {
	background-image: url(../img/sub/diagetes_bg.jpg);
}
.bg-insulin-01 {
	background-image: url(../img/sub/insulin_bg.jpg);
}
.bg-insulin-life-01 {
	background-image: url(../img/sub/insulin_life_01.jpg);
}
.bg-insulin-life-02 {
	background-image: url(../img/sub/insulin_life_02.jpg);
}
.bg-insulin-life-03 {
	background-image: url(../img/sub/insulin_life_03.jpg);
}
.bg-insulin-life-04 {
	background-image: url(../img/sub/insulin_life_04.jpg);
}
.bg-insulin-life-05 {
	background-image: url(../img/eng/sub/insulin_img.jpg);
}
.bg-health-01 {
	background-image: url(../img/eng/sub/health_01.jpg);
}
.bg-health-02 {
	background-image: url(../img/eng/sub/health_02.jpg);
}
.bg-health-03 {
	background-image: url(../img/eng/sub/health_03.jpg);
}
.bg-health-04 {
	background-image: url(../img/eng/sub/health_04.jpg);
}
.bg-health-05 {
	background-image: url(../img/eng/sub/health_05.jpg);
}
.pad-no {
    padding: 0;
}
.pad-top {
    padding-top: 50px;
}
.pad-top-half {
    padding-top: 25px;
}

.pad-top-half-half {
    padding-top: 12.5px;
}

.pad-top-double {
    padding-top: 100px;
}
.pad-top-triple {
    padding-top: 150px;
}
.pad-bottom {
    padding-bottom: 50px;
}
.pad-bottom-half {
    padding-bottom: 25px;
}
.pad-bottom-half-half {
    padding-bottom: 12.5px;
}
.pad-bottom-double {
    padding-bottom: 100px;
}
.pad-bottom-triple {
    padding-bottom: 150px;
}
.pad-left {
	padding-left: 50px;
}
.pad-left-half {
	padding-left: 25px;
}
.mar-no {
	margin: 0;
}
.mar-top {
	margin-top: 50px;
}
.mar-top-half {
	margin-top: 25px;
}
.mar-top-double {
	margin-top: 100px;
}
.mar-top-triple {
	margin-top: 150px;
}
.mar-bottom {
	margin-bottom: 50px;
}
.mar-bottom-half {
	margin-bottom: 25px;
}
.mar-bottom-double {
	margin-bottom: 100px;
}
.mar-bottom-triple {
	margin-bottom: 150px;
}
@media only screen and (max-width: 992px) {
    .pad-top {
        padding-top: 40px;
    }
    .pad-top-half {
        padding-top: 20px;
    }
	.pad-top-half-half {
		padding-top: 10px;
	}
    .pad-top-double {
        padding-top: 80px;
    }
    .pad-top-triple {
        padding-top: 120px;
    }
    .pad-bottom {
        padding-bottom: 40px;
    }
    .pad-bottom-half {
        padding-bottom: 20px;
    }
	.pad-bottom-half-half {
		padding-bottom: 10px;
	}
    .pad-bottom-double {
        padding-bottom: 80px;
    }
    .pad-bottom-triple {
        padding-bottom: 120px;
    }
	.pad-left {
		padding-left: 40px;
	}
	.pad-left-half {
		padding-left: 20px;
	}
	.mar-top {
		margin-top: 40px;
	}
	.mar-top-half {
		margin-top: 20px;
	}
	.mar-top-double {
		margin-top: 80px;
	}
	.mar-top-triple {
		margin-top: 120px;
	}
	.mar-bottom {
		margin-bottom: 40px;
	}
	.mar-bottom-half {
		margin-bottom: 20px;
	}
	.mar-bottom-double {
		margin-bottom: 80px;
	}
	.mar-bottom-triple {
		margin-bottom: 120px;
	}
}
@media only screen and (max-width: 768px) {
    .pad-top {
        padding-top: 30px;
    }
    .pad-top-half {
        padding-top: 15px;
    }
	.pad-top-half-half {
		padding-top: 7.5px;
	}
    .pad-top-double {
        padding-top: 60px;
    }
    .pad-top-triple {
        padding-top: 90px;
    }
    .pad-bottom {
        padding-bottom: 30px;
    }
    .pad-bottom-half {
        padding-bottom: 15px;
    }
	.pad-bottom-half-half {
		padding-bottom: 7.5px;
	}
    .pad-bottom-double {
        padding-bottom: 60px;
    }
    .pad-bottom-triple {
        padding-bottom: 90px;
    }
	.pad-left {
		padding-left: 30px;
	}
	.pad-left-half {
		padding-left: 15px;
	}
	.mar-top {
		margin-top: 30px;
	}
	.mar-top-half {
		margin-top: 15px;
	}
	.mar-top-double {
		margin-top: 60px;
	}
	.mar-top-triple {
		margin-top: 90px;
	}
	.mar-bottom {
		margin-bottom: 30px;
	}
	.mar-bottom-half {
		margin-bottom: 15px;
	}
	.mar-bottom-double {
		margin-bottom: 60px;
	}
	.mar-bottom-triple {
		margin-bottom: 90px;
	}
	.text-center-sm {
		text-align: center;
	}
}
@media only screen and (max-width: 414px) {
    .pad-top {
        padding-top: 20px;
    }
    .pad-top-half {
        padding-top: 10px;
    }
	.pad-top-half-half {
		padding-top: 5px;
	}
    .pad-top-double {
        padding-top: 40px;
    }
    .pad-top-triple {
        padding-top: 60px;
    }
    .pad-bottom {
        padding-bottom: 20px;
    }
    .pad-bottom-half {
        padding-bottom: 10px;
    }
	.pad-bottom-half-half {
		padding-bottom: 5px;
	}
    .pad-bottom-double {
        padding-bottom: 40px;
    }
    .pad-bottom-double {
        padding-bottom: 60px;
    }
	.pad-left {
		padding-left: 50px;
	}
	.pad-left-half {
		padding-left: 25px;
	}
	.mar-top {
		margin-top: 20px;
	}
	.mar-top-half {
		margin-top: 10px;
	}
	.mar-top-double {
		margin-top: 40px;
	}
	.mar-top-triple {
		margin-top: 60px;
	}
	.mar-bottom {
		margin-bottom: 20px;
	}
	.mar-bottom-half {
		margin-bottom: 10px;
	}
	.mar-bottom-double {
		margin-bottom: 40px;
	}
	.mar-bottom-triple {
		margin-bottom: 60px;
	}
	.text-center-xs {
		text-align: center;
	}
}

/* color-set */
.btn-transparent {
	color: #000;
	border: 1px solid #ddd;
	background-color: transparent;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.btn-transparent:hover {
    color: #ffffff;
	background-color: #000;
}
.bg-dark {
	background-color: #242528;
}
.bg-gray {
	background-color: #ddd;
}
.bg-offwhite {
	background-color: #f4f4f4;
}
.bg-dark-blue {
	background-color: #1f1e27;
}
.text-white {
	color: #fff;
}
.text-black {
	color: #000;
}
.text-gray {
	color: #787878;
}
.text-offwhite {
	color: #f4f4f4;
}
.text-blue-green {
	color: #00fff0;
}
.text-yellow {
	color: #fff600;
}

/* bootstrap overriding */
.smallest {
	font-size: 70%;
}
.input-group .form-control {
	z-index: 0;
}
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
	z-index: 0;
}
.table thead tr {
	border-top: 2px solid #000;
	border-bottom: 1px solid #ddd;
	background-color: #f5f5f5;
}
.table>thead>tr>th {
	border-bottom: none;
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
	padding: 15px;
}
.table th {
	padding: 15px;
	text-align: center;
}
.table th[scope=row] {
	background-color: #f5f5f5;
	padding: 15px;
	text-align: left;
	min-width: 130px;
}
.table.border {
	border-top: 2px solid #000;
	border-bottom: 1px solid #ddd;
}
table a:not(.btn), .table a:not(.btn) {
	text-decoration: none;
}

@media only screen and (max-width: 768px) {
	.table th[scope=row] {
		min-width: 100px;
	}
}
@media only screen and (max-width: 414px) {
	.table th[scope=row] {
		min-width: 0px;
	}
}
