@charset "UTF-8";
/*全体に関するスタイル*/
*{
	margin: 0px;
	padding: 0px;
}

body{
	font-family: 'Helvetica Neue', Helvetica, Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	background-color: #ffffff;
	list-style: none;
	font-size: 18px;
	width: 100%;
}

a{
	text-decoration: none;}

li{
	list-style: none;
}

mark{
	background:linear-gradient(transparent 40%, #ffe779 30%);
	font-weight: bold;
}

/*画像の幅を親要素に合わせる*/
img{
	width: 100%;
	height:100%;
}

/*動画のスタイル*/
video{
	width:100%;
}

/*変数指定*/
:root{
	--mainColor:#1A99E7;
	--buttonColor:#979797;
}


/*ヘッダーのスタイル*/
header{
	position:fixed;
	left:0px;
	top:0px;
	height:60px;
	width:100%;
	background-color: #ffffff;
	z-index: 10;
	background: rgba(255,255,255,0.97);
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .1); 
}

.logo{
	height: 60px;
	width:253px;
}

/*レスポンシブのため非表示*/
#navInput{
	display:none;
}
/*レスポンシブのため非表示*/
.checker{
	display:none;
}

/*ナビのスタイル*/
#onMenulabel{
	display:none;
}

nav{
	position:fixed;
	top: 60px;
	left: 0;
	bottom: 0;
	padding-bottom: 30px;
	overflow-y: auto;
	width:16%;
	height:auto;
	margin-left: 10px;
	margin-top: 20px;
	min-width: 230px;
}

.navPanel{
	width: calc(100% - 28px);
	height:45px;
	border: 2px solid  var(--mainColor);
	border-left:8px solid var(--mainColor);
	margin-bottom: 10px;
	padding-left: 10px;
	color: #000000;
	line-height: 45px;
	font-size: 18px;
}
.nowNavPanel{
	width: calc(100% - 28px);
	height:45px;
	margin-left: 7px;
	border: 2px solid  var(--mainColor);
	border-left:8px solid var(--mainColor);
	margin-bottom: 10px;
	padding-left: 10px;
	color: #000000;
	line-height: 45px;
	font-size: 18px;
}
.languagePanel{
	width: calc(100% - 28px);
	height:45px;
	border: 2px solid  #FF5252;
	border-left:8px solid #FF5252;
	margin-bottom: 20px;
	padding-left: 10px;
	color: #000000;
	line-height: 45px;
	font-size: 18px;
	font-weight: bold;
}
.navPanel:hover{
	color: #ffffff;
	background-color: var(--mainColor);
}
.nowNavPanel:hover{
	color: #ffffff;
	background-color: var(--mainColor);
}
.languagePanel:hover{
	background-color: #FF5252;
	color: #ffffff;
}
.insideMenu li{
	display: none;
}

/*ページトップバッカー*/
#topBacker{
	position: fixed;
	right:5px;
	bottom:20px;
	width: 40px;
	height: 40px;
	z-index: 11;
}
/*へッダーナビのスタイル*/
.headerNav{
	position: fixed;
	top:5px;
	right:10px;
	z-index: 12;
}
.headerNav li{
	float: left;
	padding-right: 10px;
	width:auto;
	height:50px;
	line-height: 50px;
	font-size: 18px;
	border-left: 1px solid #a1a1a1;
}
.headerNavPanel{
	padding-left: 10px;
	color: #000000;
}
.nowHeaderNavPanel{
	padding-left: 10px;
	font-weight: bold;
	color: var(--mainColor);
}
.headerNavPanel:hover{
	opacity: 0.5;
}
.nowHeaderNavPanel:hover{
	opacity: 0.5;
}


/*記事本文のスタイル*/
article{
	width:calc(84% - 120px);
	position:absolute;
	left:calc(16% + 20px);
	top:0px;
	margin-left:100px;
	z-index: 5;
}

section{
	width:calc(90% - 10px);
	padding-top:40px;
	padding-bottom: 40px;
}

#pageTop{
	padding-top: 75px;
	padding-bottom: 0px;
}
.location{
	margin-bottom: 20px;
}

.topLess{
	padding-top:30px;
}


.articleHeading{
	padding-left: 10px;
	margin-bottom:5px;
	background-color: var(--mainColor);
	font-size: 30px;
	color:#ffffff;
}

h2{
	padding-left: 10px;
	margin-bottom:10px;
	border-bottom: 5px solid var(--mainColor);
	font-size: 30px;
	color:#000000;
}

h3{
	width:100%;
	margin-left: auto;
	margin-right: auto;
	margin-top:30px;
	padding-left: 10px;
	margin-bottom:10px;
	border-left: 5px solid var(--mainColor);
	font-size: 25px;
	color:#000000;
	font-weight: bold;
}

p{
	width: 100%;
	padding-left:5px;
}

.content{
	border-bottom: 1px solid #e1e1e1;
}

.yagiExplainImg{
	width: 80%;/*横：縦＝５：２以下の画像が望ましい*/
	height:auto;
	margin: auto;
}


/*進退ボタン*/
.returnAndProceed{
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	height: 200px;
	position: relative;
}

.returnButton{
	position:absolute;
	top:0px;
	left:15px;
	width: 120px;
	height:40px;
	border:2px solid var(--buttonColor);
	border-left:10px solid var(--buttonColor);
	padding-left: 8px;
	margin-bottom: 5px;
	color: #000000;
	line-height: 40px;
	font-size: 18px;
	margin-top: 20px;
}

.returnButton:hover{
	background-color: var(--buttonColor);
	color: #ffffff;
}

.proceedButton{
	position:absolute;
	top:0px;
	right:15px;
	width: 120px;
	height:40px;
	border:2px solid var(--buttonColor);
	border-right:10px solid var(--buttonColor);
	padding-right: 8px;
	margin-bottom: 5px;
	color: #000000;
	text-align: right;
	line-height: 40px;
	font-size: 18px;
	margin-top: 20px;
}

.proceedButton:hover{
	background-color: var(--buttonColor);
	color: #ffffff;
}


footer{
	width:100%;
	height:15px;
	position: fixed;
	background-color: #000000;
	bottom:0px;
	font-size: 10px;
	z-index: 17;
	text-align: center;
	color: #ffffff;
}


/*以下画面幅1000px以下のレスポンシブデザインに関する記述*/
@media screen and (max-width:1000px){
	header{
		
	}
	#navDrawer {
		position: relative;
	}
	
	
	/*メニュー開きアイコン*/
	.checker {
		display: block;
		position:fixed;
		top:0px;
		right:15px;
		width: auto;
		height:40px;
		padding: 4px;
		padding-bottom: 1px;
		border-bottom:3px solid var(--mainColor);
		padding-left: 5px;
		margin-bottom: 1px;
		color: #000000;
		font-size: 25px;
		font-weight: bold;
		line-height: 50px;
	}
	
	
	/*コンテンツ隠し兼メニューとじ薄黒カバー*/
	#backHider {
		display: none;
		position: fixed;
		z-index: 15;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: black;
		opacity: 0;
		transition: .3s ease-in-out;
	}

	/*チェックが入ったらbackHider表示*/
	#navInput:checked ~ #backHider {
		display: block;
		opacity: .5
	}
	
	/*チェックが入ったらnav表示*/
	#navInput:checked ~ nav {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);/*中身を表示*/
		box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}

	/*メニュー内容*/
	nav {
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 20;
		width: 60%;
		max-width: 350px;
		height: 100%;
		background: #fff;
		transition: .3s ease-in-out;
		-webkit-transform: translateX(-105%);
		transform: translateX(-105%);
		margin-left: 0px;
		margin-top: 0px;
	}
	
	
	/*メニュー内のメニューとじボタン*/
	#onMenulabel{
		display:block;
		width: calc(100% - 16px);
		height:50px;
		border:2px solid #FF5252;
		border-left:8px solid #FF5252;
		padding-left: 5px;
		color: #000000;
		font-size: 18px;
		font-weight: bold;
		line-height: 50px;
		margin-top:20px;
		margin-bottom: 15px;
	}
	
	#onMenulabel:hover{
		background-color: #FF5252;
		color: #ffffff;
	}
	
	.navPanel{
		width: calc(100% - 16px);
		height:50px;
		border:2px solid var(--mainColor);
		border-left:8px solid var(--mainColor);
		padding-left: 5px;
		margin-bottom: 5px;
		color: #000000;
		font-size: 18px;
		line-height: 50px;
	}
	.nowNavPanel{
		width: calc(100% - 16px);
		height:50px;
		border:2px solid var(--mainColor);
		border-left:8px solid var(--mainColor);
		padding-left: 5px;
		margin-bottom: 5px;
		margin-left: 0px;
		color: #000000;
		font-size: 18px;
		line-height: 50px;
	}
	.languagePanel{
		width: calc(100% - 16px);
		height:50px;
		border:2px solid #FF5252;
		border-left:8px solid #FF5252;
		padding-left: 5px;
		margin-bottom: 15px;
		margin-left: 0px;
		color: #000000;
		font-size: 18px;
		line-height: 50px;
	}
	.navPanel:hover{
		color: #ffffff;
		background-color: var(--mainColor);
	}
	.nowNavPanel:hover{
		color: #ffffff;
		background-color: var(--mainColor);
	}
	.languagePanel:hover{
		background-color: #FF5252;
		color: #ffffff;
	}
	.insideMenu li{
		display: block;
		width: calc(100% - 20px);
		height:35px;
		margin-bottom: 1px;
		color: #000000;
		padding-left: 10px;
		padding-right: 5px;
		padding-top: 7px;
		padding-bottom: 7px;
		font-size: 16px;
		font-weight: bold;
		border: 1px solid var(--mainColor);
		border-left: 3px solid var(--mainColor);
		border-top: none;
		line-height: 35px;
	}
	.insideMenu li:hover{
		background-color: var(--mainColor);
		opacity: inherit;
		color: #ffffff;
	}
	
	.headerNav{
		display: none;
	}
	
	nav a:last-child li{
		margin-bottom: 20px;
	}


	article{
		margin-left:0px;
		width:100%;
		position:absolute;
		left:0px;
		top:0px;
		z-index: 5;
	}
	
	section{
		margin: auto;
		width:90%;
		padding-top:60px;
	}
	
	.yagiExplainImg{
		width: 100%;
		
	}
	
	
	.returnAndProceed{
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		height: 200px;
		position: relative;
	}

}
