@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&display=swap');

/*font-family: oswald, sans-serif;*/

/* Common
-----------------------------------*/
body *{
	box-sizing: border-box;
	vertical-align: middle;
}
html{
	font-size: 62.5%;
	min-height: 100%;
}
body{
	/*font-family: 'M PLUS 1p', sans-serif;*/
	font-family: 'Noto Sans JP', sans-serif;
	background: #000;
	font-weight: 400;
	line-height: 140%;
	min-height: 100%;
	color: #333;
	font-size: 1.5rem;
	overflow-x: hidden;
}
a{
	color: inherit;
	text-decoration: none;
}
img,svg{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
input,select,textarea,label,button{
	/*font-family: 'M PLUS 1p', sans-serif;*/
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
h1,h2,h3,h4,h5,h6{
	line-height: 140%;
}
.pc{display: block;}
.sp{display: none;}

.inner{
	max-width: 1040px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header
-----------------------------------*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: #FFF;
	padding: 20px 0;
	transition: 0.2s background,color;
	z-index: 9999;
}
header.active{
	color: #000;
	background: rgba(255,255,255,0.95);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.25);
}
header .inner{
	max-width: 1240px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .logo{
	font-size: 1.8rem;
	font-weight: bold;
	/*transform: rotate(0.05deg);*/
}
header #gnav{
	display: flex;
	align-items: center;
	font-family: 'Oswald', sans-serif;
}
header #gnav li{
	/*transform: rotate(0.05deg);*/
	margin-right: 20px;
	font-weight: 400;
	font-size: 1.5rem;
}
header #gnav li:last-child{
	margin-right: 0;
}

/* Footer
-----------------------------------*/
footer{
	background: #222;
	padding: 20px 0;
}
footer .copyright{
	text-align: center;
	font-size: 1.2rem;
	color: #FFF;
}

/* Main
-----------------------------------*/
#main{
	background: url(../images/img_main.png) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 770px;
	display: flex;
	align-items: center;
	text-align: center;
}
#main h1{
	width: 100%;
	line-height: 180%;
	padding: 0 20px;
	text-align: center;
	font-size: 3rem;
	font-weight: bold;
	color: #FFF;
	margin-bottom: 30px;
	font-family: 'M PLUS 1p', sans-serif;
	text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
}

/* Service
-----------------------------------*/
#service{
	padding: 100px 0;
	background: #000;
	color: #FFF;
}
#service h2{
	font-size: 2.8rem;
	margin-bottom: 20px;
	line-height: 140%;
	text-align: center;
}
#service h2 span{
	display: block;
	font-size: 1.4rem;
	font-family: 'Oswald', sans-serif;
	line-height: 140%;
}
#service .txt{
	font-size: 1.5rem;
	line-height: 220%;
	text-align: center;
	transform: rotate(0.03deg);
}

/* Company
-----------------------------------*/
#company{
	padding: 100px 0 0 0;
	background: #FFF;
}
#company h2{
	font-size: 2.8rem;
	margin-bottom: 20px;
	line-height: 140%;
	text-align: center;
}
#company h2 span{
	display: block;
	font-size: 1.4rem;
	font-family: 'Oswald', sans-serif;
	line-height: 140%;
	color: #888;
}
#company table{
	width: 100%;
	margin-bottom: 80px;
}
#company table th,
#company table td{
	border: 1px solid #ccc;
	padding: 20px;
	vertical-align: middle;
	line-height: 180%;
	font-weight: 400;
	text-align: left;
	font-size: 1.5rem;
}
#company table th{
	width: 230px;
	background: #ececec;
}
#company table td ol{
	list-style-type: decimal;
	list-style-position: inside;
}
#company table td ol li{
	padding-left: 1em;
	text-indent: -1em;
}
#company #map iframe{
	height: 450px;
}

/* 1024px以下の場合 */
@media screen and (max-width: 1024px) {
	/* Common
	-----------------------------------*/
	.pc{display: none;}
	.sp{display: block;}

	/* Header
	-----------------------------------*/
	header{
		padding: 15px 0;
	}
	header .logo{
		font-size: 1.6rem;
	}
	header #gnav li{
		margin-right: 15px;
		font-size: 1.4rem;
	}

	/* Footer
	-----------------------------------*/
	footer{
		padding: 15px 0;
	}
	footer .copyright{
		font-size: 1.1rem;
	}

	/* Main
	-----------------------------------*/
	#main{
		height: 636px;
	}
	#main h1{
		margin-bottom: 0;
		font-size: 2rem;
	}

	/* Service
	-----------------------------------*/
	#service{
		padding: 60px 0;
	}
	#service h2{
		font-size: 2rem;
	}
	#service h2 span{
		font-size: 1.2rem;
	}
	#service .txt{
		line-height: 200%;
		font-size: 1.4rem;
		text-align: left;
	}
	#service .txt br{
		display: none;
	}

	/* Company
	-----------------------------------*/
	#company{
		padding: 60px 0 0 0;
	}
	#company h2{
		font-size: 2rem;
	}
	#company h2 span{
		font-size: 1.2rem;
	}
	#company table{
		margin-bottom: 60px;
	}
	#company table th,
	#company table td{
		display: block;
		font-size: 1.4rem;
		margin-top: -1px;
	}
	#company table th{
		width: auto;
		padding: 15px 20px;
		border-bottom: none;
	}
	#company table td ol li{
		line-height: 150%;
		margin-bottom: 10px;
	}
	#company table td ol li:last-child{
		margin-bottom: 0;
	}
	#company #map iframe{
		height: 300px;
	}


}