@charset "UTF-8";
@import url(./reset.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
* {
	box-sizing: border-box;
}

html {
	overflow: auto;
}
body {
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: normal;
	font-size: 14px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	color: #000;
	background-color: #fff;
	letter-spacing: 0em;
}

img {
	border: none;
	vertical-align: bottom;
	height: auto;
}



.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }
.mb4em { margin-bottom: 4em !important; }
.mb5em { margin-bottom: 5em !important; }
.mb6em { margin-bottom: 6em !important; }
.pt0 { padding-top: 0px !important; }
.pb0 { padding-bottom: 0px !important; }
.pt60 { padding-top: 60px !important; }
.pb60 { padding-bottom: 60px !important; }
.center { text-align: center; }
.alignright { text-align: right; }
.aligncenter { text-align: center; }
.bold { font-weight: 900; }
.nowrap { white-space: nowrap; }

@media screen and (max-width: 767px){
	.pcOnly{
		display: none;
	}
}

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

#wrapper {
	width: 100%;
	position: relative;
	margin: 0 auto;
}

@media screen and (max-width: 767px){
	
	#wrapper {
		min-width: 100%;
	}
	
}

/*------ヘッダーメニュー-----*/

header {
	width: 100%;
	background-color: #fff;
	position: absolute;
	z-index: 998;
	top: 0;
	left: 0;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 1280px;
}
header.fixed {
	position: fixed;
	top: -60px;
	height: 60px;
	z-index: 9999;
	min-width: auto;
}
header .inner {
	width: 100%;
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header a {
	text-decoration: none;
	transition: opacity 0.3s ease;
}
header a:hover {
	opacity: 0.6;
}
header .logo img {
	width: 174px;
}
header .g_navi {
	display: flex;
	align-items: center;
	margin-top: -12px;
}
header.fixed .g_navi {
	margin-top: 0px;
}
header ul {
	display: flex;
	margin-right: 30px;
}
header ul::after {
	content: '';
	display: inline-block;
	height: 40px;
	width: 1px;
	background-color: #42aace;
}
header li {
	margin-right: 30px;
	display: flex;
	align-items: center;
}
header li a {
	height: 30px;
	width: 124px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border-radius: 6px;
	letter-spacing: 0.05em;
}
header li a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	width: 16px;
	height: 18px;
}

header .btn_home {
	border: 1px solid #005bab;
	color: #005bab;
    text-align: center;
}

header .btn_home::before {
	background: url("../img/icon_home.png") no-repeat left top;
	background-size: cover;
}

header .btn_contact {
	border: 1px solid #005bab;
	color: #005bab;
}
header .btn_contact::before {
	background: url("../img/icon_contact.png") no-repeat left top;
	background-size: cover;
}
header .btn_document {
	background-color: #005bab;
	color: #fff;
}
header .btn_document::before {
	background: url("../img/icon_docment.png") no-repeat left top;
	background-size: cover;
}
.btn_en {
	color: #42aace;
	font-size: 16px;
	height: 30px;
	display: flex;
	align-items: center;
}

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

	header {
		height: 70px;
		display: block;
		min-width: auto;
	}
	header.fixed {
		top: -70px;
		height: 70px;
	}
	header .inner {
		width: auto;
		padding: 0 15px 0 15px;
		height: 70px;
	}
	header .logo img {
		width: 120px;
	}
	header .g_navi {
		margin-top: 0;
	}
	header ul {
		margin-right: 15px;
		align-items: center;
	}
	header ul::after {
		height: 20px;
	}
	header li {
		margin-right: 10px;
	}
	header li:last-child {
		margin-right: 15px;
	}
	header li a {
		height: 46px;
		width: 64px;
		font-size: 8px;
		letter-spacing: 0em;
		flex-direction: column;
		align-items: center;
	}
	header li a::before {
		margin: 0 0 5px;
		width: 14px;
		height: 16px;
	}
	.btn_en {
		font-size: 14px;
		height: 46px;
	}
	
}



footer {
	background-color: #0071bc;
	color: #fff;
	position: relative;
	z-index: 0;
	min-width: 1280px;
}
footer::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	/*四角形を傾けます*/
	transform: skewY(-5deg);
	transform-origin: top left;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #0071bc;
}
footer .inner {
	width: 1280px;
	padding: 120px 80px 40px;
	margin: 0 auto;
}
footer .aboutus {
	width: 60%;
}
footer h2 {
	font-size: 30px;
	color: #fff;
	margin-bottom: 35px;
	font-weight: bold;
	position: relative;
	line-height: 1;
}
footer h2::after {
	content: 'About';
	display: inline-block;
	font-size: 80px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	left: 0;
	bottom: 5px;
	opacity: 0.24;
}
footer p {
	font-size: 13px;
	line-height: 1.8;
	margin-bottom: 1em;
}
footer .copyrights {
	margin-top: 80px;
	font-size: 10px;
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 40px;
}

footer ul {
	margin-top: 50px;
}
footer li {
	display: inline-block;
	margin-right: 35px;
	font-size: 14px;
}
footer li img {
	height: 20px;
	vertical-align: middle;
	transition: opacity 0.3s ease;
}
footer li img:hover {
	opacity: 0.6;
}
footer li a {
	color: #fff;
	text-decoration: underline;
}
footer li a:hover {
	text-decoration: none;
}

@media screen and (max-width: 767px){
	
	footer {
		min-width: auto;
	}
	footer .inner {
		width: auto;
		padding: 80px 40px 40px;
		max-width: 600px;
	}
	footer .aboutus {
		width: 100%;
	}
	footer h2 {
		font-size: 24px;
		margin-bottom: 35px;
	}
	footer h2::after {
		font-size: 60px;
	}
	footer p {
		font-size: 16px;
	}
	footer .copyrights {
		margin-top: 60px;
		padding-top: 40px;
	}
	
	footer ul {
		margin-top: 40px;
	}
	footer li {
		text-align: center;
		display: block;
		margin: 0 0 30px;
		font-size: 14px;
	}
	footer li img {
		height: 20px;
	}
}





/* アニメーション */

.fadeIn{
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeTrigger{
    opacity: 0;
}