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

@font-face{
  font-family: 'Hannari';
  src:url(../font/Hannari.woff);
}

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
/*	font-family: "Yu Gothic";*/
/*	font-family: "Mplus 1p";*/
/*	font-family: "Rounded Mplus 1c";*/
	font-family: "Noto Sans JP"; 
}

a{
	text-decoration: none;
	letter-spacing: 5px;
	transition: .3s;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

a:hover{
  opacity: .5;
	transition: .4s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p{
	color:#111;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

h1{	
	letter-spacing: 10px;
}
h2{
  font-size: 32px;
  line-height: 45px;
	letter-spacing: 9px;
}
h3{	
	letter-spacing: 8px;
}
h4{	
	letter-spacing: 7px;
}
h5{	
	letter-spacing: 6px;
}
h6{	
	letter-spacing: 5px;
}
p{
	font-weight: 200;
  font-size: 16px;
  line-height: 32px;
	letter-spacing: 2px;
}
hr{
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}
body{
	overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.spOnly{
  display: none;
}

a.linkBtn{
  display: block;
  width: 220px;
  text-align: center;
  font-family: "Mplus 1p";
	color:#333;
  border: 1px solid #333;
  padding: 15px 0;
}

a.linkBtn:hover{
  opacity: 1;
  background-color: #333;
  color: #fff;
}

.flexBox{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.spbr{
  display: none;
}

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

nav{
	width: 100%;
  display: flex;
  justify-content:space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  height: 100px;
  padding:0 50px;
  top: 0;
  z-index: 99999;
  background-color: #fff;
  transition: .2s;
}

nav.smaller{
  height: 60px;
  margin-top: 40px;
  transition: .2s;
  background-color: rgba(255,255,255,.9);
}

nav h1 img{
  transition: .2s;
}

nav.smaller h1 img{
  margin-top: 5px;
  width: 200px;
  transition: .2s;
}

nav.smaller ul li a{
  padding: 0px 10px;
}

nav.smaller ul li a p{
	font-size: 14px;
}

nav.smaller ul li:last-of-type a{
  padding: 3px 15px;
}

nav ul{
  display: flex;
  align-items: center;
}

nav ul li{
  margin-right: 15px;
}

nav ul li a{
  position: relative;
  display: block;
  padding: 5px 15px;
  border-bottom: 1px solid #053785;
  overflow: hidden;
}

nav ul li a::before{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #ebf1f6;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

nav ul li a:hover{
  opacity: 1;
}

nav ul li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

nav ul li:last-of-type{
  margin-right: 0;
}

nav ul li:last-of-type a{
  padding: 5px 20px;
  border-radius: 25px;
  border: 1px solid #053785;
}

/*==============================
SPメニュー
==============================*/

.spnavBack{
  display: none;
}

.spLogo{
	display: none;
}

.nav-unshown {
  display:none;
}
@media screen and (max-width: 1000px){
.spnavBack{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 999998;
  background-color: rgba(255,255,255,.9)
}
  
nav{
  display: none;
  padding: 10px 0;
	margin-top: 50px;
  width: 100%;
  text-align: center;
  background-color: rgba(255,255,255,.9)
}

nav h1{
  display: inline-block;
  margin: 0 auto;
}

nav h1 > a{
  display: block;
}

nav h1 > a img{
  width: 200px;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top:5px;
	right: 5px;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  padding:10px 9px;
	z-index: 999999;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 20px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -9px;
}
#nav-open span:after {
  bottom: -17px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 999999;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
nav {
  overflow: auto;
  position: fixed;
	display: block;
  top: 0;
  left: 0;
	margin: 0;
  z-index: 1000000;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ nav {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

nav{
  padding: 30px 10px 0;
  text-align: center;
}

nav h1{
  height: 50px;
  margin-bottom: 15px;
}
	
	nav ul{
		display: block;
	}

nav li{
  margin-bottom: 10px;
}

nav li a{
  padding: 10px 0 13px;
  border-bottom: 1px solid #053785;
  display: block;
}

nav p{
  color: #555;
  font-size: 18px;
}
	
	

nav.smaller{
  height: 100%;
  margin-top: 0;
  transition: .2s;
  background-color: #fff;
}

nav h1 img{
  width: 200px;
}

nav.smaller h1 img{
  margin-top: 0;
  width: 200px;
}

nav ul li a{
  padding: 0px 10px;
}

nav.smaller ul li a{
  padding: 0px 10px;
}

nav ul li a p{
	font-size: 14px;
}

nav.smaller ul li a p{
	font-size: 14px;
}

nav ul li:last-of-type a{
  padding: 3px 15px;
}

nav.smaller ul li:last-of-type a{
  padding: 3px 15px;
}
	
.spLogo{
	display: block;
	position: fixed;
	top: 10px;
	left: 10px;
  z-index: 999999;
}
	
	.spLogo img{
		width: 150px;
	}	
}

/*==============================
TOPボタン
==============================*/


/*==============================
メインコンテンツ
==============================*/

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


footer #newsWrap{
  background-image: url(../img/newsBack.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  margin: 100px auto 0;
  padding: 0 0 50px;  
}

footer #newsWrap .titleBox{
  position: relative;
  top: -20px;
}

footer #newsWrap .titleBox h2{
  text-align: center;
}

footer #newsWrap .titleBox h3{
  text-align: center;
}

footer #newsWrap ul{
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
}

footer #newsWrap ul li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

footer #newsWrap ul li p,
footer #newsWrap ul li a{
  color: #053785;
  font-size: 16px;
  padding: 5px 10px;
  margin-right: 20px;
  border-bottom: 1px solid #053785;
  width: 15%;
  text-align: center;
}

footer #newsWrap ul li p{
  font-weight: 700;
  line-height: 24px;
}
footer #newsWrap ul li a{
  width: 68%;
  text-align: left;
}

footer #newsWrap ul li h4{
  width: 120px;
  padding: 10px 10px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  background-color: #999;
  color: #fff;
  letter-spacing: 0;
  width: 12%;
  text-align: center;
}

footer #newsWrap ul li h4.stand{
  background-color: #053785;
}

footer #newsWrap ul li h4.auto{
  background-color: #d85a1e;
}

footer #newsWrap ul li h4.laundry{
  background-color: #50aa15;
}

footer #newsWrap .btn{
  margin-top: 30px;
}

footer{
	width: calc(100% - 100px);
	margin: 0 auto 50px;
	background-color: #17263d;
}

#companyWrap{
	display: flex;
	justify-content: space-between;
}

.companyBack{
	width: 60%;
	background-image: url(../img/companyBack.jpg);
	background-size: cover;
	background-position: center;
}

.companyBox{
	position: relative;
	width: 40%;
	background-color: #ededed;
	padding:0 30px 30px;
	text-align: center;
}

.companyBox .titleBox{
	position: relative;
	top: -20px;
}

.companyBox table{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.companyBox table td{
	text-align: left;
	border-bottom: 1px solid #053785;
	padding: 5px 15px;
}


.companyBox .btn::before{
  background: #fff;
}

#footContent{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 100px 0;
}

#footContent hr{
	border-bottom: #526179;
  background-color: #526179;
  border: 0;
  height: 1px;
}

#footContent h3,
#footContent p{
	color: #fff;
	margin-bottom: 15px;
}

#footContent p{
	font-weight: 300;
}

#footContent div{
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#footContent ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#footContent ul li{
	margin-right: 10px;
}

#footContent ul li a{
	position: relative;
	display: block;
	padding: 0 5px;
}

#footContent ul li a::before{
  position: absolute;
  top: 2em;
  left: 0;
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #fff;
  transition: .3s;
}

#footContent ul li a:hover{
	opacity: 1;
}

#footContent ul li a:hover::before{
  width: 100%;
}

#footContent ul li a p{
	font-size: 14px;
}

#footContent div p{
	font-size: 14px;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
	#footContent{
		max-width: 1000px;
	}
}

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

@media screen and (max-width: 1200px) {
	#footContent{
		max-width: 800px;
	}
	
	#footContent ul{
		justify-content: flex-start;
	}
	
	#footContent div{
		display: block;
	}
	
	#footContent div > p{
		text-align: right;
	}
}

@media screen and (max-width: 1000px) {
	header{
		margin-top: 50px;
	}
	
	#companyWrap{
		display: block;
	}

	.companyBack{
		height: 350px;
	}

	.companyBack,
	.companyBox{
		width: 100%;
	}
  
  footer #newsWrap ul{
    max-width: 600px;
  }
  
  footer #newsWrap ul li{
    flex-wrap: wrap;
  }
  
  footer #newsWrap ul li p:first-of-type{
    flex-basis: 100%;
    width: 100%;
    margin: 0;
  }
  
  footer #newsWrap ul li a{
    width: 80%;
    font-size: 14px;
    letter-spacing: 2px;
  }
  
  footer #newsWrap ul li h4{
    width: 15%;
  }
  
	#footContent{
		max-width: 600px;
	}
}

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

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

@media screen and (max-width: 600px){
  footer{
    width: calc(100% - 40px);    
  }
  .companyBack{
    height: 200px;
  }
  
  footer #newsWrap{
    padding: 0 20px 50px;
  }
  
  footer #newsWrap ul li{
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  footer #newsWrap ul li a{
    width: 70%;
    margin-right: 2%;
  }
  
  footer #newsWrap ul li h4{
    font-size: 12px;
    width: 28%;
  }
  
  #footContent{
    width: calc(100% - 40px);
    padding: 50px 0;
  }
  
  #footContent p{
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  #footContent ul{
    flex-wrap: wrap;
  }
  
  #footContent ul li{
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  
  #footContent ul li a{
    border-bottom: 1px solid #526179;
  }
  
  #footContent ul li a::before{
    display: none;
  }
  
  #footContent div > p{
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
  }
}

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

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


/*==============================
ローディングアニメーション
==============================*/
