@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body{
	background-size: 150%;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}
/*h1ロゴの設定*/
header h1{
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address{
	position: static;
	width: 100%;	/*ボックス幅*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ロゴ画像の設定*/
header h1 img{
	width: 80%;	/*画面に対して80％の幅に*/
	height: auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu ul{
	height: auto;
	padding: 0;
	background-image: none;
}
/*メニュー１個ごとの設定*/
nav#menu ul li{
	float: none;
	width: auto;
	border: none !important;
	background-image: url(../images/btn_arrow.png), -webkit-gradient(linear, left top, left bottom, from(rgba(247,103,154,0.7)), to(rgba(241,57,109,0.7)));	/*矢印アイコンとグラデーション*/
	background-image: url(../images/btn_arrow.png), -webkit-linear-gradient(rgba(247,103,154,0.7), rgba(241,57,109,0.7));									/*同上*/
	background-image: url(../images/btn_arrow.png), linear-gradient(rgba(247,103,154,0.7), rgba(241,57,109,0.7));											/*同上*/
	background-repeat: no-repeat;
	background-position: right center;
	text-align: left;
}
nav#menu ul li a{
	padding: 15px 0px 15px 20px;	/*メニュー内の余白。上、右、下、左*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child{
	border-radius: 10px 10px 0 0;	/*左上、右上、右下、左下の各丸サイズ*/
}
/*最後のメニューの設定*/
nav#menu ul li:last-child{
	border-radius: 0 0 10px 10px;	/*左上、右上、右下、左下の各丸サイズ*/
}
/*英語表記の設定*/
nav#menu ul li a span{
	display: none;	/*表示させない設定*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub{
	float: none;
	width: auto;
}
#sub > *{
	clear: both;
}
#main p{
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}

/*トップページのメイン画像。表示させたいなら、style-m.cssの同じ箇所のタグをコピペする。
---------------------------------------------------------------------------*/
#mainimg{
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open{
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#666), to(#333));	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#666, #333);									/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#666, #333);											/*同上*/
}
section#new h2.close{
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#666), to(#333));	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#666, #333);									/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#666, #333);											/*同上*/
}
/*ブロック全体の設定*/
#new dl{
	height: auto;
	padding-left: 5px;
}
/*日付設定*/
#new dt{
	float: none;
	width: auto;
}
/*記事設定*/
#new dd{
	padding-left: 0;
}

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list section{
	width: 48%;		/*ボックス幅*/
	margin-left: 1%;	/*ボックスの左右間の余白*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#main .list section a{
	width: 100%;
	height : 300px;	/*ボックスの高さ*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*写真の設定*/
#main .list section figure img{
	width: 100%;
	height: auto;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側ボックス*/
#main .staff .left{
	float: none;
	width: auto;
	padding-bottom: 15px;
	text-align: center;
}
/*写真の設定*/
#main .staff .left figure img{
	width: 80%;
	height: auto;
}
/*右側ボックス*/
#main .staff .right{
	width: auto;
	float: none;
	padding-bottom: 15px;
}

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

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
img.wa{
	width: 100%;
	height: auto;
}
/*<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;
}

/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu{
	text-align: left;
	padding: 10px 0px 10px 20px;
}
ul.navmenu li{
	display: block;
}


/*テーブル２
---------------------------------------------------------------------------*/
.ta2{
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	padding : 2px;
  background-color : white;
  text-align : center;
  font-size : 12px;
}
/*テーブル内の左側*/
.ta2 th{
	padding : 2px;
  font-weight : normal;
  font-size : 11px;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
  font-size : 14px;
  font-weight : bold;
}
