@charset "UTF-8";

/*================================================
 *  CSSreset
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:13px;
	font-family: 'Open Sans', sans-serif;
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height:1.6;
}

#headerLine{
	display: block;
	overflow: hidden;
	width: 100%;
	height: 5px;
	background: #bbb;
}

header{
	width:100%;
	height:90px;
	margin:0 auto;
	border-top: solid 4px #e6e6e6;
	background: #ffffff;
}

#headerContent{
	width:890px;
	margin:0 auto;	
}

#contents {
	width:100%;
	margin:0 auto 80px auto;	
}

a {
	color:#043771;
}
a:hover {
	color:#144d8d;
}

h1 {
	float: left;
	display: inline-block;
}

h2 {
	margin-top:50px;
	margin-bottom:0.5em;
	font-size:24px;
	color:#333;
	text-align:center;
}

h3 {
	font-weight: 600;
	margin-bottom: 0.75em;
	font-size:17px;
	border-bottom: solid 1px #ddd;
}

h4 {
	font-weight: 600;
	margin-bottom: 0.5em;
	font-size:15px;
	clear: both;
}

h5 {
	margin-bottom:0.25em;
	font-size:15px;
	clear: both;
}

h6 {
	margin-bottom:0.25em;
	padding-left:5px;
	font-size:16px;
	font-weight:bold;
}

a{
	display: block;
}

.blockTitle{
	font-size: 25px;
	color: #5E5E5E;
	text-align: center;
	margin: 0px auto 30px auto;
}

.readMore_btn a{
	width: 150px;
	line-height: 30px;
	text-align: center;
	color:  #FFFFFF;
	text-decoration: none;
	background-color: #017BD3;
	display: block;
	overflow: hidden;
	transition: opacity 0.5s ease-out;
		-webkit-transition: opacity 0.5s ease-out;
		-moz-transition: opacity 0.5s ease-out;
		-ms-transition: opacity 0.5s ease-out;
}

.readMore_btn a:hover{
	opacity: .7;
		-webkit-opacity: .7;
		-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
		-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	transition: opacity 0.5s ease-out;
		-webkit-transition: opacity 0.5s ease-out;
		-moz-transition: opacity 0.5s ease-out;
		-ms-transition: opacity 0.5s ease-out;
}


.showAllLink{
	text-decoration: none;
	display: table-cell;
	overflow: hidden;
	left: 50%;
}
.showAll a{
	width:150px;
	text-align: center;
	line-height: 30px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	border: solid 1px #009EFA;
	clear: both;
	margin-top: 40px;
	text-decoration: none;
	color: #009EFA;
	transition: 0.5s ease-out;
		-webkit-transition: 0.5s ease-out;
		-moz-transition: 0.5s ease-out;
		-ms-transition: 0.5s ease-out;
}

.showAll a:hover{
	color: #01EFAD;
	border: solid 1px #01EFAD;
	transition: 0.5s ease-out;
		-webkit-transition: 0.5s ease-out;
		-moz-transition: 0.5s ease-out;
		-ms-transition: 0.5s ease-out;
}



/*=========================
block
=========================*/
.mainImageBlock{
	width: 100%;
	height: 200px;
	padding: 20px 0 35px 0;
	display: block;
	margin: 0 0 30px 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3) inset;
	background: #ffffff;
		background: -moz-linear-gradient(top,  #ffffff 0%, #f6f6f6 81%, #ededed 100%);
		background: -webkit-linear-gradient(top,  #ffffff 0%,#f6f6f6 81%,#ededed 100%);
		background: linear-gradient(to bottom,  #ffffff 0%,#f6f6f6 81%,#ededed 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
}

.block{
	padding: 30px 0;
	margin: 40px 0;
	opacity: 0;
	transition: .5s ease;
	transform : translate(0, 50px);
}

.block.scrollin{
	opacity : 1;
	transform : translate(0, 0);
}

.techInfoBlock{
	background-image: url("../images/top/img_techBack.jpg");
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3) inset;
	margin: 70px auto 0 auto;
}

/*=========================
images
=========================*/
.columnImage_4{
	width: 225px;	
	float: left;
	text-align: center;
	margin: 0 10px 20px 10px;
}
.columnImage_4 img{
	width: 225px;
	display: block;
	overflow: hidden;
	background-color: #ccc;
	margin-bottom:5px;
}

.columnImage_3{
	width: 305px;	
	float: left;
	text-align: center;
	margin: 0 10px 20px 10px;
}
.columnImage_3 img{
	width: 305px;
	display: block;
	overflow: hidden;
	background-color: #ccc;
	margin-bottom:5px;
}

.contentsText{
	width: auto;
	padding-left: 10px;
	display: block;
	overflow: hidden;
	margin-bottom: 15px;
	clear: both;
}

.columnTxt_3{
	width: 305px;
	display: block;
	overflow: hidden;
	float: left;
	margin: 0 10px 20px 10px;
}


/*=========================
header
=========================*/

#logo img{
	width: 295px;
	height:35px;
	margin: 15px 0 3px 0;
}

.headerLink{
	font-size: 13px;
	margin-top: 16px;
	color: #185AC9;
	float: right;
}

.headLead{
	font-size: 12px;
	color: #039CF0;
	margin-left: 8px;
}

/*=========================
globalMenu
=========================*/
#naviArea{
	width: 100%;
	border-top: solid 1px #ddd;	
	border-bottom: solid 1px #ddd;
	background: #ffffff;
		background: -moz-linear-gradient(top,  #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
		background: -webkit-linear-gradient(top,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
		background: linear-gradient(to bottom,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );

}
#naviWrap{
	width: 890px;
	margin: 0 auto;
	height:45px;
	display:block;
	position:relative;
	z-index:100;
	background: #ffffff;
		background: -moz-linear-gradient(top,  #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
		background: -webkit-linear-gradient(top,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
		background: linear-gradient(to bottom,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
}

#naviWrap ul{
	margin: 0;
	padding: 0;
	z-index:99;
}

#naviWrap ul li{
	list-style: none;
	float: left;
	/*width:-webkit-calc(100% / 5 - 6px);*/
	height:  45px;	
}

#naviWrap ul li a.navi{
	display: block;
	text-align: center;
	padding: 12px 25px;
	text-decoration: none;
	font-size: 14px;
	color: #5E5E5E;
}

#naviWrap ul li a.navi:hover{
	color: #0058B8;
	border-bottom: 2px solid #4263FF;
}

.megaWrap{
	width: 890px;
	display: none;
	position: absolute;
	top:46px;
	left: 0;
	background: #F2F2F2;
}

.megaContentWrap{
  padding: 20px 0 40px 10px;
}

.megaContentWrap dl{
  float: left;
	margin: 0 15px;
}

.megaContentWrap dd a{
    text-decoration: none;	
}

.megaContentWrap dd a:hover{
    text-decoration: underline;
}

.megaContentWrap p{
  border-bottom: 1px solid #CCC;
  padding-bottom: 20px;
}

/*================================================
 *  breadCrumb
 ================================================*/
.breadCrumb{
	font-size: 12px;
	margin: 10px 0;
}


/*================================================
 *  mainImageArea
 ================================================*/
.mainImageArea{
	margin: 0 auto;
	width: 890px;
	height: 220px;
	display: block;
	overflow: hidden;
}

.slideInner{
	box-shadow: 0 3px 4px rgba(0,0,0,0.4) ;
}

/*================================================
 *  industriesArea
 ================================================*/
.industriesArea{
	width: 890px;
	display: block;
	overflow: hidden;
	margin: 0 auto;
}

.industry{
	width: 178px;
	display: block;
	overflow: hidden;
	height: 200px;
	float: left;
}

.industry a{
	transition: opacity 0.5s ease-out;
		-webkit-transition: opacity 0.5s ease-out;
		-moz-transition: opacity 0.5s ease-out;
		-ms-transition: opacity 0.5s ease-out;
}

.industry a:hover{
	opacity: .7;
		-webkit-opacity: .7;
		-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
		-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	transition: opacity 0.5s ease-out;
		-webkit-transition: opacity 0.5s ease-out;
		-moz-transition: opacity 0.5s ease-out;
		-ms-transition: opacity 0.5s ease-out;
}

.industry img{
	z-index: 0;
	position: absolute;
}

.industriyName{
	position: absolute;
	width: 178px;
	background: rgba(171,171,171,0.5);
	margin-top: 158px;
	z-index: 1;
}
	
.industry p{
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	padding: 10px 0;
}

/*================================================
 *  recommendedProArea
 ================================================*/
.recommendedProArea{
	width: 860px;
	margin: 0 auto;
}

.recommendedPro{
	display: block;
	overflow: hidden;
}

.recommendedProImg{
	width: 300px;
	height: 180px;
	display: block;
	overflow: hidden;
	float: left;
	margin-right: 30px;
	background-color: #ddd;
}

.recommendedProName{
	font-size: 16px;
	font-weight: 600;
	color: #5E5E5E;
	margin-bottom: 7px;
	padding-bottom: 3px;
	border-bottom: solid 1px #cccccc;
	display: block;
	overflow: hidden;
}

.recommendedPro p{
	margin-bottom: 15px;
}


/*================================================
 *  technicalInformationArea
 ================================================*/
.technicalInfoArea{
	width: 890px;
	margin: 0 auto;
	display: block;
	overflow: hidden;	
}

.technicalInfoArea a{
	color: #000;
	transition: opacity 0.5s ease-out;
		-webkit-transition: opacity 0.5s ease-out;
		-moz-transition: opacity 0.5s ease-out;
		-ms-transition: opacity 0.5s ease-out;
}

.technicalInfoArea a:hover{
	opacity: .7;
		-webkit-opacity: .7;
		-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
		-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	transition: opacity 0.5s ease-out;
		-webkit-transition: opacity 0.5s ease-out;
		-moz-transition: opacity 0.5s ease-out;
		-ms-transition: opacity 0.5s ease-out;
}

.technicalInfoArticle{
	width: 202px;
	margin: 0 10px;
	float: left;
}

.articlePostDate{
	color: #003CA4;
}

/*================================================
 *  news
 ================================================*/
.newsArea{
	width: 890px;
	margin: 0 auto;
}
.newsLine{
	line-height: 20px;
	border-bottom: dotted 1px #ccc;
	padding: 10px 0;
}

.newsPostDate{
	width: 9%;
	display: inline-block;
	
}

.newsCategory{
	vertical-align: middle;
	width:80px;
	line-height: 16px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	margin-right: 10px;
	background-color: #DE0003;
	font-size: 11px;
	color: #ffffff;
}




/*================================================
 *  contentsTabArea
 ================================================*/
#contents{
	width: 100%;
}
.contentsTabArea{
	width: 100%;
	margin-top: 20px;
}

.contentsTabArea  ul{
	height: 40px;
	border-bottom: solid 1px #ddd;
}
.contentsTabArea li{
	text-align: center;
	line-height: 40px;
	border-right: solid 1px #ddd;
	padding-right: 15px;
	margin-right: 15px;
	float: left;
	display: block;
}

.contentsTabArea a{
	text-decoration: none;
	color: #000;
}

.contentsTabArea a:hover{
	color: #aaa;
}

/*================================================
 *  priceArea
 ================================================*/
.priceArea{
	overflow: hidden;
}

.priceArea table{
	width: 50%;
	border-collapse:collapse;
	border:1px solid #ddd;
	margin-top: 25px;
	margin-bottom: 20px;
	float: left;
}

.priceArea th {
	padding:3px;
	text-align:center;
	vertical-align:middle;
	border:1px solid #ddd;
	background:#f1f1f1;
}
.priceArea td {
 	padding:3px 0 0 10px;
	text-align:left;
	border:1px solid #ddd;
}

.iconArea{
	margin-top: 25px;
	width: 50%;
	text-align: right;
	float: left;
}

/*================================================
 *  leadtxtArea
 ================================================*/
.leadtxtArea{
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	clear: both;
}

/*================================================
 *  featuresArea
 ================================================*/
.featuresArea{
	width: 100%;
	margin-top: 40px;
}

/*================================================
 *  footer
 ================================================*/
footer {
	width: 100%;
	background-color: #efefef;
	padding-top: 15px;
	clear:both;
	font-size:12px;
}

.footerContentsArea{
	width: 980px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
}

.footerContents{
	width: auto;
	float: left;
}

.footerContents p{
	font-size: 12px;
	color: #0074BE;
	font-weight: 600;
	margin-bottom: 5px;
}

.footerContents ul{
	width: auto;
	float: left;
	margin-right: 25px;
	
}

.productCategory{
	color: #0074BE;
	margin-bottom: 5px;	
}

.footerContents  li{
	line-height: 19px;
}

.footerContents a{
	color: #313131;
	text-decoration: none;
}

.footerContents a:hover{
	color: #313131;
	text-decoration: underline;
}

.footerIsolation{
	width: 1px;
	height: 220px;
	margin-right: 10px;
	float: left;
	background-color: #C0C0C0;
}

#footerUnderLine{
	clear: both;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 5px;
	margin-top: 25px;
	background: #0074be;
		background: -moz-linear-gradient(left, #0074be 0%, #19b0e8 51%, #0074be 100%);
		background: -webkit-linear-gradient(left, #0074be 0%,#19b0e8 51%,#0074be 100%);
		background: linear-gradient(to right, #0074be 0%,#19b0e8 51%,#0074be 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0074be', endColorstr='#0074be',GradientType=1 );
}

#copyrightArea{
	width: 100%;
	text-align: center;
	height: 40px;
	background-color: #ffffff;
}

#copyrightContents{
	width: 890px;
	margin: 0 auto;
}

#copyright{
	text-align:  left;
	float: left;
	line-height: 40px;
	width: 200px;
	color: #696969;
}

.copyright_R{
	float:  right;
	margin-left: 25px;
	line-height: 40px;
}

.copyright_R a{
	color: #696969;
	text-decoration: none;
}

.copyright_R a:hover{
	text-decoration: underline;
}

/*================================================
 *  pageTop
 ================================================*/
#totop {
	width: 50px;
	height: 50px;
	position:fixed;
	bottom: -50px;
	right:15px;		
}
#totop a {
	display:block;
	text-decoration:none;
}
#totop img {
	background: #0480FB;
}
#totop img:hover {
	background: #509CF9;
}

.cp_ipselect {
	width: 150px;
	text-align: center;
	display: block;
	overflow: hidden;
	float: right;
	margin: 10px 0 0 15px;
	
}
.cp_ipselect select {
	width: 150px;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl02 {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.cp_ipselect.cp_sl02::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl02:after {
	position: absolute;
	top: 0;
	right: 2.5em;
	bottom: 0;
	width: 1px;
	content: '';
	border-left: 1px solid #bbbbbb;
}
.cp_ipselect.cp_sl02 select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}


