@charset 'UTF-8';
/* ---------------------------------------------------------
デフォルトリセット
--------------------------------------------------------- */
* {
	word-break: break-all; 
	word-wrap: break-word;
}

html {
	font-size: 62.5%;
}

body {
	color: #333;
	font-size: 1.4rem;
	font-family: Meiryo, 'Hiragino Kaku Gothic ProN', Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 0;
	transform: translate3d(0, 0, 0); 

	line-break: strict;
}
@media only screen and (max-width: 699px) {
	body {
		font-size: 1.2rem;
	}
}

body, div {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	list-style-type: none;
	box-sizing: border-box;
}

img {
	vertical-align: bottom;
}

input, textarea {
	font-family: Meiryo, 'Hiragino Kaku Gothic ProN', Verdana, Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

li, dt, dd, p {
	line-height: 1.6;
}

/* mozilla向けスクロールバー強制表示
------------------------------------ */
html {
	overflow-y: scroll;
}

/* @font-face規則を使ってメイリオを定義してやるだけでメイリオも斜体
------------------------------------ */
@font-face {
	font-family: Meiryo;
	src: local('Meiryo'), local('メイリオ');
}

:root {
	font: italic Meiryo, sans-serif;
}

/* ---------------------------------------------------------
音声ブラウザ用ナビゲーション
--------------------------------------------------------- */
.naviHidden {
	display: inline;
	overflow: hidden; 
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	border-style: none;
}

/* ---------------------------------------------------------
テキストリンク
--------------------------------------------------------- */
a:link {
	color: #333;
	text-decoration: underline;
	vertical-align: baseline;
}

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

a:hover, a:active {
	color: #333;
	text-decoration: none;
}

/* ---------------------------------------------------------
レイアウトベース
--------------------------------------------------------- */
body {
	background: url(../img/bg_main_02.png) no-repeat 50% 65px, url(../img/bg_main.jpg) repeat 50% 0;
}

#contentWrap {
	margin: 6px auto 0;
	padding: 0;
}
@media only screen and (max-width: 699px) {
	#contentWrap {
		margin-top: 10px;
		padding: 0 15px;
	}
}

#contentWrapNoneSide {
	margin: 6px auto 0;
	padding: 0;
}
@media only screen and (max-width: 699px) {
	#contentWrapNoneSide {
		margin-top: 10px;
		padding: 0 15px;
	}
}

/* コンテンツ領域
------------------------------------ */

/* ローカルナビあり */
#contentWrap #content {
	/* setting */
	float: right;
}
@media only screen and (max-width: 699px) {
	#contentWrap #content {
		float: none;
	}
}

/* ローカルナビ */
#contentWrap #localNaviWrap {
	/* setting */
	float: left;
}
@media only screen and (max-width: 699px) {
	#contentWrap #localNaviWrap {
		float: none;
	}
}

/* ローカルナビなし */
#contentWrapNoneSide #content {
	/* setting */
	margin: 0 auto;
}

/* コンテンツ領域 */
#contentWrap .contentInner {
	margin: 23px 0 0;
}
@media only screen and (max-width: 699px) {
	#contentWrap .contentInner {
		margin: 20px 0 0;
	}
}

#contentWrapNoneSide .contentInner {
	margin: 23px 0 0;
}
@media only screen and (max-width: 699px) {
	#contentWrapNoneSide .contentInner {
		margin: 20px 0 0;
	}
}

/* ---------------------------------------------------------
ヘッダー
--------------------------------------------------------- */
#headerWrap {
	position: relative;
	z-index: 100;
	min-width: 940px;
	height: 85px;
	margin: 0 auto;
	padding: 0;
	border-top: 4px solid #06b849;
}
@media only screen and (max-width: 699px) {
	#headerWrap {
		width: 100%;
		min-width: 0;
		height: 60px;
		border-top: none;
		border-bottom: 1px solid #818282;
	}
}

#header {
	position: relative;
	width: 940px; 
	margin: 0 auto;
}
@media only screen and (max-width: 699px) {
	#header {
		width: 100%;
	}
}
#header .inner {
	position: relative;
}
@media only screen and (max-width: 699px) {
	#header .inner {
		display: none;
		position: absolute;
		top: 59px;
		left: 0;
		width: 100%;
		padding: 30px 15px 40px;
		background: rgba(207, 232, 216, 0.95);
	}
}
#header #spMenu.active + .inner {
	display: block;
}

/* サイトロゴ
------------------------------------ */
#logo {
	position: absolute;
	top: 11px;
	left: 6px;
	width: 322px;
}
@media only screen and (max-width: 699px) {
	#logo {
		top: 18px;
		left: 13px;
	}
}
#logo a {
	display: block; 

	transition: opacity 0.2s ease-in-out;
}
#logo a:hover {
	text-decoration: none; 
	opacity: 0.7;
}
@media only screen and (max-width: 699px) {
	#logo a {
		transition: none;
	}
	#logo a:hover {
		text-decoration: inherit; 
		opacity: 1;
	}
}
@media only screen and (max-width: 699px) {
	#logo a {
		display: inline-block;
	}
}
#logo img {
	width: 100%;
}
@media only screen and (max-width: 699px) {
	#logo img {
		width: 175px;
		height: auto;
		vertical-align: top;
	}
}

/* スマホメニュー
------------------------------------ */
#spMenu {
	display: none;
}
@media only screen and (max-width: 699px) {
	#spMenu {
		display: block;
		display: block;
		overflow: hidden;
		position: absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 0;
		margin: 0;
		padding: 0;
		padding-top: 60px;
		border: 0;
		border-radius: 0;
		background: none transparent;
		background: url(../img/spmenu.gif) no-repeat 50% 0;
		background-color: rgba(6, 184, 73, 0);
		background-size: 60px auto;
		color: inherit;
		font-size: inherit;
		line-height: 1.5;
		white-space: nowrap;
		vertical-align: middle;
		outline: none;
		-webkit-appearance: none;
		appearance: none;
		box-sizing: border-box;
		-moz-appearance: none;
		transition: background-color 0.2s ease-in-out;
	}
	#spMenu::-ms-clear {
		display: none;
	}
	#spMenu::-ms-reveal {
		display: none;
	}
	#spMenu::-ms-expand {
		display: none;
	}
	#spMenu.active {
		background-color: #06b849;
		background-position: 50% 100%;
	}
}

/* ヘッダーリンク
------------------------------------ */
#utilityMenu {
	position: absolute;
	top: 56px;
	right: 13px;
}
@media only screen and (max-width: 699px) {
	#utilityMenu {
		position: static;
	}
}
#utilityMenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
@media only screen and (max-width: 699px) {
	#utilityMenu ul {
		padding: 8px 0 0;
	}
}
#utilityMenu li {
	display: inline-block;
	margin: 0 0 0 30px;
	padding: 0 0 0 10px;
	background: url(../img/icons/ico_arrow.png) no-repeat 0 45%;
	background-size: 4px 6px;
	font-size: 1.1rem;
	line-height: 1.2;
	letter-spacing: -0.4em;
	list-style: none;
}
#utilityMenu li > * {
	letter-spacing: normal;
}
#utilityMenu li:before {
	display: none;
}
@media only screen and (max-width: 699px) {
	#utilityMenu li {
		display: block;
		margin: 7px 0 0;
		padding: 0 0 0 8px;
		background-size: 4px auto;
	}
}
#utilityMenu a {
	display: block;
	color: #333;
	color: #69554c;
	text-decoration: none; 
	letter-spacing: -0.07em;
	transition: color 0.2s ease-in-out;
}
@media only print, screen and (min-width: 700px) {
	#utilityMenu a:hover {
		color: #004eaa;
	}
}
@media only screen and (max-width: 699px) {
	#utilityMenu a {
		color: #333;
		letter-spacing: normal;
	}
}

/* ソーシャルリンク
------------------------------------ */

/* 文字サイズ変更
------------------------------------ */
#fontResizeBlock {
	position: absolute;
	top: 12px;
	right: 192px;
}
@media only screen and (max-width: 699px) {
	#fontResizeBlock {
		display: none;
		font-size: 0;
	}
}
#fontResizeBlock dl {
	display: flex;
	width: 140px; 
	margin: 0;
	align-items: center;
}
#fontResizeBlock dt, #fontResizeBlock dd {
	display: flex;
	align-items: center;
}
#fontResizeBlock dt {
	width: 69px;
	margin: 0 8px 0 0;
}
#fontResizeBlock dd {
	height: 20px;
	background: no-repeat 50% 50%;
	background-size: auto;
	text-align: center;
}
#fontResizeBlock dd:nth-of-type(1) {
	width: 20px;
	height: 20px;
	margin: 0 1px 0 0;
	background-image: url(../img/fontsize_01_cr.gif);
}
#fontResizeBlock dd:nth-of-type(2) {
	width: 20px;
	height: 20px;
	margin: 0 1px 0 0;
	background-image: url(../img/fontsize_02_cr.gif);
}
#fontResizeBlock dd:nth-of-type(3) {
	width: 20px;
	height: 20px;
	background-image: url(../img/fontsize_03_cr.gif);
}
#fontResizeBlock dd img {
	cursor: pointer; 

	transition: opacity 0.2s ease-in-out;
}
#fontResizeBlock dd img:hover {
	text-decoration: none; 
	opacity: 0;
}
@media only screen and (max-width: 699px) {
	#fontResizeBlock dd img {
		transition: none;
	}
	#fontResizeBlock dd img:hover {
		text-decoration: inherit; 
		opacity: 1;
	}
}

/* 検索ボックス
------------------------------------ */
#searchBlock {
	position: absolute;
	top: 11px;
	right: 10px;
}
@media only screen and (max-width: 699px) {
	#searchBlock {
		position: static;
	}
}
#searchBlock #searchFrm div {
	position: relative;
}
@media only screen and (max-width: 699px) {
	#searchBlock #searchFrm div {
		display: flex;
		width: 100%;
	}
}
#searchBlock input#searchInput {
	width: 163px;
	height: 21px;
	padding: 0 20px 0 5px;
	border: 1px solid #636363; 
	font-size: 1.2rem;
}
@media only screen and (max-width: 699px) {
	#searchBlock input#searchInput {
		height: 23px;
		border: none;
		border-radius: 2px; 

		flex: 1;
	}
}
#searchBlock input#searchBtn {
	overflow: hidden;
	position: absolute;
	top: 50%;
	right: 4px;
	width: 14px;
	height: 14px;
	margin: 0;
	margin: -7px 0 0;
	padding: 0;
	border: 0;
	border: 0;
	border-radius: 0;
	background: none transparent;
	background: url(../img/search_btn.gif) no-repeat 50% 50%;
	background-size: contain; 
	color: inherit;
	font-size: inherit;
	text-indent: 200%;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	-moz-appearance: none;
}
#searchBlock input#searchBtn::-ms-clear {
	display: none;
}
#searchBlock input#searchBtn::-ms-reveal {
	display: none;
}
#searchBlock input#searchBtn::-ms-expand {
	display: none;
}
@media only screen and (max-width: 699px) {
	#searchBlock input#searchBtn {
		position: static;
		width: 43px;
		height: 23px;
		margin: 0 0 0 6px;
		border-radius: 2px;
		background: #06b849;
		color: #fff;
		font-size: 1.2rem;
		text-indent: 0;
	}
}

/* ヘッダー関連リンク
------------------------------------ */

/* ---------------------------------------------------------
フッター
--------------------------------------------------------- */
#footer {
	/* setting */
	position: relative;
	min-width: 940px;
	margin-top: 190px;
	background: #06b849;
}
@media only screen and (max-width: 699px) {
	#footer {
		min-width: 0;
		margin: 79px auto 0;
	}
}

#footerInner {
	margin: 0 auto;
	padding: 20px 0 40px;
}
@media only screen and (max-width: 699px) {
	#footerInner {
		padding: 18px 20px 36px;
		text-align: center;
	}
}

/* フッタロゴ
------------------------------------ */

/* カウンターブロック
------------------------------------ */
#counterBlock {
	display: flex;
	position: absolute;
	top: 14px;
	right: 50%;
	width: 146px;
	height: 28px;
	margin: 0 -462px 0 0;
	background: url(../img/bg_counter.png) no-repeat 0 0;
	background-size: contain; 

	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 699px) {
	#counterBlock {
		top: 44px;
		margin: 0 -73px 0 0;
	}
}

/* フッタメニュー
------------------------------------ */
#footerLink {
	margin: 0;
}
#footerLink ul {
	width: 770px;
	margin: 0 0 0 -20px;
	padding: 0; 
	letter-spacing: -0.4em;
}
#footerLink ul > * {
	letter-spacing: normal;
}
@media only screen and (max-width: 699px) {
	#footerLink ul {
		width: auto;
	}
}
#footerLink li {
	display: inline-block;
	margin: 0 0 0 20px;
	padding: 0;
	list-style: none;
}
#footerLink li:before {
	content: '>';
	display: inline-block;
	position: static;
	width: auto;
	height: auto;
	margin: 0 0.5em 0 0;
	background: none;
	color: #fff;
}
@media only screen and (max-width: 699px) {
	#footerLink li:before {
		margin: 0 0.25em 0 0;
	}
}
#footerLink a {
	display: inline-block;
	color: #fff;
	font-size: 1.2rem;
	text-decoration: none; 

	transition: opacity 0.2s ease-in-out;
}
#footerLink a:hover {
	text-decoration: none; 
	opacity: 0.7;
}
@media only screen and (max-width: 699px) {
	#footerLink a {
		transition: none;
	}
	#footerLink a:hover {
		text-decoration: inherit; 
		opacity: 1;
	}
}
@media only screen and (max-width: 699px) {
	#footerLink a {
		font-size: 0.9rem;
	}
}

/* コピーライト
------------------------------------ */
#footerCopyright {
	padding: 8px 0;
	background: #06b849; 
	color: #fff;
	text-align: center;
}

#footerCopyrightInner {
	margin: 0 auto;
	padding: 0;
	font-size: 1rem;
	letter-spacing: 0.2em;
}
@media only screen and (max-width: 699px) {
	#footerCopyrightInner {
		font-size: 0.65rem;
		letter-spacing: 0.1em;
	}
}

/* ---------------------------------------------------------
フッター関連リンク
--------------------------------------------------------- */

/* ---------------------------------------------------------
ClearFix
--------------------------------------------------------- */
.clearfix:after {
	content: ''; 
	display: block;
	clear: both;
}

/* 固定
------------------------------------ */
#header:after, #footer:after, #contentWrap:after, #contentWrapNoneSide:after {
	content: ''; 
	display: block;
	clear: both;
}

/* ---------------------------------------------------------
pc/sp表示分岐
--------------------------------------------------------- */
.spHidden {
	display: none;
}
@media only print, screen and (min-width: 700px) {
	.spHidden {
		display: block;
	}
}

.pcHidden {
	display: block;
}
@media only print, screen and (min-width: 700px) {
	.pcHidden {
		display: none;
	}
}
