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

/* --------------------------
   CSSリセット
-------------------------- */

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, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

html,body{
    width: 100%;
}

body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	text-decoration: none;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}


a:hover img{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}



/* --------------------------
   サイト全体
-------------------------- */

html{
	margin: 0;
	padding: 0;
    width: 100%;
	height: 100%;
}

body{
	font-size: 0.9rem;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif, -apple-system, BlinkMacSystemFont;
	margin: 0;
	padding: 0;
	font-weight: 400;
	line-height: 1.7;
	color: #222;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
}

.clear-space {
    overflow: hidden;
    width: 100%;
}

/* TOPへ戻る */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 700;
  }
  #pageTop i {
  	padding-top: 13px;
  }
  #pageTop a {
    display: block;
    z-index: 999;
    padding: 4px;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    background-color: #03A9F4;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
  }
  #pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
  }



/* --------------------------
   ヘッダー
-------------------------- */

header{
	width: 1400px;
	margin: 50px auto 35px;
	padding: 0;
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
}

header div.left{
	width: 28.28%;
	bottom: 0;
}

header div.left img{
	width: 100%;
}

header div.center{
	width: 18.15%;
	/* box-sizing: border-box; */
	/* border-right: 1px solid #4f4f4f; */
	bottom: 0;
}
header div.right{
	width: 53.57%;
	text-align: right;
	bottom: 0;
	/* right: 0; */
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
}

header div.right div{
	width: 14%;
	margin-right: 1%;
}

header div.right div img{
	width: 100%;
}

header div.sp-right{
	display: none;
}

header div.navToggle{
	display: none;
}


/* ここから 幅1400px以下 スマホ表示用 */
@media screen and (max-width:1399px) { 
	header{
		width: 96%;
		margin: 30px auto 20px;
	}
	header div.left{
		margin-right: 0;
	}
}

@media screen and (max-width:1000px) { 
	header div.center{
		width: 5%;
	}
	
	header div.right{
		width: 66.72%;
	}
}

@media screen and (max-width:639px) { 
	
	header div.left{
		width: 50%;
	}
	header div.right{
		display: none;
	}
	
	/*スマホ ハンバーガーナビ */
	header div.sp-right{
		display: inherit;
		width: 50%;
	}
	
	header div.navToggle{
		display: inherit;
		margin-top: 15px;
	}
		
	nav.globalMenuSp {
	    position: fixed;
	    z-index: 2;
	    top: 0;
	    left: 0;
	    background: #fff;
	    color: #000;
	    text-align: center;
	    transform: translateY(-100%);
	    transition: all 0.6s;
	    width: 100%;
	}
	 
	nav.globalMenuSp ul {
	    background: #ccc;
	    margin: 0 auto;
	    padding: 0;
	    width: 100%;
	}
	 
	nav.globalMenuSp ul li {
	    font-size: 1.1em;
	    list-style-type: none;
	    padding: 0;
	    width: 100%;
	    border-bottom: 1px dotted #333;
	}
	 
	/* 最後はラインを描かない */
	nav.globalMenuSp ul li:last-child {
	    padding-bottom: 0;
	    border-bottom: none;
	}
	 
	nav.globalMenuSp ul li a {
	    display: block;
	    color: #000;
	    padding: 1em 0;
	}
	 
	/* このクラスを、jQueryで付与・削除する */
	nav.globalMenuSp.active {
	    transform: translateY(0%);
	}
	
	.navToggle {
	    display: block;
	    position: fixed;    /* bodyに対しての絶対位置指定 */
	    right: 13px;
	    top: 12px;
	    width: 42px;
	    height: 51px;
	    cursor: pointer;
	    z-index: 3;
	    background: #666;
	    text-align: center;
	}
	 
	.navToggle span {
	    display: block;
	    position: absolute;    /* .navToggleに対して */
	    width: 30px;
	    border-bottom: solid 3px #eee;
	    -webkit-transition: .35s ease-in-out;
	    -moz-transition: .35s ease-in-out;
	    transition: .35s ease-in-out;
	    left: 6px;
	}
	 
	.navToggle span:nth-child(1) {
	    top: 9px;
	}
	 
	.navToggle span:nth-child(2) {
	    top: 18px;
	}
	 
	.navToggle span:nth-child(3) {
	    top: 27px;
	}
	 
	.navToggle span:nth-child(4) {
	    border: none;
	    color: #eee;
	    font-size: 9px;
	    font-weight: bold;
	    top: 34px;
	}
	
	/* 最初のspanをマイナス45度に */
	.navToggle.active span:nth-child(1) {
	    top: 18px;
	    left: 6px;
	    -webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	 
	/* 2番目と3番目のspanを45度に */
	.navToggle.active span:nth-child(2),
	.navToggle.active span:nth-child(3) {
	    top: 18px;
	    -webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
	/*スマホ ハンバーガーナビ */
	
}




/* --------------------------
   Gナビ
-------------------------- */


.gnav{
	width: 100%;
	height: 60px;
	background-color: #e9e9e9;
	border-top: solid 2px #ffe100;
}

.gnav .inner{
	width: 1400px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: #505050;
	font-weight: bold;
	font-size: 0.9rem;
	margin: 0 auto;
	padding: 0;
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
}

.gnav .inner div{
	width: 11.111%;
	height: 60px;
	box-sizing: border-box;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}



.gnav .inner div a {
	display:block;
	width: 100%;
	background-color:#e9e9e9;
	color: #505050;
	text-decoration: none;
	transition: 0.3s ;
}

.gnav .inner div a:hover { 
	background-color: #505050;
	color:#e9e9e9;
	text-decoration: none;
	transition: 0.3s ;
}

.gnav .inner div a.current {
	background-color: #505050;
	color: #e9e9e9;
}

.gnav .inner div a.current:hover { 
	background-color: #505050;
	color:#e9e9e9;
	text-decoration: none;
	transition: 0.3s ;
}


/* --------------------------
   サブナビ
-------------------------- */
ul.subnav{
	width: 100%;
	height: 40px;
	line-height: 40px;
	background-color: #FFE100;	
	text-align: center;
	color: #505050;
	font-size: 0.9rem;
	margin: 0 auto 3rem;
	padding: 0;
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
	list-style: none;
	border-radius: 6px;		/* CSS3草案 */
	-webkit-border-radius: 6px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 6px;	/* Firefox用 */

}

ul.subnav li{
	height: 40px;
	box-sizing: border-box;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	list-style: none;
	position: relative;
}

ul.subnav li:before {
	font-family: FontAwesome;
	position: absolute;
	content: "\f107";
	left: 10px;
}	



ul.subnav li.compa{
	width: 16.6666%;
}

ul.subnav li.tech{
	width: 20%;
}

ul.subnav li.w25{
	width: 25%;
}

ul.subnav li.dev{
	width: 33.333%;
}

ul.subnav li.w50{
	width: 50%;
}


ul.subnav li:first-child{
	border-left: none;
}

ul.subnav li:last-child{
	border-right: none;
}

ul.subnav li a {
	display:block;
	width: 100%;
	background-color:#FFE100;
	color: #505050;
	text-decoration: none;
	transition: 0.3s ;
}

ul.subnav li a:hover { 
	background-color: #e60012;
	color:#fff;
	text-decoration: none;
	transition: 0.3s ;
}



#topfix{
	position: fixed; /* ヘッダーを固定(これが重要) */
	top: 0; /* 固定する位置 */
	left: 0; /* 固定する位置 */
	right: 0;  /* 固定する位置 */
	background-color: #fff;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

/* --------------------------
   メインビジュアル
-------------------------- */

.mainvisual{
	width: 100%;
	/* margin-top: 160px; */
}

/*
.mainvisual .inner{
	width: 1500px;
	height: 330px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
*/
.mainvisual .inner{
	width: 1400px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}


/* ここから 幅1400px以下 スマホ表示用 */
@media screen and (max-width:1399px) { 
	.mainvisual .inner{
		width: 100%;
	}
	
	.mainvisual .inner img{
		width: 100%;
	}
}


/* --------------------------
   TOPページコンテンツ
-------------------------- */

/* コンテンツ */
.content{
	width: 1400px;
	margin: 40px auto;
	padding: 0;
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
}
	
.content nav{
	width: 200px;
	box-sizing: border-box;
	border-right: 2px solid #555;
}

.content nav ul{
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.content nav ul li{
	width: 100%;
	margin: 0;
	padding: 0;
}

.content nav ul li img{
	width: 100%;
}

.content main{
	width: 1130px;
	margin-left: 70px;
}


/* トピックス　*/
.topics-list{margin: 0; padding: 0;}
.topics-list .head{margin: 0 0 1rem 0; padding: 0.5rem; background-color: #78909C; color: #fff; text-align: left; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; }
.topics-list ul{list-style: none; width: 100%; margin-bottom: 2rem;}
.topics-list ul li{padding-bottom: 0.5rem; padding-left: 0.5rem; margin-bottom: 0.5rem; border-bottom: dotted 1px #c0c0c0;}
.topics-list ul li:last-of-type{ padding-bottom: 0; margin-bottom: 0; border-bottom: 0;}
.topics-list ul li .topics_flex{
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
}
.topics-list ul li .topics_flex .date{width: 13%; font-size: 0.8rem; }
.topics-list ul li .topics_flex .topics_txt{width: 87%;}
.topics-list ul li p{margin-bottom: 0 !important;}

.topics-list ul li .topics_flex .topics_txt a:link{color: #c33471; text-decoration: none;}
.topics-list ul li .topics_flex .topics_txt a:hover{color: #c33471; text-decoration: none;}
.topics-list ul li .topics_flex .topics_txt a:active{color: #c33471; text-decoration: none;}
.topics-list ul li .topics_flex .topics_txt a:visited{color: #c33471; text-decoration: none;}


.content main .title{
	border: 1px solid #666;
	margin: 0.5rem 0 2rem;
	padding: 1rem;
	font-size: 1.2rem;
	text-align: center;
}

.content main .title_attention{
	border: 1px solid #666;
	margin: 0.5rem 0 2rem;
	padding: 1rem;
	font-size: 1.2rem;
	text-align: center;
	background-color: #fff;
}

/* 企業に潜む火災の危険性 */

.attention-head{
	font-weight: bold;
	margin-bottom: 0.2rem !important;
}

@media screen and (max-width:640px) { 

	.attention-txt{
		border-bottom: 1px dotted #555;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}
}

.content main .menu{
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
	margin-top: 1rem;
	margin-bottom: 50px;
}

.content main .menu div{
	width: 15%;
	margin-right: 2%;
}

.content main .menu div:last-of-type{
	margin-right:0;
}

.content main .menu div img{
	width: 100%;
}


/* お問合せフォーム */
.contact-title{margin: 0 0 2rem 0; padding: 0.5rem; background-color: #78909C; color: #fff; text-align: left; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; font-size: 1.2rem; }


/* ここからサービス(#service) */
.content main div.grayback{
	background-color: #ededee;
	padding: 75px;
	box-sizing: padding-box;
}

.content main div.grayback .head_green{
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}	

.content main div.grayback .head_green div{
	background-color: #00a982;
	color: #fff;
	width: 195px;
	margin-right: 1rem;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px; 
	padding: 1rem;
	font-size: 1.2rem;
	box-sizing: padding-box;
	text-align: center;
}

.content main div.grayback .head_green div:last-of-type{
	margin-right: 0;
}

.content main div.grayback .box01{
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
	margin-top: 1.5rem;
}

.content main div.grayback .box01 .left{
	width: 22%;
	text-align: center;
}

.content main div.grayback .box01 .left img{
	width: 100%;
}

.content main div.grayback .box01 .right{
	width: 73%;
	margin-left: 5%;
}

.content main div.grayback .box01 .right p{
	margin-bottom: 1rem;
}



/* ここから提供(#equipment) */
.content main div.grayback .box02{
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
	margin-top: 1.5rem;
}

.content main div.grayback .box02 div{
	width: 22%;
	margin-right: 4%;
	text-align: center;
}

.content main div.grayback .box02 div img{
	width: 100%;
}

.content main div.grayback .box02 div:last-of-type{
	margin-right:0;
}


/* ここから ダウンロード */
.pdf_download{
	width: 100%;
	margin-top: 1.5rem;
}

.w249{
	width: 249px;
}

@media screen and (max-width:450px) { 
	.w249{
		width: 100%;
	}

}

.col-head-type2 {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}
 
.col-head-type2 th,
.col-head-type2 td {
  border: 1px solid #dbe1e8;  
  padding: 8px;
  vertical-align: middle;
}
 
.col-head-type2 th {
  background: #f9fafc;
  text-align: left;
  width: 240px;
  font-size: 0.8rem;
}

@media screen and (max-width:800px) { 
  .col-head-type2 tr,
  .col-head-type2 th,
  .col-head-type2 td {
    display: block;
    width: auto;
  }
  
  .col-head-type2 tr:first-child {
    border-top: 1px solid #dbe1e8;  
  }
  
  .col-head-type2 th,
  .col-head-type2 td {
    border-top: none;
  }
}






/* ここからプロフィール(#profile) */
.col-head-type1 {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}
 
.col-head-type1 th,
.col-head-type1 td {
  border: 1px solid #dbe1e8;  
  padding: 8px;
  vertical-align: middle;
}
 
.col-head-type1 th {
  background: #f9fafc;
  text-align: left;
  width: 120px;
  font-size: 0.8rem;
}
 

/* ここから 幅1400px以下 スマホ表示用 */
@media screen and (max-width:1399px) { 
	
	.content{
		width: 96%;
		margin: 40px auto;
	}
	
	.content nav{
		width: 14.2857%;
	}

	.content main{
		width: 80.7142%;
		margin-left: 5%;
	}


	.mainvisual .inner{
		width: 100%;
	}
	
	.mainvisual .inner img{
		width: 100%;
	}

	.topics-list ul li .topics_flex .date{width: 20%;}
	.topics-list ul li .topics_flex .topics_txt{width: 80%;}

	.content main div.grayback{
		padding: 50px;
	}

}

@media screen and (max-width:1000px) { 

	.content nav{
		width: 20%;
	}

	.content main{
		width: 75%;
		margin-left: 5%;
	}
	.topics-list ul li .topics_flex .date{width: 28%;}
	.topics-list ul li .topics_flex .topics_txt{width: 72%;}

	.content main div.grayback{
		padding: 40px;
	}
	.content main div.grayback .box02 div{
		font-size: .9rem;
	}
}

@media screen and (max-width:800px) { 

	.content{
		margin: 1rem auto;
	}
		
	.content nav{
		display: none;
	}
	
	.content main{
		width: 100%;
		margin-left: 0;
	}
	
	.content main .title{
		border: 1px solid #333;
		margin: 0.5rem 0 1rem;
		padding: 0.5rem;
		font-size: 1rem;
		text-align: center;
	}
	
	.content main .menu{
		margin-bottom: 1rem;
	}
	
	.content main .menu div{
		width: 32%;
		margin-right: 4%;
	}
	.topics-list ul li .topics_flex .date{width: 30%;}
	.topics-list ul li .topics_flex .topics_txt{width: 70%;}


	.content main div.grayback{
		padding: 30px;
	}

	.content main div.grayback .head_green div{
		font-size: 1.1rem;
	}
	
	.content main div.grayback .box02 div{
		font-size: .8rem;
	}
	
	  .col-head-type1 tr,
	  .col-head-type1 th,
	  .col-head-type1 td {
	    display: block;
	    width: auto;
	  }
	  
	  .col-head-type1 tr:first-child {
	    border-top: 1px solid #dbe1e8;  
	  }
	  
	  .col-head-type1 th,
	  .col-head-type1 td {
	    border-top: none;
	  }


}

@media screen and (max-width:640px) { 

	.content main div.grayback{
		padding: 5%;
	}
	.content main div.grayback .head_green div{
		font-size: 1rem;
		padding: 1rem 0.7rem;
	}
	
	.content main div.grayback .box01{
		display: block ; 
		display: block ; 
		display: block ; 
		display: block ; 
		display: block ; 
	}	

	.content main div.grayback .box01 .left{
		width: 70%;
		margin: 0 auto 1rem;
	}
	
	.content main div.grayback .box01 .left br{
		display: none;
	}
		
	.content main div.grayback .box01 .right{
		width: 100%;
		margin-left: 0;
		margin-bottom: 1rem;
	}
	.content main div.grayback .box02 div{
		font-size: .7rem;
	}
	
	
}

@media screen and (max-width:450px) { 

	.content main div.grayback .head_green div{
		font-size: 0.9rem;
		padding: 0.8rem 0.5rem;
	}
	.content main div.grayback .box02 div{
		font-size: .6rem;
	}
}



/* --------------------------
   製品開発
-------------------------- */

.LRbox01 .left{
	width: 60%;
	line-height: 2;
}	

.LRbox01 .right{
	width: 35%;
	margin-left: 5%;
} 

.LRbox01 .right img{
	width: 100%;
}

.massage{
	background-color: #f5f5ee;
	padding: 1rem;
	box-sizing: padding-box;
	margin-bottom: 3rem;
	border-radius: 6px;		/* CSS3草案 */
	-webkit-border-radius: 6px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 6px;	/* Firefox用 */
}

/* --------------------------
   アフターサービス
-------------------------- */

.LRbox01 .left01{
	width: 50%;
	line-height: 2;
}	

.LRbox01 .left01 img{
	width: 100%;
}

.LRbox01 .right01{
	width: 45%;
	line-height: 2;
	margin-left: 5%;
} 

.LRbox01 .right01 img{
	width: 100%;
}

/* --------------------------
   会社概要
-------------------------- */

.compH3{
	color: #505050;/*文字色*/
	padding: 0.5em;/*文字周りの余白*/
	display: inline-block;/*おまじない*/
	line-height: 1.3;/*行高*/
	background: #FFE100;/*背景色*/
	vertical-align: middle;/*上下中央*/
	border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
	margin: 1rem 0 0.5rem 0;
}

.compH3:before {
	content: '●';
	color: white;
	margin-right: 8px;
}

.compH4{
	font-size: 0.9rem;
	padding: 0.3rem 0.3rem 0.3rem 0.7rem;
	background-color: #e6e2d9;
	box-sizing: padding-box;
	margin-top: 12px;
	margin-bottom: 7px;
}


.LRbox01 .left02{
	width: 70%;
	line-height: 2;
}	

.LRbox01 .right02{
	width: 25%;
	margin-left: 5%;
} 

.LRbox01 .right02 img{
	width: 100%;
}

.policy{margin: 0; padding: 0;}

.policy p{padding-left: 1rem; box-sizing: padding-box;}

/* 箱組 */
table.comp{
	border-collapse:collapse;
	width:100%;
	margin-bottom: 0.5rem;
	font-weight: 400 !important;
}

table.comp th,
table.comp td{
	border-top:1px solid #dadac5;
	border-bottom:1px solid #dadac5;
	border-right: none;
	border-left: none;
	padding:10px;
}

table.comp thead th{
	background:#F7F7ED;
}

table.comp tbody th{
	background:#F7F7ED;
}

table.comp .w10 { width: 10%; }
table.comp .w20 { width: 20%; }
table.comp .w30 { width: 30%; }
table.comp .w40 { width: 40%; }
table.comp .w50 { width: 50%; }
table.comp .w60 { width: 60%; }
table.comp .w70 { width: 70%; }
table.comp .w80 { width: 80%; }
table.comp .w90 { width: 90%; }

ul.complist{
	list-style: none;
}

ul.complist li{
	margin-bottom: 1rem;
}

.suppliers{
	width: 300px;
	height: 60px;
	background-color: #FFE100;
	text-align: center;
	line-height: 60px;
	color: #505050;
}

.suppliers-list{
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
	
}
.suppliers-list .left{
	width: 48%;
	margin-right: 2%;
}
.suppliers-list .left .wleft{
	width: 49%;
	margin-right: 2%;
	float: left;
}
.suppliers-list .left .wright{
	width: 49%;
	float: right;
}

.suppliers-list .center{
	width: 24%;
	margin-right: 2%;
}
.suppliers-list .right{
	width: 24%;
}

.suppliers a:link{text-decoration: none; color: #505050;}
.suppliers a:active{text-decoration: none; color: #797979;}
.suppliers a:visited{text-decoration: none; color: #505050;}

.suppliers a {
	display:block;
	width: 100%;
	background-color:#FFE100;
	color: #505050;
	text-decoration: none;
	transition: 0.3s ;
}

.suppliers a:hover { 
	background-color: #e60012;
	color:#fff;
	text-decoration: none;
	transition: 0.3s ;
}

/* --------------------------
   リクルート
-------------------------- */

.LRbox01 .left03{
	width: 47.5%;
}	

.LRbox01 .right03{
	width: 47.5%;
	margin-left: 5%;
} 


/* --------------------------
   製品ページ
-------------------------- */

.proH3{
	padding: .5em .75em;
	background-color: #f6f6f6;
	border-left: 6px solid #e60012;
	color: #333;
	font-size: 1.1rem;
 }

.proflex{
	display: -webkit-flex; 
	display: -moz-flex; 
	display: -ms-flex; 
	display: -o-flex; 
	display: flex;
	margin-top: 1rem;
	margin-bottom: 2rem !important;
}

.proflex p{margin-bottom: 0 !important;}

.proflex .left{
	width: 70px;
	margin-right: 15px;
	background-color: #A9A9A9;
	text-align: center;
	position: relative;
	color: #fff;
	font-weight: bold;
}

.proflex .left p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-bottom: 0 !important;
}

.proflex .center{
	width: 720px;
	padding: 0.3rem 0 !important;
	box-sizing: padding-box;
}

.proflex .center .head{
	color: #d21b00;
	font-weight: bold;
	font-size: 1.1rem;
}

.proflex .center .txt{
	margin-bottom: 1rem !important;
}

.proflex .right{
	width: 275px;
	margin-left: 20px;
	text-align: center;
	font-size: 0.7rem;
}

.proflex .right img{
	width: 100%;
}

.pro_w40C{
	width: 40%;
	margin: 1rem auto;
	text-align: center;
	font-size: 0.8rem;
}

.pro_w40C img{
	width: 100%;
	margin-top: 5px;
}


.pro_w50{
	width: 50%;
}

.pro_w50 img{
	width: 100%;
}

.pro_w50C{
	width: 50%;
	margin: 1rem auto;
	text-align: center;
	font-size: 0.8rem;
}

.pro_w50C img{
	width: 100%;
	margin-top: 5px;
}

.pro_w70{
	width: 70%;
}

.pro_w70 img{
	width: 100%;
}

.pro_w80C{
	width: 80%;
	margin: 1rem auto;
	text-align: center;
	font-size: 0.8rem;
}

.pro_w80C img{
	width: 100%;
}

.pro_w100{
	width: 100%;
}

.pro_w100 img{
	width: 100%;
}


/* --------------------------
   フッター
-------------------------- */

footer{
	width: 100%;
}

footer .inner{
	border-top: 1px solid #888;
	width: 1400px;
	font-size: 0.9rem;
	margin: 0 auto;
	padding: 10px 0 50px;
	text-align: left;
}

footer .inner .logo{
	width: 130px;
	margin: 50px auto;
	text-align: center;
}

footer .inner .logo img{
	width: 100%;
}

footer .inner .address{
	font-size: 0.8rem;
	font-weight: 400;
	text-align: center;
}

footer .inner .address br{
	display: none;
}

/* ここから 幅1400px以下 スマホ表示用 */
@media screen and (max-width:1399px) { 
	footer .inner{
		width: 96%;
		padding: 10px 0 30px;
	}
}

@media screen and (max-width:900px) { 
	footer .inner{
		padding: 10px 0 15px;
	}

	footer .inner .logo{
		width: 70px;
		margin: 20px auto 0;
	}
	
	footer .inner .address br{
		display: inherit;
	}
	
}


/* --------------------------
   フッター
-------------------------- */

.flL { float: left; }
.flR { float: right; }

/*--------------*/
.taL { text-align: left; }
.taC { text-align: center; }
.taR { text-align: right; }

.clear{ clear: both;}

.fontB{font-weight: bold;}

/*--------------*/
.mt1r { margin-top: 1rem; }
.mt2r { margin-top: 2rem; }
.mt3r { margin-top: 3rem; }
.mt4r { margin-top: 4rem; }
.mt05 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mt23 { margin-top: 23px; }
.mt25 { margin-top: 25px; }
.mt28 { margin-top: 28px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt62 { margin-top: 62px; }
.mt75 { margin-top: 75px; }
.mt150 { margin-top: 150px; }

.mr05{margin-right: 5px;}
.mr10{margin-right: 10px;}
.mr15{margin-right: 15px;}
.mr16{margin-right: 16px;}
.mr20{margin-right: 20px;}
.mr22{margin-right: 22px;}
.mr24{margin-right: 24px;}
.mr30{margin-right: 30px;}

.mb05{margin-bottom: 5px;}
.mb08{margin-bottom: 8px;}
.mb10{margin-bottom: 10px;}
.mb15{margin-bottom: 15px;}
.mb18{margin-bottom: 18px;}
.mb20{margin-bottom: 20px;}
.mb25{margin-bottom: 25px;}
.mb27{margin-bottom: 27px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb70{margin-bottom: 70px;}

.ml05{margin-left: 5px;}
.ml10{margin-left: 10px;}
.ml15{margin-left: 15px;}
.ml20{margin-left: 20px;}
.ml22{margin-left: 22px;}
.ml30{margin-left: 30px;}
.ml35{margin-left: 35px;}
.ml68{margin-left: 68px;}
.ml74{margin-left: 74px;}
.ml80{margin-left: 80px;}
.ml142{margin-left: 142px;}
.ml285{margin-left: 285px;}
.ml660{margin-left: 610px;}

.pl1r{padding-left: 1rem; box-sizing: padding-box;}
.pl2r{padding-left: 2rem; box-sizing: padding-box;}

.w10{width: 10%; margin-left: auto; margin-right: auto;}
.w10 img{width: 100%;}

.w20{width: 20%; margin-left: auto; margin-right: auto;}
.w20 img{width: 100%;}

.w30{width: 30%; margin-left: auto; margin-right: auto;}
.w30 img{width: 100%;}

.w40{width: 40%; margin-left: auto; margin-right: auto;}
.w40 img{width: 100%;}

.w50{width: 50%; margin-left: auto; margin-right: auto;}
.w50 img{width: 100%;}

.w60{width: 60%; margin-left: auto; margin-right: auto;}
.w60 img{width: 100%;}

.w70{width: 70%; margin-left: auto; margin-right: auto;}
.w70 img{width: 100%;}

.w80{width: 80%; margin-left: auto; margin-right: auto;}
.w80 img{width: 100%;}

.w90{width: 90%; margin-left: auto; margin-right: auto;}
.w90 img{width: 100%;}


/* --------------------------
   印刷対応
-------------------------- */


@media print {
	body{ width:210mm;}
	header{width: 100%;}
	.gnav .inner{ width: 100%; overflow: hidden;}
	.content{width: 100%;}
	footer .inner{width: 100%;}

}