@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
h1.entry-title {
font-family:UD Shin Go Medium;
font-size:1.75rem;
font-weight:700;
line-height:1.25;
margin-bottom:1em;
}

body {
    font-family: UD Shin Go Medium;
}

h1,h2,h3,h4,h5,h6,h7,h8,h9,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;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
{
    font-size:100%;
    line-height:260%;
    letter-spacing:0.1em;
    font-family: UD Shin Go Medium;
}
a
{
    text-decoration:none;
    color:currentColor;
}
a img
{
    text-decoration:none;
    border-style:none;
}
span.ja
{
    font-family: UD Shin Go Medium;
}

table, table > tbody > tr > td
{
    font-size:100%;
}

h1 { margin-top:20px;line-height:260%;clear:both;font-size:160%;}
h2 { margin-top:10px;line-height:260%;clear:both;font-size:140%;}
h3 { margin-top:10px;line-height:260%;clear:both;font-size:120%;}
h4 { margin-top:10px;line-height:150%;clear:both;font-size:100%;}
h5 { margin-top:10px;line-height:150%;clear:both;font-size:90%;}
h6 { margin-top:10px;line-height:150%;clear:both;font-size:80%;}
h8 { margin-top:10px;line-height:260%;clear:both;font-size:120%;}
h9 { margin-top:10px;line-height:260%;clear:both;font-size:140%;}

p
{
    margin-top:0.6em;
    margin-bottom:0.6em;
	line-break:strict;
	clear:both;
	line-height: 22px;		/*行間*/
	    letter-spacing:0.1em;
}

ruby
{
    line-height:1.5;
    background-color:inherit;
}
rb, rt
{
    background-color:inherit;
}
rt
{
    font-size:60%;
}

}
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #705d4a;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*h1ロゴの設定
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;		/*文字サイズ*/
	font-weight: normal;	/*太字を標準にする設定*/
	text-align: right;		/*テキストを右側に*/
	line-height: 30px;		/*行間*/
	width: 990px;
	margin: 0 auto 0;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 950px;	/*ボックス幅*/
	margin: 0 auto 0;
	padding: 20px;	/*ボックス内の余白*/
	background-color: #FFF;	/*背景色*/
	border-radius: 20px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 0px 10px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 10px #CCC;			/*同上*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ヘッダーブロックの幅*/
	position: relative;
	margin-bottom: 30px;
}
/*ロゴ画像*/
header #logo img {
	position: absolute;
	z-index: 3;
	left: 6%;		/*ヘッダーブロックに対して左から6pxの位置に配置*/
	top: 17%;		/*ヘッダーブロックに対して上から6pxの位置に配置*/
	width: 10%;		/*画像幅*/
	height: auto;	/*画像の高さ。上の幅に合わせて高さは自動になる。*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: auto;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 10px;	/*角丸のサイズ*/
}
#mainimg img {
	border-radius: 10px;	/*角丸のサイズ*/
	vertical-align: bottom;
}
#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 {
	width: 700px;	/*メインコンテンツ幅*/
	float: right;	/*右側に回り込み*/
	padding-bottom: 50px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1 ), to(#d9d9d9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1f1f1 , #d9d9d9);	/*同上*/
	background-image: linear-gradient(#f1f1f1 , #d9d9d9);			/*同上*/
	font-size: 120%;
    letter-spacing:0.1em;
	padding: 0px 10px 0px 40px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 8px;	/*角丸のサイズ*/
	color: #222;			/*文字色*/
	line-height: 36px;		/*行間*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅の設定*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
	border: 1px solid #705d4a;	/*枠線の幅、線種、色*/
}

/*コンテンツのh222gタグの設定*/
#contents h222g {
	clear: both;
	margin-bottom: 15px;
	color: #e00;		/*文字色*/
	letter-spacing:0.1em;
	line-height: 22px;		/*行間*/
	padding: 5px 20px;	/*上下、左右への余白*/
	background: #cccccc;	/*背景色*/
	border-radius: 3px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/

}

/*mainコンテンツのh2gタグの設定*/
#main h2g {
	background-color: #705d4a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/arrow1.png), -webkit-gradient(linear, left top, left bottom, from(#a99c8f), to(#705d4a));	/*丸いマーク画像の読み込みとグラデーション*/
	background-image: url(../images/arrow1.png), -webkit-linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);	/*同上*/
	background-image: url(../images/arrow1.png), linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);			/*同上*/
	background-repeat: no-repeat;		/*背景の丸いマーク画像をリピートしない設定*/
	background-position: left uper;	/*背景の丸いマーク画像の位置*/
	font-size: 100%;
    letter-spacing:0.1em;
	padding: 0px 10px 0px 40px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 8px;	/*角丸のサイズ*/
	color: #FFF;			/*文字色*/
	line-height: 36px;		/*行間*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅の設定*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
	border: 1px solid #705d4a;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh9タグの設定*/
#main h9 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1 ), to(#d9d9d9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1f1f1 , #d9d9d9);	/*同上*/
	background-image: linear-gradient(#f1f1f1 , #d9d9d9);			/*同上*/
	font-size: 120%;
    letter-spacing:0.1em;
	padding: 0px 10px 0px 10px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 5px;	/*角丸のサイズ*/
	color: #222;			/*文字色*/
	line-height: 36px;		/*行間*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅の設定*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
	border: 1px solid #705d4a;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh8タグの設定*/
#main h8{
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#7dd99c), to(#00ab39));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#7dd99c, #00ab39);	/*同上*/
	background-image: linear-gradient(#7dd99c, #00ab39);			/*同上*/
	font-size: 130%;
    letter-spacing:0.1em;
	padding: 0px 10px 0px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 16px;	/*角丸のサイズ*/
        color: #EEE;			/*文字色*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main h8l{
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#7dd99c), to(#00ab39));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#7dd99c, #00ab39);	/*同上*/
	background-image: linear-gradient(#7dd99c, #00ab39);			/*同上*/
	font-size: 150%;
    letter-spacing:0.1em;
	padding: 0px 10px 0px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 16px;	/*角丸のサイズ*/
        color: #EEE;			/*文字色*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1 ), to(#d9d9d9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1f1f1 , #d9d9d9);	/*同上*/
	background-image: linear-gradient(#f1f1f1 , #d9d9d9);			/*同上*/
	font-size: 120%;
    letter-spacing:0.1em;
	padding: 0px 0px 0px 10px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 8px;	/*角丸のサイズ*/
        color: #222;			/*文字色*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh3redタグの設定*/
#main h3red {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1 ), to(#d9d9d9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1f1f1 , #d9d9d9);	/*同上*/
	background-image: linear-gradient(#f1f1f1 , #d9d9d9);			/*同上*/
	font-size: 140%;
    letter-spacing:0.1em;
	padding: 0px 0px 0px 10px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 8px;	/*角丸のサイズ*/
        color: #911;			/*文字色*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh11タグの設定*/
#main h11 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1 ), to(#99d9d9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1f1f1 , #99d9d9);	/*同上*/
	background-image: linear-gradient(#f1f1f1 , #99d9d9);			/*同上*/
	font-size: 90%;
    letter-spacing:0.1em;
	padding: 0px 0px 0px 10px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 5px;	/*角丸のサイズ*/
	color: #222;			/*文字色*/
	line-height: 36px;		/*行間*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅の設定*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
	border: 1px solid #705d4a;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3gdタグの設定*/
#main h3gd {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd700), to(#c5b45a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fd700, #c5b45a);	/*同上*/
	background-image: linear-gradient(#fd700, #c5b45a);			/*同上*/
	font-size: 140%;
	padding: 5px 10px 5px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 16px;	/*角丸のサイズ*/
        color: #55F;			/*文字色*/
	line-height: 22px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3gdタグの設定*/
#main h3gd2 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd700), to(#c5b45a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fd700, #c5b45a);	/*同上*/
	background-image: linear-gradient(#fd700, #c5b45a);			/*同上*/
	font-size: 160%;
	padding: 5px 10px 5px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 16px;	/*角丸のサイズ*/
        color: #55F;			/*文字色*/
	line-height: 22px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh3gdタグの設定*/
#main h4gd2 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd700), to(#c5b45a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fd700, #c5b45a);	/*同上*/
	background-image: linear-gradient(#fd700, #c5b45a);			/*同上*/
	font-size: 120%;
	padding: 5px 10px 5px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 16px;	/*角丸のサイズ*/
        color: #55F;			/*文字色*/
	line-height: 22px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}




/*mainコンテンツのh12タグの設定*/
#main h12 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1 ), to(#99d9d9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1f1f1 , #99d9d9);	/*同上*/
	background-image: linear-gradient(#f1f1f1 , #99d9d9);			/*同上*/
	font-size: 120%;
    letter-spacing:0.1em;
	padding: 0px 0px 0px 10px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 5px;	/*角丸のサイズ*/
	color: #222;			/*文字色*/
	line-height: 36px;		/*行間*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅の設定*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
	border: 1px solid #705d4a;	/*枠線の幅、線種、色*/
}



/*mainコンテンツのh13タグの設定*/
#main h13{
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1 ), to(#d9d9d9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1f1f1 , #d9d9d9);	/*同上*/
	background-image: linear-gradient(#f1f1f1 , #d9d9d9);			/*同上*/
	font-size: 130%;
    letter-spacing:0.1em;
	padding: 0px 0px 0px 10px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 16px;	/*角丸のサイズ*/
        color: #222;			/*文字色*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh14タグの設定*/
#main h14{
	background-color: #eee;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 130%;
    letter-spacing:0.1em;
	padding: 0px 10px 0px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 4px;	/*角丸のサイズ*/
        color: #333;			/*文字色*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh14bタグの設定*/
#main h14b{
	background-color: #eea;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 130%;
    letter-spacing:0.1em;
	padding: 0px 10px 0px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 4px;	/*角丸のサイズ*/
        color: #333;			/*文字色*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh15タグの設定*/
#main h15{

	font-size: 130%;
    letter-spacing:0.1em;
   color: #333;			/*文字色*/
}

/*mainコンテンツのh15hタグの設定*/
#main h15h{

	font-size: 130%;
    letter-spacing:0.1em;
    	line-height: 26px;		/*行間*/
   color: #333;			/*文字色*/
}

/*mainコンテンツのh15bタグの設定*/
#main h15b{

	font-size: 140%;
	line-height: 26px;		/*行間*/
    letter-spacing:0.1em;
   color: #22e;			/*文字色*/
}



/*mainコンテンツのh16タグの設定*/
#main h16{

	font-size: 120%;
    letter-spacing:0.1em;
   color: #333;			/*文字色*/
}




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

/*main  blueの囲み*/
.kakomi-blue-inline
	 {
	border: solid 3px blue;
	border-radius: 20px;
	box-shadow: 3px 3px 10px gray;
	text-align: justify;
	padding: 0.3em 0.5em;
	margin: 0;
	}




/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	height: 230px;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 1px 6px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 1px 6px #999;			/*同上*/
	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: 20px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 14px 15px;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	font-size: 100%;
	color: #705d4a;	/*文字色*/
	border-bottom: 2px dotted #705d4a;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-bottom: 50px;
}
/*subコンテンツのh2タグの設定*/
#sub h2 {
	background-color: #8c8c8c;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dcdcdc), to(#8c8c8c));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#cbcbcb, #949494 49%, #8c8c8c 50%);	/*同上*/
	background-image: linear-gradient(#cbcbcb, #949494 49%, #8c8c8c 50%);			/*同上*/
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への設定。*/
	color: #FFF;	/*文字色*/
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0px;	/*上下、左右への余白*/
}

/*メニュー（※サブコンテンツ内）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub #submenu {
	margin-bottom: 15px;	/*ブロックの下にスペースを空ける設定*/
}
/*メニュー１個ごとの設定*/
#sub #submenu ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;	/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub #submenu ul li a:hover {
	background-color: #e2dfdb;	/*マウスオン時の背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
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: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 660px;
	margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #ececed;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #705d4a;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #705d4a;
}
.color2 {
	color: #FF0033;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
#menubar {
	display: none;
}



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

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	margin-bottom: 0px;
}

/*タブレット・スマホ専用メニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#menubar ul li {
	float: left;
	width: 48%;
	margin: 0px 1%;
}
#menubar ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;			/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#menubar ul li a:hover {
	background-color: #e2dfdb;	/*マウスオン時の背景色*/
}
/*最後のメニューの設定*/
#menubar ul li:last-child {
	margin-bottom: 20px;
}

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

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

/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	float: none;
	width: 100%;
	height: auto;
	margin: 0px 0px 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*各ボックス内の画像設定*/
#main section.list article img {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像幅*/
	height: auto;
	margin-right: 20px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;
}

/*その他
---------------------------------------------------------------------------*/
#sub #submenu {
	display: none;
}
#menubar {
	display: block;
}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	background: url(none);
}

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	padding: 5px;	/*ボックス内の余白*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	margin-bottom: 0px;
}

/*タブレット・スマホ専用メニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#menubar ul li {
	float: none;
	width: 100%;
}
#menubar ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;			/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#menubar ul li a:hover {
	background-color: #e2dfdb;	/*マウスオン時の背景色*/
}
/*最後のメニューの設定*/
#menubar ul li:last-child {
	margin-bottom: 20px;
}

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

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

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh1タグの設定*/
#main h2 {
	padding: 0px 10px 0px 10px;	/*左から、上、右、下、左側への余白*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#a99c8f), to(#705d4a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);	/*同上*/
	background-image: linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);			/*同上*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;
}

/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	width: 96%;		/*ボックスの幅*/
	height: auto;	/*ボックスの高さ*/
	float: none;
	margin: 0px auto 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#main section.list article img {
	width: 100%;	/*ボックスの幅*/
	height: auto;	/*ボックスの高さ*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	background-color: #e2dfdb;
	border-top: 1px solid #CCC;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#a99c8f), to(#705d4a));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#a99c8f), to(#705d4a));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#a99c8f, #706255 49%, #705d4a 50%);
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	float: none;
	margin: 0px auto 1em;
}

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

/*その他
---------------------------------------------------------------------------*/
#sub #submenu {
	display: none;
}
#menubar {
	display: block;
}
/*メニュー折りたたみ設定*/
#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;
	z-index: 10;
}

}
