@charset "utf-8";

/*Tazaki Computer Clinic Wrote.


/*ボックス（箇条書きlist）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
	overflow: auto;	/*ボックスから飛び出たらスクロールを出す設定。飛び出た部分を非表示にしたいならautoでなくhiddenにする。*/
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	/* [disabled]margin-left: 1.5%; */	/*ボックス同士の左右間の余白*/
	margin-bottom: 30px;	/*ボックス同士の上下間の余白*/
	/* [disabled]border-radius: 6px; */		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: auto;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 2;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
	padding-top: 20px;
	font-size: 24px;
}
.box1  a {
	display: block;
	overflow: auto;
	text-decoration: none;
	/* [disabled]height: 200px; */	/*高さ（上の「.list」の高さと揃える）*/
	color: #333;	/*文字色*/
}
.box1  a:hover {
	/* [disabled]background: #535353; */	/*マウスオン時の背景色*/
	color: #999;			/*マウスオン時の文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク　（※list2も共通）*/
.box1  a::after,
.box1  a::after {
	content: "Map→ ";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: relative;
	/* [disabled]right: 20px; */	/*ボックスの右から20pxの場所に配置*/
	/* [disabled]top: 20px; */		/*ボックスの上から20pxの場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 50px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	/* [disabled]left: 80px; */
	/* [disabled]bottom: 50px; */
	margin-left: 5px;
	height: 50px;
}
/*マウスオン時の「→」マーク　（※list2も共通）*/
.box1  a:hover::after,

/*ボックス内の画像設定*/
.box1  .img {
	/* [disabled]width: 20%; */	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	/* [disabled]padding-bottom: 10px; */	/*画像下に空ける余白*/
	background-color: #CCC;
}
/*ボックス内のh4（見出し）タグ設定　（※list2も共通）*/
.list h4 {
	padding-left: 20px;
}
/*ボックス内のp（段落）タグ設定　（※list2も共通）*/
.list p {
	font-size: 80%;	/*文字サイズを少し小さく*/
}
/*ボックス１個あたりの設定*/
.box2 {
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
	overflow: auto;	/*ボックスから飛び出たらスクロールを出す設定。飛び出た部分を非表示にしたいならautoでなくhiddenにする。*/
	background: #666;	/*背景色*/
	color: #333;		/*文字色*/
	/* [disabled]margin-left: 1.5%; */	/*ボックス同士の左右間の余白*/
	margin-bottom: 30px;	/*ボックス同士の上下間の余白*/
	/* [disabled]border-radius: 6px; */		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: auto;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 2;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
	padding-top: 20px;
	font-size: 24px;
	margin-right: 10px;
	padding-bottom: 20px;
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: left;	/*左に回り込み*/
	width: 31%;		/*幅*/
	overflow: auto;	/*ボックスから飛び出たらスクロールを出す設定。飛び出た部分を非表示にしたいならautoでなくhiddenにする。*/
	background: #666;	/*背景色*/
	color: #fff;		/*文字色*/
	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 30px;	/*ボックス同士の上下間の余白*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 200px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);			/*同上*/
}
.list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 200px;	/*高さ（上の「.list」の高さと揃える）*/
	color: #fff;	/*文字色*/
}
.list a:hover {
	background: #535353;	/*マウスオン時の背景色*/
	color: #fff;			/*マウスオン時の文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク　（※list2も共通）*/
.list a::before,
.list2 a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 20px;		/*ボックスの上から20pxの場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の「→」マーク　（※list2も共通）*/
.list a:hover::before,
.list2 a:hover::before {
	background: #000;	/*背景色*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
}
/*ボックス内の画像設定*/
.list .img {
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定　（※list2も共通）*/
.list h4,
.list2 h4 {
	padding-left: 20px;
}
/*ボックス内のp（段落）タグ設定　（※list2も共通）*/
.list p,
.list2 p {
	font-size: 80%;	/*文字サイズを少し小さく*/
}

/*ボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	background: #fff;	/*背景色*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	overflow: hidden;
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
	padding: 40px;	/*ボックス内の余白*/
}
.list2 a {
	display: block;
	overflow: auto;
	text-decoration: none;
	padding: 40px;	/*ボックス内の余白*/
	margin: -40px;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
.list2 a:hover {
	background: #fff7a3;	/*マウスオン時の背景色*/
}
/*ボックス内の画像設定*/
.list2 .img {
	width: 30%;		/*画像の幅。ここを変える場合は下のh4とpのmargin-leftの数字も調整。*/
	height: auto;	/*画像の高さ*/
	float: left;	/*左に回り込み*/
}
/*ボックス内のh4タグとpタグ*/
.list2 h4,
.list2 p {
	margin-left: 33%;	/*画像のサイズを変更した場合はここも調整する*/
}

/*ボックス（list3）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list3 {
	background: #fff;	/*背景色*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	overflow: hidden;
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
	padding: 40px;	/*ボックス内の余白*/
}
.list3 a {
	display: block;
	overflow: auto;
	text-decoration: none;
	padding: 40px;	/*ボックス内の余白*/
	margin: -40px;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
.list3 a:hover {
	background: #fff7a3;	/*マウスオン時の背景色*/
}
/*ボックス内の画像設定*/
.list3 .img {
	width: 30%;		/*画像の幅。ここを変える場合は下のh4とpのmargin-leftの数字も調整。*/
	height: auto;	/*画像の高さ*/
	float: left;	/*左に回り込み*/
}
/*ボックス内のh4タグとpタグ*/
.list3 h4,
.list3 p {
	margin-left: 33%;	/*画像のサイズを変更した場合はここも調整する*/
}


/*テーブル　ta1
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 20px;
	background: #fff;
}
.ta1, .ta1 td, .ta1 th {
	/* [disabled]border: 1px solid #999; */	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
.ta1 td.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
/*テーブル内の左側*/
.ta1 th {
	width: 250px;	/*幅*/
	/* [disabled]padding: 10px; */
	text-align: left;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}
/*テーブル内の右側*/
.ta1 td {
	/* [disabled]padding: 10px; */
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

/*テーブル　ta2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
	margin-bottom: 20px;
	background: #fff;	/*背景色*/
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
/*テーブル内の左側*/
.ta2 th {
	width: 180px;	/*幅*/
	padding: 10px;
	text-align: center;
	font-weight: normal;
}
/*テーブル内の右側*/
.ta2 td {
	padding: 10px;
}

/*テーブル　ta3
---------------------------------------------------------------------------*/
.ta3 {
	width: 60%;
	margin-bottom: 20px;
	background: #fff;	/*背景色*/
	font-size: 16px;
	margin-left: 100px;
	margin-top: 50px;
}
.ta3, .ta3 td, .ta3 th {
	/* [disabled]border: 1px solid #999; */	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
.ta3 td.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
/*テーブル内の左側*/
.ta3 th {
	width: 100px;	/*幅*/
	/* [disabled]padding: 10px; */
	text-align: left;
	font-weight: normal;
}
.ta3 th.cel1 {
	width: 300px;	/*幅*/
	/* [disabled]padding: 10px; */
	text-align: left;
	font-weight: normal;
}
/*テーブル内の右側*/
.ta3 td {
	/* [disabled]padding: 10px; */
	text-align: left;
}
/*テーブル　ta4
---------------------------------------------------------------------------*/
.ta4 {
	width: 80%;
	margin-bottom: 20px;
	background: #fff;	/*背景色*/
	font-size: 16px;
	margin-left: 100px;
	margin-top: 50px;
}
.ta4, .ta4 td, .ta4 th {
	/* [disabled]border: 1px solid #999; */	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta4 th.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
.ta4 td.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
/*テーブル内の左側*/
.ta4 th {
	width: 100px;	/*幅*/
	/* [disabled]padding: 10px; */
	text-align: left;
	font-weight: normal;
}
.ta4 th.cel1 {
	width: 300px;	/*幅*/
	/* [disabled]padding: 10px; */
	text-align: left;
	font-weight: normal;
}
/*テーブル内の右側*/
.ta4 td {
	/* [disabled]padding: 10px; */
	text-align: left;
}
/*その他
---------------------------------------------------------------------------*/
.look {background: #333;background:rgba(0,0,0,0.6);padding: 3px;border-radius: 3px;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1 {color: #535353;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.fr {
	float: right;
	width: 20%;
	margin: 0 20px 20px;
}
.fr1 {
	float: left;
	width: 90%;
	margin: 0 40px 20px;
	display: block;
	position: relative;
}
.fl {float:left;width: 30%;margin:0 20px 20px;}
.sh {display: none;}

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

/*ボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	padding: 10px;	/*ボックス内の余白*/
}
.list2 a {
	padding: 10px;	/*ボックス内の余白*/
	margin: -10px;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
/*ボックス内の画像設定*/
.list2 .img {
	width: 100%;		/*画像の幅*/
	float: none;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
/*ボックス内のh4タグとpタグ*/
.list2 h4,
.list2 p {
	margin-left: 0;
}
/*ボックス（list3）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list3 {
	padding: 10px;	/*ボックス内の余白*/
}
.list3 a {
	padding: 10px;	/*ボックス内の余白*/
	margin: -10px;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
/*ボックス内の画像設定*/
.list3 .img {
	width: 100%;		/*画像の幅*/
	float: none;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
/*ボックス内のh4タグとpタグ*/
.list3 h4,
.list3 p {
	margin-left: 0;
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: none;
	width: auto;
	margin-left: 0;
	height: auto;
}
.list a {
	height: auto;
}

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

}




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


/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 100px;
	padding: 2px;
}

/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
/*テーブル内の右側*/
.ta2 td {
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta2 th {
	width: 100px;
	padding: 2px;
}
/*テーブル3
---------------------------------------------------------------------------*/
.ta3 {
	width: 100%;
	margin-left: 10px;
}
/*テーブル内の右側*/
.ta3 td {
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta3 th {
	width: 100px;
	padding: 2px;
}
/*テーブル4
---------------------------------------------------------------------------*/
.ta4 {
	width: 100%;
}
/*テーブル内の右側*/
.ta4 td {
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta4 th {
	width: 100px;
	padding: 2px;
}
/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.fr {
	float: none;
	width: 100%;
	margin: 0 0 20px;
}
.fr1 {
	float: none;
	width: 100%;
	margin: 0 0 20px;
}
.fl {float:none;width: 100%;margin:0 0 20px;}
}


