@charset "utf-8";
/**********************************************************************
common CSS
design by Naoki Kaga
**********************************************************************/
@import url(notosansjp.css);

* {
	box-sizing: border-box;
}
*:before,
*:after {
	box-sizing: inherit;
}





/* Base Style
--------------------------------------------------------*/
html {
	font-size: 62.5%;
	font-family: Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
}
body {
	font-family: 'Roboto', sans-serif;
	font-size: 1.4rem;
	line-height: 1.42857143;
	color: #313131;
	background-color: #fff;
}
a {
	color: #0068b7;
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
a:hover {
	color: #f39800;
}
a.link:before {
	content: url(../img/target_blank.svg);
	position: relative;
	top:3px;
	margin-right: 5px;
	display: inline-block;
}
.inner {
	max-width: 1280px;
	width:100%;
	margin: 0 auto;
}
.w960 {
	max-width: 960px;
	margin: 0 auto;
	width:100%;
}
.linkBtn {
	text-align: center;
	width: 100%;
}
.linkBtn a {
	display: inline-block;
	color: #f39800;
	height: 64px;
	border: 1px solid #f39800;
	border-radius: 32px;
	padding: 16px 32px;
	margin: 32px 0;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	font-weight: bold;
	font-size: 2rem;
}
.linkBtn a:hover {
	background: #f39800;
	color: #fff;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Noto Sans JP';
}
em {
	font-weight: bold;
}




/* header：ヘッダー
--------------------------------------------------------*/
#header {
	width: 100%;
}
#header a,
#header {
	text-decoration: none;
}
#header .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}
#header .logo {
	font-size: 14px;
	font-weight: bold;
}
#header .logo > span {
	display: inline-block;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #313131;
	padding-top: 16px;
}
#header.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	background: rgba(255, 255, 255, .9);
	z-index: 1000;
	padding-bottom: 8px;
}




/* nav：グロバールナビゲーション
--------------------------------------------------------*/
#gNav ul {
	list-style: none;
	font-size: 0.9em;
	padding-top: 16px;
}
#gNav ul li {
	display: inline-block;
	margin: 0 5px;
	text-align: center;
	border-bottom: 2px solid rgba(255,255,255,0);
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
#gNav ul li:hover {
	border-bottom: 2px solid #f39800;
}
#gNav ul li.current {
	border-bottom: 2px solid #f39800;
}
#gNav ul li a {
	display: inline-block;
	padding: 0 5px;
}
#navMenuBtn {
	display: none;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}
#navMenuBtn div {
	position: relative;
}
#navMenuBtn span {
	display: block;
	position: absolute;
	height: 4px;
	border-radius: 2px;
	width: 100%;
	background: #666;
	left: 0;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
#navMenuBtn span:nth-child(1) {
	top: 0;
}
#navMenuBtn span:nth-child(2) {
	top: 11px;
}
#navMenuBtn span:nth-child(3) {
	top: 22px;
}



#pageTop {
	width: 52px;
	height: 52px;
	position: fixed;
	z-index: 20;
	right: 20px;
	bottom: -56px;
	opacity: 0.8;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
#pageTop.fixed {
	bottom: 56px;
}
#pageTop:hover {
	opacity: 1;
}

/* footer：フッター
--------------------------------------------------------*/
#footer {
	border-top: 1px solid #313131;
	background: #eee;
}
#footer .inner {
	padding: 32px 0;
	text-align: center;
}
#footer .inner p {
	display: inline-block;
	max-width: 204px;
}
#footer .inner p:nth-child(2) {
	margin-left: 32px;
	padding-left: 32px;
	border-left: 1px solid #313131;
	max-width: 582px;
}
#copyright {
	background: #313131;
	color: #fff;
	width: 100%;
	text-align: center;
	padding: 5px 0;
}





/* article：各コンテンツ
--------------------------------------------------------*/
article {
	margin-bottom: 160px;
}
h2{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 24px 40px;
	background: url(../img/h2_bg.png) no-repeat left top;
	color: #fff;
	font-size: 3.2rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.2em;
	margin-bottom: 120px;
}
h3{
	color: #0068b7;
	font-size: 2.8rem;
	text-align: center;
	font-weight: bold;
	position: relative;
}
h3:after{
	content: "";
	width: 50px;
	height: 20px;
	background: url(../img/h3_arrow.png) no-repeat center;
	display: block;
	margin: 32px auto;
}
article > .box {
	margin: 0 40px 160px;
}



/* Page Base Style
--------------------------------------------------------*/
#page h2{
	background: url(../img/page_h2_bg.png) no-repeat;
	background-position: 50%;
	background-size: cover;
	margin-top: 60px;
	min-height: 178px;
	color: #313131;
	display: block;
	padding-top: 64px;
	padding-bottom: 30px;
	margin-bottom: 20px;
}
#page h2 > span{
	font-size: 0.8em;
}
.breadcrumb{
	margin: 0 40px 50px; 
}







/* header font-size：ヘッダーフォントサイズの調整
--------------------------------------------------------*/
@media screen and (max-width: 1200px) {
	#header .logo {
		font-size: 1.2vw;
	}
	#gNav ul {
		font-size: 1.1vw;
	}
}


/* mobile：レスポンシブ
--------------------------------------------------------*/
@media screen and (max-width: 960px) {
/* Base Style
--------------------------------------------------------*/
	body {
		font-size: 1.4rem;
	}
	h2{
		font-size: 2.4rem;
		margin-bottom: 60px;
		padding: 16px 10px;
	}
	h3{
		font-size: 2.0rem;
	}	

/* header
--------------------------------------------------------*/
	#header,
	.inner {
		width: 100%;
		padding: 0;
	}
	#header .inner{
		padding: 0;
	}
	#header {
		top: 0;
		position: fixed;
		margin-top: 0;
		z-index: 1000;
	}
	/* Fixed reset */
	#header.fixed {
		padding-top: 0;
		padding-bottom: 0;
		background: transparent;
	}
	#mobileHeader {
		background: rgba(255,255,255,.9);
		width: 100%;
		height: 56px;
		z-index: 999;
		position: relative;
	}
	#mobileHeader .logo > span {
		display: none;
	}
	#header.fixed .logo,
	#header .logo {
		position: absolute;
		left: 13px;
		top: 6px;
	}


/* #gNav
--------------------------------------------------------*/
	#gNav {
		position: absolute;
		left: 0;
		top:100%;
		background: rgba(0, 0, 0, .8);
		width: 100%;
		text-align: center;
		padding: 0;
		-webkit-transition: .2s ease-in-out;
		-moz-transition: .2s ease-in-out;
		transition: .2s ease-in-out;
		transform-origin: left top;
		-moz-transform: translateY(-125%);
		-webkit-transform: translateY(-125%);
		transform: translateY(-125%);
	}
	#gNav ul {
		font-size: 14px;
		padding-top: 0;
	}
	#gNav ul li {
		display: block;
		width: 100%;
		margin: 0;
	}
	#header #gNav ul li a,
	#header.fixed #gNav ul li a {
		display: block;
		color: #fff;
		padding: 10px 0;
	}
	#header #gNav ul li.current a {
		background: rgba(255,255,255,.2);
	}
	#header #gNav ul li a:hover {
		background: rgba(255,255,255,.5);
	}
	#navMenuBtn {
		display: block;
	}
	.open #navMenuBtn span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.open #navMenuBtn span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #navMenuBtn span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.open #gNav {
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	#pageTop {
		width: 44px;
		height: 44px;
		right: 10px;
		bottom: -44px;
		opacity: 0.8;
	}
	#pageTop.fixed {
		bottom: 80px;
	}

/* フッター
--------------------------------------------------------*/
	#footer .inner {
		width: 100%;
		padding: 32px 10px;
	}
	#footer .inner p {
		max-width: 100%;
		width: 100%;
		margin-bottom: 32px;
	}
	#footer .inner p:nth-child(2) {
		margin-left: 0;
		margin-bottom: 0;
		padding-left: 0;
		border-left: none;
	}
	#copyright {
		font-size: 0.8em;
	}


/* 各コンテンツ
--------------------------------------------------------*/
	article {
		 margin-bottom: 80px;
	}
	article > .box {
	 margin: 0 10px 100px;
	}
	.breadcrumb{
		margin: 0 10px 60px; 
	}

}