@charset "utf-8";
/* CSS Document */
/*ヘッダー*/
.title1 {
	font-size: 150%;
	letter-spacing: 0.05em;
	line-height: 1.2;
	font-weight: bold;
}
a.tlink {
	color: #FFFFFF;
	text-decoration: none;
}
a.tlink:hover {
	color: #00FFFF;
	text-decoration: none;
    position: relative; 
	top: 1px;
	left: 1px;
}
header {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 25px;
	padding-top: 6px;
	padding-bottom:9px;
	position: fixed;
	z-index: 3;
	top: 0;
	left: 0;
	margin: 0;
	background-color: #05d43a;
	background-image: url(../logo/t4-1.png);
	background-repeat: repeat-x;
	border: 1px solid #228B22;
}
.mtitle {
	text-indent: 34px;
	order: 1;
	width: 95%;
	text-align: center;
}
.stitle {
	order: 2;
	width: 5%;
	min-width: 34px;
	text-align: right;
	margin-right: 15px;
}
#nav-drawer{
  position: relative;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 34px;
	height: 25px;
	vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 2px;/*線の太さ*/
	width: 34px;/*長さ*/
	border-radius: 3px;
	background: #FFFFFF;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -6px;
}
#nav-open span:after {
	bottom: -12px;
	content: "MENU";
	font-size: 0.6rem;
	text-align: center;
	line-height: 2;
	color: #FFFFFF;
	white-space: nowrap;
}
/*閉じる*/
#hclose {
	width:90%;
	font-size: 90%;
	display: inline-block;
	padding-bottom: 5px;
	padding-right: 15px;
	text-align: right;
	cursor: pointer;
	color: #0000FF;

}
#hclose:hover {
	color: #FF0000;
	text-decoration: none;
	position: relative; 
	top: 1px;
	left: 1px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 4;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
}
/*中身*/
#nav-content {
	padding: 10px;
	box-sizing: border-box;
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 5;/*最前面に*/
	width: 80%;/*左側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅（調整してください）*/
	height: 100%;
	background: #fff;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(105%);
	transform: translateX(105%);/*右に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: .5;
}
#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.hpadding {
	padding-top: 37px;
}
/*オーバーレイ広告用スペース*/
.cmpadding {
	padding-top: 50px;
}
/*オーバーレイ広告用スペース2*/
.cmpadding2 {
	padding-top: 100px;
}
/* ▼画面サイズ（横幅）が960px以上の場合に適用 */
@media screen and (min-width: 960px) {
.title1{
	font-size: 200%;
	line-height: 1;
}
header {
	position: static;
	width: auto;
	height: 25px;
	padding-top: 13px;
	padding-bottom:18px;
	background-image: url(../logo/t4-2.png);
	background-repeat: repeat-x;
}
.mtitle {
	text-indent: 0px;
}
.stitle {
	display: none;
}
.hpadding {
	padding-top: 0px;
}
/*オーバーレイ広告用スペース*/
.cmpadding {
	padding-top: 0px;
}
}
