@charset "utf-8";


/***************************************************************************************************************************
　■全デバイス共通設定
***************************************************************************************************************************/

/**** 初期設定 ****/

* {
	margin: 0;
	padding: 0;
	list-style-type:none;
	list-style-image:none;
	/*font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";*/
	font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro" , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
	color: #232828;
	text-align: center;
	-webkit-text-size-adjust: 100%;/*スマホの文字倍率自動調整のオフ*/
	width: 100%;
	max-width:1980px;
	margin: 0 auto;
}

p {
	line-height: 1.6em;
	color: #232828;
	font-size: 16px;
	text-align: left;
	margin-bottom: 0.7em;
}
@media screen and (max-width: 415px) {
p {
	line-height: 1.4em;
	color: #232828;
	font-size: 14px;
	text-align: left;
	margin-bottom: 0.7em;
}
}
td, tr {
	color: #232828;
	font-size: 16px;
}

li, dt, dd {
	color: #232828;
	font-size: 16px;
}

@media screen and (max-width: 415px) {
td, tr, li, dt, dd {
	font-size: 14px;
}
}


/**** リンクの色設定 ****/
a:link {
	color: #03797C;
	text-decoration: underline;
}

a:visited {
	color: #03797C;
	text-decoration: underline;
}

	
a:hover {
	color: #03797C;
	text-decoration: none;
	/*position:relative;
	top:1px;
	left:1px;*/
}

a:active {
	color: #03797C;
	text-decoration: none;
	}
	
a img {
	border: 0;
}


/*clearfix(clear divの代わり)*/
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
	.clearfix {
		zoom: 1;/*for IE6/7*/
	}

.float_l {
	float: left;
}

.clear {
	clear: both;
}
	
/**** ダイレクト指定 ****/
.ta_rig {
	text-align: right;
}
	.ta_cen {
		text-align: center;
	}
	.ta_lef {
		text-align: left;
	}
	
/**** TELリンクを消す ****/
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}


/***************************************************************************************************************************
　■全サイズ共通設定
***************************************************************************************************************************/

#color_block {
	width: 100%;
	margin: 0 auto;
	background-color: #EEEEEE;
}

#header_link {
	width: 100%;
	margin: 0px auto 0 auto;
	position: relative;	
	z-index: 10;
}
@media screen and (min-width: 1250px) {	
#header_link {
	width: 100%;
	margin: 0px auto 0 auto;
	position: fixed;
	z-index: 100;
}
}
	#header_link ul {
		position: absolute;
		top: 0;
		right: 2%;
	}
		#header_link ul li {
			float: right;
			font-size: 17px;
		}		
			#header_link ul li a {
				color: #335933;
				background-color: #CDD63E;
				text-decoration: none;
				padding: 0 2em;
				display: table-cell;
				vertical-align: middle;
				height: 50px;/*メインメニューと合体するように*/
			}
@media screen and (max-width: 640px) {
	#header_link ul {
		right: 0%;
	}
		#header_link ul li {
			float: right;
			font-size: 14px;
		}		
			#header_link ul li a {
				color: #335933;
				background-color: #CDD63E;
				text-decoration: none;
				padding: 0 0.5;
				display: table-cell;
				vertical-align: middle;
				height: 30px;/*メインメニューと合体するように*/
			}
}


#title_box {
	max-width: 1366px;
	width: 100%;
	margin: 0 auto;
}
	#title_box #title_img img {
		width: 100%;
		height: auto;
		display: block;
	}

		
#mainlink {
	width: 100%;
	background-color: #335933;
	overflow:hidden;
	/*	width: 100%;max-width: 900px;としたいが、JQfixed_menuでfixedが付与されたときに、画面左上からの絶対配置になるため100％にし、↓ulを中央配置に変更した*/
}

	#mainlink ul {
		max-width: 900px;
		position:relative;
		left: 50%;
		float: left;
	}

	#mainlink li {/*ボタンを横並びに*/
		position:relative;
		left: -50%;
		float: left;
		margin: 0 16px;
		line-height: 1.2em;
	}
		#mainlink li.home {
		}


	#mainlink li a {
		font-size: 16px;
		color: #FFFFFF;
		letter-spacing: 0.05em;
		text-decoration: none;
		display: table-cell;
		vertical-align: middle;
		height:50px;/*ここを変えるとjquery_fixed_menu.jsに影響します*/
	}
		#mainlink li.home a {
			background: url(../img/parts/btn_home.png) 50% 45% no-repeat;
			width: 20px;
			text-indent: -9999px;
		}
		
		#mainlink a:focus {
			outline: none;
		}
	
	/*2行改行をオフ*/
	br.mainlink_br_2row {
		display: none;
	}
@media screen and (max-width: 1000px) and (min-width: 741px) {
	/*横に余裕があるので改行を全て消す*/
	#mainlink br {
		display: none;
	}
	/*代わりに/を入れて読みやすく*/
	#mainlink li .slash:after {
		content: "/";
	}
	#mainlink li .space:after {
		content: " ";
	}
	/*2行改行をオン*/
	#mainlink br.mainlink_br_2row {
		display: block;
	}
	
	#mainlink {
		background: url(../img/parts/mainlink_back_2row.jpg) no-repeat center center;
	}

	#mainlink li {/*ボタンを横並びに*/
		margin: 0 20px;
	}
	
	#mainlink li a {
		font-size: 16px;
		letter-spacing: 0em;
	}
	
}
@media screen and (max-width: 740px) and (min-width: 611px) {
	/*横に余裕があるので改行を全て消す*/
	#mainlink br {
		display: none;
	}
	/*代わりに/を入れて読みやすく*/
	#mainlink li .slash:after {
		content: "/";
	}
	#mainlink li .space:after {
		content: " ";
	}
	/*2行改行をオン*/
	#mainlink br.mainlink_br_2row {
		display: block;
	}
	
	#mainlink {
		background: url(../img/parts/mainlink_back_2row.jpg) no-repeat center center;
	}

	#mainlink li {/*ボタンを横並びに*/
		margin: 0 15px;
	}
	
	#mainlink li a {
		font-size: 15px;
		letter-spacing: 0em;
	}
	
}
@media screen and (max-width: 610px) and (min-width: 416px) {
	/*2行改行をオン*/
	#mainlink br.mainlink_br_2row {
		display: block;
	}
	
	#mainlink {
		background: url(../img/parts/mainlink_back_2row.jpg) no-repeat center center;
	}

	#mainlink li {/*ボタンを横並びに*/
		margin: 0 12px;
		line-height: 1.0em;
	}
	
	#mainlink li a {
		font-size: 14px;
		letter-spacing: 0em;
	}
	
}
@media screen and (max-width: 415px) {
	/*横に余裕があるので改行を全て消す*/
	#mainlink br {
		display: none;
	}
	/*代わりに/を入れて読みやすく*/
	#mainlink li .slash:after {
		content: "/";
	}
	#mainlink li .space:after {
		content: " ";
	}
	#mainlink ul {
		width: 100%;
		position: static;
		left: 0;
		float: none;
	}

	#mainlink li {/*ボタンを横並びに*/
		position: static;
		left: 0;
		float: left;
		margin: 0 0px;
		line-height: 1.2em;
		border: 1px solid #396539;
		width: 50%;
		text-align: center;
		box-sizing: border-box;
	}
		#mainlink li.home {
			width: 100%;
		}

	#mainlink li a {
		font-size: 14px;
		color: #FFFFFF;
		letter-spacing: 0.05em;
		text-decoration: none;
		display: block;
		height:auto;/*ここを変えるとjquery_fixed_menu.jsに影響します*/
		text-align: center;
		padding:1em 0;
	}
			#mainlink li.home a {
				width: auto;
				text-indent: -9999px;
			}
			#mainlink li.jta a, #mainlink li.uvs a {
				letter-spacing: -0.05em;
			}
	
	/*2行改行をオフ*/
	br.mainlink_br_2row {
		display: none;
	}
	
}

.contents_basic {/*900px表示のベーシックなボックス*/
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto; 
}
	.contents_basic p {
		margin-left: 20px;
		margin-right: 10px;
	}
@media screen and (max-width: 899px) {
	.contents_basic img {
	}
}
@media screen and (max-width: 640px) {
	.contents_basic p {
		margin-left: 10px;
	}
}

h2 {
	text-align: left;
	border-left: 6px solid #CDD63E;
	padding-left: 8px;
	color: #335933;
	font-weight: normal;
	font-size: 24px;
	margin-bottom: 0.5em;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 940px) {
h2 {
	margin-left: 10px;
}
}
@media screen and (max-width: 640px) {
h2 {
	font-size: 22px;
}
}

h3 {
	text-align: left;
	font-size: 19px;
	margin-left: 20px;
	margin-right: 10px;
}

.marginT_basic {
	margin-top: 80px;
}
.marginT_narrow {
	margin-top: 25px;
}
.marginT_wide {
	margin-top: 100px;
}
.marginT_wideL {
	margin-top: 130px;
}
.marginL_basic {
	margin-left: 20px;
}
			
p.more {
	text-align: center;
	background-color: #335933;
	padding: 6px 0;
	
}
	p.more a {
		color: #FFFFFF;
		text-decoration: none;
		display: block;
		text-shadow: 1px 1px 1px #333333;
		letter-spacing: 0.1em;
	}

.tyusyaku1 {
	font-size: 80%;
	color:rgba(229,123,116,1.00);
}

#pagetop_btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 150;
	display: none;
}
	#pagetop_btn :hover {
		position:relative;
		top:0;
		left:0;
	}
@media screen and (max-width: 415px) {
#pagetop_btn {
	right: 0px;
	bottom: 0px;
}
	#pagetop_btn img {
		width: 75%;
		height: auto;
	}
}

#footer {
	margin: 80px auto 40px auto;
	max-width: 900px;
}

	#footer_logo p {
		padding-bottom: 10px;
		text-align: center;
		border-bottom: 1px solid #232828;
		max-width: 300px;
		margin: 0 auto 10px auto;
		letter-spacing: 0.2em;
	}
	
	#footer_sns img {
		width: 50px;
		height: auto;
	}

	#footer p.copyright {
		text-align: center;
		font-size: 9px;
		letter-spacing: 0.3em;
		margin-top: 30px;
	}
	
@media screen and (min-width: 641px) {
	br.footer_br {
		display: none;
	}
}




@media screen and (min-width: 919px) {
}

@media screen and (max-width: 918px) and (min-width: 641px) {
}


@media screen and (max-width: 640px) and (min-width: 416px) {
}

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