@charset "utf-8";

/*Google Fontsの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Cinzel');

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



/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	background-color: #ff0983;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#b2065b), to(#ff0983));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#b2065b, #ff0983 20%);	/*同上*/
	background-image: linear-gradient(#b2065b, #ff0983 20%);			/*同上*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズと行間、フォント指定*/
}
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;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
}
a:hover {
	color: #FFCC00;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	width: 980px;
	margin: 0px auto;
	font-size: 11px;	/*文字サイズ*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定。*/
	text-align: right;	/*右寄せ*/
	line-height: 30px;	/*行間*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 940px;	/*幅*/
	margin: 0px auto;
	background: #000;	/*背景色*/
	border-radius: 0 0 10px 10px;	/*角丸のサイズ。左上・右上・右下・左下の順。*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.3);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);			/*同上*/
	padding: 20px;	/*ボックス内の余白*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 980px;	/*幅*/
	height: 80px;	/*ブロックの高さ*/
	margin: 0px auto;
	position: relative;
	background-color: #000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#777), to(#000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#777, #000 30%);	/*同上*/
	background-image: linear-gradient(#777, #000 30%);			/*同上*/
	border-radius: 10px 10px 0 0;	/*角丸のサイズ。左上・右上・右下・左下の順。*/
}
/*ロゴの設定*/
header #logo {
	position: absolute;
	left: 40px;	/*ヘッダーブロックに対して左から40pxの位置に配置*/
	top: 25px;	/*ヘッダーブロックに対して上から25pxの位置に配置*/
}
/*電話番号ボックスの設定*/
header address {
	position: absolute;
	top: 25px;		/*ヘッダーブロックに対して上から25pxの位置に配置*/
	right: 40px;	/*ヘッダーブロックに対して右から40pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定。*/
}
/*電話番号の文字設定*/
header address span {
	font-size: 18px;	/*文字サイズ*/
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#cdcdcd));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #cdcdcd);	/*同上*/
	background-image: linear-gradient(#FFF, #cdcdcd);			/*同上*/
	border-radius: 10px;		/*角丸のサイズ*/
	margin-bottom: 25px;	/*メニュー下の余白*/
	height: 50px;
	padding-left: 20px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 150px;	/*メニュー幅*/
	text-align: center;
}
nav#menubar ul li a {
	color: #333;		/*文字色*/
	text-decoration: none;
	display: block;
	line-height: 50px;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background-color: #cdcdcd;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#cdcdcd), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#cdcdcd, #FFF);	/*同上*/
	background-image: linear-gradient(#cdcdcd, #FFF);			/*同上*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	border-radius: 10px;
	margin-bottom: 30px;
}
#mainimg img {
	border-radius: 10px;
}
#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,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	border-radius: 10px;	/*角丸のサイズ*/
	background-color: #c3387d;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/bg1.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#c3387d), to(#91064a));	/*グラデーション*/
	background: url(../images/bg1.png) no-repeat right center, -webkit-linear-gradient(#c3387d, #91064a);	/*同上*/
	background: url(../images/bg1.png) no-repeat right center, linear-gradient(#c3387d, #91064a);			/*同上*/
	font-size: 100%;
	color: #FFF;		/*文字色*/
	padding: 8px 15px;	/*上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	border-radius: 10px;	/*角丸のサイズ*/
	background-color: #111;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #111);	/*同上*/
	background-image: linear-gradient(#222, #111);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	clear: both;
	border: 1px solid #555;	/*枠線の幅、線種、色*/
	color: #FFF;	/*文字色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	border: 1px solid #555;	/*枠線の幅、線種、色*/
	border-radius: 8px 8px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0px;	/*上下、左右への余白*/
	background-color: #111;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #111);	/*同上*/
	background-image: linear-gradient(#222, #111);			/*同上*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;
	border-top: 1px solid #555;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #555;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #555;	/*左側の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #555;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #111;	/*背景色*/
}
/*見出しにメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul.submenu {
	border-top: none;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

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

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list section {
	float: left;
	margin-bottom: 15px;
	margin-left: 12px;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*グラデーション*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*中身をセンタリング*/
	line-height: 1.5;
	overflow: hidden;
	position: relative;
	color: #333;	/*文字色*/
}
#main .list section a {
	text-decoration: none;
	padding: 10px;	/*ボックス内の余白*/
	display: block;
	width: 140px;	/*幅*/
	height: 210px;	/*高さ*/
	color: #333;	/*文字色*/
}
/*スタッフ名（h4タグ）*/
#main .list section h4 {
	color: #91064a;	/*文字色*/
	font-size: 100%;
}
/*サムネイル内のアイコン位置*/
#main .list section .icon {
	position: absolute;
	right: 2px;		/*ボックスに対して、右側から2pxの位置に配置*/
	bottom: 2px;	/*ボックスに対して、下側から2pxの位置に配置*/
}
/*マウスオン時のボックス*/
#main .list section a:hover {
	background: #FFF;	/*背景色*/
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff {
	margin-right: 10px;
	margin-left: 10px;
}
/*左側ボックス*/
#main .staff .left {
	float: left;	/*左に回り込み*/
	width: 250px;	/*幅*/
	padding-bottom: 15px;
}
#main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right {
	width: 400px;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
/*テーブル内の左側*/
#main .staff .right .ta1 th {
	width: 100px;	/*幅*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #555;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #111;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #333;	/*背景色*/
}
/*schedule-table*/
.ta1.schedule-table th{
	width: auto;
}
.ta1.schedule-table td{
	width: 12%;
	text-align: center;
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #cdcdcd;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#cdcdcd));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #cdcdcd);	/*同上*/
	background-image: linear-gradient(#FFF, #cdcdcd);			/*同上*/
	letter-spacing: 0.1em;
	border: none;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#cdcdcd), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#cdcdcd, #FFF);	/*同上*/
	background-image: linear-gradient(#cdcdcd, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #333;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #333;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #FFCC00;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}

/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: auto;
	margin: 10px 10px 0px;
	text-align: center;
	padding: 10px 0px;
}
/*ロゴの設定*/
header #logo {
	position: static;
}
/*電話番号ボックスの設定*/
header address {
	position: static;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	background: none;
	border-radius: 0px;
	height: auto;
	padding-left: 0;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	height: 50px;
	width: 49%;	/*幅*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#cdcdcd));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #cdcdcd);	/*同上*/
	background-image: linear-gradient(#FFF, #cdcdcd);			/*同上*/
	border-radius: 8px;
	margin-bottom: 5px;
}
/*偶数番目のメニューの設定*/
nav#menubar ul li:nth-child(even) {
	margin-left: 1%;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	border-radius: 8px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;	/*コンテンツの幅*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list section {
	width: 31%;
	margin-left: 2%;
}
#main .list section a {
	width: 100%;	/*幅*/
	height: 250px;	/*高さ*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側ボックス*/
#main .staff .left {
	width: 33%;
}
#main .staff .left figure img {
	width: 100%;
	height: auto;
}
/*右側ボックス*/
#main .staff .right {
	width: 65%;	/*幅*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: auto;
	margin: 10px 10px 0px;
	text-align: center;
	padding: 10px 0px;
}
/*ロゴの設定*/
header #logo {
	position: static;
}
/*電話番号ボックスの設定*/
header address {
	position: static;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	background: none;
	border-radius: 0px;
	height: auto;
	padding-left: 0;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	height: 40px;
	width: 49%;	/*幅*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#cdcdcd));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #cdcdcd);	/*同上*/
	background-image: linear-gradient(#FFF, #cdcdcd);			/*同上*/
	border-radius: 8px;
	margin-bottom: 5px;
}
nav#menubar ul li a {
	line-height: 40px;
}
/*偶数番目のメニューの設定*/
nav#menubar ul li:nth-child(even) {
	margin-left: 1%;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	border-radius: 8px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;	/*コンテンツの幅*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

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

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list section {
	float: none;
	margin-left: 0;
}
#main .list section a {
	width: auto;	/*幅*/
	height: auto;	/*高さ*/
}
/*写真の設定*/
#main .list section figure img {
	width: 70%;
	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 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 5px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 5px;
}
.ta1 p {
	padding: 0px !important;
}

/*その他
---------------------------------------------------------------------------*/
/*<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;
}

}
