/* CSS Document */
body{
	min-width: 1020px;
}
.contents{
	max-width: 1600px;
	min-width: 1020px;
	margin: 0 auto 0;
  font-family:"Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align:left;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:100;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:200;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:300;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:400;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Bold");
  font-weight:bold;
}
.contents img{
	max-width: 100%;
	height: auto;
}
.contents a{
	transition: opacity .4s cubic-bezier(.210, .60, .350, 1);
}
.contents a:hover{
	opacity:0.7;
}
.contents{
	overflow: hidden;
}
.pc_only{
	display: block;
}
.sp_only{
	display: none;
}
@media screen and (max-width: 740px) {
.contents {
	min-width:320px;
}
.pc_only{
	display: none;
}
.sp_only{
	display: block;
}
}


/* main */
#main{
	overflow: hidden;
	position: relative;
}
#main::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url("../images/bgi_main_01.jpg") center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 1.0s cubic-bezier(.210, .60, .350, 1),transform 1.0s cubic-bezier(.210, .60, .350, 1);
}
#main.fade::before{
	opacity: 1;
	transform: scale(1);
}
#main .inner{
	position: relative;
	z-index: 2;
	max-width: 1000px;
	margin: 0 auto;
	display: table;
	height: 650px;
}
#main .ttl{
	display: table-cell;
	vertical-align: middle;
	padding-right: 30px;
}
#main .ttl h1{
	font-size: 78px;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	transform: translateY(10px);
	opacity: 0;
	transition: opacity 1.0s cubic-bezier(.210, .60, .350, 1),transform 1.0s cubic-bezier(.210, .60, .350, 1);
	transition-delay: 1.0s;
	padding: 0;
	margin: 0;
}
#main.fade h1{
	transform: translateY(0);
	opacity: 1;
}
#main .img{
	display: table-cell;
	vertical-align: middle;
	white-space: nowrap;
	width: 300px;
	opacity: 0;
	transform: rotate(-35deg);
	transition: opacity 1.2s cubic-bezier(.210, .60, .350, 1),transform 1.2s cubic-bezier(.210, .60, .350, 1);
	transition-delay: 2.0s;
}
#main.fade .img{
	opacity: 1;
	transform: rotate(0);
}
@media screen and (max-width: 740px) {
#main .inner{
	height: auto;
	padding: 30px 20px;
}
#main .ttl{
	display: block;
	padding-right: 0;
}
#main .ttl h1{
	font-size: 34px;
	text-align: center;
}
#main .img{
	display: block;
	width: 130px;
	margin: 10px auto 0;
}
}


/* section */
section{
	position: relative;
}
section::before{
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: -40px;
	width: 2px;
	height: 80px;
	background: #333;
	margin-left: -1px;
}
section .ttl h2{
	text-align: center;
}
section .ttl h2 strong,
section .ttl h2 span{
	display: block;
}
section .ttl h2 strong{
	font-size: 40px;
	line-height: 1.3;
}
section .ttl h2 span{
	font-size: 18px;
	margin-top: 10px;
	font-family: 'Oswald', sans-serif;
	font-style: italic;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
@media screen and (max-width: 740px) {
section::before{
	top: -20px;
	height: 40px;
}
section .ttl h2 strong{
	font-size: 22px;
}
section .ttl h2 span{
	font-size: 12px;
	margin-top: 5px;
}
}


/* lead */
#lead{
	background: #F7F5F5;
	padding: 150px 40px;
}
#lead p{
	font-size: 26px;
	line-height: 2;
	font-weight: bold;
	text-align: center;
	margin: 50px 0 0 0;
	transform: translateY(20px);
	opacity: 0;
	transition: opacity .8s cubic-bezier(.210, .60, .350, 1),transform .8s cubic-bezier(.210, .60, .350, 1);
}
#lead p:first-child{
	margin-top: 0;
}
#lead.fade p{
	transform: translateY(0);
	opacity: 1;
}
#lead p:nth-child(2){transition-delay: 1.2s;}
#lead p:nth-child(3){transition-delay: 2.4s;}
@media screen and (max-width: 740px) {
#lead{
	background: #F7F5F5;
	padding: 60px 20px;
}
#lead p{
	font-size: 14px;
	margin-top: 30px;
}
}


/* point */
#point{
	padding: 80px 0;
}
#point .inner{
	max-width: 1440px;
	margin: 0 auto;
}
#point .box{
	position: relative;
}
#point .box:nth-child(odd){
	margin-top: 180px;
}
#point .box:nth-child(even){
	margin-top: 60px;
}
#point .box:first-child{
	margin-top: 0 !important;
}
#point .box:nth-child(odd) .txt::before{
	right: 0;
}
#point .box:nth-child(even) .txt::before{
	left: 0;
}
#point .box.fade .txt::before{
	width: 0;
}
#point .txt{
	position: relative;
	padding: 80px;
	color: #fff;
	box-sizing: border-box;
	width: 65%;
	margin: 0;
}
#point .txt::before{
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: width .8s cubic-bezier(.210, .60, .350, 1);
}
#point .use .txt{background: #47BCD7;}
#point .eco .txt{background: #6A6967;}
#point .reuse .txt{background: #67CED6;}
#point .box:nth-child(odd) .txt{
	margin-right: auto;
	padding-right: 25%;
}
#point .box:nth-child(even) .txt{
	margin-left: auto;
	padding-left: 25%;
}
#point .txt h2::after{
	position: relative;
	left: -20px;
	content: "";
	margin: 20px 0;
	width: 80px;
	height: 1px;
	display: block;
	background: #fff;
}
#point .txt h2 span,
#point .txt h2 strong{
	display: block;
	line-height: 1.5;
}
#point .txt h2 span{
	font-size: 26px;
	font-family: 'Oswald', sans-serif;
	font-style: italic;
	letter-spacing: 0.1em;
}
#point .txt h2 strong{
	font-size: 40px;
	margin-top: 10px;
}
#point .txt p{
	font-size: 16px;
	line-height: 2;
}
#point .img{
	overflow: hidden;
	position: absolute;
	width: 54.167%;
	height: 100%;
}
#point .img::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
#point .img::before{
	opacity: 0;
	transform: scale(1.08);
	transition: opacity .8s cubic-bezier(.210, .60, .350, 1),transform .8s cubic-bezier(.210, .60, .350, 1);
}
#point .box.fade .img::before{
	opacity: 1;
	transform: scale(1);
}
#point .box:nth-child(odd) .img{
	right: 0;
	top: -60px;
}
#point .box:nth-child(even) .img{
	left: 0;
	top: 60px;
}
#point .box.use .img{
	top: 0;
}
#point .use .img::before{display: none;}
#point .eco .img::before{background-image: url("../images/img_eco_01.jpg");}
#point .reuse .img::before{background-image: url("../images/img_reuse_01.jpg");}
#point .use .img{
	display: table;
	height: 100%;
}
#point .use .img ul{
	display: table-cell;
	vertical-align: middle;
	font-size: 0;
	padding: 0;
}
#point .use .img ul li{
	display: inline-block;
	vertical-align: middle;
	width: 50%;
}
#point .use .img ul li p{
	font-weight: bold;
	font-size: 14px;
	margin-top: 10px;
}
#point .use .img ul li:nth-child(1) p{
	color: #fff;
}
@media screen and (max-width: 740px) {
#point{
	padding: 60px 0;
}
#point .box:nth-child(odd){
	margin-top: 40px;
}
#point .box:nth-child(even){
	margin-top: 40px;
}
#point .txt{
	padding: 40px 30px 60px !important;
	width: 100%;
}
#point .txt h2::after{
	left: -15px;
	margin: 15px 0;
	width: 60px;
}
#point .txt h2 span{
	font-size: 18px;
}
#point .txt h2 strong{
	font-size: 24px;
	margin-top: 5px;
}
#point .txt p{
	font-size: 14px;
	line-height: 2;
}
#point .img{
	position: relative;
	width: calc(100% - 40px);
	margin: -40px auto 0;
	height: 220px;
}
#point .box:nth-child(odd) .img{
	top: 0;
}
#point .box:nth-child(even) .img{
	top: 0;
}
#point .use .img ul li p{
	font-size: 12px;
	margin-top: 8px;
	text-align: center;
}
#point .use .img ul li:nth-child(1) p{
	color: #333;
}
}


/* customer */
#customer{
	padding: 140px 0;
	background: #F7F5F5;
}
#customer .inner{
	max-width: 1440px;
	margin: 0 auto;
}
#customer .box{
  max-width: 1440px;
  display: table;
  background: #ffffff;
  margin-top: 60px;
	min-height: 580px;
}
#customer .box .txt{
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding:50px 100px;
}
#customer .box .img{
	position: relative;
	overflow: hidden;
  display: table-cell;
  width: 50%;
}
#customer .img::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity .8s cubic-bezier(.210, .60, .350, 1),transform .8s cubic-bezier(.210, .60, .350, 1);
}
#customer .box.fade .img::before{
	opacity: 1;
	transform: scale(1);
}
#customer .syuei::before{
  background: url("../images/img_customer_01.jpg")no-repeat;
  background-size: cover;
	background-position: center;
}
#customer .ishizaka::before{
  background: url("../images/img_customer_02.jpg")no-repeat;
  background-size: cover;
	background-position: center;
}
#customer  .space::before{
  background: url("../images/img_customer_03.jpg")no-repeat;
  background-size: cover;
	background-position: center;
}
#customer .box .txt h2{
  font-size: 40px;
  line-height: 1.63;
}
#customer .box .txt p{
	font-size: 16px;
	line-height: 2;
}
#customer .box .btn{
  display: block;
  width: 100%;
  max-width: 260px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
#customer .box .btn a{
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #47bcd7;
  position: relative;
  border-radius: 4px;
  text-decoration: none;
}
#customer .box .btn a::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: #333;
  transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
#customer .box .btn span{
  color: #FFF;
  position: relative;
  padding-right: 15px;
}
#customer .box .btn span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}
@media screen and (max-width: 1230px) {
  #customer .box .txt h2 br{
    display: none;
  }
}
@media screen and (max-width: 740px) {
  #customer{
    padding: 60px 0;
  }
  #customer .box{
    position: relative;
  }
  #customer .box .img{
    display: inline-block;
    width: 100%;
    height: 0;
    padding-top: 80%;
  } 
  #customer .box .img:nth-child(2){
    display: inline-block;
    width: 100%;
    height: 0;
    padding-top: 80%;
    position: absolute;
    top:0;
  }  
  #customer .box .txt p{
    font-size: 14px;
    line-height: 2;
  }
  #customer .box .txt h2{
    font-size: 24px;
    line-height: 1.5;
  }
    #customer .box .txt h2 br{
    display: block;
  }
  #customer .box{
    display: block;
    margin-top: 40px;
  }
  #customer .box .txt{
    display: block;
    padding:30px 20px;
  }
  #customer .box .txt:nth-child(1){
    display: block;
    padding:85% 20px 30px;
  }
  #customer .box .btn{
    font-size: 14px;
    margin:0 auto;
  }
}


/* vision */
#vision{
  padding: 140px 40px;
}
#vision{
  padding: 140px 40px;
}
#vision .bnr {
  padding: 40px 40px 0;
}
#vision .bnr ul {
  font-size: 0;
  margin: 0 auto;
  text-align: center;
  max-width: 1200px;
  padding: 0;
}
#vision .bnr ul li:first-child {
  margin-left: 0;
}
#vision .bnr ul li {
  display: inline-block;
  vertical-align: top;
  width: 22.5%;
  margin-left: 3.33%;
  font-size: 14px;
  line-height: 1.71;
  text-align: left;
  list-style-type: none;
	transform: translateY(10px);
	opacity: 0;
	transition: opacity .8s cubic-bezier(.210, .60, .350, 1),transform .8s cubic-bezier(.210, .60, .350, 1);
}
#vision .bnr.fade li{
	transform: translateY(0);
	opacity: 1;
}
#vision .bnr li:nth-child(2){transition-delay: .25s;}
#vision .bnr li:nth-child(3){transition-delay: .5s;}
#vision .bnr li:nth-child(4){transition-delay: .75s;}
#vision .bnr ul li a{
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #47bcd7;
  position: relative;
  text-decoration: none;
}
#vision .bnr ul li a::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: #333;
    transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
#vision .bnr ul li a span {
  width: 100%;
  display: block;
  padding: 12px 0;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
#vision .bnr ul li a span::after{
  content: "";
    display: inline-block;
    vertical-align: middle;
    width: 7px;
    height: 7px;
    box-sizing: border-box;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    margin-left: 6px;
    margin-bottom: 3px;
    transform: rotate(45deg);
}


@media screen and (max-width: 740px) {
#vision{
	padding: 60px 0 40px;
}
#vision .bnr{
  padding: 40px 20px 0;
}
#vision .bnr ul{
	margin-top: -4%;
}
#vision .bnr ul li{
  width: 48%;
  margin: 4% 4% 0 0;
}
#vision .bnr ul li:nth-child(2n){
	margin-right: 0;
}
#vision .bnr ul li a span{
  font-size: 13px;
}
}
















