@charset "utf-8";
/*------------------------------------------------------------
	ボタン関連
------------------------------------------------------------*/
body .btn {
	padding: 16px 8px 14px;
	background-image: -webkit-gradient(linear, left top, left bottom,
						from(#fff),
						to(#ddd));
	background-image: -moz-linear-gradient(
						#fff,
						#ddd);
	background-image: linear-gradient(
						#fff,
						#ddd);
	border: 2px solid #ccc;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
	color: #111;
	line-height: 1.1;
	text-decoration: none;
}

/*------------------------------------------------------------
	テキストの位置とフォントサイズ
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft { text-align: left !important; }
.taCenter { text-align: center !important; }
.taRight { text-align: right !important; }

/* フォントの大きさ（プラス） */
.fsP1 { font-size: 1.08em !important; }
.fsP2 { font-size: 1.16em !important; }
.fsP3 { font-size: 1.24em !important; }
.fsP4 { font-size: 1.32em !important; }
.fsP5 { font-size: 1.4em !important; }

/* フォントの大きさ（マイナス） */
.fsM1 { font-size: 0.92em !important; }
.fsM2 { font-size: 0.84em !important; }
.fsM3 { font-size: 0.76em !important; }
.fsM4 { font-size: 0.68em !important; }
.fsM5 { font-size: 0.6em !important; }

/* フォントの太さ */
.fwNormal { font-weight: normal !important; }
.fwBold { font-weight: bold !important; }

/*------------------------------------------------------------
	微調整用
------------------------------------------------------------*/
.mt0 { margin-top: 0 !important; }
.mb0 { margin-bottom: 0 !important; }

/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

/*------------------------------------------------------------
	リンク・インプットをタップ時のクラス
------------------------------------------------------------*/
a.tapCtrl, input.tapCtrl,
.tapCtrl a, .tapCtrl input {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.tap {

}

/*------------------------------------------------------------
	各種基本スタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;

	font-size: 1em;
}

body,
table,
input, textarea, select, option {
	font-size: 1em;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

a:link {
	color: #006699;
}

a:visited {
	color: #006699;
}

a:active {
	color: #006699;
}

/*------------------------------------------------------------
	全体レイアウト
------------------------------------------------------------*/
html {
	font-size: 62.5%;
}

body {
	font-size: 1.2rem;
	line-height: 1.3;
	-webkit-text-size-adjust: none;
}

/*------------------------------------------------------------
	上部ナビゲーション
------------------------------------------------------------*/
#gNavi {
	position: relative;
	z-index: 10;
	box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

#gNavi:before {
	width: 100%;
	height: 4px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	display: block;
	-webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,0.3);
	box-shadow: inset 0 2px 3px rgba(0,0,0,0.3);
	content: "";
}

#gNavi li {
	width: 20%;
	float: left;
}

#gNavi a {
	padding-top: 8px;
	height: 49px;
	display: block;
	background: -webkit-gradient(
				linear, left top, left bottom, 
				from(#4caddc),
				color-stop(0.50, #1985ba),
				color-stop(0.50, #0077b2),
				to(#069));
	background: -moz-linear-gradient(
				top,
				#4caddc 0%,
				#1985ba 50%,
				#0077b2 50%,
				#069);
	background: linear-gradient(
				top,
				#4caddc 0%,
				#1985ba 50%,
				#0077b2 50%,
				#069);
	border-left: 1px solid #1986bb;
	border-right: 1px solid #00679a;
	color: #fff;
	text-decoration: none;
	text-align: center;
	-webkit-text-shadow: 0 0 2px rgba(0,0,0,0.65);
	text-shadow: 0 0 2px rgba(0,0,0,0.65);
}

#gNavi li:first-child a {
	border-left: 1px solid #00679a;
}

#gNavi a:before {
	margin: 0 auto 2px;
	width: 28px;
	height: 28px;
	background: url(../img/icon.png) no-repeat;
	-webkit-background-size: 216px 50px;
	background-size: 216px 50px;
	display: block;
	content: "";
}

#gNavi .gNavi2 a:before {
	background-position: -28px 0;
}

#gNavi .gNavi3 a:before {
	background-position: -56px 0;
}

#gNavi .gNavi4 a:before {
	background-position: -84px 0;
}

#gNavi .gNavi5 a:before {
	background-position: -112px 0;
}

/*------------------------------------------------------------
	下部ナビゲーション
------------------------------------------------------------*/

#gNavifoot {
	position: relative;
	z-index: 10;
	box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

#gNavifoot:before {
	width: 100%;
	height: 4px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	display: block;
	-webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,0.3);
	box-shadow: inset 0 2px 3px rgba(0,0,0,0.3);
	content: "";
}

#gNavifoot li {
	width: 20%;
	float: left;
}

#gNavifoot a {
	padding-top: 8px;
	height: 49px;
	display: block;
	background: -webkit-gradient(
				linear, left top, left bottom, 
				from(#4caddc),
				color-stop(0.50, #1985ba),
				color-stop(0.50, #0077b2),
				to(#069));
	background: -moz-linear-gradient(
				top,
				#4caddc 0%,
				#1985ba 50%,
				#0077b2 50%,
				#069);
	background: linear-gradient(
				top,
				#4caddc 0%,
				#1985ba 50%,
				#0077b2 50%,
				#069);
	border-left: 1px solid #1986bb;
	border-right: 1px solid #00679a;
	color: #fff;
	text-decoration: none;
	text-align: center;
	-webkit-text-shadow: 0 0 2px rgba(0,0,0,0.65);
	text-shadow: 0 0 2px rgba(0,0,0,0.65);
}

#gNavifoot li:first-child a {
	border-left: 1px solid #00679a;
}

#gNavifoot a:before {
	margin: 0 auto 2px;
	width: 28px;
	height: 28px;
	background: url(../img/icon.png) no-repeat;
	-webkit-background-size: 216px 50px;
	background-size: 216px 50px;
	display: block;
	content: "";
}

#gNavifoot .gNavifoot2 a:before {
	background-position: -28px 0;
}

#gNavifoot .gNavifoot3 a:before {
	background-position: -56px 0;
}

#gNavifoot .gNavifoot4 a:before {
	background-position: -84px 0;
}

#gNavifoot .gNavifoot5 a:before {
	background-position: -112px 0;
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 18px 0 0 0;
	background: #eee;
	border-top: 3px solid #069;
}

#gFooter .mode {
	margin-bottom: 18px;
	font-size: 1.4rem;
	text-align: center;
}

#gFooter .mode dt {
	display: inline;
}

#gFooter .mode dd {
	display: inline;
}

#gFooter .pageTop {
	margin-bottom: 20px;
	text-align: center;
}

#gFooter .pageTop a {
	padding-right: 32px;
}

#gFooter .pageTop a:before {
	margin-top: -4px;
	width: 8px;
	height: 8px;
	background: url(../img/icon.png) no-repeat -4px -42px;
	-webkit-background-size: 216px 50px;
	background-size: 216px 50px;
	position: absolute;
	top: 50%;
	right: 11px;
	content: "";
}

#gFooter .copyright {
	margin-top: 20px;
	padding: 10px 0 8px;
	background-image: -webkit-gradient(linear, left top, left bottom,
						from(#069),
						to(#008BCE));
	background-image: -moz-linear-gradient(
						#069,
						#008BCE);
	background-image: linear-gradient(
						#069,
						#008BCE);
	display: block;
	color: #fff;
	fonot-size: 10rem;
	text-align: center;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
}

/* --------------------------------
	画像
-------------------------------- */

img {
    max-width: 100%;
    height:auto;
}

.imgcenter {
	text-align: center;
}

.imgcenter80 {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.bgwhite {
	background-color:#fff;
}

/* --------------------------------
	コンテンツ部分
-------------------------------- */

#conts .accordionBox {
	display: none;
}

#conts .headline h2 {
	padding: 10px 0 8px 25px;
	background-image: -webkit-gradient(linear, left top, left bottom,
						from(#069),
						to(#008BCE));
	background-image: -moz-linear-gradient(
						#069,
						#008BCE);
	background-image: linear-gradient(
						#069,
						#008BCE);
	display: block;
	position: relative;
	color: #fff;
	fonot-size: 10rem;
	font-weight: normal;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
}

#conts .headline h2:before {
	margin-top: -6px;
	width: 12px;
	height: 12px;
	background: url(../img/icon.png) no-repeat 0 -28px;
	-webkit-background-size: 216px 50px;
	background-size: 216px 50px;
	position: absolute;
	top: 50%;
	left: 10px;
	content: "";
}

#conts .headline h3 {
	margin-top: 20px;
	padding: 15px 10px 13px 14px;
	background-image: -webkit-gradient(linear, left top, left bottom,
						from(#fff),
						to(#ddd));
	background-image: -moz-linear-gradient(
						#fff,
						#ddd);
	background-image: linear-gradient(
						#fff,
						#ddd);
	border-top: 3px solid #069;
	border-bottom: 1px solid #ccc;
	position: relative;
	color: #111;
	font-size: 1.8rem;
	font-weight: normal;
}

#conts .headline .accordion {
	margin: 0;
	padding-left: 48px;
	border-top: none;
}

#conts .headline .accordion:before {
	margin-top: -12px;
	width: 24px;
	height: 24px;
	background: url(../img/icon.png) no-repeat -168px 0;
	-webkit-background-size: 216px 50px;
	background-size: 216px 50px;
	position: absolute;
	top: 50%;
	left: 15px;
	content: "";
}

#conts .headline .accordion.open:before {
	background-position: -192px 0;
}

#conts .headline .accordionBox {
	border-bottom: 1px solid #ccc;
}

#conts .headline .news li {
	font-size: 1.6rem;
}

#conts .headline .news li:nth-child(odd) {
	background: #eee;
}

#conts .headline .news li:nth-child(even) {
	background: #fff;
}

#conts .headline .news li a {
	padding: 15px 20px 13px 15px;
	overflow: hidden;
	display: block;
	position: relative;
	text-decoration: none;
}

#conts .headline .news li a:after {
	margin-top: -7px;
	width: 7px;
	height: 14px;
	background: url(../img/icon.png) no-repeat -38px -28px;
	-webkit-background-size: 216px 50px;
	background-size: 216px 50px;
	position: absolute;
	top: 50%;
	right: 15px;
	content: "";
}

#conts .headline .news li .date {
	margin-bottom: 3px;
	display: block;
	font-size: 1.2rem;
}

#conts .headline .news li time {
	color: #666;
}

#conts .headline .news li time,
#conts .headline .news li .news {
	vertical-align: baseline;
}

#conts .headline .news li .new {
	margin-left: 10px;
}

#conts .headline .news li .thumbnail {
	margin-right: 10px;
	float: left;
}

#conts .headline .more {
	margin: 13px 0;
	text-align: center;
}

#conts .headline .more a {
	padding-right: 15px;
}

#conts .headline .more a:after {
	margin-top: -4px;
	width: 4px;
	height: 9px;
	background: url(../img/icon.png) no-repeat 0 -42px;
	-webkit-background-size: 216px 50px;
	background-size: 216px 50px;
	position: absolute;
	top: 50%;
	right: 5px;
	content: "";
}