<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 16px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: url(../images/bg_line.png) repeat-x center top, url(../images/bg.png);/*左からカンマで区切って背景画像を2つ指定*/
}
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: #666;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body &gt; h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	text-align: right;		/*右寄せ*/
}
body &gt; h1 a, body &gt; h1 a:hover {
	color: #FFF;
	text-decoration: none;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 200px;	/*ヘッダーブロックの高さ*/
	width: 100%;	/*ヘッダーブロックの幅*/
	position: relative;
}
/*h1ロゴの設定*/
header h1 {
	position: absolute;
	left: 20px;	/*ヘッダーブロックに対して左から40pxの位置に配置*/
	top: 40px;	/*ヘッダーブロックに対して上から80pxの位置に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#mainmenu ul {
	font-size: 12px;	/*文字サイズ*/
	height: 120px;		/*ブロックの高さ*/
	width: 520px;		/*ブロックの幅*/
	position: absolute;
	top: 50px;			/*ヘッダーブロックに対して上から50pxの位置に配置*/
	right: 30px;		/*ヘッダーブロックに対して右から30pxの位置に配置*/
}
/*各メニューの設定*/
nav#mainmenu ul li a {
	height: 100px;		/*メニューの高さ*/
	width: 100px;		/*メニューの幅*/
	line-height: 100px;	/*行間（heightの数値と合わせる）*/
	color: #990000;		/*文字色*/
	text-decoration: none;
	text-align: center;
	display: block;
	background: rgba(255,183,139,0.5);		/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	border-radius: 70px;	/*角丸のサイズ*/
	-webkit-transition: 0.8s;	/*マウスオン時の移り変わるまでの時間設定。0.8秒。*/
	transition: 0.8s;			/*同上*/
	border: 10px solid rgba(255,255,255,0.9);	/*枠線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.9＝90％）の指定。*/
	overflow: hidden;
	float: left;
	margin-right: 10px;
}
/*マウスオン時の設定*/
nav#mainmenu ul li a:hover {
	background: #FFF;	/*背景色*/
	color: #90805a;		/*文字色*/
	border: 10px solid #ffa93a;	/*枠線の幅、線種、色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 330px;
	width: 970px;
	border-radius: 10px;	/*角丸のサイズ*/
	margin-bottom: 60px;
}
#mainimg img {
	-webkit-box-shadow: 0px 2px 5px #b1ac90;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #b1ac90;			/*同上*/
	vertical-align: bottom;
	border-radius: 10px;	/*角丸のサイズ*/
	border: 5px solid #3a7ab7;	/*枠線の幅、線種、色*/
}
#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 {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh1タグの設定*/
#main h1 {
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#666));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#333, #666);	/*同上*/
	background-image: linear-gradient(#333, #666);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #b1ac90;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #b1ac90;			/*同上*/
	font-size: 100%;
	padding: 5px 10px 5px 20px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 10px;	/*角丸のサイズ*/
	color: #CCCCCC;	/*文字色*/
}
/*MENUページで使っている濃い色のh1見出しタグのスタイル*/
#main h1.type1 {
	background-color: #a08e64;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a08e64), to(#90805a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#a08e64, #90805a);	/*同上*/
	background-image: linear-gradient(#a08e64, #90805a);			/*同上*/
	color: #FFF;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
}

/*メインコンテンツ2
---------------------------------------------------------------------------*/
#main2 {
	float: left;	/*左側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh1タグの設定*/
#main2 h1 {
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#666));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#333, #666);	/*同上*/
	background-image: linear-gradient(#333, #666);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #b1ac90;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #b1ac90;			/*同上*/
	font-size: 100%;
	padding: 5px 15px;	/*上下、左右への余白*/
	clear: both;
	color: #CCCCCC;	/*文字色*/
}
/*MENUページで使っている濃い色のh1見出しタグのスタイル*/
#main2 h1.type1 {
	background-color: #a08e64;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a08e64), to(#90805a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#a08e64, #90805a);	/*同上*/
	background-image: linear-gradient(#a08e64, #90805a);			/*同上*/
	color: #FFF;
}
/*mainコンテンツの段落タグ設定*/
#main2 p {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
}

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

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding-left: 10px;
	background-color: rgba(255,219,197,1.0);	/*背景色***************/
	color: #333;				/*文字色*/
	margin-bottom: 1px;			/*メニューの下側の余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #FFF;	/*背景色*/
	color: #000;			/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	background-color: #fe9206;	/*背景色*/
	padding: 10px;	/*ボックス内の余白*/
	color: #FFF;	/*文字色*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	margin-bottom: 15px;	/*ボックスの下（外側）のスペース*/
}
#sub .box1 a {
	color: #FFF;
}

/*サブコンテンツ内の空室・満室のテキスト
---------------------------------------------------------------------------*/
.aki {
	font-size: 16px;
	line-height: 1em;
}
.aki span {
	color: #FFF;
}
.man {
	font-size: 16px;
	line-height: 1em;
}
.man span {
	color: #BE8406;
}




/*フッター設定
---------------------------------------------------------------------------*/
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{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	margin: 5px 20px 0px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 10em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.3＝30％）の指定。*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	font-size: 16px;	/*文字サイズ*/
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 20px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	height: 370px;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #b1ac90;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #b1ac90;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 15px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 9px 1em;
	position: relative;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh1タグ設定*/
#main section.list article h1 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #90805a;	/*文字色*/
	border-bottom: 2px dotted #90805a;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.list article img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 950px;
	margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 0px solid #FFF;	/*テーブルの枠線の幅、線種、色*/
	background-color:#FFF;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
	text-align: center;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	background: rgba(51,51,51,0.3);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.1＝10％）の指定。*/
	width: auto;	/*幅*/
	padding: 10px;
	text-align: center;
}
/*テーブル１行目に入った見出し部分*/
.ta1 td.tamidashi{
	background: rgba(51,51,51,0.2);
	width: auto;	/*幅*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	background: rgba(51,51,51,0.7);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	padding: 10px;
	border-top: 1px solid #FFF;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
	text-align: left;
	font-weight: bold;	/*文字を太字にする設定*/
	color: #FFF;
}
/*テーブル２
---------------------------------------------------------------------------*/
.ta2 {
	margin: 0px auto;
}

.ta2 table {
	width: 90%;
}

.ta2, .ta2 td, .ta2 th{
	border: 0px solid #FFF;	/*テーブルの枠線の幅、線種、色*/
	background-color:#FFF;
}
/*テーブル内の右側*/
.ta2 td{
	padding: 10px;
	text-align: left;
	vertical-align:text-top;
	width: auto;	/*幅*/
	background-color:#fcfcfc;
	border: 1px rgba(51,51,51,0.3) solid;
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	background: rgba(51,51,51,0.3);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.1＝10％）の指定。*/
	width: auto;	/*幅*/
	padding: 10px;
	text-align: left;
}
/*テーブルのキャプション設定*/
.ta2 caption{
	background: rgba(51,51,51,0.7);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	padding: 10px;
	border-top: 1px solid #FFF;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
	text-align: left;
	font-weight: bold;	/*文字を太字にする設定*/
	color: #FFF;
}
.ta2 td.tamidashi{
	background: rgba(51,51,51,0.2);
	width: 25%;	/*幅*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	background-color: rgba(255,255,255,0.7);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.7＝70％）の指定。*/
	color: #90805a;	/*文字色*/
	text-decoration: none;
	text-align: center;
	width: 14em;		/*ボックスの幅*/
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	display: inline-block;
	border-radius: 10px;	/*角丸のサイズ*/
}
#pagetop a:hover {
	background-color: rgba(255,255,255,1);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（1＝100％）の指定。*/
	color: #90805a;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: rgba(51,51,51,0.5);
	color: #FFF;
}
.mb1em {
	margin-bottom: 1em;
}
.mb10 {
	margin-bottom: 10px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #486a00;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
.pagetop {
	clear: both;
	text-align: right;
}

/*スライド
---------------------------------------------------------------------------*/

.wrap {
  overflow: hidden;
}

.sliding {
  background: url("../images/slide2018.jpg") repeat-x;
  height: 330px;
  width: 2970px;
  animation: slide 90s linear infinite;
}

@keyframes slide{
  0%{
    transform: translate3d(0, 0, 0);
  }
  100%{
    transform: translate3d(-1692px, 0, 0);
  }
}



</pre></body></html>