@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #444444;	/*全体の文字色*/
	font-family:"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo, Osaka,;	/*フォント指定*/
	font-size: 110%;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form{margin:0px;padding:0px;}
ul{list-style-type:none;}
img{border:none;max-width:100%;height:auto;}
table{border-collapse:collapse;font-size:100%;border-spacing:0;}
iframe{width:100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #444;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	font-weight: bold;
	color: #c9171e;
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*「こちら」ボタン
---------------------------------------------------------------------------*/
a.button4 {
    background-color:#e2a7a7f;
    border:1px solid #e27f7f;
    padding:1px 8px;
    border-radius:5px;
    box-shadow:0px 0px 10px #c3e1ff;
    cursor:pointer;
}
a.button4:hover {
    color:white;
    background-color:#a40000;
    text-shadow:0px 0px 3px #ffffff;
}


/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*横一杯使う為に100%指定*/
	border-top: 5px solid #a40000;	/*上部の線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));	/*グラデーション*/
	background: -webkit-linear-gradient(#fff, #eee);	/*同上*/
	background: linear-gradient(#fff, #eee);			/*同上*/
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: 980px;	/*幅。「#menubar ul」と「#contents」と数字を揃える。*/
	height: 100px;	/*高さ*/
	margin: 0 auto;
	position: relative;
	z-index: 100;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 5px;	/*header #innerに対して左から10pxの場所に配置*/
	top: 0px;	/*header #innerに対して上から20pxの場所に配置*/
}
/*電話番号パーツ*/
header #tel {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;	/*フォント種類*/
	position: absolute;
	right:10px;	/*header #innerに対して右から10pxの場所に配置*/
	top:60px;	/*header #innerに対して上から50pxの場所に配置*/
	background: url(../images/icon_tel.png) no-repeat left center/15px;	/*電話アイコンの読み込み*/
	padding-left: 25px;
	font-size: 24px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定。通常がいいならこの行削除。*/
}
/*電話番号パーツの受付時間部分*/
header #tel span {
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を通常にする設定*/
}

/*「ご予約・お問い合わせはこちらから」ボタン
---------------------------------------------------------------------------*/
#contact {
	position: absolute;
	right: 10px;	/*header #innerに対して右から10pxの場所に配置*/
	top: 0px;	/*header #innerに対して上から0pxの場所に配置*/
	font-size: 18px;	/*文字サイズ*/
}
#contact a {
	text-decoration: none;
	display: inline-block;
	background: #ffb017;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#ffb017), to(#ff8a17));	/*グラデーション*/
	background: -webkit-linear-gradient(#ffb017, #ff8a17);	/*同上*/
	background: linear-gradient(#ffb017, #ff8a17);			/*同上*/
	color: #FFF;	/*文字色*/
	padding: 4px 20px 8px;	/*上、左右、下へのボックス内の余白*/
	border-radius: 0px 0px 8px 8px;	/*角丸のサイズ。左上、右上、右下、左下。*/
	box-shadow: 0px 4px 8px rgba(0,0,0,0.2);	/*右へ、下へ、ぼかし幅の順の影の設定。rgba以降は色の設定。「0,0,0」はrgbでの色で、黒。「0.2」が透明度で20%の意味。*/
	text-shadow: #a65b1e 0px -1px;	/*色、右へ、下へ、テキストの影の設定。下にマイナス設定をしているので上に影が入る事になる。*/
}
/*マウスオン時*/
#contact a:hover {
	padding: 8px 20px 12px;	/*上、左右、下へのボックス内の余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
#menubar {
	position: absolute;
	left: 0px;		/*「#menu-mainimg」に対して左から0pxの場所に配置。*/
	bottom: 0px;	/*「#menu-mainimg」に対して下から0pxの場所に配置。*/
	width: 100%;
}
#menubar ul {
	width: 980px;	/*幅。「header #inner」と「#contents」と数字を揃える。*/
	margin: 0 auto;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	border-left: 1px solid #fff;	/*左の線の幅、線種、色*/
	border-top: 1px solid #fff;		/*左の線の幅、線種、色*/
	border-right: 1px solid #fff;	/*左の線の幅、線種、色*/
	width: 14%;	/*メニュー幅*/
	margin-left: 2%;	/*メニュー同士の余白*/
	font-size: 18px;	/*文字サイズ*/
}
#menubar li a {
	display: block;
	text-decoration: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.6);	/*背景色。rgbaでの設定で左３つの数字が色指定。最後の小数点が透明度。*/
	padding: 8px 0px 8px 10px;	/*上、右、下、左への余白*/
}
#menubar li a::first-letter {
	border-left: 3px solid #a40000;	/*左側のアクセント用ラインの幅太さ、線種、濃い赤色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
	padding-bottom: 8px;	/*線の長さ*/
}
/*英語表記*/
#menubar li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	padding-left: 15px;	/*アクセントラインと文字の間にとる余白*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定。通常がいいならこの行削除。*/
}
/*マウスオン時、現在表示中のメニュー設定*/
#menubar a:hover,
#menubar li.current a {
	background: #fff;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	width: 980px;	/*幅。「header #inner」と「#menubar ul」と数字を揃える。*/
	margin: 0 auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*左側に回り込み*/
	width: 780px;	/*幅*/
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 120%;
	letter-spacing: 0.12em;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));	/*グラデーション*/
	background: -webkit-linear-gradient(#fff, #eee);	/*同上*/
	background: linear-gradient(#fff, #eee);			/*同上*/
	padding: 7px 15px;	/*上下、左右への余白*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ*/
	border-left: solid 1px #b5b5b5;		/*左側への線の線種、幅、色*/
	border-top: solid 1px #b5b5b5;		/*上側への線の線種、幅、色*/
	border-right: solid 1px #b5b5b5;	/*右側への線の線種、幅、色*/
	border-bottom: solid 5px #a40000;	/*下側への線の線種、幅、色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 110%;
	letter-spacing: 0.12em;
	background: #FFF;	/*背景色*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #e4e4e4;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの１文字目への設定 左に赤線がつく*/
#main h3::first-letter {
	border-left: 3px solid #a40000;	/*左側のアクセント用ラインの幅、線種、赤色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
	font-size: 110%;
}
#main p + p {
	padding-top: 0px;
	font-size: 110%;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
	font-size: 110%;
}


/*活動各ブロック　list2を使う
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list,
#main section.list2 {
	background: #fff;	/*背景色*/
	border: 1px solid #e4e4e4;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	position: relative;
	overflow: hidden;
}
#main section.list2 {
	padding: 15px;
}
#main section.list a {
	padding: 15px;
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list p,
#main section.list2 p {
	padding: 0px;
}
/*ボックス内の写真設定*/
#main section.list figure img,
#main section.list2 figure img {
	float: right;	/*画像を右へ回り込み　右に寄せて後続を左に回り込ませる */*/
	width: 23%;		/*写真の幅*/
	margin-left: 10px;
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色グレー*/
}
#main section.list figure2 img,
#main section.list2 figure2 img {
	float: left;	/*画像を右へ回り込み　右に寄せて後続を左に回り込ませる */*/
	width: 100%;		/*写真の幅*/
	height: 40%;
	margin-right: 50px;
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色グレー*/
}

/*ボックス内のh4タグ設定*/
#main section.list h4,
#main section.list2 h4 {
	font-size: 110%;
	letter-spacing: 0.12em;
	margin-bottom: 0.5em;
	color: #000;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main section.list h4::first-letter,
#main section.list2 h4::first-letter {
	border-left: 3px solid #a40000;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*マウスオン時のボックス*/
#main section.list2 a:hover {
	background:#FCFDCA;
}

.clear {																			/*回り込み解除*/
	clear: both;
}

/*ボックス
---------------------------------------------------------------------------*/
.box11{
    padding: 0.5em 1em;
    color: #444444;
    background: #e4fcff;
    border-top: solid 5px #1dc1d6;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
		width: 90%;
		margin: 0 auto;
}
.box11 p {
    margin: 0; 
    padding: 0;
}

.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #a40000;						/*濃い赤*/
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #a40000;						/*濃い赤*/
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
}

/*地域活性化イベント画像一覧の設定　p.imagebox
---------------------------------------------------------------------------*/
/* ▼キャプション付き画像全体を囲むボックスの装飾 */
p.imagebox {
    display: inline-block;   /* インラインブロック化 */
	width: 25%;		/*全体からみたボックスの幅*/
	height: 40%;			/*ボックスの高さ。*/
    margin: 0px 10px 10px 0px; /* 外側に余白を追加(※右に3px・下に7px) */
    background-color: #fff;  /* 背景色 */
}
/* ▼画像に対する装飾 */
p.imagebox img {
    display: block;          /* 余計な余白が出ないようにする */
    margin: 0px 0px 3px 0px; /* 下側にだけ3pxの余白を追加 */
		width: 100%;		/*全体からみたボックスの幅*/
		height: 40%;			/*ボックスの高さ。*/
}
/* ▼キャプションに対する装飾 */
p.imagebox span.caption {
    font-size: 0.9em;        /* 文字サイズを90%に */
    text-align: center;      /* 中身をセンタリング */
}


/*ギャラリーページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 23%;		/*全体からみたボックスの幅*/
	margin: 0 1% 20px;	/*上、左右、下へのボックス内の余白*/
	height: 300px;			/*ボックスの高さ。*/
}

/*写真の設定*/
.list figure img {
	display: block;
	width: 100%;		/*ボックスの幅に対して100％*/
	height: 170px;			/*写真の高さ。*/
	border-radius: 30%;		/*円形にする設定。30pxなどにすると角丸になります。この行を削除すればそのままの画像が表示されます。*/
	margin-bottom: 10px;	/*画像の下に空けるスペース*/
}

/*写真の右上にある日付*/
.list figure span {
	display: block;text-align: center;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	border-radius: 50%;	/*円形にする設定*/
	font-size: 20px;	/*文字サイズ*/
	color: #ffffff;		/*文字色　白*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(199,21,133,0.7);	/*背景色。0,0,0は黒。0.7は透明度70%の事。199,21,133は濃いピンク。*/
	position: absolute;
	right: 1%;	/*listブロックに対して右から5%の場所に配置*/
	top: 0%;	/*listブロックに対して上から2%の場所に配置*/
}
/*ボックス内のh4見出し*/
.list h4 {
	text-align: center;	/*文字をセンタリング*/
	border-bottom: 2px dotted #fff;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 15px;		/*文字サイズ*/
}
/*ボックス内の段落タグ*/
.list p {
	padding: 0!important;
	line-height: 1.2;	/*行間を少し狭くする*/
	font-size: 11px;		/*文字サイズ*/
}




/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*右に回り込み*/
	width: 180px;	/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding-bottom: 10px;
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #a40000;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #b5b5b5;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #b5b5b5;	/*下の線の線種、幅、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #f8f8f8;	/*背景色*/
	border: solid 1px #b5b5b5;	/*線の線種、幅、色*/
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	position: relative;z-index: 1;
	clear: both;
	margin: 0 auto;
	max-width: 1400px;	/*最大幅*/
	background: #333 url(../images/);	/*背景色、背景画像の読み込み。左から90%、上から70%の場所に配置。（古いブラウザ用）*/
	color: #fff;	/*文字色*/
	padding: 50px 0 0;	/*上、左右、下へのボックス内の余白*/
}
footer a {color: #fff;}
footer a:hover {color: #ffff00;}
footer .pr {display: block;}
/*footer内のh3タグ*/
footer h3 {
	margin-bottom: 10px;
	font-size: 30px;	/*文字サイズ*/
}
/*footer内の段落タグ*/
footer p {
	padding: 0px 10px 0px;	/*上、左右、下への余白*/
}
/*フッターのロゴブロック「ふれあいのまちづくり協議会」*/
#footer-logo {
	padding-bottom: 10px;
	margin-bottom: 10px;
	width: 80%;	/*画像の幅*/
}
/*footer内の左側のブロック指定*/
#footer-left {
	width: 43%;	/*幅*/
	float: left;	/*左に回り込み*/
	padding-left: 8%;	/*左に空ける余白*/
	padding-bottom: 30px;	/*下に空ける余白*/
}
/*footer内の右側のブロック指定*/
#footer-right {
	width: 43%;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-right: 6%;	/*右に空ける余白*/
	padding-bottom: 50px;	/*下に空ける余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 940px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 0px 0px 20px 0px;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 14%;		/*幅。今回は５列作ったのでここの幅18%と下のpaddingの2%でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 2%;
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #111;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 600px;	/*ボックスの高さ*//*元は600px*/
}

/*記事設定*/
#new dd {
	font-size: 110%;
	padding-left: 2.5em;
	border-bottom: 1px solid #ccc;		/*下線の幅、線種、色*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色薄い水色*/
}
/*左側ボックス*/
.ta1 th {
	background: #f0f0f0;	/*背景色薄いグレー*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}

/*ta2設定*/
.ta2 {
	width: 70%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 5px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: center;	/*中央よせ*/
	background: #cce6f6;	/*背景色薄い水色*/
}
/*左側ボックス*/
.ta2 th {
	background: #f0f0f0;	/*背景色薄いグレー*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}

/*ta3設定*/
.ta3 {
	width: 50%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta3, .ta3 td, .ta3 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 5px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi {
	width: auto;
	text-align: center;	/*中央よせ*/
	background: #cce6f6;	/*背景色薄い水色*/
}
/*左側ボックス*/
.ta3 th {
	background: #f0f0f0;	/*背景色薄いグレー*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}



/*pagetop設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #333;	/*背景色本来は#333　しかし透明にするために#FFF*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}



/*ページの上部へボタン「↑」設定　追加
---------------------------------------------------------------------------*/
#page-Top {
  position: fixed;
  bottom: 20px;
  right: 20px;
	z-index: 999; /* これでどうですか？ */
}
#page-Top i {
  padding-top: 6px
}
#page-Top a {
  display: block;
  z-index: 999;
  padding: 8px 0 0 0px;
  border-radius: 30px;
  width: 35px;
  height: 35px;
  background-color: #ccc;
  color: #444;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#page-Top a:hover {
  text-decoration: none;
  opacity: 0.7;
}






/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	border-radius: 2px;	/*角丸のサイズ*/
	padding: 0px 5px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #a2000d;}
.pr {font-size: 12px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}






/*画面幅800px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
#menubar ul {
	width: auto;
	padding-bottom: 11px;
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	width: 50%;
	margin: 0;
	border-bottom: 1px solid #dcdcdc;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#menubar li:nth-child(odd) {
	border-right: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 2%;
}

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

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {
	display: none;
}

}



/*画面幅650px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:650px){

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 50%;
}
/*電話番号パーツ*/
header #tel {
	background: none;
	line-height: 1.2;
	text-align: right;
}
/*電話番号パーツの受付時間部分*/
header #tel span {
	display: block;
}

/*「ご予約・お問い合わせはこちらから」ボタン
---------------------------------------------------------------------------*/
#contact {
	font-size: 14px;
}
#contact span {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));	/*グラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#fff, #e5e5e5);	/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #e5e5e5);			/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));	/*グラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#fff, #e5e5e5);	/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #e5e5e5);
}




/*画面幅480px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 60%;
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	height: 160px;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 10px;
	top: 5px;
}

/*「ご予約・お問い合わせはこちらから」ボタン
---------------------------------------------------------------------------*/
#contact {
	position: absolute;
	left: 10px;
	top: 100px;
}
#contact a {
	display: block;
	text-align: center;
	border-radius: 8px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
#menubar-s {
	border-radius: 8px;
	border: 1px solid #b5b5b5;
	margin: 0px 10px 20px;
	background: #fff;
}
#menubar-s li {
	border-top: 1px solid #b5b5b5;
	background: url(../images/arrow1.png) no-repeat 95% center/19px;
}
#menubar-s li:first-child {
	border-top: none;
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	padding: 8px;
}
/*英語表記*/
#menubar-s li span {
	display: none;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 0px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	border-top: none;
	border-radius: 0px 0px 4px 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fff;	/*背景色*/
	z-index: 200;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 2px solid #000;	/*枠線の幅、線種、色*/
	border-radius: 2px;	/*角丸のサイズ*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 2%;
}

/*「お部屋のご紹介」と「ご宿泊プラン」の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p,
#main section.list2 p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img,
#main section.list2 figure img {
	float: none;
	width: 100% !important;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4,
#main section.list2 h4 {
	margin-left: 0;
}

/*「ご宿泊プラン」の各ブロック内のテーブル
---------------------------------------------------------------------------*/
#main section.list table,
#main section.list2 table {
	margin-left: 0;
	width: 100%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));	/*グラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#fff, #e5e5e5);	/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #e5e5e5);			/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));	/*グラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#fff, #e5e5e5);	/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #e5e5e5);
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {
	width: 90%;
}

}
