/*-------------------------------	● 全体 ● -------------------------------*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font: normal 16px sans-serif;
	color: #555;
}

ul, nav{
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;

	opacity: 0.9;
}

a:hover{
	color: #ff7d27;
	opacity: 1;
}

a.btn{
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	/* background-color: #2196F3; */
	background-color: #ff7d27;
	font-weight: 800;
	text-align: center;
}

hr{
	width: 150px;
	height: 2px;
	/* background-color: #2196F3; */
	background-color: #ff7d27;
	border: 0;
	margin-bottom: 80px;
}

section{
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 125px 100px;
}

section h3.title{
	color: #414a4f;
	text-transform: capitalize;
	font: bold 32px 'Open Sans', sans-serif;
	margin-bottom: 35px;
	text-align: center;
}

section p{
	max-width: 800px;
	text-align: center;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 2;
}

ul.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


/*------------------------------- ● header ● -------------------------------*/
.header {
	opacity: 0.7;
	/* background:#ff7d27; */
	background-color: #414a4f;
  box-shadow:0 2px 8px rgba(30,30,80,.3);
  left:0;
  line-height:1;
  position:fixed;
  top:0;
  width:100%;
  z-index:24;
}

header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	/* justify-content: space-between; */
	justify-content: flex-end;
	align-items: center;
	color: #fff;
	padding: 25px 16px 10px;
}

				header nav li {
					font-size: 14px;
				}

header h2{
	font-family: 'Quicksand', sans-serif;
	/* color: #ff7d27; */
	/* opacity: 0.5; */
}

/* ------------- 追加　ココまで ------------- */

/* ------------- 追加　ココから ------------- */


header nav{
	display: flex;
}

header nav li{
	margin: 0 15px;
}

header nav li:first-child{
	margin-left: 0;
}

header nav li:last-child{
	margin-right: 0;
}



/*-------------------------	● Hero (TOPイメージ) ● -------------------------*/

.hero{
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.hero .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #2196F3;
	z-index: -1;
}

.hero .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #414a4f;
	opacity: 0.75;
}

.hero h1{
	font: bold 60px 'Open Sans', sans-serif;
	margin-bottom: 15px;
}

.hero h3{
	font: normal 28px 'Open Sans', sans-serif;
	margin-bottom: 40px;
}

/* ------------- 追加　ココから ------------- */
				.hero em {
				  color: #ff7d27;
				  font-weight: 600;
				  font-style: normal;
				}
/* ------------- 追加　ココまで ------------- */

.hero a.btn{
	padding: 20px 46px;
}





/*----------------------------- ● Our Work Section ●
------------------------------*/

.оur-work{
	background-color: #fff;
}

.our-work .grid li{
	padding: 20px;
	height: 350px;
	border-radius: 3px;

	background-clip: content-box;
	background-size: cover;
	background-position: center;
	background-color: #333;
}

.our-work .grid li.small{
	flex-basis: 40%;
}

.our-work .grid li.large{
	flex-basis: 60%;
}






/*--------------------------- ● provide ● ---------------------------*/

.provide{
	background-color: #f7f7f7;
}

.provide .grid li{
	padding: 0 30px;
	flex-basis: 33%;
	text-align: center;
}

.provide .grid li i{
    font-size: 50px;
    /* color: #2196F3; */
    color: #ff7d27;
    margin-bottom: 25px;
}

.provide .grid li h4{
	color: #555;
    font-size: 20px;
    margin-bottom: 25px;
}

.provide .grid li p{
    margin: 0;
}








/*----------------------------- ● Company ● -----------------------------*/

.company{
	background-color: #fff;
}

.company .cat{
	text-align: center;
	width: 80%;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 10px;
    padding: 0;
}


.company .subcat{
    font-size: 18px;
    margin-bottom: 20px;
}

.company .subcat:last-child{
    margin-bottom: 0;
}


/*--------------------------	追加 --------------------------*/

h4 {
  /* background: linear-gradient(transparent 80%, #ff7d27 20%); */
	border-bottom: solid 2px #ff7d27;
}

/* .company .line-dec {
  width: 260px;
  height: 3px;
  background-color: #ff7d27;
  margin: 20px 0px 20px 0px;
} */
/*--------------------------	追加 --------------------------*/



/*------------------------------ ● Contact ●------------------------------*/

.contact{
	background-color: #f7f7f7;
}

.contact form{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;

	max-width: 800px;
	width: 80%;
}

.contact form input{
	padding: 15px;
	flex: 1;
	margin-right: 30px;
	font-size: 18px;
	color: #555;
}

.contact form .btn{
	padding: 18px 42px;
}



/*------------------------------- ●	Footer ● -------------------------------*/

footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #414a4f;
	padding: 28px 0;
}

footer ul{
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li{
	margin: 0 8px;
}

footer ul li:first-child{
	margin-left: 0;
}

footer ul li:last-child{
	margin-right: 0;
}

footer p{
	text-transform: uppercase;
	font-size: 11px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}




/* -------------------------- ● pagetop (先頭へ戻る) ● -------------------------- */
#pagetop{
  position:fixed;
  bottom:20px;
  right:20px;
  cursor:pointer;
	color: #ff7d27;
	font-size: 60px;
	font-weight: 400;
}

#pagetop a:hover{
	color: #ee5533;
	opacity: 1;
}



/* ----------------------------- ● 可変サイズ対応 ● ----------------------------- */

@media (max-width: 600px){
	section{
		padding: 80px 30px;
	}

	.provide .grid li{
		flex-basis: 100%;
	}

}


@media (max-width: 700px){
	header{
		flex-direction: column;
	}

	header h2{
		margin-bottom: 15px;
	}

	footer{
		padding: 80px 15px;
	}

}


@media (max-width: 800px){
	.hero{
		min-height: 600px;
	}

	.hero h1{
		font-size: 48px;
	}

	.hero h3{
		font-size: 24px;
	}

	.hero a.btn{
		padding: 15px 40px;
	}

	.contact form input{
		flex-basis: 100%;
		margin: 0 0 20px 0;
	}

}


@media (max-width: 1000px){
	section{
		padding: 100px 50px;
	}

	header{
		padding: 20px 50px;
	}

	.our-work .grid li.small,
	.our-work .grid li.large{
		flex-basis: 100%;
	}

	.provide .grid li{
		flex-basis: 70%;
		margin-bottom: 65px;
	}

	.provide .grid li:last-child{
		margin-bottom: 0;
	}

	.company .cat{
		font-size: 20px;
	}

	.company .subcat{
	    font-size: 16px;
	}

}


/* ----------------------------- Demo ads ----------------------------- */

@media (max-width: 1200px) {
	#bsaHolder{ display:none;}
}
