@charset "utf-8";

/*Tazaki Computer Clinic Wrote.

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {width: 100%;height: 100%;}
body {
	color: #333;		/*全体の文字色*/
	/* [disabled]background: #FFF; */	/*全体の背景色*/
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background-image: url(../walls/bodywall.png);
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*フォントスタイル指定設定
---------------------------------------------------------------------------*/
.style1 {
	color: #FFF;
	/* [disabled]background-color: #FFF; */

}	
.style2 {
	color: #03C;
}
.style3 {
	color: #3399FF;
	font-size: 12px;
		}
.style4 {
	color: #FF9900;
	font-weight: normal;
		}
.style5 {
	/* [disabled]font-weight: bold; */
	color: #09C;
	
		}
.style6 {
	color: #FF99FF;
	font-weight: normal;
	text-decoration: none;
	
}
.style7 {
	color: #FF0000;
	font-size: 21px;
	font-weight: normal;
	text-decoration: none;
	
}
.style8 {
	color: #FF0000;
	font-size: 24px;
	font-weight: normal;
	text-decoration: none;
	border-color: #03C;
	font-family: "Times New Roman", Times, serif;
	
}
.style9 {
	/* [disabled]color: #FF0000; */
	text-decoration: underline;
	
}
.style10 {
	color: #FF0000;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
	
}
.style11 {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
	
}
.style12 {
	font-size: 10px;
	text-decoration: none;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #535353;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
.clear {
	clear: both;

}
.clearfix:after { /*floatの解除、ここがポイント*/
   display:block; 
   clear:both; 
   height:0px;
   visibility:hidden; 
   content:"."; 
} 

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*最大幅。この行を外せば常にウィンドウ幅に対して100%表示になります。*/
	height: 100%;
	padding: 0% 2% 2% 23%;	/*上、右、下、左への余白。#subのwidthの値を変えた場合はここの23%を調整する。*/
	/* [disabled]background-image: url(../images/bodywall.png); */
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	padding-bottom: 30px;
	/* [disabled]background-image: url(../images/menuback.png); */
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	line-height: 2em;
	margin-bottom: 20px;
	color: #FFF;		/*文字色*/
	/* [disabled]background: #535353; */	/*背景色（古いブラウザ用）*/
	/* [disabled]background: -webkit-linear-gradient(#535353, #292929); */	/*グラデーション*/
	/* [disabled]background: url(../images/bg1.png) no-repeat right center, linear-gradient(#535353, #292929); */			/*同上*/
	padding: 15px 20px;	/*上下、左右への余白*/
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.3は透明度30%の事。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);			/*同上*/
	background-color: #015b93;
	font-size: 16px;
}
/*コンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	line-height: 2;
	margin-bottom: 20px;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#FFF, #eee);	/*グラデーション*/
	background: linear-gradient(#FFF, #eee);			/*同上*/
	padding: 12px 20px;	/*上下、左右への余白*/
	border-bottom: 5px solid #015b93;	/*下線の幅、線種、色*/
	border-top: 1px solid #999;			/*上の線の幅、線種、色*/
	border-left: 1px solid #999;		/*左の線の幅、線種、色*/
	border-right: 1px solid #999;		/*右の線の幅、線種、色*/
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.3は透明度30%の事。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);			/*同上*/
	font-size: 16px;
}
/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}


/*見出しコンテンツ
---------------------------------------------------------------------------*/
#indextitle {
	float: left;
	/* [disabled]height: 800px; */
	width: 100%;
	/* [disabled]z-index: auto; */
	display: block;
	color: #000;
	position: relative;
	/* [disabled]margin-top: 20px; */
	margin-bottom: 20px;
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	position: fixed;	/*画面がスクロールしても移動させない為の設定。スクロールと共に移動させるならこの１行削除。*/
	left: 0px;
	top: 0px;
	overflow: auto;	/*ウィンドウの高さ以上になった場合はスクロールを出す*/
	width: 21%;		/*幅。ここのサイズを変える場合、#containerの幅の23%の数字を調整する。*/
	height: 100%;
	/* [disabled]background: #ffffff; */	/*背景色*/
	color: #333;			/*文字色*/
	font-size: 20px;
	/* [disabled]background-image: url(../images/menuback.png); */
	/* [disabled]border-right: 1px solid #fff; */
}
/*subブロック内のリンクテキストの色*/
#sub a {
	color: #333;
}
/*subブロック内の段落タグ*/
#sub p {
	padding: 10px 20px;
}
#sub #logo img {
	display: block;
}
#sub #logosp img {
	display: none;
}

/*文字サイズ変更ボタン（※文字サイズを「小」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	height: 50px;	/*大小のボタン画像の高さに合わせる*/
	margin: 0 7% 10%;	/*ボックスの外側にとる余白。上、左右、下の順。*/
	background: #fff url(../images/fsize_bg.png) no-repeat 3% center;	/*背景色、虫眼鏡の背景画像読み込み*/
	border-radius: 8px;	/*角丸のサイズ*/
	padding: 3%;	/*ボックス内の余白*/
}
#fsize ul {
	float: right;
}
/*「文字サイズ」のテキスト*/
#fsize p {
	float: left;
	padding: 0 0 0 30px;
	color: #000;	/*文字色*/
	line-height: 50px;
	font-size: 16px;
}
/*文字サイズボタン１個あたり*/
#fsize ul li {
	float: left;	/*左に回り込み*/
}
#fsize ul a {
	overflow: hidden;
	display: block;
	text-indent: -9999px;
}
/*「小」ボタン設定*/
#fsize ul li#small a {
	background: url(../images/fsize.png) left center;	/*背景画像として「小」を読み込む。これは「オフ」の状態。*/
	height: 50px;	/*ボタン画像の高さ*/
	width: 40px;	/*ボタン画像の幅*/
}
#fsize ul li#small a:hover {
	background: url(../images/fsize_on.png) left center;	/*マウスオン時の背景画像*/
}
/*「大」ボタン設定*/
#fsize ul li#large a {
	background: url(../images/fsize_on.png) right center;	/*背景画像として「大」を読み込む。これは「オン」の状態。*/
	height: 50px;	/*ボタン画像の高さ*/
	width: 50px;	/*ボタン画像の幅*/
}
#fsize ul li#large a:hover {
	background: url(../images/fsize_on.png) right center;	/*マウスオン時の背景画像*/
}

/*言語変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#lang {
	height: 100px;	/*大小のボタン画像の高さに合わせる*/
	margin: 0 7% 10%;	/*ボックスの外側にとる余白。上、左右、下の順。*/
	/* [disabled]background: #fff url(../images/fsize_bg.png) no-repeat 3% center; */	/*背景色、虫眼鏡の背景画像読み込み*/
	/* [disabled]border-radius: 8px; */	/*角丸のサイズ*/
	padding: 3%;	/*ボックス内の余白*/
	display: block;
}
#lang ul {
	float: left;
}
/*「言語変更」のテキスト*/
#lang p {
	float: left;
	padding: 0 0 0 10px;
	color: #000;	/*文字色*/
	line-height: 50px;
	font-size: 16px;
}
/*言語変更１個あたり*/
#lang ul li {
	float: left;	/*左に回り込み*/
}
#lang ul a {
	overflow: hidden;
	display: block;
	text-indent: -9999px;
}
/*「jp」ボタン設定*/
#lang ul li#small a {
	background: url(../images/langus.png)right center;	/*背景画像として「小」を読み込む。これは「オフ」の状態。*/
	height: 100px;	/*ボタン画像の高さ*/
	width: 100px;	/*ボタン画像の幅*/
}
#lang ul li#small a:hover {
	background: url(../images/langen_on.png) right center;	/*マウスオン時の背景画像*/
}
/*「en」ボタン設定*/
#lang ul li#large a {
	background: url(../images/langen_on.png) left center;	/*背景画像として「大」を読み込む。これは「オン」の状態。*/
	height: 100px;	/*ボタン画像の高さ*/
	width: 100px;	/*ボタン画像の幅*/
}
#lang ul li#large a:hover {
	background: url(../images/langen_on.png) left center;	/*マウスオン時の背景画像*/
}
/*言語変更ボタン スマホ用非表示
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#langsp {
	display: none;
}
/*QR コード設定
---------------------------------------------------------------------------*/
/*QR コード設定*/
.qr {
	display: block;
	margin-top: 5px;
	float: right;
	margin-left: 20px;
}
/*QR コード画像設定*/
.qr .img {
	width: 45%;		/*画像の幅。ここを変える場合は下のh4とpのmargin-leftの数字も調整。*/
	height: auto;	/*画像の高さ*/
	float: right;	/*左に回り込み*/
	margin: 0 auto;
	/* [disabled]margin-left: 30px; */
}
/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への設定*/
nav#menubar {
	/* [disabled]border-top: 1px solid #666; */	/*上の線の幅、線種、色*/
	/* [disabled]border-right: 1px solid #666; */
}
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	padding: 10px 20px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px dotted #015b93;	/*下の線の幅、線種、色*/
	text-align: right;
	/* [disabled]background-image: url(../images/menuback.png); */
	background: #fff;
	/* [disabled]border-right: 1px dotted #015b93; */
}
/*マウスオン時と現在表示中メニュー(current)*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	/* [disabled]background: #00ccff; */	/*背景色*/
	color: #036;		/*文字色*/
	text-align: right;	/*文字を右寄せにする設定。左よせのままがよければこの１行削除。*/
	font-weight: bold;
	background-image: url(../walls/bodywall.png);
	/* [disabled]border-right: 1px slid #FFF; */
	letter-spacing: -0.03em;
}
/*小さい端末用(画面幅480px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;	/*文字を右寄せにする*/
}
#footermenu li {
	display: inline;
	font-size: 75%;
	padding: 0 10px;
}

/*フッター設定(copyrightが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字を右寄せにする*/
	width: 100%;
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	font-size: 12px;	/*文字サイズ*/
	text-decoration: none;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	/* [disabled]overflow: auto; */	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	/* [disabled]height: 200px; */	/*ブロックの高さ*/
	padding-left: 20px;
	margin-bottom: 20px;
	color: #333;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}



/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
#pagetop {clear: both;}
#pagetop a {
	clear: both;
	font-size: 20px;
	display: block;
	background: #015b93;
	color: #FFF;
	float: right;
	text-decoration: none;
	line-height: 1;
	padding: 20px;
	border-radius: 50px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
#pagetop a:hover {
	background: #0ff;
	color: #FFF;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: text-top
}





/*画面幅1600px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1600px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*「文字サイズ」のテキスト*/
#fsize p {
	font-size: 26px;
}


/*言語変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#lang {
	height: 50px;	/*大小のボタン画像の高さに合わせる*/
	margin: 0 1% 5%;	/*ボックスの外側にとる余白。上、左右、下の順。*/
	/* [disabled]background: #fff url(../images/fsize_bg.png) no-repeat 3% center; */	/*背景色、虫眼鏡の背景画像読み込み*/
	border-radius: 8px;	/*角丸のサイズ*/
	padding: 1%;	/*ボックス内の余白*/
}
#lang ul {
	float: right;
}
/*「言語変更」のテキスト*/
#lang p {
	float: left;
	padding: 0 0 0 30px;
	color: #000;	/*文字色*/
	line-height: 50px;
	font-size: 16px;
}
/*言語変更１個あたり*/
#lang ul li {
	float: left;	/*左に回り込み*/
}
#lang ul a {
	overflow: hidden;
	display: block;
	text-indent: -9999px;
}

}

/*画面幅1250px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1250px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*「文字サイズ」のテキスト*/
#fsize p {
	font-size: 12px;
}
/*トップページのスライドショー 高さ変更
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 1000px;
	width: 100%;
	margin-bottom: 0px;
	/* [disabled]background-image: url(../images/walls1000.gif); */
	/* [disabled]display: block; */
}
}



/*画面幅1090px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1090px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*「文字サイズ」のテキストのspanタグ*/
#fsize p span {
	display: none;	/*非表示にする設定*/
}

}



/*画面幅950px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:950px){

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 2% 2% 2% 28%;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	width: 25%;
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){



/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*「文字サイズ」のテキスト*/
#fsize p {
	display: none;	/*非表示にする設定*/
}
/*言語変更ボタン
---------------------------------------------------------------------------*/
/*「言語サイズ」のテキスト*/
#lang p {
	display: none;	/*非表示にする設定*/
}

}



/*画面幅750px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:750px){

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 3%;	/*余白*/
	margin-top: 3%;

	padding-top: 90px;	/*上にとる余白。下のサブコンテンツのheightと合わせる。*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	position: static;	/*fixed配置をやめる設定*/
	width: auto;
	height: auto;
	background: transparent;	/*背景色を透明に*/
	color: #333;				/*文字色*/
	border-top: 1px solid #333;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #333;	/*下の線の幅、線種、色*/
	margin-bottom: 20px;
}
/*subブロック内のリンクテキストの色*/
#sub a {
	color: #333;
}
/*subブロック内のinnnerブロック（ロゴ、文字サイズ変更ボタンなど囲むブロック）*/
#sub .inner {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	width: 100%;
	height: 90px;	/*下の#sub #logo imgのheightと数字を合わせる。ここを変える場合、下にある#menubar-sのtopの数字も合わせて変更する。*/
	background: #ffffff;	/*背景色*/
}
#sub #logosp img {
	/* [disabled]height: 90px; */	/*上の#subのheightと数字を合わせる*/
	float: left;	/*左に回り込み*/
	display: block;
	width: 45%;
	margin-left: 2%;
	margin-top: 2%;
}
#sub #logo img {
	display: none;
}

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	margin: 19px 120px 0 250px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
	background: #fff url(../images/fsize_bg.png) no-repeat 3% center;	/*背景色、虫眼鏡の背景画像読み込み*/
	padding: 0 3%;
}
/*「文字サイズ」のテキスト*/
#fsize p {
	display: block;
	font-size: 20px;
	padding-left: 10%;
}
#fsize p span {
	display: inline;
}


/*言語変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#langsp {
	margin: 19px 80px 0 100px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
	/* [disabled]background: #fff url(../images/fsize_bg.png) no-repeat 3% center; */	/*背景色、虫眼鏡の背景画像読み込み*/
	padding: 0 3%;
	display: block;
}
/*「言語変更」のテキスト*/
#langsp p {
	float: left;
	padding: 0 0 0 30px;
	color: #000;	/*文字色*/
	line-height: 50px;
	font-size: 16px;
}
#langsp  p span {
	display: inline;
}
#langsp ul {
	float: right;
}

/*言語変更１個あたり*/
#langsp ul li {
	float: left;	/*左に回り込み*/
}
#langsp ul a {
	overflow: hidden;
	display: block;
	text-indent: -9999px;
}
/*「jp」ボタン設定*/
#langsp ul li#small a {
	background: url(../images/langsen.png) right center;	/*背景画像として「小」を読み込む。これは「オフ」の状態。*/
	height: 50px;	/*ボタン画像の高さ*/
	width: 40px;	/*ボタン画像の幅*/
}
#langsp ul li#small a:hover {
	background: url(../images/langsen_on.png) right center;	/*マウスオン時の背景画像*/
}
/*「en」ボタン設定*/
#langsp ul li#large a {
	background: url(../images/langsen_on.png) left center;	/*背景画像として「大」を読み込む。これは「オン」の状態。*/
	height: 50px;	/*ボタン画像の高さ*/
	width: 50px;	/*ボタン画像の幅*/
}
#langsp ul li#large a:hover {
	background: url(../images/langsen_on.png) left center;	/*マウスオン時の背景画像*/
}

/*言語変更ボタン PC用非表示
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#lang {
	display: none;
}
/*QR コードSP非表示*/
.qr {
	display: none;
}
/*トップページのスライドショー 高さ変更
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 300px;
	width: 95%;
	/* [disabled]margin-bottom: -100px; */
	/* [disabled]background-image: url(../images/walls1000.gif); */
	/* [disabled]display: block; */
	z-index: 0;
	/* [disabled]margin-left: -10px; */
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#535353, #292929);	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  linear-gradient(#535353, #292929);			/*同上*/
	margin-top: 320px;
	color: #FFF;
	padding-left: 10px;
	font-size: 16px;
}
#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#535353, #292929);	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  linear-gradient(#535353, #292929);			/*同上*/
	margin-top: 320px;
	color: #CCC;
	padding-left: 10px;
	font-size: 16px;
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*大きな端末用(画面幅751px以上)メニューを非表示にする*/
#menubar {
	display: none;
}
/*メニューブロック全体への設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅750px以下)メニューを非表示から表示に切り替える*/
	position: absolute;
	left: 0px;
	top: 90px;	/*#subのheightの数字と同じ数字にする*/
	width: 100%;
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.5);	/*ボックスの影。右へ、左へ、広げる幅。0,0,0は黒のことで0.5は透明度50%のこと。*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);			/*同上*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(70,130,180,0.95);		/*背景色。0,0,0は黒のことで0.85が透明度85%のこと。*/
}
/*メニュー１個ごとの設定*/
#menubar-s ul li a {
	display: block;
	text-decoration: none;
	text-align: left;	/*文字をセンタリング*/
	line-height: 60px;	/*高さ*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	color: #fff;	/*文字色*/
	font-size: 16px;
	padding-left: 10px;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	z-index: 2;
	top: 18px;	/*上から18pxの場所に配置*/
	right: 2%;	/*右から2%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fff;	/*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

}



/*画面幅650px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:650px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	margin: 19px 120px 0 180px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
}

/*言語変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#lang {
	margin: 19px 120px 0 180px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
}





}



/*画面幅580px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:580px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	margin: 19px 90px 0 140px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
}

/*言語サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#lang {
	margin: 19px 90px 0 140px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 100px;	/*ブロックの高さ*/
	padding-left: 20px;
	/* [disabled]margin-bottom: -100px; */
}
/*日付設定*/
#new dt {
	float: left;
	width: auto;
	font-size: 14px;
}
/*記事設定*/
#new dd {
	padding-left: 0;
	font-size: 14px;
}
/*ページの上部へ（↑）ボタン　サイズ調整
---------------------------------------------------------------------------*/
#pagetop a {
	clear: both;
	font-size: 12px;
	display: block;
	background: #ccc;
	color: #FFF;
	float: right;
	text-decoration: none;
	line-height: 1;
	padding: 20px;
	border-radius: 50px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

}



/*画面幅500px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:500px){

/*言語変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#lang {
	background: #fff;
}
/*「言語サイズ」のテキスト*/
#lange p {
	font-size: 12px;
	padding-left: 3%;
}
/*「言語サイズ」のspanタグ内のテキストを非表示にする*/
#lang p span {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#015b93, #015b93);	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  linear-gradient(#015b93, #015b93);			/*同上*/
	margin-top: 30px;
}
#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#015b93, #015b93);	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  linear-gradient(#015b93, #015b93);			/*同上*/
	margin-top: 30px;
}




}



/*画面幅410px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:410px){

/*言語変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#lang {
	margin: 19px 70px 0 130px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
	padding: 0;
	background: transparent;	/*背景を透明にする設定*/
}
/*「言語サイズ」のテキストを非表示にする*/
#lang p {
	display: none;
}

}
