@charset "utf-8";
/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: url(../images/bg_kazari.png) no-repeat fixed right top, url(../images/bg_kazari.png) no-repeat fixed left 400px, url(../images/bg.jpg) repeat-x;/*左からカンマで区切って背景画像を３つ指定*/
}
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: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;
}
/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	font-size: 12px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	background: #4d443a;	/*背景色*/
	text-align: right;		/*右寄せ*/
}
body > h1 a, body > h1 a:hover {
	color: #FFF;
	text-decoration: none;
}
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 985px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 110px;	/*ブロックの高さ*/
	width: 100%;	/*ブロックの幅*/
	position: relative;
}
/*h1ロゴの設定*/
header h1 {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 20px;	/*ヘッダーブロックに対して上から35pxの位置に配置*/
}
/*右側の電話番号のボックス設定*/
header p.toiawase {
	position: absolute;
	right: 20px;	/*ヘッダーブロックに対して右から20pxの位置に配置*/
	top: 15px;	/*ヘッダーブロックに対して上から15pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	border: 5px solid #FFF;	/*枠線の幅、線種、色*/
	text-align: center;
	padding: 5px 15px;	/*左から、上下、左右への余白*/
	line-height: 1.2;	/*行間*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#fff4cc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #fff4cc);									/*同上*/
	background-image: linear-gradient(#FFF, #fff4cc);											/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*電話番号の文字の設定*/
header p.toiawase .tel {
	font-size: 30px;	/*文字サイズ*/
	color: #f28b00;		/*文字色*/
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	line-height: 1.6;
	margin-right: 5px;
	margin-bottom: 20px;
	width: 160px;
}
nav#menu ul li.last {
	margin-right: 0px;
}
nav#menu ul li a {
	color: #FFF;		/*文字色*/
	padding: 10px 0px;	/*左から、上下、左右への余白。（メニュー内の）*/
	text-decoration: none;
	display: block;
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	background-color: #f28b00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f8b200), to(#f28b00));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f8b200, #f28b00);	/*同上*/
	background-image: linear-gradient(#f8b200, #f28b00);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	color: #4d443a;			/*文字色*/
	background: #FFF;		/*背景色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 965px;
	background-color: #FFF;	/*背景色*/
	padding: 10px 10px 0px;	/*コンテンツ内の余白。左から、上、左右、下。*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 240px;
	width: 965px;
	margin-bottom: 20px;
}
#mainimg img {
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	vertical-align: bottom;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのsectionとarticleの直接の子要素のh1タグの設定*/
#main section > h1, #main article > h1 {
	background-color: #f28b00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f8b200), to(#f28b00));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f8b200, #f28b00);	/*同上*/
	background-image: linear-gradient(#f8b200, #f28b00);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 120%;
	color: #FFF;	/*文字色*/
	padding: 7px 10px 3px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 6px 6px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	border-bottom: 4px solid #4d443a;	/*下部の線の幅、線種、色*/
}
#main h1 img {
	vertical-align: middle;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 0;	/*左から、上、左右、下への余白*/
}
#main > p {
	background-color: #FFF;
}
/*mainコンテンツのsectionとarticleの直接の子要素のh2タグの設定*/
#main section > h2, #main article > h2 {
	color: #719a14;	/*文字色*/
	font-size: 120%;
	padding: 0.5em 10px 0;	/*左から、上、左右、下への余白*/
	clear: both;
}
/*mainコンテンツのsectionとarticleの直接の子要素のh3タグの設定*/
#main section > h3, #main article > h3 {
	color: #333;	/*文字色*/
	padding: 0.5em 10px 0;	/*左から、上、左右、下への余白*/
	clear: both;
}
#main section ul li {
	list-style-type: circle;
	list-style-position: inside;
	margin-left: 5px;
}
#main figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
	margin-right: 10px;
}
/*#main a[target="_blank"]:after {
      content: url(/images/icon_window.png);
	  margin:0 3px;
   }*/

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh1タグ設定*/
#sub h1 {
	border-radius: 6px 6px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 5px 0px;	/*左から、上下、左右への余白*/
	background-color: #766653;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#927e67), to(#766653));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#927e67, #766653);	/*同上*/
	background-image: linear-gradient(#927e67, #766653);			/*同上*/
	color: #FFF;	/*文字色*/
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	margin-bottom: 1em;
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-right: 1px solid #999999;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #999999;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #999999;		/*左側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	background-color: #FFF;	/*背景色*/
}
/*マウスオン時の設定*/
#sub ul li a:hover {
	background-color: #ffea99;	/*背景色*/
}
/*サブコンテンツ ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub article.box1 {
	font-size: 11px;	/*文字サイズ*/
	width: 238px;		/*ボックスの幅*/
	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);											/*同上*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
	text-align: center;	/*文字をセンタリング*/
}
#sub article.box1 a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#sub article.box1 a:hover {
	background-color: #ffea99;	/*マウスオン時のボックス色*/
}
/*h1見出しタグ*/
#sub article.box1 h1 {
	color: #4d443a;		/*文字色*/
	/*margin-left: 90px;	/*左の画像とバランスをとって設定する*/
	text-align: left;
	padding: 0;
	background: none;
}
/*p段落タグ*/
#sub article.box1 p {
	/*margin-left: 90px;	/*左の画像とバランスをとって設定する*/
	text-align: left;
	padding: 0;
}
/*サムネイル画像設定*/
#sub article.box1 figure {
	/*	float: left;	左に回り込みさせる設定*/
	padding: 0;
	text-align: center;
}
/*サムネイル画像のフチ*/
#sub article.box1 figure img {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}
/*フッター設定
---------------------------------------------------------------------------*/
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 dl {
	margin: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px dashed #CCC;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}
/*トップページ内.thumbnail サムネイルボックス 4分割写真
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .thumbnail section {
	float: left;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;
	margin-left: 10px;
	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);			/*グラデーション*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	text-align: center;	/*センタリング*/
	line-height: 1.5;
	overflow: hidden;
	position: relative;
}
#main .thumbnail section a {
	text-decoration: none;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding: 10px;	/*ボックス内の余白*/
	display: block;
	width: 140px;	/*幅*/
	height: 210px;	/*高さ*/
}
/*タイトル*/
#main .thumbnail section h4 {
	color: #f19124;	/*文字色*/
	font-size: 100%;
}
/*マウスオン時のボックス*/
#main .thumbnail section a:hover {
	background: #ffeac9;	/*背景色*/
}
#main .thumbnail section figcaption {
	text-align: left;	/*文字を左寄せ*/
}
/*room.html 施設紹介ページ 各部屋の紹介
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.room article {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	margin-bottom: 1em;
	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);											/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.room article p {
	padding: 0px;/*margin-left: 220px;	左の写真とのバランスをとって設定*/
}
/*ボックス内のh1タグ設定*/
#main section.room article h1 {
	font-size: 100%;
	border-left: 5px solid #f28b00;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #f28b00;		/*文字色*/
	background: #FFF;	/*背景色*/
	padding-left: 5px;
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*リンクの設定*/
#main section.room article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#main section.room article a:hover {
	background-color: #ffea99;	/*マウスオン時のボックス色*/
}
/*other.html 施設紹介ページ その他の設備 3分割写真
---------------------------------------------------------------------------*/
#main section.other {
	overflow: hidden;
}
/*各ボックスの設定*/
#main section.other article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*同上*/
	float: left;
	width: 202px;	/*ボックス幅*/
	height: 240px;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
	display: inline;
	margin: 0px 4px 1em;
	overflow: hidden;
	text-align: center;
}
/*ボックス内のh1タグ設定*/
#main section.other article h1 {
	font-size: 100%;
	border-left: 5px solid #f28b00;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #f28b00;		/*文字色*/
	background: #FFF;	/*背景色*/
	padding-left: 5px;
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	border-radius: 0;	/*角丸なしにする*/
	text-align: left;
}
/*ボックス内の段落タグ設定*/
#main section.other article p {
	padding: 0px;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	text-align: left;
	clear: both;
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	padding: 10px;
	text-align: center;
	background-color: #e2e2e2;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	background-color: #e2e2e2;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption {
	padding: 10px;
	border-top: 1px solid #999;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #ffea99;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff0b6), to(#ffea99));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fff0b6, #ffea99);	/*同上*/
	background-image: linear-gradient(#fff0b6, #ffea99);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 200px;
	height: 40px;
}
/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	color: #FFF;	/*文字色*/
	background-color: #927e67;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
}
#pagetop a:hover {
	background-color: #766653;
	color: #FFF;
}
/*「斜めがけリボン」表示
---------------------------------------------------------------------------*/
.corner-ribbon {
	font-size: 11px;
	color: #FFF;
	font-weight: bold;
	background: #f28b00;
	text-align: center;
	display: block;
	width: 130px;
	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);
}
h1 span.corner-ribbon {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #719a14;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.center {
	text-align: center;
}
figcaption {
	font-size: 12px;
	clear: both;
}
.sortbox {
	text-align: right;
	margin-bottom: 1em;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	padding: 10px;
	background: #e5e5e5;
}
.big1 {
	font-size: 130%;
}
/*画像回り込み
---------------------------------------------------------------------------*/
.img_left {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
	margin: 0 10px 10px 0;
}
.img_right {
	float: right;			/*画像を右へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
	margin: 0 0 10px 0;
}
/*ページタイトル背景画像
---------------------------------------------------------------------------*/
#main .title {
	position: relative;
}
#main .title h1 {
	color: #FFF;
	text-shadow: 3px 3px 2px #666;
	position: absolute;
	right: 10px;
	bottom: 3px;
}
#main .title img {
	width:100%;
}
/*Facebook 「Page Plugin」のレスポンシブ対応
---------------------------------------------------------------------------*/
.fb-page, .fb-page span, .fb-page iframe[style] {
	width: 100%!important;
}
/*ボタンの設定
---------------------------------------------------------------------------*/
.button, input[type="submit"], input[type="reset"], input[type="button"] {
	width: 160px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 10px;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #f28b00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f8b200), to(#f28b00));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f8b200, #f28b00);	/*同上*/
	background-image: linear-gradient(#f8b200, #f28b00);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	color: #FFF;		/*文字色*/
	margin-right: 5px;
}
/*ボタンのマウスオン時の設定*/
.button:hover, input[type="submit"]:hover, input[type="button"]:hover {
	background-color: #f8b200;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f28b00), to(#f8b200));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f28b00, #f8b200);	/*同上*/
	background-image: linear-gradient(#f28b00, #f8b200);			/*同上*/
	color: #FFF;
}
/*お知らせ　2重囲み
---------------------------------------------------------------------------*/
.info_box {
    padding: 0.5em 1em;
    margin: 1em 0;
    border: double 5px #f00;
}
.info_box p {
    margin: 0; 
    padding: 0;
}