@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	background-color: #fffffc;	/*背景色*/
	background-image: url(../images/mange1.jpg) !important; 
	background-repeat: repeat-x !important;
	background-position: bottom !important;    
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
	cursor: default;
}
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: #666;	/*リンクテキストの色*/
	
}
a:hover {
	color: #d52f2f;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/

}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 970px;	/*コンテナー幅*/
	margin: 0px auto;
}

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(../images/header_bg.jpg) no-repeat center center;	/*背景画像の読み込み*/
	height: 370px;	/*ブロックの高さ*/
	width: 100%;	/*ブロックの幅*/
	position: relative;
	top : 25px;
	margin-bottom: 70px;
}
/*h1タグの設定*/
header h1 {
	font-size: 9px;			/*文字サイズ*/
	line-height: 10px;		/*行間*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
	position: absolute;
	left: 320px;	/*ヘッダーブロックに対して左から192pxの位置に配置*/
	top: 60px;		/*ヘッダーブロックに対して上から70pxの位置に配置*/
	text-shadow: 1px 1px 1px #FFF, -1px -1px 1px #FFF, 0px 0px 3px #FFF;	/*テキストの影*/
}
header #logo {
	position: absolute;
	left: 320px;	/*ヘッダーブロックに対して左から180pxの位置に配置*/
	top: 80px;		/*ヘッダーブロックに対して上から90pxの位置に配置*/
	border-bottom: 1px solid #000;	/*下線の幅、線種、色*/
	width: 400px;	/*幅*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	float: right;
	margin-top: 160px;
	letter-spacing: 0.1em;	/*文字間隔。通常より少し広めに。不要ならこの行ごと削除。*/
	text-shadow: 1px 1px 1px #FFF, -1px -1px 1px #FFF, 0px 0px 3px #FFF;	/*テキストの影*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	width: 380px;		/*ボタンの幅*/
	text-decoration: none;
	display: block;
	padding: 3px 20px;	/*上下、左右への余白*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*英語表記*/
nav#menubar ul li a span {
	padding-left: 10px;
	color: #999;	/*文字色*/
	font-size: 11px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔。通常より少し広めに。不要ならこの行ごと削除。*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	color: #d52f2f;			/*マウスオン時の文字色*/
	border-bottom: 1px solid #d52f2f;	/*下線の幅、線種、色*/
}
/*マウスオン時の英語表記の設定*/
nav#menubar ul li a:hover span {
	color: #d52f2f;			/*マウスオン時の文字色*/
}


/*右上「Home」ボタン
---------------------------------------------------------------------------*/
header p#home a {
	position: absolute;
	top: 0px;		/*ヘッダーブロックに対して上から0pxの位置に配置*/
	right: 20px;	/*ヘッダーブロックに対して右から20pxの位置に配置*/
	color: #FFF;	/*文字色*/
	text-decoration: none;
	background: #666;	/*背景色*/
	display: block;
	line-height: 30px;
	height: 30px;
	width: 110px;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.2em;
	border-radius: 0 0 4px 4px;
}
#top header p#home a {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	margin: 0px auto;
	width: 820px;	/*コンテンツの幅*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;
	padding-bottom: 10px;
}

/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	background-color: #480c64;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/title_bg1.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#9b39b4), to(#480c64));	/*背景画像の読み込みとグラデーション*/
	background: url(../images/title_bg1.png) no-repeat right center, -webkit-linear-gradient(#9b39b4, #480c64);	/*同上*/
	background: url(../images/title_bg1.png) no-repeat right center, linear-gradient(#9b39b4, #480c64);			/*同上*/
	font-size: 105%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 30px;		/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	font-size: 105%;
	font-color: #330000;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 30px;		/*角丸のサイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 30px 1em;	/*左から、上、左右、下への余白*/
}

blockquote {
    white-space: pre-wrap;
	font-size: 115%;
	line-height: 35px;
}

/*counter設定
---------------------------------------------------------------------------*/
#main counter {
	clear: both;
}
#main counter a {
	text-decoration: none;
	display: block;
	float: right;
}

/*スライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
}
#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;
}


/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	width: 700px;	/*ボックスの幅*/
	margin: 0px auto 15px;
	padding: 20px;	/*ボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	position: relative;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 30%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	color: #9b39b4;	/*文字色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	border-bottom: 1px solid #9b39b4;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}

/*開閉ブロック用
---------------------------------------------------------------------------*/
h3#openclosebox1_hdr.open {
background: url(../images/btn_minus.png) no-repeat left center;	/*マイナスアイコン*/
}

h3#openclosebox1_hdr.close {
background: url(../images/btn_plus.png) no-repeat left center;	/*プラスアイコン*/
}

/*開閉ブロック用
---------------------------------------------------------------------------*/
h3#openclosebox2_hdr.open {
background: url(../images/btn_minus.png) no-repeat left center;	/*マイナスアイコン*/
}

h3#openclosebox2_hdr.close {
background: url(../images/btn_plus.png) no-repeat left center;	/*プラスアイコン*/
}

/*開閉ブロック用
---------------------------------------------------------------------------*/
h3#openclosebox3_hdr.open {
background: url(../images/btn_minus.png) no-repeat left center;	/*マイナスアイコン*/
 
}
h3#openclosebox3_hdr.close {
background: url(../images/btn_plus.png) no-repeat left center;	/*プラスアイコン*/
}

/*開閉ブロック用
---------------------------------------------------------------------------*/
h3#openclosebox4_hdr.open {
background: url(../images/btn_minus.png) no-repeat left center;	/*マイナスアイコン*/
}

h3#openclosebox4_hdr.close {
background: url(../images/btn_plus.png) no-repeat left center;	/*プラスアイコン*/
}

/*開閉ブロック用
---------------------------------------------------------------------------*/
h3#openclosebox5_hdr.open {
background: url(../images/btn_minus.png) no-repeat left center;	/*マイナスアイコン*/
}

h3#openclosebox5_hdr.close {
background: url(../images/btn_plus.png) no-repeat left center;	/*プラスアイコン*/
}

/*開閉ブロック用
---------------------------------------------------------------------------*/
h3#openclosebox6_hdr.open {
background: url(../images/btn_minus.png) no-repeat left center;	/*マイナスアイコン*/
}

h3#openclosebox6_hdr.close {
background: url(../images/btn_plus.png) no-repeat left center;	/*プラスアイコン*/
}

/*開閉ブロック用
---------------------------------------------------------------------------*/
h3#openclosebox7_hdr.open {
background: url(../images/btn_minus.png) no-repeat left center;	/*マイナスアイコン*/
}

h3#openclosebox7_hdr.close {
background: url(../images/btn_plus.png) no-repeat left center;	/*プラスアイコン*/
}
	
/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main2 section.list {
	float: left;		/*画像を左へ回り込み*/
	width: 340px;	/*ボックスの幅*/
	margin: 0px 15px 15px 15px;
	padding: 15px;	/*ボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	position: relative;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main2 section.list p {
	padding: 0px;
	margin-left: 0%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main2 section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	margin-left: 5px;
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 320px;		/*写真の幅*/
	height: 220px;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main2 section.list h4 {
	font-size: 100%;
	color: #d52f2f;	/*文字色*/
	margin-left: 1 %;	/*左の写真とのバランスをとって設定*/
	border-bottom: 1px solid #d52f2f;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;

}


/*メインコンテンツ3
---------------------------------------------------------------------------*/
#main3 {
	width: 100%;
	padding-bottom: 10px;
}

/*mainコンテンツのh2タグの設定*/
#main3 h2 {
	clear: both;
	background-color: #480c64;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/title_bg1.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#9b39b4), to(#480c64));	/*背景画像の読み込みとグラデーション*/
	background: url(../images/title_bg1.png) no-repeat right center, -webkit-linear-gradient(#9b39b4, #480c64);	/*同上*/
	background: url(../images/title_bg1.png) no-repeat right center, linear-gradient(#9b39b4, #480c64);			/*同上*/
	font-size: 105%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 30px;		/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main3 h3 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	font-size: 105%;
	font-color: #330000;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 30px;		/*角丸のサイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	
}

/*mainコンテンツの段落タグ設定*/
#main3 p {
	padding: 0.5em 30px 1em;	/*左から、上、左右、下への余白*/
}

/*GALLERYページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main3 section.list {
	float: left;	/*画像を左へ回り込み*/
	width: 40%;		/*幅*/
	height: 40%;
	margin: 0 0 15px 1.5%;	/*ボックスの外（上、右、下、左）へ空けるスペース*/
	font-size: 12px;	/*文字サイズ*/
	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.3);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 2px 2px 6px rgba(0,0,0,0.3);			/*同上*/
	border-radius: 10px;	/*角丸のサイズ*/
}
#main3 section.list a {
	padding: 9%;	/*ボックス内の余白*/
	border-radius: 10px;	/*角丸のサイズ*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	opacity: 1;		/*透明度の設定。0.8は80%の透明度という意味。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオンとクリック時の設定*/
#main3 section.list a:hover,
#main3 section.list a:active {
	opacity: 1;	/*透明度を100%にする設定*/
}
/*ボックス内の段落タグ設定*/
#main3 section.list p {
	padding: 0px;
}
/*ボックス内の写真設定*/
#main3 section.list figure img {
	width: 100%;		/*写真の幅*/
	height: 50%;
}
/*ボックス内のh4タグ設定*/
#main3 section.list h4 {
	color: #777684;		/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#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 #ccc;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 760px;	/*テーブル幅*/
	margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 5px;
}
.ta1 td img {
	height: auto;
	width: 100%;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;	/*幅*/
	padding: 5px;
	text-align: center;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 150px;	/*ボタン幅*/
	padding: 6px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
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(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE arrow設定
---------------------------------------------------------------------------*/
#pagearrow {
	clear: both;
}
#pagearrow a {
	font-size: 12px;	/*文字サイズ*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border-radius: 10px;
	border: 1px solid #666;
}
/*マウスオン時*/
#paggarrow a:hover {
	border: 1px solid #FFF;
	color: #FFF;			/*文字色*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	font-size: 10px;	/*文字サイズ*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border-radius: 10px;
	border: 1px solid #666;
}
/*マウスオン時*/
#pagetop a:hover {
	border: 1px solid #;024169
	color: #024169;			/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #d52f2f;
}
.color2 {
	color: #ff00ff;
}
.color3 {
	color: #0000cd;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.big1 {
	font-size: 40px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}

img.fr {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}
img.fl {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.big1 {
	font-size: 30px;
	letter-spacing: 0.2em;
}
.mini1 {
	font-size: 11px;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}


/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){
	
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;	/*コンテナー幅*/
	margin: 0px 10px 10px;
}

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(../images/header_bg.jpg) no-repeat center center / 100%;	/*背景画像の読み込みとサイズ*/
	margin-bottom: 30px;
}
/*h1タグの設定*/
header h1 {
	position: absolute;
	left: 32px;	/*ヘッダーブロックに対して左から32pxの位置に配置*/
	top: 70px;	/*ヘッダーブロックに対して上から70pxの位置に配置*/
}
header #logo {
	position: absolute;
	left: 20px;		/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 90px;		/*ヘッダーブロックに対して上から90pxの位置に配置*/
	width: auto;	/*幅*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	width: auto;		/*ボタンの幅*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;	/*コンテンツの幅*/
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	width: auto;	/*ボックスの幅*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;	/*コンテナー幅*/
	margin: 0px 5px 5px;
}

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(../images/header_bg.jpg) no-repeat center center / 100%;	/*背景画像の読み込みとサイズ*/
	height: 170px;
	margin-bottom: 0px;
}
/*h1タグの設定*/
header h1 {
	display: none;
}
header #logo {
	position: absolute;
	left: 0px;
	top: 40px;
	width: auto;
}
header #logo img {
	height: auto;
	width: 90%;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	margin-top: 100px;
	text-align: right;
	margin-bottom: 10px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	width: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;	/*コンテンツの幅*/
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	width: auto;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#0037fb), to(#0007f4));	/*背景画像とマイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#0037fb, #0007f4);	/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/title_bg1.png) no-repeat right center, linear-gradient(#d52f2f, #980404);			/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#0037fb), to(#0007f4));	/*背景画像とプラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#0037fb, #0007f4);	/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/title_bg1.png) no-repeat right center, linear-gradient(#d52f2f, #980404);			/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 5px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 5px;
}
.ta1 p {
	padding: 0px !important;
}

/*その他
---------------------------------------------------------------------------*/
/*メニュー折りたたみ設定*/
#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;
}


