@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	background: #152e64;	/*全体の背景色*/
	background: radial-gradient(circle 300px at 18% 70px,#2857bd,#152e64);	/*ロゴ背後の光*/
	margin: 0px;
	padding: 0px;
	font: 0.9em/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;
}



/*見出し　★★追加★★===============================================*/

h4 {
	
	clear: both;
	text-align: left;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 1.0em;
	font-weight: bold;
	line-height: 1.4em;
	color: #1A1A1A;		/*文字色*/
	padding: 5px;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#cdcdcd));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #cdcdcd);	/*同上*/
	background: linear-gradient(#FFF, #cdcdcd);			/*同上*/
	border-radius: 3px;	/*角丸のサイズ*/
}
h5 {
	font-size: 0.9em;
	font-weight: bold;
	line-height: 1.4em;
	color: #001ada;
	padding: 0px;
	text-align: left;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
	clear: both;
}
h6 {
	font-size: 0.9em;
	font-weight: bold;
	line-height: 1.4em;
	color: #001ada;
	padding: 0px;
	text-align: left;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 5px;
	margin-bottom: 10px;
	border-bottom: 0px solid #fff;
	clear: both;
}


/*リンク（全般）設定　★★差し換え★★
---------------------------------------------------------------------------*/
a {
	color: #fee32e;	/*リンクテキストの色*/
	text-decoration: underline;
}
a:visited {
	color: #F5B427;
}
a:hover {
	color: #fef72e;			/*マウスオン時の文字色*/
	text-decoration: underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a:active {
	color: #fef72e;
}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*ヘッダーの幅*/
	height: 160px;	/*ヘッダーの高さ*/
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-size: 0.8em;		/*文字サイズ*/
	line-height: 1.0;	/*行間*/
	position: absolute;
	top: 10px;			/*ヘッダーブロックに対して下から8pxの位置に配置*/
	right: 10px;			/*ヘッダーブロックに対して右から10pxの位置に配置*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 15px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 20px;	/*ヘッダーブロックに対して上から22pxの位置に配置*/
}
/*ロゴ画像の設定★★追加★★*/
header #logo img {
	width:auto;
	height:130px;
}
/*電話番号ボックスの設定*/
header #tel {
	position: absolute;
	bottom: 18px;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	right: 10px;	/*ヘッダーブロックに対して右から20pxの位置に配置*/
	font-size: 1.0;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;
	border: 1px solid #3069e4;
	background-color: #1d3f8a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1d3f8a), to(#0d1d3f));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#1d3f8a, #0d1d3f);	/*同上*/
	background-image: linear-gradient(#1d3f8a, #0d1d3f);			/*同上*/
	padding: 5px 20px;
}
/*電話番号の文字設定*/
header #tel span {
	font-size: 18px;	/*文字サイズ*/
	font-weight: bold;	/*太字に*/
	display: block;
}





/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar ul {
	background-color: #cbab25;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a98f44), to(#cbab25));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#dfd9cb, #a98f44 49%, #9c7d22 50%, #cbab25);	/*同上*/
	background-image: linear-gradient(#dfd9cb, #a98f44 49%, #9c7d22 50%, #cbab25);			/*同上*/
	-webkit-box-shadow: 1px 1px 8px rgba(0,0,0,0.3);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 1px 8px rgba(0,0,0,0.3);			/*同上*/
	height: 50px;	/*高さ*/
	border: 1px solid #74571f;	/*枠線の幅・線種・色*/
	border-radius: 8px;	/*角丸のサイズ*/
	padding-left: 17px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 118px;	/*幅*/
	border-right: 1px solid #75581f;	/*右側の線の幅・線種・色*/
	position: relative;	/*遠州流茶道対応★★追加★★*/
}
nav#menubar ul li a {
	line-height: 50px;	/*行間*/
	text-decoration: none;
	display: block;
	font-size: 1em;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	color: #FFF;	/*文字色*/
	font-weight:bold;
	letter-spacing:0.15em;
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: 1px solid #75581f;	/*左側の線の幅・線種・色*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background-color: #9c7d22;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ceb14b), to(#fee32e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e8dfcd, #ceb14b 49%, #c7a62b 50%, #fee32e);	/*同上*/
	background-image: linear-gradient(#e8dfcd, #ceb14b 49%, #c7a62b 50%, #fee32e);			/*同上*/
	color: #FFF;	/*文字色*/
}

/*遠州流茶道対応★★追加★★*/
nav#menubar span.sado{
	display:block;
	position: absolute;
	bottom: 3px;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	left: 5%;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	right: 5%;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	font-size:0.9em;
	line-height:1;	
}
/*Safariだけに適用されるCSSハック*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, nav#menubar span.sado {
	display:none;
  }
}





/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	border-radius: 8px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 1px 8px rgba(0,0,0,0.3);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 1px 8px rgba(0,0,0,0.3);			/*同上*/
	margin-bottom: 30px;
}
#mainimg img {
	border-radius: 8px;	/*角丸のサイズ*/
}
#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: 950px;	/*コンテンツ幅*/
	padding-top: 30px;
	margin: 0px auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#cdcdcd));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #cdcdcd);	/*同上*/
	background: linear-gradient(#FFF, #cdcdcd);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.5);			/*同上*/
	font-size: 100%;
	color: #1A1A1A;		/*文字色*/
	clear: both;
	border-bottom: 5px solid #9c7d22;	/*下の線の幅・線種・色*/
	padding: 8px 15px;	/*上下・左右への余白*/
	letter-spacing:0.1em;		/*字間★★追加★★*/
}
/*h2を画像にする場合の設定*/
#main h2.img {
	border-bottom: none;
	padding: 0;
	background: transparent;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	border: 1px solid #3069e4;	/*枠線の幅・線種・色*/
	background-color: #1d3f8a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1d3f8a), to(#0d1d3f));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#1d3f8a, #0d1d3f);	/*同上*/
	background-image: linear-gradient(#1d3f8a, #0d1d3f);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	clear: both;
	margin-bottom:10px;		/*下部スペース★★追加★★*/
	letter-spacing:0.1em;		/*字間★★追加★★*/	
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*上、左右、下への余白*/
}


/*room.html内の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	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);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.5);			/*同上*/
	border-radius: 8px;	/*角丸のサイズ*/
}
#main section.list a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	color: #333;	/*文字色*/
}
/*マウスオン時*/
#main section.list a:hover {
	background-color: #fff;	/*背景色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	width: 30%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #999;	/*下側の線の幅、線種、色*/
	border-left: 4px solid #9c7d22;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}

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

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/

/*サブコンテンツ内リンク★★追加★★-------------*/
#sub a {
	color: #fff;	/*リンクテキストの色*/
	text-decoration: underline;
}
#sub a:visited {
	color: #fff;
}
/*↑ここまで-----*/


/*メニュー全体の設定*/
#sub ul.submenu,#sub ul.submenu2 {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
	text-align: left;		/*中身をセンタリング*/

}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border: 1px solid #2858bf;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left:10px;
	line-height:2.5;
	
	-webkit-box-shadow: 0px 0px 30px #1d408b inset;	/*内側への影。右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 0px 30px #1d408b inset;			/*同上*/
	margin-bottom:3px;
	
	text-decoration: none;
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover,#sub ul.submenu2 li a:hover {
	background-color: #0d1d3f;	/*背景色*/
	color: #fee32e;				/*文字色*/
}



/*メニュー１個ごとの設定*/
#sub ul.submenu2 li a {
	border-bottom: 1px solid #2858bf;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left:10px;
	line-height:2.5;
	
	text-decoration: none;
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;
}

#sub ul.submenu2 li:first-child a {
	border-top: 1px solid #2858bf;	/*下側の線の幅、線種、色*/
}



/*サブカテゴリの設定★★追加★★-------------*/
#sub ul ul {
	margin-bottom: 0;	/*メニューブロックの下にあけるスペース*/
	text-align: left;		/*中身をセンタリング*/
	border: none;	/*下側の線の幅、線種、色*/


}

#sub ul.submenu2 ul li.jyunbichu, #sub ul.submenu2 ul li a {
	border-top: 0px none;
	padding-left: 2em;
	background-image: url(/images/aqa_s.png);
	background-repeat: no-repeat;
	background-position: 10px 12px;
	font-size: 0.95em;
}

#sub ul.submenu2 ul li:first-child a{
border-top: none !important;
}


/*お知らせ専用サブメニュー2の設定*/

/*メニュー１個ごとの設定*/
#sub ul.submenu2 li.jyunbichu {
	border-bottom: 1px solid #2858bf;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left:10px;
	line-height:2.5;	
	text-decoration: none;
	padding-left: 10px;
color:#CCC;
}









/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	border: 1px solid #2858bf;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 30px;	/*ボックスの下に空けるのスペース*/
	background-color: #081125;	/*背景色*/
	-webkit-box-shadow: 0px 0px 30px #1d408b inset;	/*内側への影。右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 0px 30px #1d408b inset;			/*同上*/
}


/*検索エンジンボックス　★★追加★★
---------------------------------------------------------------------------*/
/*検索エンジンボックスの設定*/
div.search {
	margin-bottom:30px;
	width:220px;
}




.gsc-search-box {
	height: 25px;
	padding: 0 !important;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	box-shadow: 0 0 5px #DDDDDD;
	-moz-box-shadow: 0 0 5px #DDDDDD;
	-webkit-box-shadow: 0 0 5px #DDDDDD;
	
	background-color:#fff;
}

.gsc-input-box{
	border:0 !important;
}

.gsc-input{
	padding:0 !important;
	padding-left:3px !important;
}

input.gsc-search-button-v2, input.gsc-search-button-v2 {
    width: 13px;
    height: 13px;
    padding: 6px 10px !important;
    min-width: 13px;
    margin-top: 4px !important;
	margin-right:3px !important;
}


input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
border-color: #fff !important;
    background: url("/images/icon_search.png") no-repeat scroll 50% 50% #fff !important;

}	


/*Googleの検索結果へCSSの引き引継ぎさせないよう制御*/
#___gcse_0 {
color: initial;
font-family: initial;
line-height: initial;
color: -moz-initial;
font-family: -moz-initial;
line-height: -moz-initial;
}


/*カスタム検索の背景を透明にする*/
.gsc-control-cse {
    border-color: none!important;
    background-color: transparent!important;
}
.cse .gsc-control-cse, .gsc-control-cse {
    background-color: none!important;
    border: 0px solid #FFF!important;
    padding: 0px!important;
}
.gsib_a {
padding:0!important;
}
/*検索結果タイトルエリア*/
.gsc-thumbnail-inside {
    padding-left: 0!important;
}
/*検索結果タイトル行の高さ*/
.gsc-result .gs-title {
    height:auto!important;
}
/*検索結果URL*/
.gsc-url-top {
    padding-left: 0!important;
}
/*検索結果概要*/
gsc-table-result {
    line-height: 1.5!important;
}
/*Googleロゴ位置*/
img.gcsc-branding-img-noclear{
vertical-align: middle!important;
}

/*Googleロゴ位置*/
.gs-result .gs-title, .gs-result .gs-title * {
    color: #0000cc !important;
}



/*サブコンテンツ　運営　★★追加★★
---------------------------------------------------------------------------*/
/*運営*/
#sub address {
	font-style:normal;
}


#sub address h2,#sub address p, {

}

#sub address div.box1 {
	border: 1px solid #2858bf;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるのスペース*/
	background-color: #081125;	/*背景色*/
	-webkit-box-shadow: 0px 0px 30px #1d408b inset;	/*内側への影。右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 0px 30px #1d408b inset;			/*同上*/
}
/*電話番号後のスペース*/
#sub address span.toiawase{
	margin-right:0;
}


/*サブコンテンツ　バナー　リンク　★★追加★★
---------------------------------------------------------------------------*/
/*バナー=====================*/
#sub #banner{
	text-align:center;

}

#sub #banner img{
	margin-bottom:10px;
	max-width:218px;
	height:auto;
	border : 1px solid #cccccc;	/*左の線の幅、線種、色*/
	padding:0;


}

#sub #banner img.none{
	margin-bottom:10px;
	max-width:200px;
	height:auto;
	border : 0px solid #cccccc;	/*左の線の幅、線種、色*/
	padding:0px;
}


/*マウスオン時*/
#sub #banner a:hover img {
  opacity: 0.9;
  filter: alpha(opacity=90);
  -ms-filter: "alpha(opacity=90)";
}

/*リンク=====================*/
#sub #link {
	display:none;
}





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

footer br.kai {
	display: none;
}




/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	clear:both;
	margin-bottom: 15px;
	background-color: #081125;	/*背景色*/
}
#new dl{
	padding: 15px;
	padding-top: 5px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
	padding:5px;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #2858bf;	/*下線の幅、線種、色*/
	padding-left: 8em;
	padding:5px;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;
	background: #081125;	/*背景色*/
	margin-left:15px;
	margin-right:15px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #2858bf;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 6em;
	padding: 10px;
	text-align: center;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #1d408b;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1d408b), to(#0d1d3f));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#1d408b, #0d1d3f);	/*同上*/
	background-image: linear-gradient(#1d408b, #0d1d3f);
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #d7d7d7;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#d7d7d7));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #d7d7d7);	/*同上*/
	background-image: linear-gradient(#FFF, #d7d7d7);			/*同上*/
	border: none;
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.5);			/*同上*/
}
/*ボタンのマウスオン時の設定*/
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(#d7d7d7), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#d7d7d7, #FFF);	/*同上*/
	background-image: linear-gradient(#d7d7d7, #FFF);			/*同上*/
	-webkit-box-shadow: none;
	box-shadow: none;
	position: relative;
	left: 1px;
	top: 1px;
}



/*PAGE TOP設定　★★差換★★
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
	margin-right:0;

}
#pagetop a {
	color: #FFF;	/*文字色*/
	background-color: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
	padding:0.5em;
border-radius: 5px;
}
#pagetop a:hover {
	background-color: #FFF;
	color: #081125;
}
#main p.ue {
	clear: both;
	float:right;
	margin-bottom:1em;
	padding-right:0;
}
#main p.ue a {
	color: #FFF;	/*文字色*/
	background-color: #081125;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
	padding:0.5em;
border-radius: 5px;
}
/*マウスオン時*/
#main p.ue a:hover {
	background-color: #FFF;
	color: #081125;
}





/*その他■■
---------------------------------------------------------------------------*/
.look {
	background: #0d1d3f;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}

/*アイコン　★★差換★★ -----------*/
ul.disc {
	padding: 0em 20px 0em;
	list-style: disc;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: 1em;
	margin-bottom: 2em;
	list-style-image: url(/images/blue2.png);
}


.color1 {
	color: #fee32e;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
img {
	max-width:100%;
	height:auto;
}
#menubar_hdr {
	display: none;
}

/*Googleマップのレスポンシブ対応　★★追加★★====================*/
.google-maps {/*余白※サイトにより異なる*/
	margin:0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

.google-maps {
	position: relative;
	padding-bottom: 75%; // これが縦横比
	height: 0;
	overflow: hidden;
}
 .google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}






/*オリジナル
---------------------------------------------------------------------------*/
/*文字カスタマイズ===============================================*/

.large {
	font-size: 1.3em;
	font-weight: bold;
}
.small {
	font-size: 0.8em;
	line-height: 1.2em;
}
.furigana {
	font-size: 0.7em;
	line-height: 1.8em;
}

.FF0000 {
	color: #FF0000;
}
.blue {
	color: #3fa8f4;
}
.green {
	color: #006B0E;
}
.orange {
	color: #EA561C;
}
.catch {
	font-size: 1.2em;
	line-height: 1.4em;
	color: #8BC53F;
	font-weight: bold;
	text-align: center;
	letter-spacing: normal;
}
.catch2 {
	font-size: 1.5em;
	line-height: 1.4em;
	color: #8BC53F;
	font-weight: bold;
	letter-spacing: normal;
}
.catch3 {
	font-size: 1.5em;
	line-height: 1.4em;
	color: #f47a01;
	font-weight: bold;
	letter-spacing: normal;
}
.catch4 {
	font-size: 1.2em;
	line-height: 1.4em;
	color: #f47a01;
	font-weight: bold;
	text-align: center;
	letter-spacing: normal;
}
.catch5 {
	font-size: 1.2em;
	line-height: 1.5;
	color: #00a0e8;
	font-weight: bold;
	letter-spacing: normal;
}

/*定番===============================================*/
/*画像の拡大=====================*/
.auto {
	width:auto!important;
}
/*位置の制御===*/
.left {
	float: left;
	vertical-align: text-top;
	text-align: left;
}
.right {
	float: right;
	vertical-align: text-top;
	text-align: right;
}
.center {
	text-align: center;
}
br.clear {
	clear: both;
	line-height: 0px;
}
/*画像の回り込み===*/

.img-left {
	margin-right: 15px;
	float: left;
	margin-bottom: 10px;
	text-align: center;
}
.img-right {
	margin-left: 15px;
	float: right;
	margin-bottom: 10px;
	text-align: center;
}
.img-center {
	margin-bottom: 10px;
	text-align: center;
}


/*各カテゴリの設定
---------------------------------------------------------------------------*/
/*由来　====================*/
#uta ul {
	clear:both;
	margin-left:15px;
	margin-right:15px;
	margin-bottom:30px;
	width:480px;
	color: #1A1A1A;		/*文字色*/
}
#uta li {
	float:left;
	width:14em;
	padding-left:1em;
	padding-right:1em;
	display: block;
	background-color:#FFFFFF;
}
/*寂室頂相===============================================*/
.jyakushitsugenko-img {
	margin-right: 15px;
	float: left;
	margin-bottom: 10px;
	text-align: center;
	width:300px;
	height:auto;	
}

/*小堀遠州===============================================*/
#enshu .enshu-img {
	margin-left: 15px;
	float: right;
	margin-bottom: 10px;
	text-align: center;
	width:300px;
	height:auto;	
}



/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#info {
	margin-bottom: 15px;
	margin-right:0px;
}
#info img {
	width: 150px!important;
	height: auto;
	float: right;
	margin-left: 10px;
	padding: 5px;
	border: 1px solid #ccc;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 0px;
	box-shadow: 0px 0px;
}
#info dl {
	margin-bottom: 20px;
	margin-right: 15px;
	margin-left:15px;
}
/*日付設定*/
#info dt {
	clear:both;
	float:left;
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 130px;
	padding-top:0.5em;
	padding-left:5px;
}
/*記事設定*/
#info dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 135px;
	padding-top:0.5em;
	padding-bottom:0.5em;
}

#info dd img {
	vertical-align: middle;
}
#info h2 {
	margin-bottom: 5px;
}

#info dl:first-child  {/*★★お知らせのみ追加*/
	border-top: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
}

/*ブログ記事段落タグ設定===============================================*/

div.entries {
	clear:both;
	padding: 0px;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 0px;

}

div.entries p {
	padding-left: 0px !important;
	padding-right: 0px !important;
}


/*ブログ記事段落タグ設定===============================================*/

.day {
	margin: 0;
	margin-right:10px;
	padding:0;
	text-align:right;
	font-size:0.8em;
}



/*アーカイブ===============================================*/


#info-Archive h3 a {
	color: #fff;	/*リンクテキストの色*/
	text-decoration: underline;
	display:block;
}
#info-Archive h3 a:visited {
	color: #fff;
}


#info-Archive h3 a:hover {
	color: #fef72e;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/

}
#info-Archive h3 a:active {
	color: #fef72e;
}

































/*ここまでPC用（800px以上）環境の設定　★★追加★★*/



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 20px;
}
/*h1見出しタグ設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
}
/*電話番号ボックスの設定*/
header #tel {
	position: static;
}

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

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar ul {
	background: none;
	height: auto;
	border: none;
	border-radius: 1px;
	padding-left: 0px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	height: 50px;
	width: 49%;	/*幅*/
	background-color: #9c7d22;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a98f44), to(#cbab25));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#dfd9cb, #a98f44 49%, #9c7d22 50%, #cbab25);	/*同上*/
	background-image: linear-gradient(#dfd9cb, #a98f44 49%, #9c7d22 50%, #cbab25);			/*同上*/
	border: 1px solid #75581f;
	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;
}

/*遠州流茶道対応★★追加★★*/
nav#menubar span.sado{
	display:inline;
	position:static;
	bottom: 0;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	left: 0;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	font-size:0.9em;
	line-height:1;	
}




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

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	clear: both;	/*★★追加★★*/
	float: none;
	width: auto;
}

/*お問い合わせ改行の設定★★追加★★*/
#sub address .none {
	display:none;
}

#sub #banner {
	display:none;
}

/*検索エンジンボックスの設定　★★追加★★*/
div.search {
	width: auto;
}




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

} /*ここまでタブレット用（481px～800px）環境の設定*/



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: auto;
	text-align: center;
	margin-bottom: 10px;
}
/*h1見出しタグ設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
}
header #logo img {
	width: 80%;	/*ロゴ画像の幅*/
	height: auto;
	margin: 10px 0px;
}
/*電話番号ボックスの設定*/
header #tel {
	position: static;
}

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

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

/*遠州流茶道対応★★追加★★*/
nav#menubar span.sado{
	display:block;
	position: absolute;
	bottom: 3px;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	left: 10%;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	right: 10%;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	font-size:0.9em;
	line-height:1;	
}

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

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	clear: both;	/*★★追加★★*/
	float: none;
	width: auto;
}

/*お問い合わせ改行の設定★★追加★★*/
#sub address .none {
	display:none;
}

#sub #banner {
	display:none;
}
/*検索エンジンボックスの設定　★★追加★★*/
div.search {
	width: auto;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#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;
}
/*フッター
---------------------------------------------------------------------------*/
footer br.kai {
	display: inline;
}




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

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

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



/*オリジナル
---------------------------------------------------------------------------*/


h4,h5,h6 {
	margin-left: 0;
	margin-right: 0;
}
.google-maps {/*余白※サイトにより異なる*/
	margin-left: 0;
	margin-right: 0;
}



/*由来　====================*/

#uta ul {
	width:320px;

}

/*ブログ記事段落タグ設定===============================================*/

div.entries {
	margin-left: 5px;
	margin-right: 5px;
}

div.entries p {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

/*お知らせ一覧===============================================*/
/*ブロック全体の設定*/
#info dl {
	height: auto;
	margin: 5px 5px 0px;
}
/*日付設定*/
#info dt {
	float: none;
	width: auto;
}
/*記事設定*/
#info dd {
	padding-left: 0;
}

/*寂室頂相===============================================*/
.jyakushitsugenko-img {
	margin-right: 0;
	float: none;
	margin-bottom: 1em;
	text-align: center;
	width:100%;
	height:auto;	
}



/*小堀遠州===============================================*/
#enshu .enshu-img {
	margin-left: 0;
	float: none;
	margin-bottom: 1em;
	text-align: center;
	width:100%;
	height:auto;
}




} /*ここまでスマートフォン用（480px以下）環境の設定*/


/*印刷環境の設定　★★追加★★
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media print {
#container {
	width: 989px;	/*コンテナー幅*/
	margin: 0px auto;
}
	
}