@charset "UTF-8";


/*HTML5リセット(http://www.html5.jp/html5doctor/html-5-reset-stylesheet.html)記述ここから*/

/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
body {
	line-height:1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
}

ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
	vertical-align:middle;
}

/*HTML5リセットここまで*/




/*ボックス組汎用クラス*/

	/*補足-従来のfloatの代わりです*/



.box {
    width: 100%;  
    display: -webkit-box;
    display: -moz-box;
}
	/*補足-boxを指定すると子要素が回り込みます*/


.box_flex1 {
	-moz-box-flex:1.0;
	-webkit-box-flex:1.0;
}

	/*補足-boxの子要素に指定して下さい。指定するとブラウザ幅いっぱいまで伸縮します。*/



/*従来リセット*/

* {
	margin: 0px;
	padding: 0px;
	font-size: 100%;	
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  	--webkit-tap-highlight-color: rgba(0,0,0,0);/*タップ時のリンク枠を消す*/
	-webkit-text-size-adjust: none; /*iPhone 自動文字調整OFF*/
}

/*ページ独自*/

body {
	background: #ffffff;
	width: 100%;
	min-width: 320px;
	color: #000000;
}

/*ヘッダー*/

header {
	width:100%;
	height: 50px;
	background: #fff;
	border-bottom: 1px solid #006cb7; 
}

header h1 {
	-moz-box-flex:1.0;
	-webkit-box-flex:1.0;	
	padding: 5px;
}


header .topix_bt {
	width: 90px;
	height: 50px;
	background: url(../img/menu-off.png) no-repeat;
	background-size: cover;
	overflow: hidden;
	text-indent: 10000px;
}

header .on {
	background: url(../img/menu-on.png) no-repeat;
	background-size: cover;
}





/*コンテナ*/

#continer {
	width: 100%;
}


#continer h2{
	background: #707070;
	color: #fff;
	padding: 5px;
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;

}


#continer p{
	line-height: 1.5;
	font-size: 14px;
	color: #353535;
}


.bt1 {
	display: block;
	width: 90%;
	margin: 5px auto 10px;	
	border: #006cb7 solid 1px ;
	color: #006cb7;
	text-align: center;
	height: 30px;
	line-height: 30px;
	text-decoration: none;
}



/*フッダー*/

footer {
	width:100%;
	background: #006cb7;
	height: 30px;
	color: #ffffff;
	font-size: 0.9em;
	line-height: 30px;
}

footer address {
	width:100%;
	height: 30px;
	color: #ffffff;
	font-size: 0.9em;
	line-height: 30px;
}




/*汎用クラス*/

.boxCenter {
	margin: 0 auto;
}

.hidden {
	display: none;
}

.block {
	display: block;
}

.txHidden {
	display: block;
	text-indent: -10000px;
	overflow: hidden;
}

.alignR {
	text-align: right !important;
}

.alignL {
	text-align: left !important;
}

.alignC {
	text-align: center !important;
}

.textL {
	font-size: 20px;
}

.textM {
	font-size: 12px;
}

.textS {
	font-size: 10px;
}

.inline {
	display: inline
}

.bold {
	font-weight: bold;
}

.normal {
	font-weight: normal;
}

.white {
	color: #ffffff !important;
}

.black {
	color: #000000 !important;
}

.red {
	color: #ff0000 !important;
}

.blue {
	color: #0000ff !important;
}

.green{
	color: #00ff00 !important;
}

.yellow{
	color: #ffff00 !important;
}

.pink{
	color: #ff00ff !important;
}


img { 
	border-style:none; 
	vertical-align: text-bottom;
} /*リンク画像の枠線を消すために記述*/

a { 
	overflow: hidden;
	outline: none;
}/* FireFox リンク選択時の点線を消す　*/

