body {
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
}

/* @group ヘッダー */

#header {
	height: 110px;
	top: 0;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 9999;
	margin: 0 auto;
	padding-top: 20px;
	background-color: #fff;
	border-bottom: 1px solid #dcdcdc;
}

#header .inner {
	width: 1000px;
	margin: 0 auto 24px;
}

#header .logo {
	float: left;
}

#header .nav1 {
	float: right;
	font-size: 12px;
}

#header .nav1 li a {
	text-decoration: none;
}

#header .nav1 li a:hover {
	text-decoration: underline;
}

#header .nav1 li {
	float: left;
	margin-right: 20px;
}

#header .nav1 li.lang a {
	background-color: #f0f0f0;
	line-height: 24px;
	height: 24px;
	text-align: center;
	margin-right: 0;
	padding: 0 10px;
	display: block;
}

#header .nav1 li.lang a:hover {
	background-color: #0080cb;
	color: #fff;
	text-decoration: none;
	transition: .3s;
}

/* @end */

/* @group グローバルナビ */

.globalNav {
    width: 100%;
    height: 50px;
    max-width: 1000px;
    margin: 0 auto;
	position: relative;
}

.globalNav > li {
    float: left;
    background-color: #ffffff;
    width: 166px;
    height: 50px;
    line-height: 50px;
}

.globalNav > li a {
	text-decoration: none;
	display: block;
    width: 166px;
    height: 50px;
    line-height: 50px;
	cursor: pointer !important;
}

.globalNav > li.hover {
  background-color: #464646;
  transition: .3s;
  color: #ffffff;
}

.globalNav > li.hover a {
  color: #ffffff;
}

.globalNav li .caret {
  display: inline-block;
  margin-left: 8px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  vertical-align: 3px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0081cc;
  border-right: 1px solid #0081cc;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.globalNav li.hover .caret {
  vertical-align: 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

/* floatクリア */
.globalNav:before,
.globalNav:after {
    content: " ";
    display: table;
}

.globalNav:after {
    clear: both;
}

.globalNav {
    *zoom: 1;
}

.globalNav .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50px;
	left: 50%;
    box-sizing: border-box;
    width: 10000px;
    background: #464646;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	z-index: 999;
	margin-left: -5000px;
	padding: 40px 0 20px;
}

.globalNav li.hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 10000px;
	top: 50px;
	left: 50%;
	margin-left: -5000px;
}

.dropdown-menu .box {
	width: 450px;
	height: 210px;
	float: left;
	padding: 20px;
	margin: 0 20px 20px 0;
	color: #333;
	text-align: left;
}

.dropdown-menu .box.mini {
	width: 450px;
	height: 110px;
	float: left;
	padding: 20px;
	margin: 0 20px 20px 0;
	color: #333;
	text-align: left;
}

.dropdown-menu .box:nth-child(even) {
	margin-right: 0;
}

.dropdown-menu .box a {
	width: auto;
	height: auto;
	line-height: 1.8;
}

.dropdown-menu .box p {
	line-height: 1.8;
	width: 195px;
	font-size: 13px;
}

.dropdown-menu .box.mini p {
	line-height: 1.8;
	width: 290px;
	font-size: 13px;
}

.dropdown-menu .box .tit,.dropdown-menu .box.mini .tit {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.dropdown-menu .box .tit a {
	color: #333;
	position: relative;
	display: inline-block;
	line-height: 1.4;
}

.dropdown-menu .box .tit a:hover,
.dropdown-menu .box li a:hover {
	opacity: 0.7;
}

.dropdown-menu .box .tit a:before,
.dropdown-menu .box li a:before {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: -14px;
	width: 9px;
	height: 9px;
	margin-top: -4px;
	background: #0080cb;
}

.dropdown-menu .box .tit a:after,
.dropdown-menu .box li a:after {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: -11px;
	width: 9px;
	height: 9px;
	margin-top: -4px;
	background: #fff;
}

.dropdown-menu .box.original {
	background: #fff url(../common/bg_original.jpg) no-repeat right top;
}
.dropdown-menu .box.breaker {
	background: #fff url(../common/bg_breaker.jpg) no-repeat right top;
}
.dropdown-menu .box.car {
	background: #fff url(../common/bg_car.jpg) no-repeat right top;
}
.dropdown-menu .box.other {
	background: #fff url(../common/bg_other.jpg) no-repeat right top;
}
.dropdown-menu .box.system {
	background: #fff url(../common/bg_system.jpg) no-repeat right top;
}
.dropdown-menu .box.management {
	background: #fff url(../common/bg_management.jpg) no-repeat right top;
}
.dropdown-menu .box.aboutus {
	background: #fff url(../common/bg_aboutus.jpg) no-repeat right top;
}
.dropdown-menu .box.philosophy {
	background: #fff url(../common/bg_philosophy.jpg) no-repeat right top;
}
.dropdown-menu .box.kankyou {
	background: #fff url(../common/bg_environment.jpg) no-repeat right top;
}
.dropdown-menu .box.access {
	background: #fff url(../common/bg_access.jpg) no-repeat right top;
}
.dropdown-menu .box.fim {
	background: #fff url(../common/bg_fim.jpg) no-repeat right top;
}
.dropdown-menu .box.uv {
	background: #fff url(../common/bg_uv.jpg) no-repeat right top;
}
.dropdown-menu .box.twoColors {
	background: #fff url(../common/bg_double_mold.jpg) no-repeat right top;
}
.dropdown-menu .box.suiseitosou {
	background: #fff url(../common/bg_water_based.jpg) no-repeat right top;
}
.dropdown-menu .box.weldless {
	background: #fff url(../common/bg_weldless.jpg) no-repeat right top;
}
.dropdown-menu .box.hot_stamp {
	background: #fff url(../common/bg_hot_stamp.jpg) no-repeat right top;
}

.dropdown-menu .box ul {
	margin-top: 20px;
}

.dropdown-menu .box li {
	font-weight: bold;
	font-size: 14px;
	position: relative;
	line-height: 1.8;
	display: table;
}

.dropdown-menu .box li a {
	color: #333;
	display: inline-block;
}

.dropdown-menu .box li a:before,
.dropdown-menu .box li a:after {
	margin-top: -5px;
}

/* @end */


/* @group フッター */

#footer {
	width: 100%;
	margin: 0 auto;
	background-color: #323232;
	color: #ffffff;
	padding-top: 50px;
	font-size: 13px;
}

#footer a:link {
    color: #fff;
    text-decoration: none;
}
#footer a:hover {
    color: #fff;
    text-decoration: underline;
}
#footer a:visited {
    color: #fff;
    text-decoration: none;
}

#footer .inner {
	margin: 0 auto;
	width: 1000px;
	text-align: left;
}

#footer dl {
	float: left;
	margin-right: 50px;
	margin-bottom: 40px;
	width: 245px;
}

#footer dl.w180 {
	width: 180px;
}

#footer dl.last {
	margin-right: 0;
}

#footer dt {
    border-bottom: 1px solid #666666;
	margin-bottom: 15px;
	font-size: 14px;
}

#footer dt.global {
    border-bottom: none;
	margin-top: 30px;
}

#footer dt.rec {
    border-bottom: none;
	margin-top: 50px;
	background: url(../common/footer_rec_ico.png) no-repeat 4.5em;
}

#footer dd {
	margin-bottom: 5px;
}

#footer .logo {
	float: left;
	margin-right: 25px;
	margin-top: -6px;
}

#footer .nav2 {
	background-color: #000000;
	height: 60px;
	font-size: 12px;
	padding-top: 40px;
	margin-top: 20px;
}

#footer .pagetop {
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
}

#footer ul {
	float: left;
}

#footer li {
	padding-right: 30px;
	display: inline;
}

#footer .copyright {
	float: right;
	font: 13px "Barlow";
}


/* @end */


#wrapper {
	margin: 0 auto;
	text-align: left;
	background-color: #fff;
	padding-top: 130px;
	padding-bottom: 100px;
}

.w1000 {
    width: 1000px;
	margin: 0 auto;
}

.blue {
	color: #0080cb;
}

table {
	width: 100%;
	border-top: 3px solid #c8c8c8;
	border-bottom: 3px solid #c8c8c8;
}

table th {
	padding: 10px 15px;
	border-top: 1px solid #c8c8c8;
	border-bottom: 1px solid #c8c8c8;
	font-weight: bold;
	background-color: #f0f0f0;
	text-align: center;
	vertical-align: top;
}

table td {
	padding: 10px 15px;
	border-top: 1px solid #c8c8c8;
	border-bottom: 1px solid #c8c8c8;
}

#title {
	background-color: #ebf0f0;
	height: 100px;
}

#title h1 {
	font-size: 32px;
    width: 1000px;
	margin: 0 auto;
	line-height: 100px;
}

#category {
	background-color: #0080cb;
	margin-bottom: 40px;
	height: 60px;
}

#category h2 {
	font-size: 28px;
    width: 1000px;
	margin: 0 auto;
	color: #fff;
	line-height: 60px;
}

/* @group パンくずリスト */

#topicPath {
	margin: 0 auto;
	width: 100%;
	text-align: left;
    font-size: 12px;
	padding: 10px 0;
}

#topicPath ul {
    width: 1000px;
	margin: 0 auto;
}

#topicPath li {
    display: inline;
    list-style-type: none;
}

#topicPath li a {
    background: url("../common/topicpath.gif") no-repeat scroll right center transparent;
    padding-right: 15px;
	margin-right: 5px;
}

/* @end */


@media print {

body { zoom: 60%; }

#header {
	position: relative;
	height: auto;
}

#wrapper {
	padding-top: 0;
}

#footer {
	background-color: #fff;
	color: #333;
	height: auto;
}

#footer a:link,
#footer a:hover,
#footer a:visited {
    color: #333;
}

#footer dl, #footer ul, {
	display: none;
}

#footer .nav2 {
	background-color: #fff;
}

}
