/*-------------
 	General
-------------*/


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

html{
	font-family:'Noto Sans JP' , sans-serif;
	color: #000;
	font-size: 16px;
}

ul, nav{
	list-style: none;
}

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

	opacity: 0.9;
}

a:hover{
	opacity: 1;
}

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

hr{
	width: 100%;
	height: 30px;
	background-color: #FFCE00;
	border: 0;
	margin-bottom: 80px;
}

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

	/* padding: 50px 30px; */
}

@media (max-width: 1000px){

	/* section{
		padding: 20px 20px;
	} */

}

@media (max-width: 600px){

	section{
		padding: 0px;
	}

}

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: left;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 2;
}

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


/*-------------
 	Header
-------------*/

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

header h2{
	font-family: 'Quicksand', sans-serif;
}

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;	
}



@media (max-width: 1000px){
	header{
		padding: 20px 50px;
	}
}


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

	header h2{
		margin-bottom: 15px;
	}
}



/*----------------
 	Hero Section
----------------*/

.hero{
	position: relative;
	justify-content: center;
	min-height: 25vh;
	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 a.btn{
	padding: 20px 46px;
}

@media (max-width: 800px){

	.hero{
		min-height: 600px;
	}

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

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

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

}



/*--------------------
 	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%;
}


@media (max-width: 1000px){

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

}



/*----------------------
 	Features Section
----------------------*/

.features{
	background-color: #f7f7f7;
}

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

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

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

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

@media (max-width: 1000px){

	.features .grid li{
		flex-basis: 70%;
		margin-bottom: 30px;
	}

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

}


@media (max-width: 600px){

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

}



/*--------------------
 	Reviews Section
--------------------*/

.reviews{
	background-color: #fff;
}

.reviews .quote{
	text-align: center;
	width: 80%;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0;
}

.reviews .author{
    font-size: 18px;
    margin-bottom: 50px;
}

.reviews .author:last-child{
    margin-bottom: 0;
}

@media (max-width: 1000px){

	.reviews .quote{
		font-size: 20px;
	}

	.reviews .author{
	    font-size: 16px;
	}

}



/*---------------------
 	Contact Section
---------------------*/

.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;
}


@media (max-width: 800px){

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

}




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

footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #414a4f;
	padding: 60px 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: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

footer p a{
	color: #fff;
}

@media (max-width: 700px){

	footer{
		padding: 80px 15px;
	}

}


/* -- Demo ads -- */

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

.text-center{
	text-align: center;
}

.text-right{
	text-align: right;
}

.text-left{
	text-align: left;
}
 
.underline01 {
  background: #FFCE00;
}


	.underline02 {
	border-bottom:solid;
	border-color:#FF0000;
	border-width:5px;/*5ピクセルの太さにする*/
	}

.icon{
	border-radius:50%;
	width: 80%;
	height: 80%;
}

.w-200{
	width: 200px;
}

.w-400{
	width: 400px;
}


.w-700{
	width: 700px;
}



.img-fluid{
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
  }

  .container-box {
	max-width: 540px;
  }
  
  .container-fluid {
	width: 100%;
	padding-right: 0px;
	padding-left: 0px;
	margin-right: auto;
	margin-left: auto;
  }
  
  @media (min-width: 576px) {
	.container {
	  max-width: 540px;
	}
  }
  
  @media (min-width: 768px) {
	.container {
	  max-width: 720px;
	}
  }
  
  @media (min-width: 992px) {
	.container {
	  max-width: 960px;
	}
  }
  
  @media (min-width: 1200px) {
	.container {
	  max-width: 950px;
	}
  }


  /* animation */
  .scroll {
	display: inline-block;
	padding-top: 0px;
	position: relative;
  }
  .scroll::before {
	animation: scroll 2.5s infinite;
	border: solid #FFF;
	border-width: 0 0 4px 4px;
	content: "";
	display: inline-block;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	transform: rotate(-45deg);
	width: 40px;
	height: 40px;
  }
  @keyframes scroll {
	0% {
	  transform: rotate(-45deg) translate(0, 0);
	}
	80% {
	  transform: rotate(-45deg) translate(-30px, 30px);
	}
	0%, 80%, 100% {
	  opacity: 0;
	}
	40% {
	  opacity: 1;
	}
  }
  .fade-in-bottom {
	opacity: 0;
	animation-name: fadein-bottom;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 3s;
 }
 @keyframes fadein-bottom {
	0% {
	   opacity: 0;
	   transform: translateY(20px);
	}
	100% {
	   opacity: 1;
	   transform: translateY(0);
	}
 }

  .fw-8{
	  font-weight: 800;
  }

  .fw-5{
	  font-weight: 500;
  }

  .fs-10{
	font-size: 10px !important;
}

  .fs-12{
	font-size: 12px;
}

  .fs-14{
	font-size: 14px;
}

.fs-16{
	font-size: 16px;
}


.fs-18{
	font-size: 18px;
}

  .fs-20{
font-size: 20px;
  }


  .fs-26{
	font-size: 26px;
	  }

.fs-28{
	font-size: 28px;
	  }
	


  .fs-30{
	  font-size: 30px;
  }

.fs-large{
	font-size: 30px;
}

  .bg-black{
	  background-color:#222;
  }

  .bg-yellow{
	  background-color: #FFCE00;
	  padding: 20px;
  }

  .mt-5{
	  margin: 50px 0 50px 0;
  }

  .px-1{
	  padding:0 10px;
  }


  .px-5{
	padding:0 50px;
}

  @media screen and (min-width: 768px){
	.br-sp {display: none; }
	}

	/* btn */

	@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

/* *,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
} */
/* 
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
} */

.btn,
a.btn,
button.btn {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/*背景*/
.btn-wrap {
  margin: 20px;
}

a.btn-c {
  font-size: 2rem;

  padding: 1.5rem 4rem 1.5rem 4rem;

  -webkit-transform: skew(-15deg);

  transform: skew(-15deg);

  color: #fff;
  border-radius: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#333333)
  );
  background-image: -webkit-linear-gradient(left, #f83600 0%, #ff0000 100%);
  background-image: linear-gradient(to right, #f83600 0%, #ff0000 100%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

a.btn-c i.fa {
  margin-right: 1rem;
}

a.btn-c:before {
  position: absolute;
  top: 46%;
  right: 0;

  width: 3rem;
  height: 1px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #fff;
}

a.btn-c:after {
  position: absolute;
  top: 55%;
  right: 1rem;

  width: 2rem;
  height: 1px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #fff;
}

a.btn-c:hover {
  -webkit-transform: skew(0);
  transform: skew(0);

  color: #fff;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

a.btn-c:hover:before {
  right: -1.5rem;

  background: #f83600;
}

a.btn-c:hover:after {
  right: -1rem;

  background: #f83600;
}


@media (max-width: 700px){


	.w-700{
		width: 450px;
	}

	.fs-large{
		font-size: 23px;
		  }

		  .fs-15{
			  font-size: 15px;
		  }

.fs-18{
	font-size: 24px;
}

.hidden-xs{
	display: none;
}

}

.mp-0{
	
	padding: 0 !important;
}

.my-5{
	margin-top: 50px;
	margin-bottom: 50px;
}

.py-5{
	padding-top: 50px;
	padding-bottom: 50px;
}

.mannaka{
	margin: 0 auto;
}

table{
	border-collapse: collapse;
	width: 100%;
  }
  .tb01 th,
  .tb01 td{
	padding: 10px;
	border: solid 1px #ccc;
	text-align:left;
	box-sizing:border-box;
  }
  .tb01 th {
	background: #777;
	color: #fff;
	
  }
  @media screen and (max-width: 640px) {
	.tb01 {
	  width: 100%;
	}
	table.tb01 th,
	table.tb01 td {
	  display: block;
	  width: 100%;
	  border-bottom:none;
	}
	.tb01 tr:last-child{
	  border-bottom: solid 1px #ccc;
	}
  }

  .position-top{
	  position:relative; bottom: 45px;
  }

  .fc-gray{
	  color: #888;
  }