@charset "utf-8";
/* CSS Document */
@media print, screen and (max-width: 767px){

body { 
	font-family: 'Sawarabi Gothic', sans-serif;
	font-size: 14px;
	line-height: 1.8em;
	color: #000;
	height: 100%;
	margin: 0 auto;
	text-align: left;
	-webkit-print-color-adjust: exact;
}

a { text-decoration:none; color:#333; }
a:visited{ text-decoration:none; color:#333; }
a:hover {  text-decoration:none; }

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}


/*====================================================================
　　汎用
====================================================================*/

.paddingL20{ padding-left:20px; }

.floatL {
	float:left;
}

.floatR {
	float:right;
}

.paddingL20{ padding-left:20px; }

.txtRed {
	color:#F00;
}

.txtBlue {
	color:#0086ca;
}
.linkBlue {
		color:#0086ca;
	text-decoration:underline;
}

.txtSS {font-size:10px !important;}
.txtS {font-size:11px !important;}
.txtBold { font-weight:bold !important;}

.alignC { text-align:center !important;}
.alignL { text-align:left !important;}
.alignR { text-align:right !important;}
.marginB100 {margin-bottom:100px;}

.sp_hide {
	display:none;
}


/*====================================================================
　　アニメーション
====================================================================*/

.fuwatAnime {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1.5s;
 -ms-animation-duration:1.5s;
 animation-duration:1.5s;
 -webkit-animation-name: fuwatAnime;
 -ms-animation-name: fuwatAnime;
 animation-name: fuwatAnime;
 visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(-40px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(-40px); -ms-transform: translateY(-40px); transform: translateY(-40px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


/*====================================================================
　　共通
====================================================================*/
.post-password-form {
    box-sizing: border-box;
    padding: 200px 30px;
    width: 100%;
    font-size: 16px;
    margin: 0 auto;
    }
.post-password-form p {
    margin-bottom: 30px;
    }
#contents {
	padding: 70px 0 0 0;}

#loading{
	width:100%;
	height: 100vh;
	text-align: center;
	margin:0 auto;
}

#loading img{
	position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
	width:250px;
	height:auto;
}

#primary {
	width:100%;
	margin:0 auto;
}

.top_btn a {
	display:block;
	margin:0 auto ;
	padding:15px 0;
	text-align:center;
	color:#0e3783;
	font-size:16px;
	width:275px;
	border: 1px solid #0e3783;
}


/*====================================================================
　　ヘッダー
====================================================================*/

header {
	width:100%;
	z-index:100;
	text-align:center;
	background-color:#fff;
	position:fixed;
	box-shadow: 0 0px 3px rgba(0,0,0,0.4);
}

#header_inner {
	position:relative;
	height:50px;
	padding:0 20px ;
	margin:0 auto;
}

header h1 a {
	display:block;
	width:230px;
	height:36px;
}

header h1 {
	margin-top:20px;
	width:230px;
	height:36px;
	background: url(/img/logo01.svg) left top no-repeat;
	background-size:230px auto;
	font-size: 0;
}

nav {
	display:none;
	position: absolute;
	top:0;
	width: 100%;
	height: 100vh;
	background:#f4f4f4;
	left: 0;
	z-index:99;
	margin-top:50px;
	overflow: auto;
	 -webkit-overflow-scrolling: touch;
	 padding-bottom:50px;

}

nav ul{
	width: 100%;
	height: auto;
	margin: 0 auto;
	overflow: auto;

}
nav ul li{
	margin: 0 auto;
	text-align: center;
	border-top: 1px solid #cccccc;
	font-size:16px;
	font-weight:bold;
}

nav ul#main_nav li:last-child{
}

nav ul#main_nav li a{
	display: block; 
	color:#0e3783;
	padding:15px 0;
}


#subnavi  {
	width:100%;
	height:auto;
}

#subnavi ul li a {
	display: block; 
	margin:0 auto;
	background-color:#7491c6;
	color:#fff;
	padding:15px 0;
}

#subnavi ul li.contact_btn a {
	display:block;
	text-align:center;
	width:100%;
	margin:0 auto;
	background-color:#0e3783;
	padding:15px 0;
	color:#fff;
}


/*開閉ボタン*/

#nav_toggle{
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 2px;
	right:20px;
	z-index: 100;
}
#nav_toggle div {
	position: relative;
}
#nav_toggle span{
	display: block;
	height: 4px;
	background: #0e3783;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;	
}
#nav_toggle span:nth-child(1){
	top:0px;
}
#nav_toggle span:nth-child(2){
	top:12px;
}
#nav_toggle span:nth-child(3){
	top:24px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
		background-color:#0e3783;
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
		background-color:#2175e3;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
		background-color:#0e3783;
	}

.contact_btn a {
}

/*====================================================================
　　パンくず
====================================================================*/

.breadcrumbs{
	border: solid 1px #ccc;
	border-width: 1px 0;
	background-color:#f0f0f0;
	margin: 0 auto;
	padding:0 10px;
	position:fixed;
	z-index:90;
	width:100%;

}

.breadcrumbs a{
 color: #0e3783;
 text-decoration: none;
}

.breadcrumbs a:hover{
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
}

.breadcrumbs ul{
 display: flex;
 margin: 0 auto;
}

.breadcrumbs li{
 list-style: none;
 font-size: 12px;
 height: 32px;
 line-height: 32px;
 margin-right: 30px;
 position: relative;
}

.breadcrumbs li.home a{
	background:url(/img/home_icon.svg) center center no-repeat;
	background-size:16px 16px;
	overflow: hidden;
	width:30px;
	text-indent: 100%;
	white-space: nowrap;
	display:block;
}

.breadcrumbs li:before,
.breadcrumbs li:after{
 content: "";
 display: block;
 position: absolute;
 top: 0;
 border-top: 16px solid transparent;
 border-right: 16px solid transparent;
 border-bottom: 16px solid transparent;
}

.breadcrumbs li:before{
 right: -35px;
 border-left: 16px solid #ccc;
}

.breadcrumbs li:after{
 right: -34px;
 border-left: 16px solid #f0f0f0;
}

.active a{
 color: #000;
}


/*====================================================================
　　フッター
====================================================================*/


footer{
	position:relative;
	margin:70px auto 0;
}

footer #info {
	width:100%;
	margin:0 auto;
}
	
footer #info_inner {
	border-top:1px solid #0e3783;
	padding:30px 20px;
	background-color:#fff;
	text-align:center;
}

footer #info .phone {
	color:#0e3783;
	font-size:34px;
	padding-bottom:0px;
	font-weight:bold;
	text-align:center;
	line-height:1.1em;
}

footer #info .phone a {
	color:#0e3783;
}

footer #info .phone span {
	font-size:15px;
	padding-bottom:10px;
}

footer #info .time {
	font-size:12px;
	display:block;
	padding-bottom:15px;
}

footer #info .mail_btn a {
	font-size: 16px;
	display: block;
	padding: 15px 0;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	width: 250px;
	font-weight: bold;
	background: #ff9000;
}

footer #footer_nav {
	background-color:#e8eaeb;
	padding:30px 0;
}

footer #footer_nav ul {
	display: flex;	
	justify-content: center;
	margin:0 auto;
	padding:0 20px;
}

footer #footer_nav ul li {
}

footer #footer_nav ul li a {
	display:block;
	font-size:13px;
	color:#0e3783;
	background:url(/img/arrow01.svg) left center no-repeat;
	background-size:15px 15px;
	padding-left:20px;
	margin-right:20px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

footer #footer_nav ul li a:hover {
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
}


#footer_bottom {
	padding:20px 0 15px;
	background-color:#0e3783;
	color:#FFF;
	font-size:12px;
	text-align:center;
}

#footer_bottom #bottom_inner {
	margin:0 auto;
}

#footer_bottom #bottom_inner #logo {
	width:220px;
	height:36px;
	background: url(/img/logo02_white.svg) top center no-repeat;
	background-size:220px auto;
	font-size: 0;
	margin:0 auto;
}


#footer_bottom #bottom_inner #copyright {
	padding:0;
}

footer #footer_nav02 {
	background-color:#e8eaeb;
	padding:30px 0;
}

footer #footer_nav02 ul {
	display: flex;	
	justify-content: center;
	margin:0 auto;
	padding:0 20px;
}

footer #footer_nav02 ul li {
}

footer #footer_nav02 ul li a {
	display:block;
	font-size:13px;
	color:#0e3783;
	background:url(/img/arrow01.svg) left center no-repeat;
	background-size:15px 15px;
	padding-left:20px;
	margin-right:20px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

footer #footer_nav02 ul li a:hover {
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
}


#footer_bottom02 {
	padding:20px 0 15px;
	background-color:#0e3783;
	color:#FFF;
	font-size:12px;
	text-align:center;
}

#footer_bottom02 #bottom_inner {
	margin:0 auto;
}

#footer_bottom02 #bottom_inner #logo {
	width:220px;
	height:36px;
	margin:0 auto;
	background: url(/img/logo02_white.svg) top center no-repeat;
	background-size:220px auto;
	font-size: 0;
}

#footer_bottom02 #bottom_inner #copyright {
	padding:0;
}

/*====================================================================
　　下層ページ　タイトル
====================================================================*/

#sub_title {
	width:100%;
	margin-top:34px;
}

#sub_title .inner {
	width:100%;
	margin:0 auto;
	background: #7491c6;
}

#sub_title .inner h2 {
	position: relative;
	padding: 15px 80px 15px 20px;
	background: #0e3783;
	font-size: 20px;
	color: #fff;
	line-height: 1.3;
	display: inline-block;
}

#sub_title .inner h2:before {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	border: none;
	border-right: solid 40px #7491c6;
	border-bottom: solid 55px transparent;
}

#third_tit h3 {
	color: #0e3783;
	font-size:26px;
	text-align:center;
	padding:50px 0 30px;
}
	
	
/*====================================================================
　　HOME
====================================================================*/

/*トップ検索窓*/

#search_outer {
	display:none;
	margin:0 auto;
	z-index:10;
}
.search_container{
	box-sizing: border-box;
	position: relative;
	border: 2px solid #ddd;
	float:right;
	display: block;
	padding: 5px 10px;
	height: 3.0em;
	width: 305px;
	overflow: hidden;
	background: #fff;
	margin:10px auto;
}
.search_container input[type="text"]{
  border: none;
  height: 2.0em;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  font-family: FontAwesome;
  border: none;
  background: #3879D9;
  color: #fff;
  position: absolute;
  width: 3.5em;
  height: 3.1em;
  right:0px;
  top: -3px;
  border-radius: 0;
}

/*トップメインイメージ*/


#main {
}

.swiper-container{
	width:100%;
	margin:0 auto;
	line-height:0;
	text-align:center;
}

.swiper-slide img{
	width:100%;
	height:auto;
	margin:0 auto;
}


/*トップインフォメーション*/

#top_news {
	position:relative;
	border-bottom:1px solid #ccc;
}

#news_inner {
	width:100%;
	margin:0 auto;
}

#news_inner h2 {
	width:70px;
	height:36px;
	color:#86888a;
	padding:15px 0 0 10px;
	float:left;
	font-size:14px;
	font-weight:bold;
	background:url(/img/top_news_arrow.png) right top no-repeat;
	background-size:25px auto;
}

#news_inner .ticker {
	width:150px;
	float:left;
	background-color:#fff;
    padding: 8px 20px 0 10px;
	height:30px;
    text-align: left;
    position: relative;
}

#news_inner .newsBtn {
	display:none;
}

/*#news_inner .newsBtn a {
	padding:3px 10px;
	display:block;
	margin-top:10px;
	color:#fff;
	transition: 0.4s ;
	background-color:#993333;
}*/

#news_inner .newsBtn a:hover {
	color:#fff;
    opacity: 0.5 ;}
 
.ticker ul {
    width: 100%;
    position: relative;
}
 
.ticker ul li {
    display: none;
	text-decoration:none;
	font-size:14px;
}

.ticker ul li a {
	color:#333;
}

.ticker ul li p {
	padding:0;
	line-height:1.5em;
}

.ticker ul li .info_tit {
	width:270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticker ul li .date {
	font-size:12px;
}

#topBanner {
	margin:0 auto;
	padding:30px 20px 0;
}

#topBanner img {
	width:100%;
	height:auto;
}

#importantNews {
	padding: 10px 0 ;
	text-align:center;
	border: 1px #000 solid;
	margin: 30px 20px 0;
}

#importantNews h2 {
	display:inline-block;
	font-size:18px;
	font-weight:700;
	padding:12px 25px 10px;
	background:url(/img/important_icon.png) left center no-repeat;
	background-size:20px 20px;
}

#importantNews p a {
	text-decoration:underline;
}

#importantNews p {
	font-size: 12px;
}


/* トップ製品情報*/

#top_product {
	margin: 30px auto 0;
}

#top_product .product_tit {
	background-color:#e8eaeb;
	text-align:center;
}

#top_product h2 {
	position:relative;
	font-size:18px;
	font-weight:bold;
	color:#0e3783;
	text-align:center;
	padding:30px 0;
	line-height:0;
	letter-spacing:0.1em;
	width:100%;
	margin: 0 auto;
}

#top_product .products_top a {
	display:block;
	position:absolute;
	top:12px;
	right:10px;
	background-color:#fff;
	font-size:11px;
	color:#0e3783;
	text-align:center;
	padding:12px 10px;
	line-height:1;
	letter-spacing:0em;
	border:1px solid #0e3783;
}

#top_product section {
	margin:30px auto 0;
	text-align:center;
	padding:0;
}

#top_product section h3 {
	font-size:16px;
	background:url(/img/back_slanting01.svg) center right no-repeat;
	width:230px;
	height:45px;
	text-align:left;
	padding:20px 0 0 20px;
	color:#fff;
	margin-bottom:10px;
}

#top_product section ul {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:0 10px;
}

#top_product section ul li {
	position:relative;
	text-align:center;
	margin-bottom:7px;
	line-height:1em;
}

#top_product section ul li a span {
	display:block;
	line-height:1.5em;
	font-size:11px;
}

#top_product section.category ul li {
	width:48%;
}

#top_product section.category ul li .image {
	text-align:center;
	margin:0 auto;
	background-size:contain;
	background-repeat:no-repeat;
	object-fit: contain;
	padding-top: 36%;
}

#top_product section.category ul li p {
	font-size:14px;
	font-weight:bold;
	padding:10px 0;
}

#top_product section.category ul li a {
	position: absolute;
	bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

#top_product .product01 a:hover { background-color: rgba(192, 129, 169, 0.2); }
#top_product .product02 a:hover { background-color: rgba(216, 155, 124, 0.2); }
#top_product .product03 a:hover { background-color: rgba(208, 180, 34, 0.2); }
#top_product .product04 a:hover { background-color: rgba(147, 148, 172, 0.2); }
#top_product .product05 a:hover { background-color: rgba(147, 148, 172, 0.2); }
#top_product .product06 a:hover { background-color: rgba(147, 148, 172, 0.2); }
#top_product .product07 a:hover { background-color: rgba(157, 135, 163, 0.2); }
#top_product .product08 a:hover { background-color: rgba(105, 172, 192, 0.2); }
#top_product .product09 a:hover { background-color: rgba(105, 172, 192, 0.2); }
#top_product .product10 a:hover { background-color: rgba(142, 161, 98, 0.2); }
#top_product .product11 a:hover { background-color: rgba(142, 161, 98, 0.2); }
#top_product .product12 a:hover { background-color: rgba(142, 161, 98, 0.2); }

#top_product .product01 { border:2px solid #c081a9; }
#top_product .product02 { border:2px solid #d89b7c; }
#top_product .product03 { border:2px solid #d0b422; }
#top_product .product04 { border:2px solid #9394ac; }
#top_product .product05 { border:2px solid #9394ac; }
#top_product .product06 { border:2px solid #9394ac; }
#top_product .product07 { border:2px solid #9d87a3; }
#top_product .product08 { border:2px solid #69acc0; }
#top_product .product09 { border:2px solid #69acc0; }
#top_product .product10 { border:2px solid #8ea162; }
#top_product .product11 { border:2px solid #8ea162; }
#top_product .product12 { border:2px solid #8ea162; }

#top_product .product01 .image { background:url(/img/top_product_img01.png) ; border-bottom:1px solid #c081a9; }
#top_product .product02 .image { background:url(/img/top_product_img02.png) ; border-bottom:1px solid #d89b7c; }
#top_product .product03 .image { background:url(/img/top_product_img03.png) ; border-bottom:1px solid #d0b422; }
#top_product .product04 .image { background:url(/img/top_product_img04.png) ; border-bottom:1px solid #9394ac; }
#top_product .product05 .image { background:url(/img/top_product_img05.png) ; border-bottom:1px solid #9394ac; }
#top_product .product06 .image { background:url(/img/top_product_img06.png) ; border-bottom:1px solid #9394ac; }
#top_product .product07 .image { background:url(/img/top_product_img07.png) ; border-bottom:1px solid #9d87a3; }
#top_product .product08 .image { background:url(/img/top_product_img08.png) ; border-bottom:1px solid #69acc0; }
#top_product .product09 .image { background:url(/img/top_product_img09.png) ; border-bottom:1px solid #69acc0; }
#top_product .product10 .image { background:url(/img/top_product_img10.png) ; border-bottom:1px solid #8ea162; }
#top_product .product11 .image { background:url(/img/top_product_img11.png) ; border-bottom:1px solid #8ea162; }
#top_product .product12 .image { background:url(/img/top_product_img12.png) ; border-bottom:1px solid #8ea162; }

#top_product .product01 p { background-color:#fef1f9; }
#top_product .product02 p { background-color:#fceae1; }
#top_product .product03 p { background-color:#fcf8e4; }
#top_product .product04 p { background-color:#f0f1fa; }
#top_product .product05 p { background-color:#f0f1fa; }
#top_product .product06 p { background-color:#f0f1fa; }
#top_product .product07 p { background-color:#fbeefe; }
#top_product .product08 p { background-color:#e6f6fb; }
#top_product .product09 p { background-color:#e6f6fb; }
#top_product .product10 p { background-color:#edf3de; }
#top_product .product11 p { background-color:#edf3de; }
#top_product .product12 p { background-color:#edf3de; }



#top_product section.process ul li,
#top_product section.industry ul li {
	width:48.5%;
	 border:1px solid #0e3783;
}

#top_product section.process ul li a,
#top_product section.industry ul li a {
	display:block;
	font-size:13px;
	padding:20px 0;
	font-weight:bold;
	 color:#0e3783;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

#top_product section.process ul li a:hover,
#top_product section.industry ul li a:hover {
	 color:#fff;
	 background-color:#0e3783;
}

#top_product section.industry ul li:nth-child(-n+2) a {
	padding:17px 0;
}

#top_product section.industry ul::before{
	content:"";
	display: block;
	order:1;
	width:48%;
}

#top_product section.industry ul::after{
	content:"";
	display: block;
	width:48%;
}


/*====================================================================
　　製品情報
====================================================================*/

/* 製品情報　サイドメニュー　*/

#products {
}

#sidenavi {
	width:100%;
	height:100%;
    min-height:100%;
	padding:30px 20px 0;
	box-sizing: border-box;
}

#sidenavi .comment {
	display:none;
}

#sidenavi h3 {
	font-size:13px;
	background:#fff;
	text-align:center;
	padding:8px 0;
	color:#0e3783;
	margin-bottom:0px;
	border:1px solid #0e3783;
}

#sidenavi .p_tit {
	position: relative;
}

#sidenavi .p_tit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #0e3783;
  transition: all .3s ease-in-out;
}
#sidenavi .p_tit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #0e3783;
  transition: all .2s ease-in-out;
}

#sidenavi .p_tit.open::before {
  transform: rotate(180deg);
}

#sidenavi .p_tit.open::after {
  opacity: 0;
}

#sidenavi ul {
	display: none;
}

#sidenavi ul li input[type=checkbox] {
	display: none;
}
#sidenavi ul li label:focus,
#sidenavi ul li label:hover,
#sidenavi ul li label:active,
#sidenavi ul li input:checked + label {
	color: #0e3783;
}
#sidenavi ul li label:focus:after,
#sidenavi ul li label:hover:after,
#sidenavi ul li label:active:after,
#sidenavi ul li input:checked + label:after {
	border-color: #0e3783;
	background: #ffffff;
}
#sidenavi ul li input:disabled + label:after {
	border-color: #ccc;
	background: #ddd;
}
#sidenavi ul li label {
	position: relative;
	display: block;
	overflow: hidden;
	padding:10px;
	cursor: pointer;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-transition: all 0.15s ease;
	 transition: all 0.15s ease;
}

#sidenavi ul li label:after {
	position: absolute;
	top: 1em;
	right: 12px;
	width: 15px;
	height: 15px;
	content: '';
	border: 1px solid #999;
	background: #ffffff;
}

#sidenavi ul li input:checked + label:after {
	border-color: #0e3783;
	background: #0e3783;
}

#sidenavi .side_category {
	margin-bottom:5px;
}

#sidenavi .side_category ul li {
	font-size:14px;
	margin-top:1px;
	border-bottom:1px solid #cccccc;
}

#sidenavi .side_category ul li div {
	margin-bottom:1px;
}

.side_category .product01 { background-color:#fef1f9; border-left:8px solid #c081a9; }
.side_category .product02 { background-color:#fceae1; border-left:8px solid #d89b7c; }
.side_category .product03 { background-color:#fcf8e4; border-left:8px solid #d0b422; }
.side_category .product04 { background-color:#f0f1fa; border-left:8px solid #9394ac; }
.side_category .product05 { background-color:#f0f1fa; border-left:8px solid #9394ac; }
.side_category .product06 { background-color:#f0f1fa; border-left:8px solid #9394ac; }
.side_category .product07 { background-color:#fbeefe; border-left:8px solid #9d87a3; }
.side_category .product08 { background-color:#e6f6fb; border-left:8px solid #69acc0; }
.side_category .product09 { background-color:#e6f6fb; border-left:8px solid #69acc0; }
.side_category .product10 { background-color:#edf3de; border-left:8px solid #8ea162; }
.side_category .product11 { background-color:#edf3de; border-left:8px solid #8ea162; }
.side_category .product12 { background-color:#edf3de; border-left:8px solid #8ea162; }

#sidenavi .side {
	margin-bottom:5px;
}

#sidenavi .side ul li {
	font-size:13px;
	border-bottom:1px solid #cccccc;
	padding:5px 0 5px 10px;
}

#sidenavi .side ul li span {
	display:block;
	line-height:1em;
	font-size:11px;
}
#sidenavi .side_movie h3 {
	font-size:13px;
	background:#fff;
	text-align:center;
	padding:8px 0;
	color:#0e3783;
	margin-bottom:0px;
	border:1px solid #0e3783;
}

#sidenavi .side_movie ul li {
	font-size:13px;
	margin-top:1px;
	border-bottom:1px solid #cccccc;
}

#sidenavi .side_movie ul li div {
	margin-bottom:1px;
}
	
#sidenavi .side_movie ul li a {
	display: block;
	padding:14px 10px 14px 50px;
	background:url(/img/icon_play.svg) 20px 12px no-repeat;
	background-size:20px 20px;
}
	
#sidenavi .side_movie ul li a:hover {
	opacity: 0.5;
}


/* 製品情報　メイン　*/

#products_main {
	width:100%;
	margin:10px 0;
	padding:0 20px;
	box-sizing:border-box;
}

#products_main .products_menu {
}

.products_menu .p_tit {
	position: relative;
}


.products_menu .p_tit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #fff;
  transition: all .3s ease-in-out;
}
.products_menu .p_tit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #fff;
  transition: all .2s ease-in-out;
}

.products_menu .p_tit.open::before {
  transform: rotate(180deg);
}

.products_menu .p_tit.open::after {
  opacity: 0;
}

#products_main .products_menu h3 {
	font-size:14px;
	background:#0e3783;
	padding:10px 20px;
	color:#fff;
	pointer-events: all;
	text-align:center;
}

#products_main .products_menu ul {
	display: none;
	border-left:1px solid #0e3783;
	border-right:1px solid #0e3783;
}

#products_main .products_menu ul li {
	text-align:center;
	line-height:1em;
	border-bottom:1px solid #0e3783;
	box-sizing: border-box;
}

#products_main .products_menu ul li a span {
	display:block;
	line-height:1em;
	font-size:11px;
}

#products_main .products_menu ul li a {
	display: block;
	color:#0e3783;
	width:100%;
	padding:20px;
	font-size:14px;
	text-align:center;
	box-sizing:border-box;
}

#products_main .products_menu ul li div {
	border-bottom:1px solid #cccccc;
	margin-bottom:1px;
}

#products_main .products_menu ul .product01 { background-color:#fef1f9; border-left:8px solid #c081a9; }
#products_main .products_menu ul .product02 { background-color:#fceae1; border-left:8px solid #d89b7c; }
#products_main .products_menu ul .product03 { background-color:#fcf8e4; border-left:8px solid #d0b422; }
#products_main .products_menu ul .product04 { background-color:#f0f1fa; border-left:8px solid #9394ac; }
#products_main .products_menu ul .product05 { background-color:#f0f1fa; border-left:8px solid #9394ac; }
#products_main .products_menu ul .product06 { background-color:#f0f1fa; border-left:8px solid #9394ac; }
#products_main .products_menu ul .product07 { background-color:#fbeefe; border-left:8px solid #9d87a3; }
#products_main .products_menu ul .product08 { background-color:#e6f6fb; border-left:8px solid #69acc0; }
#products_main .products_menu ul .product09 { background-color:#e6f6fb; border-left:8px solid #69acc0; }
#products_main .products_menu ul .product10 { background-color:#edf3de; border-left:8px solid #8ea162; }
#products_main .products_menu ul .product11 { background-color:#edf3de; border-left:8px solid #8ea162; }
#products_main .products_menu ul .product12 { background-color:#edf3de; border-left:8px solid #8ea162; }


#products_main .title_block {
	padding:45px 0 35px;
	
}

#products_main .tit_inner {
	padding-bottom:20px;
}

#products_main .tit_inner .text_area {
	width:100%;
}

#products_main .tit_inner .text_area h3 {
	font-size:28px;
	font-weight:bold;
	color:#0e3783;
	padding-bottom:20px;
}

#products_main .tit_inner .text_area .lead {
	font-size:14px;
	padding-bottom:10px;
}

#products_main .tit_inner .image_area {
}

#products_main .tit_inner .image_area img {
	width:100%;
	height:auto;
}

#products_main .flow_img img {
	width:100%;
	height:auto;
	padding-bottom:20px;
}


#products_main .comment p {
	text-align:left;
	font-size:12px;
	background-color:#e7e9ea;
	padding:10px 20px;
}

#products_main .comment p::before {
	content: "上の";
}
#products_list section {
	padding-bottom:40px;
}

#products_list section .p_name {
	border-bottom:2px solid #dfdede;
	padding-bottom:1px;
	margin-bottom:12px;
}

#products_list section h4 {
	position: relative;
	padding: 10px 60px 10px 20px;
	font-size: 16px;
	font-weight:bold;
	color: #fff;
	line-height: 1;
	display: inline-block;
	background-color:#09C;
	box-sizing:border-box;
}

#products_list section h4:before {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	border: none;
	border-right: solid 30px #fff;
	border-bottom: solid 36px transparent;
}

#products_list section h4.product01 { background: #c081a9; }
#products_list section h4.product02 { background: #d89b7c; }
#products_list section h4.product03 { background: #d0b422; }
#products_list section h4.product04 { background: #9394ac; }
#products_list section h4.product05 { background: #9394ac; }
#products_list section h4.product06 { background: #9394ac; }
#products_list section h4.product07 { background: #9d87a3; }
#products_list section h4.product08 { background: #69acc0; }
#products_list section h4.product09 { background: #69acc0; }
#products_list section h4.product10 { background: #8ea162; }
#products_list section h4.product11 { background: #8ea162; }
#products_list section h4.product12 { background: #8ea162; }
	
#products_list section .inner {
}

#products_list section .inner .p_img {
	width:100%;
}

#products_list section .inner .p_img img {
	width:100%;
	height:auto;
}

#products_list section .inner .product_detail {
	width:100%;
}

#products_list section .inner .product_detail .p_text {
	font-size:14px;
	padding-bottom:30px;
}

#products_list section .inner .product_detail ul {
	display:flex;
}

#products_list section .inner .product_detail ul .guide_btn a {
	padding:10px 20px 10px 40px;
	background:url(/img/guide_icon_blue.svg) 20px center no-repeat;
	font-size:14px;
	color:#0e3783;
	background-color:#fff;
	background-size:13px 13px;
	border:1px solid #0e3783;
	box-sizing:border-box;
	margin-right:10px;
	
}

#products_list section .inner .product_detail ul .movie_btn a {
	padding:10px 20px 10px 35px;
	background:url(/img/movie_icon_blue.svg) 15px center no-repeat;
	font-size:14px;
	color:#0e3783;
	background-color:#fff;
	background-size:13px 13px;
	border:1px solid #0e3783;
	box-sizing:border-box;
}

#products_list section .inner .product_detail ul li a {
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

#products_list section .inner .product_detail .related {
	padding:30px 0 0;
	color:#0e3783;
	font-size:14px;
	line-height:1.8em;
}

#products_list section .inner .product_detail .related a {
	color:#0e3783;
	font-size:14px;
}


#products_list .p_top_btn a {
	display:block;
	margin:20px auto 0;
	padding:15px 0;
	text-align:center;
	color:#0e3783;
	font-size:16px;
	width:275px;
	border: 1px solid #0e3783;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

#products_list .p_top_btn a:hover {
	color:#fff;
	background-color:#0e3783;
}

.title_movie h3 {
	font-size :22px;
	font-weight:700;
	color:#0e3783;
	margin-bottom:30px;
	background:url(/img/icon_movie02.svg) left center no-repeat;
	background-size:40px 38px;
	padding: 5px 0 5px 40px;
	margin-top:50px;
}

.movie_block {
	margin-bottom:30px;
}

.movie_block img {
	width:100%;
}

.movie_block h4 {
	margin-bottom:10px;
	font-size:16px;
	font-weight:700;
}

.movie_block video {
	width: 100%;
}

.lightcase-contentInner {
    line-height: 0 !important;
  }

  .lightcase-contentInner video {
    display: block;
    width: 100% !important; 
    height: auto !important; 
      margin: 0;
  }

  .lightcase-inlineWrap {
    max-width: 100% !important; 
    max-height: 100% !important; 
    padding: 0 !important;
  }




/*====================================================================
　　ニュース
====================================================================*/

/* ニュース　トップ　*/

#news {
	margin:40px auto 0;
	padding:0 20px;
}

#news_txt {
	text-align:center;
	font-size:12px;
	line-height:1.8em;
}

#news_list {
	margin-top: 30px;
}

#news_list dl {
	padding: 20px 0;
	border-bottom:1px solid #0e3783;
	position: relative;
}

#news_list dl dt {
	font-size:14px;
	color:#0e3783;
}

#news_list dd {
	padding: 0 ;
	font-size:16px;
}


#news_list dd span.new {
	padding-right: 10px;
	font-size:16px;
	color:red;
	font-weight:bold;
}

#news_list dl.link-box a {
	position: absolute;
	width: 100%;
	height: 100%;
}


/* ニュース　詳細　*/

#news_detail {
	margin:60px auto 0;
	padding:0 20px;
}

#news_block {
	margin: 50px 0 30px ;
	text-align: center;
}

#news_block dl {
	padding: 0 0 30px;
	margin-bottom:20px;
}

#news_block dl dt {
	font-size:16px;
	padding-bottom:10px;
	text-align:left;
}

#news_block dd {
	font-size:18px;
	border-top:1px solid #0e3783;
	border-bottom:1px solid #0e3783;
	color:#0e3783;
	padding:25px 0 10px;
	text-align:left;
	line-height:1.6em;
}

#news_block .news_text {
	padding:0 0 20px;
	text-align: left;
	display:inline-block;
}

#news_block p {
	padding:0 0px 30px;
	font-size:14px;
	line-height:1.6em;
	text-align: left;
}

#news_block p a {
	color:#0e3783;
}

#news_block p a:hover {
	color:#0e3783;
	text-decoration:underline;
}

#news_detail .newstop_btn a {
	display:block;
	margin:0 auto ;
	padding:15px 0;
	text-align:center;
	color:#0e3783;
	font-size:16px;
	width:250px;
	border: 1px solid #0e3783;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}


/*====================================================================
　　お問い合わせ
====================================================================*/

.contact_block {
	text-align:left;
	padding:50px 20px 0;
	margin-bottom:50px;
}

.contact_block .note {
	font-size:16px;
	border:1px solid #F00;
	padding:10px 20px;
	color:#F00;
	margin-bottom:50px;
	text-align:left;
}

.contact_block .contactTit {
	font-size:18px;
	font-weight:700;
	border-bottom:1px solid #0e3783;
	padding:0 0 10px 0;
	color:#0e3783;
	margin-bottom:30px;
	line-height:1;
	font-weight:bold;
}

.contact_block .phoneNumber {
	font-size:30px;
	padding:0 0 5px;
	font-weight:700;
}

.contact_block .phoneNumber span {
	font-size:16px;
}

.contact_block .time {
	font-size:12px;
	padding:0 0 50px;
}

.contact_block .txt01{
	font-size:18px;
	line-height:1.8em;
	color:#ff0000;
	padding-bottom:10px;
}

.contact_block ul.attention li{
	font-size:14px;
	text-indent:-1em;
	padding-left:-1em;
	padding-bottom:10px;
	margin-left:1em;
	line-height:1.4em;
}

.contact_block ul.attention li:before {
    content:  ""; 
    width:10px;
    height:10px;
    display:inline-block;
    background-color:#ccc;
    border-radius:50%;
	margin-right: 5px;
}

.contact_block .txt02{
	font-size:14px;
	padding-top:50px;
}

.contact_block .txt02 span{
	font-size:14px;
	color:#ff0000;
	display:block;
}

.contact_block p.thanks{
	font-size:18px;
	line-height:2.5em;
	padding-bottom:50px;
}


/* フォーム　*/


#formOuter {
	margin-top:50px;
}

#formOuter dl {
	box-sizing: border-box;
	padding-bottom:20px;
}

#formOuter dl dt {
	font-size:14px;
	font-weight:bold;
	padding:0 0 3px;
	text-align:left;
	box-sizing: border-box;
}

.confirm dl {
	border-bottom:1px solid #000;
	margin-top:20px;
}

#formOuter dl dt .requisite_txt {
	font-size:14px;
	padding-left:10px;
	color:red;
}

#formOuter dl dd {
	font-size:16px;
	box-sizing: border-box;
	text-align:left;
}

#formOuter dl dd .example {
	font-size:12px;
	padding-left:10px;
	display: block;
}

#formOuter dl dd:after {
  content: '';
  display: block;
  clear: both;
}

.input_area {
	border:0;
	padding:10px 10px;
	font-size:1.2em;
	font-family:Arial, sans-serif;
	border:solid 1px #ccc;
	width:100%;
	background-color:#f3f1f1;
	box-sizing: border-box;
}

.input_areaS {
	border:0;
	padding:10px 10px;
	font-size:1.2em;
	font-family:Arial, sans-serif;
	border:solid 1px #ccc;
	width:60%;
	background-color:#f3f1f1;
}

.submit_btn {
	text-align:center;
}


button.blue {
	background-color:#0e3783;
	width:300px;
	text-align:center;
	margin:30px auto;
	font-size:16px;
	padding:25px 0;
	color:#fff;
	border:none;
	cursor:pointer;
}

button.orange {
	background-color:#ff9000;
	width:300px;
	text-align:center;
	margin:30px auto;
	font-size:16px;
	padding:25px 0;
	color:#fff;
	border:none;
	cursor:pointer;
}

button.orange:hover {
	background-color:#ffaf49;
}

button.blue:hover {
	background-color:#5591df;
}


#formOuter p.link {
	text-align:center;
}

#formOuter p.link a {
	display:inline-block;
	font-size:14px;
	color:#0e3783;
	background:url(/img/arrow01.svg) left center no-repeat;
	background-size:15px 15px;
	padding-left:20px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}


#formOuter p.link a:hover {
	opacity:0.7;
}


/*====================================================================
　　採用情報
====================================================================*/

.recruit_block {
	text-align:left;
	padding:50px 20px 0;
	margin-bottom:50px;
}

.recruit_block .txt01{
	font-size:16px;
	padding-bottom:10px;
}

.recruit_block .link_btn {
	display:flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	justify-content:space-between;
}

.recruit_block .link_btn li {
	position:relative;
	text-align:center;
	margin-bottom:5px;
	line-height:1em;
	border:1px solid #ccc;
	box-sizing: border-box;
	width:49%;
}

.recruit_block .link_btn li a {
	display:block;
	text-align:center;
	font-size:14px;
	padding:20px 5px;
	text-align:center;
	height:auto;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	box-sizing: border-box;
	color:#0e3783;
}

.recruit_block .link_btn li a:hover {
	 color:#fff;
	 background-color:#7491c6;
}


#recruit_outer {
	margin-top:50px;
}

#recruit_outer dl {
	margin-bottom:10px;
}

#recruit_outer dl dt {
	font-size:14px;
	font-weight:bold;
	padding:10px 20px;
	text-align:left;
	background-color:#f3f1f1;
}

#recruit_outer dl dd {
	font-size:14px;
	box-sizing: border-box;
	padding:20px 20px;
	text-align:left;
}


#recruit_info {
	margin-top:80px;
}

#recruit_info h3 { 
	font-size:18px; 
	font-weight:bold; 
	text-align:center;
	background-color:#4ABD95; 
	color:#FFF; 
	padding:10px; 
}

#recruit_info h4 { 
	font-size:16px;
	font-weight:bold; 
	text-align:left;
	padding:20px 0 0px;
	color:#4ABD95;
}

#recruit_info p { 
	line-height:1.8em; 
	font-size:14px; 
	text-align:left;
	padding:10px 20px 10px; 
}

#recruit_info p.address { 
	font-size:14px; 
	text-align:left; 
	padding:20px 30px; 
	border: 1px solid #ccc;
	margin:10px 20px;
	display: inline-block;
}

/*====================================================================
　　日化精工とは
====================================================================*/

#about_ns {
	margin:30px 0 ;
}

#about_ns #main_img img {
	width:100%;
}

#about_ns h3 {
	font-size:24px;
	color:#0e3783;
	text-align:center;
	line-height:1.5em;
	margin:30px 0;
	padding:0 20px;
}

#about_ns p {
	font-size:16px;
	line-height:1.6em;
	padding:0 20px 30px;
}


/*====================================================================
　　サイトのご利用について
====================================================================*/

#term {
	margin:50px 0 ;
	padding:0 20px;
}

#term h3 {
	font-size:18px;
	font-weight:bold;
	color:#0e3783;
	padding:30px 0 10px;
}

#term p {
	font-size:16px;
	line-height:1.6em;
	padding: 0 0 30px;
}

#term ol {
	padding:0 0 30px 50px;
}

#term ol li {
	font-size:16px;
	line-height:1.6em;
	padding:10px 0 0;
	list-style-type:decimal;
}

/*====================================================================
　　会社案内トップ
====================================================================*/


#company_top {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	margin-top:50px;
	padding:0 20px;
}


#company_top section {
	width:48%;
	margin-bottom:30px;
	box-sizing: border-box;
}

#company_top section h3 {
	font-size:18px;
	font-weight:bold;
	border-bottom:1px solid #0e3783;
	color:#0e3783;
	margin-bottom:1px;
	padding-bottom:5px;
}

#company_top section p {
	font-size:14px;
	line-height:1.4em;
}

#company_top section .image img {
	width:100%;
}


/*====================================================================
　　沿革
====================================================================*/

#history {
	padding:0 20px;
}

.history_list dt {
	padding: 20px 0 5px 0 ;
	width: 8em;
	font-size:16px;
	font-weight:bold;
	color:#0e3783;
	box-sizing: border-box;
}

.history_list dd {
	padding: 0 0 20px 0 ;
	border-bottom:1px solid #0e3783;
	font-size:16px;
}

.history_list dd a {
	color:#0e3783;
	text-decoration:underline;
}

/*====================================================================
　　会社概要
====================================================================*/

#profile .date {
	text-align:right;
	padding-bottom:5px;
}

#profile #outer {
	padding:0 20px;
	margin-bottom:50px;
}

.profile_list dt {
	font-size:16px;
	padding:10px 0;
	text-align:center;
	box-sizing: border-box;
	color:#0e3783;
	background-color:#f3f1f1;
}

.profile_list dd {
	margin-left: ;
	font-size:16px;
	box-sizing: border-box;
	padding:20px 0;
	background: #fff;
	text-align:left;
}


.officer dt {
	float:left;
	font-size:16px;
	width:8em; 
	padding:5px 0 0;
	text-align:left;
	box-sizing: border-box;
	border-top: none;
	color:#000;
	background: #fff;
}

.officer dd {
	margin-left: ;
	font-size:16px;
	box-sizing: border-box;
	padding:5px 0 0;
	margin-left:8em;
	text-align:left;
	border-top: none

}

/*====================================================================
　　ご挨拶
====================================================================*/

#greeting #outer {
	margin:0 auto;
	text-align:center;
	padding:0 20px;

}

#greeting #outer p {
	padding:0 0 30px;
	font-size:16px;
	line-height:1.8em;
	text-align:left;
	text-indent:1em;
}

#greeting .signature {
	padding:30px 0;
	text-align:right;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
}

#greeting #outer .signature .name01 {
	font-size:16px;
	letter-spacing:0.3em;
	text-align:right;
	padding-bottom:0;
}

#greeting #outer .signature .name02 {
	font-size:24px;
	text-align:right;
}

#greeting #outer .signature .name02 span {
	font-size:14px;
	padding-right:10px;
}

/*====================================================================
　　事業所案内
====================================================================*/

#office #outer {
	margin-top:30px;
}

#office section {
	margin:0 auto 50px;
	padding:0 20px;
	text-align:left;
}

#office section .outer {
	font-size:16px;
}

#office section h3 {
	font-size:20px;
	border-bottom:1px solid #0e3783;
	padding:0 0 5px 0;
	color:#0e3783;
	margin-bottom:30px;
	line-height:1;
	font-weight:bold;
}

#office section .office_txt {
}

#office section .office_txt .address a {
	display:block;
	font-size:14px;
	background:#0e3783;
	padding:5px 0;
	width:175px;
	text-align:center;
	color:#fff;
	margin-top:5px;
}

#office section .office_txt .address a:hover {
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
	filter: alpha(opacity=70);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	box-sizing: border-box;
}

#office section .office_txt .address,
#office section .office_txt .tel,
#office section .office_txt .text {
	padding:0 0 30px;;
}

#office section .office_txt .tel h4 {
	display:block;
	font-size:14px;
	color:#0e3783;
	font-weight:bold;
}

#office section .office_txt .tel p {
	padding:0 0 5px;
	font-size:14px;
}

#office section .office_img {
	padding-top:10px;
	text-align:center;
}

#office section .office_img img {
	width:80%;
	height:auto;
}



/*====================================================================
　　海外事業所
====================================================================*/

#overseas #map {
	position:relative;
	margin:0 auto 20px;
}

#overseas #map > div > img {
	width:100%;
	height:auto;
}

#overseas #map ul {
	display:none;
}

#overseas section {
	margin:0 auto 50px;
	text-align:left;
	font-size:16px;
	padding:0 20px;
}

#overseas section .shoulder {
	display:inline-block;
	font-size:12px;
	background:#0e3783;
	padding:3px 10px;
	text-align:left;
	color:#fff;
	margin-bottom:20px;
}

#overseas section h3 {
	font-size:18px;
	border-bottom:1px solid #0e3783;
	padding:0 0 5px 0;
	color:#0e3783;
	margin-bottom:30px;
	line-height:1;
	font-weight:bold;
	line-height:1.3em;
}


#overseas section .tel p {
	font-size:14px;
	margin-bottom:10px;
	line-height:1.5em;
}

#overseas section .mail_margin {
	content:"E-mail：";
	margin-left: 3.7em;
	font-size:14px;
  
}

#overseas section .mail_margin:before {
	content:"E-mail：";
	margin-left: -3.7em;
	font-size:14px;
  
}

#overseas section .tel p a {
	color:#0e3783;
	display: inline-block;
	font-size:14px;
}

/*====================================================================
　　品質・環境理念
====================================================================*/

#philosophy{
	padding:0 20px;
	text-align:left;
}

#philosophy .block {
	margin:30px 0;
}

#philosophy .block h3 {
	font-size:16px;
	font-weight:bold;
	background:#0e3783;
	padding:7px 10px;
	text-align:center;
	color:#fff;
	margin-bottom:30px;
}

#philosophy .block .lead {
	font-size:16px;
	padding:0 0 20px;
	text-align:left;
	margin-bottom:20px;
}

#philosophy .block h4 {
	font-size:18px;
	text-align:center;
	margin-bottom:20px;
	font-weight:bold;
}

#philosophy .block dl {
	text-align:center;
	margin-bottom:20px;
	border:1px solid #0e3783;
	padding:10px;
	color:#0e3783;
}

#philosophy .block dl dt {
	font-size:16px;
	margin-bottom:10px;
	font-weight:bold;

}

#philosophy .block dl dd {
	text-align:left;
}


#philosophy .title {
	text-align:center;
	padding-bottom:10px;
	font-size:18px;
	font-weight:bold;
	margin-top:30px;
}

#philosophy .philosophy_list {
	margin-bottom:50px;
}

.philosophy_list {
}

.philosophy_list dt {
	font-size:14px;
	padding:10px 0;
	text-align:center;
	box-sizing: border-box;
	background:none;
	background-color:#f3f1f1;
}

.philosophy_list dd {
	margin-left: ;
	font-size:14px;
	box-sizing: border-box;
	padding:20px;
	background: #fff;
	text-align:left;
}

}








	
	

	
