@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000000;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background: #FFF;	/*背景色*/
}
body.black {
	color: #FFF;
	background: #000;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000000;	/*リンクテキストの色*/
}
body.black a {
	color: #FFF;
}
a:hover,
body.black a:hover {
	color: #555;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #ffffff;	/*ヘッダーの背景色*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 990px;	/*ブロック幅*/
	height: 120px;	/*ブロックの高さ*/
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 35px;	/*innerに対して上から35pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header address {
	position: absolute;
	top: 5px;		/*ヘッダーブロックに対して上から35pxの位置に配置*/
	right: 350px;	/*ヘッダーブロックに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定。*/
	color: #000000;	/*文字色*/
}
/*電話番号の文字設定*/
header address span {
	display: block;
	font-size: 18px;	/*文字サイズ*/
	font-weight: normal;	/*太字に*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menubar ul {
	width: 990px;	/*メニュー部分のブロック幅*/
	height: 50px;	/*高さ*/
	margin: 0px auto;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 160px;	/*メニュー幅*/
	height: 50px;	/*高さ*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
	margin-left: 6px;	/*メニュー同士の余白*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	line-height: 25px;
	padding-top: 5px;
	color: #000000;	/*文字色*/
	background: #c71585;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: rgba(255,255,255,0.5);	/*背景色。左３つが色の設定で一番右が透明度。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	margin-left: 0px;
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	line-height: 15px;
	padding-bottom: 5px;
	opacity: 0.9;	/*透明度50％*/
}
/*currentとマウスオン時の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current {
	background: #ffc0cb;	/*背景色*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 990px;
	margin: 0px auto;
	padding-top: 30px;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 15px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 750px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background: #555;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#777), to(#555));	/*グラデーション*/
	background: -webkit-linear-gradient(#777, #555);	/*同上*/
	background: linear-gradient(#777, #555);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #000000;	/*文字色*/
	padding: 5px 15px;	/*左から、上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	background: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#e3e3e3));	/*グラデーション*/
	background: -webkit-linear-gradient(#fcfcfc, #e3e3e3);	/*同上*/
	background: linear-gradient(#fcfcfc, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #000000;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #FFF;	/*下の線の幅、線種、色*/
	border-left: 3px solid #555;	/*左の線の幅、線種、色*/
}
/*h2とh3共通*/
body.black #main h2,
body.black #main h3 {
	-webkit-box-shadow: none;
	box-shadow: none;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 5px 10px 15px;	/*左から、上、左右、下への余白*/
}












/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main section.list {
	float: left;
	margin: 0px 0px 15px 12px;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	background: linear-gradient(#FFF, #e3e3e3);			/*グラデーション*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*中身をセンタリング*/
	line-height: 1.5;
	overflow: hidden;
	position: relative;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#main section.list a {
	text-decoration: none;
	display: block;
	width: 150px;	/*幅*/
	height: 260px;	/*高さ*/
	padding: 10px;	/*ボックス内の余白*/
}
body.black #main section.list a {
	color: #333;
}
/*スタッフ名（h4タグ）*/
#main section.list h4 {
	color: #555;	/*文字色*/
	font-size: 100%;
}
/*段落タグ*/
#main section.list p {
	padding: 0px;
}
/*サムネイル写真画像*/
#main section.list figure img {
	width: 100%;
	height: auto;
}
/*サムネイル内のアイコン位置*/
#main section.list .icon {
	position: absolute;
	right: 2px;		/*ボックスに対して、右側から2pxの位置に配置*/
	bottom: 2px;	/*ボックスに対して、下側から2pxの位置に配置*/
}
/*マウスオン時のボックス*/
#main section.list a:hover {
	background: #FFF;	/*背景色*/
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff {
	margin: 0px 10px;
}
/*左側ボックス*/
#main .staff .left {
	float: left;	/*左に回り込み*/
	width: 250px;	/*幅*/
	padding-bottom: 15px;
}
#main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right {
	width: 430px;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
/*テーブルタグの左側の見出し（※幅以外は下の方にある「テーブル１」のスタイルで設定しています）*/
#main .staff .right .ta1 th {
	width: 100px;	/*幅*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（右側ブロック）*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 210px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background: #666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#666));	/*グラデーション*/
	background: -webkit-linear-gradient(#999, #666);	/*同上*/
	background: linear-gradient(#999, #666);			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
}
/*subコンテンツ内のbox1設定*/
#sub .box1 {
	background: #eee;			/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 10px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
body.black #sub .box1,
body.black #sub .box1 a {
	color: #333;
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#sub h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul {
	margin-bottom: 0;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub ul li a:hover {
	background: #FF6;	/*マウスオン時の背景色*/
}

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #ffffff;	/*文字色*/
	background:#09F ;	/*背景色と背景画像の読み込み*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 10em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 90%;
}
.ta1, .ta1 td, .ta1 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;	/*幅*/
	padding: 10px;
	text-align: center;
	background: #ffe4b5;	/*背景色*/
}
body.black .ta1 th{
	background: #222;
}
.ta1.schedule-table th{
	width: auto;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #ffa500;	/*背景色*/
}
body.black .ta1 th.tamidashi {
	background: #FF6;
	color: #333;
}






/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 70%;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #000000;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}








/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
body.black input[type="submit"],
body.black input[type="button"],
body.black input[type="reset"] {
	-webkit-box-shadow: none;
	box-shadow: none;
}
/*マウスオン時*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #f9668f;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
body.black .look {
	background: #333;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #555;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin-left: 5px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロックの中*/
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 10px;
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	padding-bottom: 15px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menubar ul {
	width: auto;
	height: auto;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin-left: 3.2% !important;
	margin-bottom: 15px;
	width: 29%;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 3.2%;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main section.list {
	margin: 0px 0px 15px 2%;
	width: 30%;
}
#main section.list a {
	width: auto;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff {
	margin: 0px;
}
/*左側ボックス*/
#main .staff .left {
	width: 35%;
}
/*右側ボックス*/
#main .staff .right {
	width: 62%;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロックの中*/
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 10px;
}
header .inner h1 img {
	width: 70%;
	height: auto;
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	padding-bottom: 15px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menubar ul {
	width: auto;
	height: auto;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	margin: 0;
	margin-bottom: 1px;
	width: auto;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 2%;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main section.list {
	float: none;
	margin: 0px;
	background: none;
	text-align: left;
	border: none;
	border-top: 1px solid #CCC;
}
#main section.list:last-child {
	border-bottom: 1px solid #CCC;
	margin-bottom: 15px;
}
#main section.list a {
	width: auto;
	height: auto;
	overflow: hidden;
}
body.black #main section.list a {
	color: #FFF;
}
body.black #main section.list a:hover {
	color: #333;
}
/*サムネイル写真画像*/
#main section.list figure img {
	width: 30%;
	height: auto;
	float: left;
	margin-right: 15px;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff {
	margin: 0px;
}
/*PC環境で左右に分かれていたボックス*/
#main .staff .left,
#main .staff .right {
	float: none;
	width: auto;
}
#main .staff .left figure {
	width: 80%;
	margin: 0px auto;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#777), to(#555));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#777, #555);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#777, #555);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#777), to(#555));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#777, #555);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#777, #555);
}
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl {
	height: auto;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}








/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}




/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
	z-index: 10;
}

}

