﻿@charset "utf-8";
/* style.css */
/* ----------------------------------------------------------------------------------------------
　共通部分
---------------------------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}
html, {
   height: 100%;
   margin: 0px;
   padding: 0px;
}
 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
}
/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}
a {
    color: #000;
}
a:hover {
    opacity: .8;
}
h1{
	margin-left: 20px;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
/*** inner ***/
.general_wrap {
    margin: 95px auto 0;
    width: 635px;
}
    section .inner1000{
	width: 1000px;
    margin: 0 auto;
	padding: 60px 0;
}
section .innerFull{
    margin: 0 auto;
	padding: 60px 0;
}

@media only screen and (max-width: 1010px){
	section .inner1000{
		width: 95%;
		padding: 30px 0;
	}
	section .innerFull{
		margin: 0 auto;
		padding: 30px 0;
	}
}
/*** 下層ページのメインビジュアル,タイトル ***/
.mv {
	position: relative;
	height: 170px;
	box-shadow: 0px 6px 16px -3px rgba(0,0,0,0.6);
}
.mv h2{
	font-size: 40px;
    color: #fff;
	text-align: center;
    position: absolute;
    top: calc( 50% - 32px );
    margin: 0 auto;
    left: 0;
    right: 0;
}
.mv h2 span{
	font-size: 16px;
	color: #7ECEF4;
	display: block;
}
h3.businessTitle{
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	background: #ECF0F1;
	padding: 43px 10px;
}
h5{
	font-size: 30px;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}
h5:after{
    content: "";
    /*background: url(../img/common/underline_blue.svg) no-repeat center;
    background-size: contain;*/
	border-top: 1px solid #1f519f;
    width: 100px;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 10px auto 0;	
}
/*** TOPへ戻る ***/
#wrapper {
  position:relative;
  min-height: 100%;
}
#contents {
   padding-bottom: 415px;
}
.topBtn {
	position:fixed;
	bottom:20px;
	right:20px;
	display:block;
	text-decoration:none;
	width:60px;
	height:60px;
	text-align:center;
	box-sizing:border-box;
	border: solid 1px #1F519F;
	line-height: 37px;
	background: #fff;
    opacity: .7;
}
/****** 共通 ******/
.flex{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
}
/* 下線タイトル */
.under_bdr{
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.under_bdr::after{
    content: "";
    /*background: url(../img/common/underline_blue.svg) no-repeat center;
    background-size: contain;*/
	border-top: 1px solid #1f519f;
    width: 100px;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 10px auto 0;	
}
.nolink{
	pointer-events: none;
}
.lineheight{
	line-height: 1 !important;
}
@media only screen and (min-width: 1150px){
	a[href^="tel:"] {
    	pointer-events: none;
	}
}
/* ----------------------------------------------------------------------------------------------
　ナビゲーション
---------------------------------------------------------------------------------------------- */
.menu-container {
    width: 100%;
    margin: 0 auto;
    background: #fff;
	display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100px;
	position: relative;
	z-index: 99;
}
.menu-mobile {
    display: none;
    padding: 20px;
}
.menu-mobile:after {
    content: url(../img/common/menu.svg);
	display: inline-block;
	width: 27px;
	height: 25px;
    float: right;
    position: relative;
    top: 50%;
}
.menu-dropdown-icon:before {
    content: url(../img/common/plus.svg);
    font-family: "FontAwesome";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 1em 1em;
    background: #fff;
    color: #333;
}
.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    box-sizing: border-box;
	height: 100px;
}
.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}
.menu > ul:after {
    clear: both;
}
.menu > ul > li {
    float: left;
    background: #fff;
    padding: 0;
    margin: 0;
	height: 100px;
	display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.menu > ul > li a {
    text-decoration: none;
    padding: 1em 1.1em;
    display: block;
	font-weight: 600;
}
.menu > ul > li a span {
	font-size: 11px;
	font-weight: 500;
	display: block;
}
.menu > ul > li a:hover{
    color: #1F519F;
}
.menu > ul > li a:hover span{
	color: #7ECEF4;
}
.menu > ul > li > ul {
    display: none;
    width: 100%;
    background: #1F519F;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
	top: 100px;
}
.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    background: none;
    float: left;
}
.menu > ul > li > ul > li a {
    padding: .2em 0;
    width: 95%;
    display: block;
	color: #fff;
}
.menu > ul > li > ul > li a:hover{
	color: #fff;
}
.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}
.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}
.menu > ul > li > ul > li > ul:after {
    clear: both;
}
.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: .8em;
}
.menu > ul > li > ul > li > ul > li a {
    border: 0;
}
.menu > ul > li > ul.normal-sub {
	width: 100vw;
    padding: 10px 20px;
	padding: 3% 0 3% 32%;
}
@media only screen and (max-width: 1920px){
	.menu > ul > li > ul.normal-sub {
		padding: 3% 30%;
	}
}
@media only screen and (max-width: 1800px){
	.menu > ul > li > ul.normal-sub {
		padding: 3% 28%;
	}
}
@media only screen and (max-width: 1700px){
	.menu > ul > li > ul.normal-sub {
		padding: 3% 24%;
	}
}
@media only screen and (max-width: 1600px){
	.menu > ul > li > ul.normal-sub {
		padding: 3% 22%;
	}
}
.menu > ul > li > ul.normal-sub > li:nth-of-type(1) {
	width: 330px;
}
.menu > ul > li > ul.normal-sub > li:nth-of-type(2) {
	width: 170px;
}
.menu > ul > li > ul.normal-sub > li:nth-of-type(3) {
	width: 80px;
}
.menu > ul > li > ul.normal-sub > li:nth-of-type(4) {
	width: 120px;
}
.menu > ul > li > ul.normal-sub > li a {
	padding: 0 0 10px 0;
}
.menu > ul > li > ul.normal-sub > li a:hover{
	border-bottom: solid 1px #7ECEF4;
	opacity: inherit;
}
.menu > ul > li.nav_contact{
	display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    flex-flow: column;
	width: 200px;
	text-align: left;
}
.menu > ul > li.nav_contact a:hover{
	opacity: .8;
}
.menu > ul > li.nav_contact .mail{
	color: #fff;
	background: #1F519F;
	display: block;
	width: 200px;
	padding: 20px 10px 12px 10px;
}
.menu > ul > li.nav_contact .tel{
	color: #1F519F;
	background: #7ECEF4;
	display: block;
	width: 200px;
	padding: 14px 0 13px 0;
	font-size: 18px;
}
.menu > ul > li.nav_contact .tel span{
	display: inline-block;
	font-size: 11px;
    font-weight: 600;
}
.menu > ul > li.nav_contact .tel:hover span {
    color: #1F519F;
}
.menu > ul > li.nav_contact .mail:before{
	content: "";
	background: url(../img/common/contact_arrow.svg) no-repeat;
	background-size: contain;
	display: inline-block;
	width: 19px;
	height: 5px;
	margin-right: 24px;
	vertical-align: middle;
}
.menu > ul > li.nav_contact .tel:before{
	content: "";
	background: url(../img/common/tel_icon.svg) no-repeat;
	background-size: contain;
	display: inline-block;
	width: 17px;
	height: 23px;
	margin: 0 5px 0 10px;
	vertical-align: middle;
}
.menu-container h1 a:hover{
	opacity: 1;
}
/**** active link ****/
  .menu > ul > li:nth-child(1) a, 
 .business .menu > ul > li:nth-child(2) a, 
 .facility .menu > ul > li:nth-child(3) a, 
 .network .menu > ul > li:nth-child(4) a, 
 .environment .menu > ul > li:nth-child(5) a{
	color: #1F519F;
}
  .menu > ul > li:nth-child(1) a span, 
 .business .menu > ul > li:nth-child(2) a span, 
 .facility .menu > ul > li:nth-child(3) a span, 
 .network .menu > ul > li:nth-child(4) a span, 
 .environment .menu > ul > li:nth-child(5) a span{
	color: #7ECEF4;
}
 .business .menu > ul > li > ul.normal-sub > li a{
	color: #FFF;
}
/**** IE対応 ****/
@media all and (-ms-high-contrast: none) {
	.menu > ul{
		display: flex;
	}
	.menu > ul > li a{
		font-weight: bold;
	}
	.menu > ul > li.nav_contact .mail::before{
		width: 18px;
		height: 10px;
	}
}

/*Tablet style's
----------------------------------------------- */
@media only screen and (max-width: 1200px){
	.menu > ul > li > ul.normal-sub{
		padding: 3% 0 3% 20%;
	}
	.menu > ul > li.nav_contact{
		width: 200px;
	}
	.menu > ul > li.nav_contact .mail {
		width: 200px;
		padding: 20px 10px 13px 10px;
	}
	.menu > ul > li.nav_contact .mail:before {
		width: 20px;
		height: 5px;
	}
	.menu > ul > li.nav_contact .tel {
		width: 200px;
		padding: 14px 0;
	}
	.menu > ul > li.nav_contact .tel:before {
		width: 14px;
		height: 20px;
	}
}
@media only screen and (max-width: 1050px){
	.menu > ul > li a{
		padding: 1em 10px;
	}
}

/**** IE対応 ****/
@media all and (-ms-high-contrast: none) {
	.menu > ul > li.nav_contact .tel::before{
		height: 18px;
	}
}

/* ----------------------------------------------------------------------------------------------
　footer
---------------------------------------------------------------------------------------------- */
#footer {
   position: absolute;
   bottom: 0px;
   width: 100%;
   height: 415px;
}
footer{
	background: #1F519F;
	margin-top: 180px;
}
footer a.privacy {line-height: 30px;font-size: 14px;margin-right: 10px;}
footer {
    display: flex;
    justify-content: flex-end;
}
footer p,footer a{
	color: #fff;
}
footer .footer_inner{
	width: 1000px;
    margin: 0 auto;
	padding: 60px 0 15px 0;
}
footer .footer_inner > ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/*max-width: 905px;*/
}
footer .footer_inner li p a{
	line-height: 1.4;
	display: inline-block;
	margin-bottom: 12px;
	font-weight: 600;
}
footer .footer_inner > ul > li > ul > li a{
	font-size: 15px;
	line-height: 1.6;
}
footer .footer_inner li:last-of-type  p a{
	margin-bottom: 7px;
}
footer .footer_inner li p a:after{
	content: "";
	background: url(../img/common/footer_line.svg) no-repeat;
	display: block;
	width: 35px;
	height: 2px;
	margin-top: 8px;
}
footer .footer_inner li:last-of-type  p a:after{
	content: none;
}
footer .footer_inner li a{
	line-height: 1.4;
	display: inline-block;
}
footer a.footer_logo{
	/*display: block;*/
	display: inline-block;
    margin: 40px 0 20px 0;
}
footer a.footer_logo:hover{
	opacity: 1;
}
footer .footer_inner > div{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
footer .footer_inner > div p{
	line-height: 1.4;
}
footer .footer_inner > div p:nth-of-type(1){
	font-size: 15px;
}
footer .footer_inner > div p.mail a{
	border: solid 1px #fff;
	border-radius: 50px;
	padding: 15px 10px;
	width: 212px;
	display: block;
}
footer .footer_inner > div p.mail{
	text-align: center;
}
/*footer .footer_inner > div p.mail a:before {
    content: "";
    background: url(../img/common/mail_icon.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 25px;
    height: 21px;
    margin-right: 10px;
    vertical-align: middle;
}*/
footer small{
	font-size: 10px;
	color: #fff;
	text-align: right;
	display: block;
	margin-top: 0;
	padding: 10px;
}
@media only screen and (max-width: 1010px){
	footer .footer_inner{
		width: 95%;
	}
}
/**** ページTOPへ****/
.pagetop{
	position: absolute;
	right: 27px;
	bottom: 440px;
}
.pagetop a{
	border: 1px solid #1f519f;
	width: 60px;
	height: 60px;
	line-height: 60px;
	position: relative;
	display: block;
	background: #FFF;
}
.pagetop img{
	width: 24px;
	height: 19px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

/* ----------------------------------------------------------------------------------------------
　TOPページ
---------------------------------------------------------------------------------------------- */
/**** 共通 start ****/
 .home section > div > h2{
	font-size: 30px;
	text-align: center;
	padding: 30px 0;
	position: relative;
}
 .home section > div > h2 span{
	font-size: 16px;
	display: block;
}
 .home section > div > h2:before{
	content: "";
	background: url(../img/common/slash_white.svg) no-repeat;
	display: block;
	width: 14px;
	height: 30px;
	position: absolute;
	top: -4px;
    left: 46px;
    right: 0;
	margin: 0 auto;
}
 .home section > div > h2:after{
	content: "";
	background: url(../img/common/slash_white.svg) no-repeat;
	display: block;
	width: 14px;
	height: 30px;
	position: absolute;
	bottom: -4px;
    left: -34px;
    right: 0;
	margin: 0 auto;
}
.view_more{
	font-size: 14px;
    border-radius: 50px;
    display: inline-block;
    padding: 12px 20px;
}
.view_more:after{
	content: "";
    display: inline-block;
    width: 29px;
    height: 6px;
    vertical-align: middle;
    margin-left: 15px;
}
/**** 共通 end ****/
/**** mv start ****/
 .home section.top_mv .top_mv_inner {
	height: auto;
	background-image: url("../img/mv_pc.jpg");
	background-size: cover;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
/* .home section.top_mv .top_mv_inner .video_wrap {
	width: 100%;
	height: 0;
	padding-top: calc(700 / 1280 * 100%);
	overflow: hidden;
	position: relative;
	margin-top: calc(-50 / 1280 * 100%);
}*/
/* .home section.top_mv .top_mv_inner .video_wrap .hidden{
	width: 100%;
	height: calc(100 / 1280 * 100%);
	background-color: #f4f4f4;
	position: absolute;
	bottom: 0;
	z-index: 1;
}
 .home section.top_mv .top_mv_inner .video_wrap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: -1;
}*/
 .home section.top_mv .top_mv_inner .main-title-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc( 100% - 32px );
}
 .home section.top_mv .top_mv_inner .main-title-wrap .main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
 .home section.top_mv .mv_title {
	display: inline-block;
	margin: 0 10px 20px 10px;
	font-size: 65px;
	color: #fff;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.01em;
}
 .home section.top_mv .mv_sub_title {
	margin: -10px 0 10px;
	font-size: 26px;
	color: #fff;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.3em;
}
.full div.img02 span:nth-child(1) {color: #222;}
/**** slick slider ****/
.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 76.5vh;
  margin: 0;
}
.full div.img01 {
  background-image: url(../img/top/slider_01.jpg);
}
.full div.img02 {
  background-image: url(../img/top/slider_02.jpg);
}
.full div.img03 {
  background-image: url(../img/top/slider_03.jpg);
}
.full .slick-dots {
	bottom: 4%;
	z-index: +1;
}
.full div.img01, .full div.img02, .full div.img03{
	position: relative;
}
.full div.img01 span, .full div.img02 span, .full div.img03 span{
	color: #FFF;
	font-size: 14px;
	position: absolute;
	right: 2%;
	bottom: 2%;
}
.full div.img02{
	position: relative;
}
.full div.img02 span{
	position: absolute;
}
.full div.img02 span:nth-of-type(1){
	top: 5px;
	left: 5px;
}
.full div.img02 span:nth-of-type(2){
	top: 5px;
	right: 5px;
}
.full div.img02 span:nth-of-type(3){
	bottom: 5px;
	left: 5px;
}
.full div.img02 span:nth-of-type(4){
	bottom: 5px;
	right: 5px;
}
/**** mv end ****/

 .home section.news > h2{
	color: #fff;
	background: #1F519F;
	padding: 35px 10px;
	width: 225px;
	text-align: center;
}
 .home section.news{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: -50px;
    z-index: 1;
}
 .home section.news ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
    width: calc( 100% - 225px );
}
 .home section.news ul li:nth-of-type(1) a{
	font-size: 14px;
	padding: 25px 10px 25px 25px;
	display: inline-block;
	width: 120px;
}
 .home section.news ul li:nth-of-type(2){
	width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	color: #1F519F;
}
 .home section.news ul li:nth-of-type(2) a{
	font-size: 14px;
	padding: 25px 10px 25px 10px;
	color: #1F519F;
	/*display: inline-block;*/
}
 .home section.business{
	background: url(../img/top/bg_business.jpg) no-repeat center;
	background-size: cover;
}
 .home section.business .inner1000{
	padding-top: 30px;
}
 .home section.business > div > h2{
	color: #fff;
}
 .home section.business > div > h2 span{
	color: #7ECEF4;
}
 .home section.business ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	margin-top: 35px;
}
 .home section.business ul li{
	width: 48%;
	margin-bottom: 30px;
}
 .home section.business ul li:nth-last-of-type(-n+2){
	margin-bottom: 0;
}
 .home section.business ul li img{
	width: 100%;
}
 .home section.business ul li p:nth-of-type(2){
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-top: 15px;
	text-align: center;
}
 .home section.aboutus .innerFull{
	padding-top: 30px;
}
 .home section.aboutus > div > h2 span {
	color: #808080;
}
 .home section.aboutus > div > h2:before{
	background: url(../img/common/slash_blue.svg) no-repeat;
}
 .home section.aboutus > div > h2:after{
	background: url(../img/common/slash_blue.svg) no-repeat;
}
 .home section.aboutus .inner_wrap{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 60px;
}
 .home section.aboutus .inner_wrap .description{
    width: 51.5%;
}
 .home section.aboutus .inner_wrap .description .description-inner{
	width: 480px;
    margin-left: calc(100% - 530px);
}
 .home section.aboutus .inner_wrap .description .description-inner h3{
    font-size: 40px;
	margin-bottom: 30px;
	line-height: 1.6;
}
 .home section.aboutus .inner_wrap .description .description-inner p{
	line-height: 1.4;
}
 .home section.aboutus .inner_wrap .photo {
    background-image: url(../img/top/aboutus.jpg);
    width: 48.5%;
    height: 439px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

 .home section.aboutus .view_more{
	color: #1F519F;
    border: solid 1px #1F519F;
	margin-top: 45px;
}
 .home section.aboutus .view_more:after{
	background: url(../img/common/arrow_blue.svg) no-repeat;
}
 .home section.aboutus_detail{
	background: #EAEAED;
}
 .home section.aboutus_detail div.inner1000{
	padding: 60px 0;
}
 .home section.aboutus_detail ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
 .home section.aboutus_detail ul li{
	width: 31%;
}
 .home section.aboutus_detail ul li img{
	width: 100%;
}
 .home section.aboutus_detail ul li p{
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
}
 .home section.factory .inner1000{
	/*padding-top: 30px;*/
	padding: 58px 0 78px;
}
 .home section.factory{
	background: url(../img/top/bg_factory.jpg) no-repeat center;
	background-size: cover;
}
 .home section.factory .inner1000{
	text-align: center;
}
 .home section.factory h2{
	color: #fff;
}
 .home section.factory h3{
	font-size: 40px;
	text-align: center;
	color: #fff;
	line-height: 1.5;
    margin-top: 30px;
}
 .home section.factory .view_more{
	color: #fff;
    border: solid 1px #fff;
	margin-top: 75px;
}
 .home section.factory .view_more:after{
	background: url(../img/common/arrow_white.svg) no-repeat;
}

 .home section.network .innerFull{
	padding: 30px 0 0 0;
}
 .home section.network > div > h2:before{
	background: url(../img/common/slash_blue.svg) no-repeat;
}
 .home section.network > div > h2 span {
	color: #808080;
}
 .home section.network > div > h2:after{
	background: url(../img/common/slash_blue.svg) no-repeat;
}
 .home section.network .inner_wrap{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 30px;
}
 .home section.network .inner_wrap .description{
    width: 50%;
}
 .home section.network .inner_wrap .description .description-inner{
	width: 480px;
    margin-right: calc(100% - 530px);
}
 .home section.network .inner_wrap .description .description-inner ul{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
 .home section.network .inner_wrap .description .description-inner ul li{
	width: 48.5%;
	margin-bottom: 10px;
	text-align: center;
}
 .home section.network .inner_wrap .description .description-inner ul li a{
	border: solid 1px #000;
	padding: 15px 10px;
	display: block;
}
 .home section.network .inner_wrap .description .description-inner p:nth-of-type(1){
	line-height: 1.4;
	margin-top: 30px;
}
 .home section.network .inner_wrap .description .description-inner p:nth-of-type(2){
	text-align: right;
}
 .home section.network .inner_wrap .photo {
    background-image: url(../img/top/network.jpg);
    height: 439px;
	width: calc(50% - 50px);
    margin-right: 50px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

 .home section.network .view_more{
	color: #1F519F;
    border: solid 1px #1F519F;
	margin-top: 30px;
}
 .home section.network .view_more:after{
	background: url(../img/common/arrow_blue.svg) no-repeat;
}
 .home footer{
	margin-top: 0;
}

/* ----------------------------------------------------------------------------------------------
　BUSINESS / 事業内容
---------------------------------------------------------------------------------------------- */

/* 事業内容共通 */
 .business .mv {
	background: url(../img/business/mv.jpg) no-repeat center;
	background-size: cover;
}
 .business p{
	line-height: 1.6;
}
 .business section .inner_wrap{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
 .business section.about .inner_wrap .photo {
    height: 439px;
	width: calc(50% - 50px);
    margin-right: 50px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
 .business section.about .inner_wrap .description{
    width: 50%;
}
 .business section.about .inner_wrap .description .description-inner{
	width: 480px;
    margin-right: calc(100% - 530px);
}
 .business section.about .inner_wrap h4{
	font-size: 30px;
	color: #1F519F;
}
 .business section.about .inner_wrap .description-inner p{
	margin: 50px 0 30px 0;
}
 .business section.about .inner_wrap .description-inner li{
	line-height: 1.5;
	padding-left: 1em;
	text-indent: -1em;
}
 .business section.item{
	background: url(../img/business/bg_item.jpg) no-repeat center;
	background-size: cover;
}
/* .business section.item .inner1000{
	padding-bottom: 180px;
}*/
 .business section.item ul li p:nth-of-type(2){
	font-weight: 600;
	text-align: center;
	margin-top: 10px;
}
 .business section.item ul::after{
	content: '';
	display: block;
	width: 31.5%;
}
 .business footer{
	margin-top: 0;
}
/* 写真3列アイテム */
section.item ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	/*-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;*/
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
section.item ul li{
	width: 31.5%;
	margin-bottom: 20px;
}
section.item ul li:nth-last-of-type(-n+3){
	margin-bottom: 0;
}
section.item ul li img{
	width: 100%;
}
/* アイテムテキストあり */
section.item .inner1000 > p{
	max-width: 816px;
	margin: 0 auto 30px;
	text-align: center;
	line-height: 1.6;
}
/* 下部のテキスト＆画像レイアウト */
 .business section.bottomlayout .inner1000{
	padding-bottom: 180px;
}
 .business section.bottomlayout p.intro{
	margin: 0 0 25px;
	text-align: center;
}
 .business section.bottomlayout .img_wrap img{
	max-width: 100%;
}
/****** 鉄・非鉄・貴金属 ******/

 .metal section.about .inner_wrap{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
 .metal section.about .inner_wrap .photo {
    background-image: url(../img/business/about_metal.jpg);
}
 .metal section.about .inner_wrap .description-inner p{
	line-height: 1.6;
}
 .metal section.purchase .intro{
	text-align: center;
	line-height: 1.8;
}
 .metal section.purchase .img_wrap{
	text-align: center;
	margin: 20px 0;
}
 .metal section.purchase .contactBox{
	border: solid 1px #1F519F;
	padding: 2.2em 20px;
	margin-top: 30px;
}
 .metal section.purchase .contactBox p:nth-of-type(1){
	font-size: 20px;
	font-weight: 600;
	color: #1F519F;
	text-align: center;
}
 .metal section.purchase .contactBox p:nth-of-type(2){
	text-align: center;
	margin: 15px 0 20px 0;
}
 .metal section.purchase .contactBox p:nth-of-type(3){
	text-align: center;
	margin: 0;
}
 .metal section.purchase .contactBox p:nth-of-type(3) a{
	font-size: 40px;
	font-weight: 600;
	color: #1F519F;
	display: block;
	line-height: 1;
}
 .metal section.purchase .contactBox p:nth-of-type(3) a span{
	font-size: 30px;
}
section.purchase .inner1000{
	padding-bottom: 180px;
}
 .metal section.recycling{
	background: url(../img/business/bg_recycling.png) no-repeat center;
	background-size: cover;
}
 .metal section.recycling h5{
	color: #fff;
}
 .metal section.recycling h5:after{
	background: url(../img/common/underline_white.svg) no-repeat center;
    background-size: contain;
	border-top: 1px solid #FFF;
}
 .metal section.recycling .intro{
	color: #fff;
	text-align: center;
	line-height: 1.6;
	width: 95%;
	margin: 0 auto 40px;
}
 .metal section.recycling .img_wrap{
	text-align: center;
	width: 46.6000%;
	max-width: 466px;
	margin: 0 auto;
}
 .metal section.recycling ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 30px;
}
 .metal section.recycling ul li{
	padding: 35px 0 25px;
	width: 31.5%;
	background: #fff;
	text-align: center;
}
 .metal section.recycling ul li p:nth-of-type(1){
	font-size: 25px;
	font-weight: 600;
	color: #1F519F;
	margin-bottom: 20px;
	position: relative;
}
 .metal section.recycling ul li p:nth-of-type(1) span{
	font-size: 30px;
	display: block;
}
 .metal section.recycling ul li p:nth-of-type(1):after{
	content: "";
    background: url(../img/business/underline_blue.svg) no-repeat center;
    background-size: contain;
    width: 176px;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 5px auto 0;
}
 .metal section.recycling ul li p:nth-of-type(2){
	color: #1F519F;
	font-weight: 600;
	padding: 0 15px;
}
 .metal section.flow{
	background: #ECF0F1;
}
 .metal section.flow .img_wrap{
	background: #fff;
	padding: 50px 20px 40px;
	text-align: center;
}
section.flow .inner1000 p{
	text-align: center;
	width: 95%;
	margin: 0 auto 30px;
}
 .metal footer{
	margin-top: 0;
}


/****** 産業廃棄物処理業 ******/
 .industrialwaste section.about .inner_wrap .photo {
    background-image: url(../img/business/about_industrialwaste.jpg);
}
 .industrialwaste section.about .inner_wrap .description .description-inner{
	margin-top: 107px;
}
 .industrialwaste section.item .inner1000 h5{
	margin-bottom: 40px;
}
 .industrialwaste section.about .inner_wrap{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
 .industrialwaste section.processing .inner1000{
	padding-top: 0;
}
 .industrialwaste section.processing ul{
	max-width: 510px;
	margin: auto;
}
 .industrialwaste section.processing ul li{
	line-height: 1.75;
	position: relative;
}
 .industrialwaste section.processing ul li span:last-child{
	position: absolute;
	right: 0;
}
 .industrialwaste section.item{
	background: none;
}
 .industrialwaste section.item .inner1000{
	padding-bottom: 30px;
}

/****** 加工・販売 ******/
 .process section.about .inner_wrap .photo {
    background-image: url(../img/business/about_process.jpg);
}
 .process section.about .inner_wrap .description .description-inner{
	margin-top: 107px;
}
.process section.item .inner1000 > p{
	margin-bottom: 50px;
}
.process section.item .inner1000 h5{
	margin-bottom: 40px;
}
.process section.about .inner_wrap{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.process section.bottomlayout{
	position: relative;
}
.process section.bottomlayout::before{
	content: '';
	display: block;
	background: url(../img/business/big_arrow_blu.svg) no-repeat;
	width: 218px;
	height: 70px;
	position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.process section.bottomlayout .inner1000{
	padding-top: 90px;
}
.process section.bottomlayout .roundbox{
	background: #ecf0f1;
	padding: 32px;
	border-radius: 20px;
	margin-bottom: 163px;
}
 .borderbox{
	border: 1px solid #1f519f;
	padding: 20px 20px 40px;
	text-align: center;
}
.borderbox intro {
    font-size: 20px;
    color: #1f519f;
    font-weight: bold;
    margin-bottom: 0;
}
.borderbox p:last-child a{
	font-size: 40px;
	color: #1f519f;
	font-weight: bold;
	padding-top: 20px;
}
.process section.bottomlayout ul{
	max-width: 936px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.process section.bottomlayout ul li{
	width: 30%;
}
 .process section.bottomlayout ul li img{
	width: 100%;
}
.process section.bottomlayout p.intro{
	padding-top: 15px;
}
/****** 貿易 ******/
 .trade section.about .inner_wrap .photo {
    background-image: url(../img/business/about_trade.jpg);
}
 .trade section.about .inner_wrap .description .description-inner{
	margin-top: 107px;
}
 .trade section.about .inner_wrap{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
 .trade section.map{
	margin: 0;
	background: #EAF7FD;
}
 .trade section.map .inner1000{
	padding: 0;
	position: relative;
}
 .trade section.map .inner1000 .txt_wrap{
	width: 340px;
	position: absolute;
	right: -21px;
	top: 183px;
}
 .trade section.map .inner1000 .txt_wrap::before{
	content: '';
	display: inline-block;
	background: url(../img/business/icon_ship.svg) no-repeat;
	width: 60px;
	height: 34px;
	position: absolute;
	left: -75px;
	bottom: 23px;
}
 .trade section.map .inner1000 .txt_wrap p:nth-of-type(1){
	font-size: 18px;
}
 .trade section.map .inner1000 .txt_wrap p:nth-of-type(2){
	font-size: 24px;
	color: #1F519F;
	margin: 25px 0 10px;
}
 .trade section.map .inner1000 .txt_wrap ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	position: relative;
}
 .trade section.map .inner1000 .txt_wrap ul li{
	width: 107px;
	height: 34px;
	line-height: 34px;
	font-size: 21px;
	border: 1px solid #000;
	background: #FFF;
	margin-right: 6px;
	text-align: center;
}

/* ----------------------------------------------------------------------------------------------
　環境への取り組み
---------------------------------------------------------------------------------------------- */
 .environment .mv {
	background: url(../img/environment/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
 .environment section .inner1000{
	padding: 60px 0 0;
}
 .environment section.water .inner1000{
	padding: 60px 0 145px;
}
 .environment section .inner_wrap{
	text-align: center;
}
 .environment section .inner_wrap h4{
	font-size: 21px;
	color: #1F519F;
	font-weight: bold;
	margin-bottom: 22px;
}
 .environment section .inner_wrap .img_wrap{
	margin: 0 auto 30px;
}
 .environment section .inner_wrap p{
	line-height: 1.6;
}
 .environment section.social .inner_wrap p:nth-of-type(2){
	margin-bottom: 64px;
}
 .metal section.item {
    background: url(../img/business/bg_item.jpg) no-repeat center;
    background-size: cover;
}
 .environment section.social .inner_wrap .img_wrap:nth-of-type(1){
	max-width: 500px;
	background: #FFF;
}
 .environment .bg_env{
	background: url(../img/environment/bg_env.jpg) no-repeat 0 37%;
    background-size: auto 60%;
}
/* ----------------------------------------------------------------------------------------------
　保有設備
---------------------------------------------------------------------------------------------- */
 .facility .mv {
	background: url(../img/facility/mv.jpg) no-repeat center;
	background-size: cover;
}
/* .facility section.item ul li:nth-last-of-type(-n+3){
	margin-bottom: 0;
}*/
 .facility section.factory .inner1000 > p:nth-of-type(2){
	margin: 30px 0 0;
	max-width: none;
}
 .facility section.inner_facility.kishiwada {
	background: #F6F9FA;
}
 .facility section.inner_facility.sakaide{
	background: #FFF;
}
 .facility section.item ul li:not(:nth-last-of-type(-n+3)){
	margin-bottom: 30px;
}
 .facility section.item ul li p:nth-of-type(2){
	font-weight: bold;
	margin: 20px 0 13px;
}
 .facility section.item ul::after{
	content: '';
    display: block;
    width: 31.5%;
}
 .facility section.vehicle{
	background: #F6F9FA;
}
 .facility section.vehicle .inner1000{
	padding-bottom: 180px;
}
 .facility section.vehicle ul li{
	margin-bottom: 0;
}
 .facility footer{
	margin-top: 0;
}
/* ----------------------------------------------------------------------------------------------
　新着情報一覧
---------------------------------------------------------------------------------------------- */
 .news_list .mv {
	background: url(../img/news/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
 .news_list section.list_wrap .inner1000{
	padding-top: 100px;
}
 .news_list section.list_wrap dl a{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 1.2em 20px;
	border-top: solid 2px #CCCCCC;
}
 .news_list section.list_wrap dl:nth-child(even){
	background: #F6F9FA;
}
 .news_list section.list_wrap dl:last-of-type{
	border-bottom: solid 2px #CCCCCC;
}
 .news_list section.list_wrap dl dt{
	width: 140px;
	font-weight: 500;
}
 .news_list section.list_wrap dl dd{
	width: 76.8%;
	color: #1F519F;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
 .news_list footer{
	margin-top: 130px;
}
/*ページネーション*/
.pagination{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.pagination li a, 
.pagination li .current{
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	color: #1F519F;
	background-color: #fff;
	border: solid 1px #1F519F;
	border-radius: 50px;
	margin: 0 5px;
}
.pagination li .current{
	background-color: #1F519F;
	color: #fff;
}
/* ----------------------------------------------------------------------------------------------
　新着情報詳細
---------------------------------------------------------------------------------------------- */
 .news_detail .mv {
	background: url(../img/news/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
 .news_detail .detail_wrap .date{
	color: #1F519F;
	background: #ECF0F1;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	letter-spacing: 2px;
}
 .news_detail .detail_wrap h3{
	font-size: 35px;
	color: #1F519F;
	border-bottom: solid 1px #1F519F;
	margin: 25px 0 60px 0;
	padding-bottom: 15px;
}
 .news_detail .detail_wrap img{
	width: 100%;
}
 .news_detail .detail_wrap p{
	line-height: 1.6;
}
 .news_detail .detail_wrap a{
	color: #1F519F;
	text-decoration: underline;
}
 .news_detail .detail_wrap .return a{
	text-decoration: none;
}
 .news_detail .detail_wrap .inner1000 > p:nth-of-type(n+2){
	margin: 55px 0 0;
}
 .news_detail .upper_box{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 55px;
}
 .news_detail .upper_box > p{
	width: 47%;
}
 .news_detail .upper_box > div{
	width: 50%;
	margin-left: 7%;
}
 .news_detail .pdf_box.layout01:nth-of-type(1),
 .news_detail .pdf_box.layout04:nth-of-type(1){
	/*margin-top: 50px;
	margin-bottom: 50px;*/
}
 .news_detail .pdf_box:nth-of-type(n+2){
	margin-top: 10px;
}
/* .news_detail .pdf_box:last-of-type{
	margin-bottom: 50px;
}*/
 .news_detail .pdf_box a:after{
	content: "";
	background: url(../img/news/pdf.png) no-repeat;
	background-size: contain;
	width: 32px;
	height: 32px;
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
}
 .news_detail .under_box{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 90px 0 60px 0;
}
 .news_detail .under_box > div{
	width: 50%;
	margin-right: 7%;
}
 .news_detail .under_box > p{
	width: 47%;
}
 .news_detail .detail_wrap .inner1000 > p.link_box:nth-of-type(1){
	margin-top: 35px;
}
 .news_detail .detail_wrap .inner1000 > p.link_box:nth-of-type(n+2), 
 .news_detail .detail_wrap .inner1000 > div > div > p.link_box:nth-of-type(n+2) {
	margin: 10px 0;
}
 .news_detail .detail_wrap .editor img{
	width: auto;
}
.return {
	text-align: center;
}
.return a{
	font-size: 14px;
    border-radius: 50px;
    display: inline-block;
    padding: 7px 0;
	color: #1F519F;
    border: solid 1px #1F519F;
	width: 161px;
}
.return a:after {
    content: "";
	background: url(../img/common/arrow_blue.svg) no-repeat;
    display: inline-block;
    width: 29px;
    height: 6px;
    vertical-align: middle;
    margin-left: 15px;
}
/* ----------------------------------------------------------------------------------------------
　お問い合わせ
---------------------------------------------------------------------------------------------- */
 .contact .mv {
	background: url(../img/contact/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
 .contact .contact_wrap .inner1000{
	padding-bottom: 0;
}
 .contact .contact_wrap .intro{
	text-align: center;
	line-height: 1.6;
}
 .contact .contact_wrap .business_hours{
	color: #1F519F;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 45px 0 0 0;
	line-height: 1.4;
}
 .contact .area_box{
	background: #F6F9FA;
	position: relative;
	border-top: solid 1px #000;
	padding: 85px 20px 60px 20px;
	text-align: center;
	margin-top: 85px;
}
 .contact .area_box h3{
	font-size: 20px;
	border: solid 1px #000;
	background: #fff;
	width: 600px;
	padding: 17px;
    text-align: center;
	position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
 .contact .area_box h4{
	font-size: 18px;
	font-weight: 600;
	color: #1F519F;
	margin-top: 30px;
}
 .contact .area_box .add{
	margin-bottom: 25px;
}
 .contact .area_box .tel{
	font-size: 36px;
	margin-top: 20px;
}
 .contact .area_box .tel a:before{
	content: "";
	background: url(../img/contact/icon_tel.svg) no-repeat;
	background-size: contain;
    display: inline-block;
    width: 36px;
    height: 42px;
    vertical-align: middle;
    margin-right: 15px;
}
 .contact .area_box .fax{
	font-size: 22px;
}
 .contact .area_box .number_box{
	position: relative;
}
 .contact .area_box .number_box:before{
	content: "";
	background: url(../img/contact/line_blue.svg) no-repeat;
	background-size: contain;
    display: block;
    width: 480px;
    height: 1px;
	position: absolute;
	top: -8px;
	left: 0;
    right: 0;
    margin: 0 auto;
}
 .contact .note{
	font-weight: 600;
	color: #1F519F;
	margin-top: 15px;
}
/* ----------------------------------------------------------------------------------------------
　会社概要
---------------------------------------------------------------------------------------------- */
  .mv {
	background: url(../img/aboutus/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
.general_wrap{
	margin: 5px auto 0;
    width: 635px;
}
 .general_wrap dl{
	color: #1F519F;
	font-size: 26px;
	font-weight: 600;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-bottom: solid 1px #1F519F;
	margin-bottom: 30px;
	padding-bottom: 10px;
}
.general_wrap dt{
	width: 100px;
	text-align: center;
	font-family: 'Century Gothic';
}
.general_wrap dd{
	padding-left: 20px;
}
 #message p{
	font-size: 20px;
	line-height: 1.8;
	text-align: center;
}
 #message p:last-child{
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
}
 #message p:last-child span{
	font-size: 30px;
	padding-left: 20px;
	display: inline-block;
}
 #message,   #area, 
  #permit{
	background: #F6F9FA;
}
/* 表組タイトル */
.company_table{
	margin-top: 60px;
}
.company_table dl{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border: solid 1px #ccc;
	background: #fff;
	line-height: 1.8;
	border-bottom: 0;
	position: relative;
}
 .company_table.direction dl:last-child{
	border-bottom: solid 1px #ccc;
}
 .company_table dt{
	width: 300px;
	text-align: left;
	background: #E9F1F5;
	border-right: solid 1px #ccc;
	padding: 2em 0 2em 10%;
	letter-spacing: 0.1em;
}
.company_table dd{
	padding: 2em 20px 2em 8%;
}
.company_table dl:last-child{
	border-bottom: solid 1px #ccc;
}
 .company_table > p{
	margin-bottom: 24px;
}
.company_table > p::before{
	content: '■';
	display: inline-block;
	color: #1F519F;
	padding-right: 5px;
}
/* 表組タイトル2 */
 #owned .inner1000 p{
	text-align: center;
}
 .company_table.direction{
	align-items: stretch;
}
 .company_table.direction dl{
	width: 100%;
	border-right: none;
	align-items: center;
	display: table;
}
.company_table.direction dl:nth-child(1){
	background: #E9F1F5;
}
 .company_table.direction dl dt,
 .company_table.direction dl dd{
	border-right: 0;
	padding: 11px 10px;
	text-align: center;
	width: 292px;
	border-right: 1px solid #CCC;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	line-height: 1.2;
}
.company_table.direction dl dd{
	padding: 14px 10px;
}
.company_table.direction dl dt:nth-child(3){
	line-height: 1.2;
}
.company_table.direction dl dd:nth-child(3){
	line-height: 1.66;
}
.company_table.direction dl dt:last-child,
.company_table.direction dl dd:last-child{
	width: 123px;
	border-right: 1px solid #CCC;
}
.company_table.direction dl img{
	width: 24px;
	height: 24px;
}
.company_table.only dl{
	width: 100%;
	flex-flow: column;
	border-right: none;
}
/*  .company_table.only dl:last-child{
	border-bottom: solid 1px #ccc;
}*/
.company_table.only dl dt{
	border-right: none;
	padding: 7.5px 10px;
	border-bottom: 1px solid #CCC;
}
.company_table.only dl dd:nth-of-type{
	border-top: 1px solid #CCC;
}
.company_table.only dl dd{
	padding: 27px 10px;
	border-bottom: 1px solid #CCC;
}
.company_table.only dl dd:last-of-type{
	border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
#permit .inner1000 .company_table.only:nth-of-type(1) dl dd{
	padding: 10px 0;
}
.company_table.only dl dt,
.company_table.only dl dd{
	width: 100%;
	text-align: center;
	border-right: 1px solid #CCC;
}
  .company_table.only .logo{
	margin-right: 45px;
}
  .company_table.direction dl, 
  .company_table.only dl{
	background: #E9F1F5;
}
  .company_table.direction dl dd, 
  .company_table.only dl dd{
	background: #FFF;
}
  .company_table.direction dl:last-child, 
  .company_table.only dl:last-child{
	border-bottom: 1px solid #CCC;
}

  #permit .inner1000{
	padding-bottom: 180px;
}
  footer{
	margin-top: 0;
}
  .permit_box{
	background: #fff;
	text-align: center;
	/*padding: 50px 20px;*/
}
  .permit_box .logo{
	text-align: center;
}
  .permit_box ul{
	display: inline-block;
	margin-top: 20px;
}
  .permit_box ul li{
	text-align: left;
	line-height: 2.8;
	margin-left: 1.5em;
	word-break: break-all;
}
  .permit_box ul li:before{
	content: "";
	background: url(../img/aboutus/square.svg) no-repeat;
	background-size: contain;
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-right: 10px;
	vertical-align: middle;
	margin-left: -1.5em;
}

  .permit_box > ul > li:last-of-type::before{
	display: none;
}
  .permit_box ul li .pdf_box{
	margin-top: 0;
	width: 100%;
}
  .permit_box ul li .pdf_box li{
	margin-left: 0;
	position: relative;
}
  .permit_box ul li .pdf_box li a {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 100%;
}
  .permit_box ul li .pdf_box li a br {
	display: none;
}
  .permit_box ul li .pdf_box li a img {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}
/*  .permit_box ul li .pdf_box li a.pdfIcon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 10px;
	position: absolute;
	right: -17%;
}
  .permit_box ul li .pdf_box li a.pdfIcon img{
	vertical-align: middle;
}*/
/**** IE対応 ****/
@media all and (-ms-high-contrast: none) {

}
/* ----------------------------------------------------------------------------------------------
　事業所
---------------------------------------------------------------------------------------------- */
h3.general_small{
	font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
 .network .mv {
	background: url(../img/network/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
 .network .intro p:nth-of-type(1){
	text-align: center;
	line-height: 1.6;
}
 .network .intro p:nth-of-type(2){
	margin-top: 60px;
}
 .network .intro p:nth-of-type(2) img{
	width: 100%;
}
 .network #kishiwada,
 .network #sakaide{
	background: #F6F9FA;
}
 .area_wrap{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.tupian {
    width: 48%;
}
    .tupian img {
        width: 100%;
    }
 .dizhi{
	width: 43%;
	margin-left: 7%;
	margin-top: 20px;
}
 .dizhi h4{
	color: #1F519F;
	font-weight: 600;
	border-bottom: solid 1px #000;
	padding-bottom: 10px;
	margin-bottom: 25px;
}
.dizhi dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 1.4;
    margin-bottom: 20px;
}
.dizhi dt {
    width: 85px;
    font-weight: 500;
}
 .network .area_wrap > div .note{
	color: #1F519F;
	font-weight: 600;
	line-height: 1.4;
}
 .network .area_wrap > div .link{
	color: #1F519F;
	line-height: 1.4;
	text-decoration: underline;
}
 .map iframe{
	margin-top: 30px;
	width: 100%;
    height: 300px;
}
 .network section:last-of-type .inner1000{
	padding-bottom: 0;
}
/* ----------------------------------------------------------------------------------------------
　プライバシーポリシー
---------------------------------------------------------------------------------------------- */
 .privacy .mv {
	background: url(../img/privacy/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
 .privacy .intro{
	border: 1px solid #1F519F;
	padding: 42px 75px 32px;
	margin-bottom: 90px;
	line-height: 1.75;
	text-align: center;
}
 .privacy .privacy_wrap dl{
	padding-bottom: 30px;
}
 .privacy .privacy_wrap dl:last-child{
	padding-bottom: 0;

}
 .privacy .privacy_wrap dl dt{
	background: #F6F9FA;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding: 20px 25px 15px;
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: normal;
}
 .privacy .privacy_wrap dl dd{
	line-height: 1.75;
	padding: 0 30px;
	height: 80px;
}
 .privacy .inner1000{
	padding-bottom: 0;
}
 .privacy .privacy_wrap dl:last-child dd{
	margin-bottom: 0;
	height: auto;
}
/* -----------------------------------------------------------
   エラーページ
----------------------------------------------------------- */
.wrapper {

}
.error404{
	position: relative;
	min-height: calc(50vh - 31px);
}
.error404 >p {
    position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 80%;
    height: 3.2rem;
    font-size: 20px;
    font-weight: bold;
    color: #6C6C72;
	text-align: center;
}
.error404 footer{
	height: 31px;
}
/* ----------------------------------------------------------------------------------------------
　印刷用設定
---------------------------------------------------------------------------------------------- */
@media print {
	.menu{
		width: 100%;
	}
	.menu > ul{
		display: flex;
        justify-content: space-between;
	}
	.menu > ul > li a{
		padding: 0;
	}
	.menu-container h1 a{
		width: 200px;
		display: block;
	}
	.menu-container h1 a img{
		width: 100%;
	}
	.menu > ul:after{
		display: none;
	}
}

/* ----------------------------------------------------------------------------------------------
　お問い合わせ
---------------------------------------------------------------------------------------------- */
 .inquiry .mv {
	background: url(../img/contact/mv.jpg) no-repeat center;
	background-size: cover;
	box-shadow: none;
}
 .inquiry .contact_wrap .inner1000{
	padding-bottom: 0;
}
 .inquiry .contact_wrap .intro{
	text-align: center;
	line-height: 1.6;
}
 .inquiry .contact_wrap .business_hours{
	color: #1F519F;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 45px 0 0 0;
	line-height: 1.4;
}
 .inquiry .area_box{
	background: #F6F9FA;
	position: relative;
	border-top: solid 1px #000;
	padding: 85px 20px 60px 20px;
	text-align: center;
	margin-top: 85px;
}
 .inquiry .area_box h3{
	font-size: 20px;
	border: solid 1px #000;
	background: #fff;
	width: 600px;
	padding: 17px;
    text-align: center;
	position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
 .inquiry .area_box h4{
	font-size: 18px;
	font-weight: 600;
	color: #1F519F;
	margin-top: 30px;
}
 .inquiry .area_box .add{
	margin-bottom: 25px;
}
 .inquiry .area_box .tel{
	font-size: 36px;
	margin-top: 20px;
}
 .inquiry .area_box .tel a:before{
	content: "";
	background: url(../img/contact/icon_tel.svg) no-repeat;
	background-size: contain;
    display: inline-block;
    width: 36px;
    height: 42px;
    vertical-align: middle;
    margin-right: 15px;
}
 .inquiry .area_box .fax{
	font-size: 22px;
}
 .inquiry .area_box .number_box{
	position: relative;
}
 .inquiry .area_box .number_box:before{
	content: "";
	background: url(../img/contact/line_blue.svg) no-repeat;
	background-size: contain;
    display: block;
    width: 480px;
    height: 1px;
	position: absolute;
	top: -8px;
	left: 0;
    right: 0;
    margin: 0 auto;
}
 .inquiry .note{
	font-weight: 600;
	color: #1F519F;
	margin-top: 15px;
}