@charset "utf-8";

html{scroll-behavior: smooth;}

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;	/*背景色*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	font-size: 14px;
	line-height: 2;
	background-color: #FFF;
}
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;
	text-align: center;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/


/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック共通*/
header {
	position: relative;
	height: 200px;		/*ブロックの高さ*/
	text-align: center;	/*内容をセンタリング*/
	background-color: #FFF;
}
/*トップページのheader*/
#top header {
	background: #000 url(../images/bg1.png) no-repeat right center;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg1.png) no-repeat right center/auto 130%,radial-gradient(circle 600px at 22% -200px,#434343,#000);	/*背景画像の読み込み、right(右)＆center(上下中央)に配置 / 画像幅は自動(auto)で高さ(130%)、circleは円形、600pxは円のサイズ。左から22%、上から-200pxの場所に配置。*/
	height: 500px;	/*ブロックの高さ*/
}
/*ロゴ画像*/
#logo img {
	width: 300px;	/*画像幅*/
	padding-top: 20px;	/*ロゴの上にあけるスペース*/
}
/*トップページのロゴ画像*/
#top #logo img {
	padding-top: 0;
	position: absolute;
	width: 400px;	/*画像幅*/
	left: 10%;		/*headerの左から10%の場所に配置*/
	top: 60px;		/*headerの上から60pxの場所に配置*/
}


/*ヘッダーブロックの中*/
header .inner {
	width: 900px;	/*ブロック幅*/
	height: 100px;	/*ブロックの高さ*/
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 20px;	/*innerに対して上から24pxの場所に配置*/

}






/*「お問い合わせ」ボタン設定*/
header #toiawase a {
	text-decoration: none;
	background: #219d27;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#58b9f1), to(#2f98d5));	/*グラデーション*/
	background: -webkit-linear-gradient(#58b9f1, #2f98d5);	/*同上*/
	background: linear-gradient(#1d910e, #65b634);			/*同上*/
	position: absolute;
	top: -5px;		/*innerに対して上から-5pxの場所に配置*/
	right: 20px;	/*innerに対して右から20pxの場所に配置*/
	text-align: center;	/*文字をセンタリング*/
	border: 1px solid #FFF;
	-webkit-box-shadow: 0px 0px 0px 4px #2e96cc, 0px 0px 10px #68a77d inset;	/*影の設定*/
	box-shadow: 0px 0px 0px 4px #088f34, 0px 0px 10px #50a36b inset;			/*同上*/
	display: inline-block;
	padding: 15px 50px;	/*上下、左右への余白*/
	border-radius: 0 0 6px 6px;	/*角丸のサイズ。左上、右上、左下、右下への順*/
	text-shadow: 0px -1px #186ccb;	/*テキストの影。左右への設定、上下への設定、色設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	color: #FFF;
}



	
	
	
/*「価格表」ボタン設定*/
header #pricelist a {
	text-decoration: none;
	background: #58b9f1;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#58b9f1), to(#2f98d5));	/*グラデーション*/
	background: -webkit-linear-gradient(#58b9f1, #2f98d5);	/*同上*/
	background: linear-gradient(#1f71be, #2f98d5);			/*同上*/
	position: absolute;
	top: -5px;		/*innerに対して上から-5pxの場所に配置*/
	right: 240px;	/*innerに対して右から400pxの場所に配置*/
	text-align: center;	/*文字をセンタリング*/
	border: 1px solid #FFF;
	-webkit-box-shadow: 0px 0px 0px 4px #1281c1, 0px 0px 10px #3379bb inset;	/*影の設定*/
	box-shadow: 0px 0px 0px 4px #3379bb, 0px 0px 10px #1281c1 inset;			/*同上*/
	display: inline-block;
	padding: 15px 50px;	/*上下、左右への余白*/
	border-radius: 0 0 6px 6px;	/*角丸のサイズ。左上、右上、左下、右下への順*/
	text-shadow: 0px -1px #186ccb;	/*テキストの影。左右への設定、上下への設定、色設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	color: #FFF;
}





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

	
		clear: left;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 900px;

}
#top #contents {
	padding-top: 0px;
}
/*各ページコンテンツ上部にある背景画像入りの大きな見出し（共通設定）*/
#contents > h2 {
	font-size: 24px;	/*文字サイズ*/
	font-weight: normal;
	letter-spacing: 0.4em;	/*文字間隔を広くとる設定*/
	border: 1px solid #FFF;	/*枠線の幅、線種、色*/
	padding-left: 40px;
	margin-bottom: 30px;
	-webkit-box-shadow: 0px 0px 10px #000 inset;
	box-shadow: 0px 0px 10px 5px #000 inset;
	line-height: 160px;	/*高さ*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #FFF;
	text-shadow: black 1px 1px 0px, black -1px 1px 0px, 

             black 1px -1px 0px, black -1px -1px 0px;
	background-color: #000;
}

#contents > h2 span {
	font-size: 14px;	/*文字サイズ*/
letter-spacing: 0em;	/*文字間隔を広くとる設定*/
}

/*news(ニュース)*/
#contents h2#title-news {
	background: url(../images/title_news.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_news.jpg) no-repeat right center / auto 100%;
}

/*activitity(活動)*/
#contents h2#title-activitity {
	background: url(../images/title_activitity.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_activitity.jpg) no-repeat right center / auto 100%;
}

/*profile(プロフィール)*/
#contents h2#title-profile {
	background: url(../images/title_profile.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_profile.jpg) no-repeat right center / auto 100%;
}
/*performance(パフォーマンス)*/
#contents h2#title-performance {
	background: url(../images/title_performance.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_performance.jpg) no-repeat right center / auto 100%;
}
/*works(ワーク)*/
#contents h2#title-works {
	background: url(../images/title_works.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_works.jpg) no-repeat right center / auto 100%;
}
/*classroom(クラスルーム)*/
#contents h2#title-classroom {
	background: url(../images/title_classroom.png) no-repeat center center;	/*古いブラウザ用*/
	background: url(../images/title_classroom.png) no-repeat  center center / auto 100%;
}

/*exhibition(展覧会)*/
#contents h2#title-exhibition {
	background: url(../images/title_exhibition.jpg) no-repeat right center;	/*古いブラウザ用*/	
	background: url(../images/title_exhibition.jpg) no-repeat right center / auto 100%;
}

/*work_image(仕事依頼について)*/
#contents h2#title_work_image {
	background: url(../images/title_work_image.jpg) no-repeat right center;	/*古いブラウザ用*/	
	background: url(../images/title_work_image.jpg) no-repeat right center / auto 100%;
}


/*link(リンク)*/
#contents h2#title-link {
	background: url(../images/title_link.jpg) no-repeat right center;	/*古いブラウザ用*/	
	background: url(../images/title_link.jpg) no-repeat right center / auto 100%;
}
/*contact(コンタクト)*/
#contents h2#title-contact {
	background: url(../images/title_contact.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_contact.jpg) no-repeat right center / auto 100%;
}


/*training(研修旅行)*/
#contents h2#title-training {
	background: url(../images/title_training.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_training.jpg) no-repeat right center / auto 100%;
}



#contents h4 {
	clear: both;
	margin-bottom: 15px;
	font-size: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #FFF;		/*文字色*/
	background:#006633;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#006633), to(#066));
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
	font-style: normal;
	padding-right: 5px;
	padding-left: 10px;
	margin-right: 10px;
	margin-left: 10px;
}






/*メインコンテンツ（右ブロック）
---------------------------------------------------------------------------*/
#main {
	padding-bottom: 30px;
	color: #000;

}


/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	font-size: 22px;	/*文字サイズ*/
	color: #006633;	/*hタグの太字を標準にする設定。太字がいいならこの１行削除。*/
	letter-spacing: 0.1em;	/*上、左右、下への余白*/
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #006633;
	padding-top: 40px;
	padding-right: 15px;
	padding-left: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 26px;
	font-weight: normal;
	padding-bottom: 3px;
	margin-bottom: 15px;
	margin-left: 15px;
}



/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	background: #222;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));	/*グラデーション*/
	background: -webkit-linear-gradient(#222, #000);	/*同上*/
	background: linear-gradient(#222, #000);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #666;		/*線の幅、線種、色*/
	font-weight: normal;	/*hタグの太字を標準にする設定。太字がいいならこの１行削除。*/
}


#main h4 {
	clear: both;
	margin-bottom: 15px;
	font-size: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #FFF;		/*文字色*/
	background:#006633;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#006633), to(#066));
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
	font-style: normal;
	padding-right: 5px;
	padding-left: 10px;
	margin-right: 10px;
	margin-left: 10px;
}



#main h6 {
	clear: both;
	padding-bottom: 10px;

}





/*mainコンテンツの段落タグ設定*/
#main p {
	
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 23px;
	padding-top: 10px;
	padding-bottom: 10px;
	clear: both;
	padding-right: 50px;
	padding-left: 50px;	
}

/*room.html、plan.html内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background: #FFF;		/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#d2d2d2));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #d2d2d2);	/*同上*/
	background: linear-gradient(#FFF, #d2d2d2);			/*同上*/
	position: relative;
	overflow: hidden;
	color: #333;	/*文字色*/
	padding: 20px;	/*ボックス内の余白*/
}
#main section.list a {
	color: #333;	/*文字色*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding: 20px;	/*ボックス内の余白*/
	margin: -20px;
}
#main section.list a:hover {
	background: #fffabb;	/*マウスオン時の背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	background: #FFF;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	color: #d18a28;		/*文字色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	border-bottom: 1px solid #d18a28;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}




/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	position: absolute;
	left: 0px;	/*headerの左から0pxの場所に配置*/
	top: 100px;	/*headerの上から80pxの場所に配置。ここの数字はheaderの高さ(height)からメニューの高さを引いた数字にする。*/
	width: 100%;
	
}
#menubar ul {
	max-width: 1200px;	/*最大幅。.contents,#pagetop,#footermenuと揃える。*/
	margin: 0 auto;	/*メニューブロックの左側の線の幅、線種、色*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	height: 40px;
	
	
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;
	width: 20%;	/*幅。現在は５個なので20%。４個にするなら25%にする。６個だと割り切れませんがデザイン上少しずれてても問題ないので16.6ぐらいでいいと思います。*/
	
}
#menubar ul li a {
	font-size: 15px;
	text-decoration: none;
	display: block;
	line-height: 40px;	/*行間。#menubar ulの高さと揃える。*/
	color: #000;	/*右側の線の幅、線種、色*/
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #000;
}
/*マウスオン時、現在表示中(current)*/
#menubar ul li a:hover,
#menubar ul li.current a {
	color: #FFF;		/*文字色*/
	background-color: #000;
}
/*トップページのメニューブロックの設定*/
#top #menubar {
	position: relative;top: 0px;
}
#top #menubar ul {
	border-left: none;
}
/*トップページのメニュー１個あたりの設定*/
#top #menubar li a {
	padding: 0;
	font-size: 16px;	/*文字サイズ*/
	color: #000;	/*文字色*/
	background: #fff padding-box;	/*右側の線の幅、線種、色*/
	border-radius: 50%;	/*枠線の幅、線種、色。255,255,255は白のことで、0.4が透明度40%の事。*/
	position: absolute;

}
/*トップページの１つ目メニューの設定*/
#top #menubar li#menu1 a {
	width: 120px;
	line-height: 120px;	/*幅と高さ。２箇所の数字は揃えておく。*/
	left: 5%;	/*ヘッダーブロックの左から5%の場所に配置*/
	top: 250px;

}
/*トップページの２つ目メニューの設定*/
#top #menubar li#menu2 a {
	width: 90px;line-height: 90px;	/*幅と高さ。２箇所の数字は揃えておく。*/
	left: 14%;	/*ヘッダーブロックの左から14%の場所に配置*/
	top: 400px;	/*ヘッダーブロックの上から400pxの場所に配置*/
}
/*トップページの３つ目メニューの設定*/
#top #menubar li#menu3 a {
	width: 160px;line-height: 160px;	/*幅と高さ。２箇所の数字は揃えておく。*/
	left: 22%;	/*ヘッダーブロックの左から22%の場所に配置*/
	top: 160px;	/*ヘッダーブロックの上から160pxの場所に配置*/
}
/*トップページの４つ目メニューの設定*/
#top #menubar li#menu4 a {
	width: 110px;line-height: 110px;	/*幅と高さ。２箇所の数字は揃えておく。*/
	left: 37%;	/*ヘッダーブロックの左から37%の場所に配置*/
	top: 320px;	/*ヘッダーブロックの上から320pxの場所に配置*/
}
/*トップページの５つ目メニューの設定*/
#top #menubar li#menu5 a {
	width: 70px;line-height: 70px;	/*幅と高さ。２箇所の数字は揃えておく。*/
	left: 53%;	/*ヘッダーブロックの左から53%の場所に配置*/
	top: 260px;	/*ヘッダーブロックの上から260pxの場所に配置*/
}



/*マウスオン時*/
#top #menubar li a:hover {
	box-shadow: 0px 0px 30px rgba(255,255,255,0.8);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。255,255,255は白のことで、0.8が透明度80%の事。*/
	color: #FFF;	/*背景色*/
	background-color: #000;
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}







/*メニュー１個ごとの設定*/
#manubar4  {
padding-bottom: 140px;
	padding-top: 30px;
	
}


/*メニュー１個ごとの設定*/
#manubar4 ul li {
	float: left;		/*左にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
    margin-bottom: 10px;

}

#manubar4 ul li a {
	text-decoration: none;
	display: block;
	width: 210px;	/*メニュー幅*/
	line-height: 40px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	background-color: #006633;
}

/*マウスオン時の設定*/
#manubar4 ul li a:hover {
	color: #FFF;			/*文字色*/
	background-color: #333;
}




/*メニュー１個ごとの設定*/
#manubar ul li2 {
	float: left;		/*左にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
}

#manubar ul li2 a {
	text-decoration: none;
	display: block;
	width: 130px;	/*メニュー幅*/
	line-height: 40px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	background-color: #006633;
	color: #FFF;
}

/*マウスオン時の設定*/
#manubar ul li2 a:hover {
	color: #006633;			/*文字色*/
	background-color: #CCC;
}



/*メニュー１個ごとの設定*/
#manubar ul li3 {
	float: left;		/*左にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
}

#manubar ul li3 a {
	text-decoration: none;
	display: block;
	width: 210px;	/*メニュー幅*/
	line-height: 40px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	background-color: #006633;
}

/*マウスオン時の設定*/
#manubar ul li3 a:hover {
	color: #FFF;			/*文字色*/
	background-color: #333;
}



/*メニュー１個ごとの設定*/
#manubar ul li4 {
	float: left;		/*左にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
}

#manubar ul li4 a {
	text-decoration: none;
	display: block;
	width: 155px;	/*メニュー幅*/
	line-height: 40px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	background-color: #385495;
}

/*マウスオン時の設定*/
#manubar ul li4 a:hover {
	color: #385495;			/*文字色*/
	background-color: #CCC;
}




/*メニュー１個ごとの設定*/
#manubar ul li5 {
	float: left;		/*左にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
}




#manubar ul li5 a {
	text-decoration: none;
	display: block;
	width: 220px;	/*メニュー幅*/
	line-height: 40px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	background-color: #006633;
	font-size: 15px;
}

/*マウスオン時の設定*/
#manubar ul li5 a:hover {
	color: #FFF;			/*文字色*/
	background-color: #333;
}






/*メニューブロック全体の設定*/
#manubar3 {
	float: left;
		padding-right: 50px;
	padding-left: 50px;
}
#manubar3 ul li {
	float: left;		/*右にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
	padding-top: 5px;
}

#manubar3 ul li a {
	background: #006633;	/*背景色（古いブラウザ用）*/
	text-decoration: none;
	display: block;
	width: 200px;	/*メニュー幅*/
	line-height: 30px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	padding: 5px;
	margin-top: 15px;
}

/*マウスオン時の設定*/
#manubar3 ul li a:hover {
	color: #FFF;			/*文字色*/
	background-color: #369;
}










.button12 {
    height: 80px;
    width: 200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
	padding-bottom: 100px;
}




.button12__item {
	flex-grow: 1;
	text-align:center;
   	height:80px;
	line-height:40px;
	min-width:160px;
	margin:5px 0 10px 5px;
}
.button12__link {
	background:#006633;
    display:block;
	text-decoration: none;
	transition: .2s;
	border-radius: 5px;
}
.button12__link::before{
    color: #006633;
    font-size: 14px;

}
.button12__link::after{
    color: #FFF;
    content: attr(title);
    font-size: 14px;
    vertical-align: top;
    margin-left: 5px;
}
 
.button12__link:hover{background:#3B5998; }
 



/*Englishボタン設定*/

/*メニューブロック全体の設定*/
#manubar2 {
	float: right;	/*右側にまわりこませる*/
	margin-top: 10px;
}
#manubar2 ul li {
	float: right;		/*右にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
}

#manubar2 ul li a {
	background: #006633;	/*背景色（古いブラウザ用）*/
	text-decoration: none;
	display: block;
	width: 120px;	/*メニュー幅*/
	line-height: 40px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
}

/*マウスオン時の設定*/
#manubar2 ul li a:hover {
	color: #FFF;			/*文字色*/
	background-color: #333;
}




/*商品詳細ページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
	display: inline-block;


}

/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
   object-fit: cover;
  width: 150px;
  height: 150px;

}













#video
{
	max-width:560px;
}





/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 70%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: 50px;
	
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
		width: 50%;	/*幅*/
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 20%;	/*幅*/
	padding: 5px;
	text-align: center;
	background-color: #333;	/*背景色*/
	color: #FFF;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #111;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#333, #111);	/*同上*/
	background-image: linear-gradient(#333, #111);			/*同上*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #666;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #666;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #666;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from333efe6c5), to(#111);	/*グラデーション*/
	background-image: -webkit-linear-gradient(#333, #111);	/*同上*/
	background-image: linear-gradient(#333, #111);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
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(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}
/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
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(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}



/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #047127;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #000;	/*背景色*/
	color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none !important;
	color: #fff;
}
footer p {
	clear: both;
	text-align: center;	/*背景色*/
	color: #fff;
	font-size: 16px;
	font-style: normal;
	word-spacing: 0.2em;
	padding: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}




/*その他
---------------------------------------------------------------------------*/


.center_img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 15px;
	padding-top: 15px;
}


.look {
	background: #333;
}

.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
	padding-left: 5px;
	padding-right: 5px;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}
#menubar_hdr {
	display: none;
}

.color1 {
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding-top: 15px;
	line-height: 24px;
		padding-right: 50px;
	padding-left: 50px;
}

.color2 {
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: normal;
	line-height: 25px;
	padding-top: 30px;
	clear: both;
		padding-right: 50px;
	padding-left: 50px;
}

.example1{
	margin-bottom: 10px;
	}


.color3 {
	color: #C30;
	font-weight: bold;

}

.color4 {
	color: #C30;
	font-weight: bold;
padding-right: 50px;
	padding-left: 50px;

}

.color5{
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: normal;
	line-height: 25px;
	clear: both;
	margin-bottom: 12px;
	padding-right: 50px;
	padding-left: 50px;
}


#imgcaption{
	text-align: center;	
}





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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header .inner {
	width: auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	width: 50%;
}
/*「ご予約・お問い合わせ」ボタン設定*/
header 
 a {
	padding: 10px 20px;
	font-size: 14px;
}


/*「問い合わせ」ボタン設定*/
header #toiawase a {
	padding: 15px 25px;
	font-size: 16px;
	right: 20px;	/*innerに対して右から400pxの場所に配置*/
}



/*「価格表」ボタン設定*/
header #pricelist a {
	padding: 15px 25px;
	font-size: 16px;
	right: 185px;	/*innerに対して右から400pxの場所に配置*/
}




/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	margin-top: 170px;
}

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

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






/*メニューブロック全体の設定*/
#manubar3 {
	float: left;
}

#manubar3 ul li {
	float: left;		/*右にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
	padding-top: 5px;
}

#manubar3 ul li a {
	background: #006633;	/*背景色（古いブラウザ用）*/
	text-decoration: none;
	display: block;
	width: 200px;	/*メニュー幅*/
	line-height: 30px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	padding: 5px;
	margin-top: 15px;
}

/*マウスオン時の設定*/
#manubar3 ul li a:hover {
	color: #FFF;			/*文字色*/
	background-color: #369;
}



/*メインメニュー（※トップページ以外）
---------------------------------------------------------------------------*/
/*小さな端末用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	clear: left;
	border-top: 2px solid #999;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 50%;		/*メニュー幅*/
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	padding: 15px 0;	/*右線の幅、線種、色*/
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #999;
	border-bottom-color: #999;
}
/*偶数番目のメニューの右側の線を消す*/
#menubar-s li:nth-child(even) a {
	border-right: none;
}

/*トップページ以外で使っている大きな端末用用メニューを非表示にする
---------------------------------------------------------------------------*/
#menubar {
	display: none;
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/


#main p {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 23px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 5px;
}




/*テーブル１
---------------------------------------------------------------------------*/


.ta1 {
	width: 70%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	float: left;
}
/*テーブル内の左側*/
.ta1 th{
	width: 30%;
	padding: 10px;
}
/*テーブル内の右側*/
.ta1 td{
	width: 70%;
	padding: 10px;
}



/*商品詳細ページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
	display: inline-block;


}

/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
   object-fit: cover;
  width: 120px;
  height: 120px;

}



.color1 {
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	padding-left: 5px;
	font-weight: bold;
	padding-top: 15px;
	line-height: 24px;

}

.color2 {
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	padding-left: 5px;
	font-weight: normal;
	line-height: 25px;
	padding-top: 30px;
	clear: both;
}

.color3 {
	color: #C30;
	font-weight: bold;
}


    
.color4 {
	
    padding-left: 5px;
    padding-right: 5px;


}
    
.color5 {
    color: #006633;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 18px;
 
    font-weight: normal;
    line-height: 25px;
    clear: both;
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
}


}

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



/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/

/*headerブロック共通*/
header {
height: 150px;
}


header .inner {
	width: auto;

}
/*h1ロゴの設定*/
header .inner h1 {
	width: 90%;
	padding-top: 25px;
	text-align: center;
	

}


/*「問い合わせ」ボタン設定*/
header #toiawase a {
	font-size: 12px;
	right: 10px;	/*innerに対して右から400pxの場所に配置*/
	padding-top: 7px;
	padding-right: 7px;
	padding-bottom: 5px;
	padding-left: 7px;	
	
}



/*「価格表」ボタン設定*/
header #pricelist a {
	padding-top: 7px;
	padding-right: 7px;
	padding-bottom: 5px;
	padding-left: 7px;
	font-size: 12px;
	right: 115px;	/*innerに対して右から400pxの場所に配置*/
}







/*メニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
nav#menubar-s {
	display: block;
	text-align: center;	/*文字をセンタリング*/


}
#menubar-s a {
	display: block;
	color: #000;	/*メニュー同士に空ける余白*/
	text-decoration: none;	/*上下、左右へとる余白*/
	background-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;

	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/



/*３本バーブロック*/
 #menubar_hdr {
	display: block;
	position: absolute;
	top: 28px;
	left: 2%;
	border: 1px solid #000;
	background: #fff;
	text-align: center;
	font-size: 12px;
	color: #000;
	width: 35px;
	line-height: 35px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
 }
 #menubar_hdr.close::before {
 content: "menu";
 }
 #menubar_hdr.open::before {
 content: "menu";
 }
 
 
 
 
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
}
/*各ページコンテンツ上部にある背景画像入りの大きな見出し（共通設定）*/
#contents > h2 {
	font-size: 16px;
	letter-spacing: 0.2em;
	padding-left: 20px;
	margin-bottom: 10px;
	line-height: 100px;
}


/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	font-size: 17px;
	margin-right: auto;
	margin-left: auto;	
}

#contents > h2 span {
	font-size: 10px;	/*文字サイズ*/
letter-spacing: 0em;	/*文字間隔を広くとる設定*/
}	
	
/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/img_momiji.png) no-repeat right -10px;	/*マイナスアイコンと背景画像*/

}
#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/img_momiji.png) no-repeat right -10px;	/*プラスアイコンと背景画像*/

}
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl {
	height: auto;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}





/*テーブル１
---------------------------------------------------------------------------*/


.ta1 {
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
/*テーブル内の左側*/
.ta1 th{
	width: 30%;
	padding: 10px;
}
/*テーブル内の右側*/
.ta1 td{
	width: 70%;
	padding: 10px;
}







/*room.html、plan.html内の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}





#main p {
	
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 23px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 5px;
}


.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-top: 10px;
	margin-bottom: 10px;
	
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}




.video{
  width: 100% !important;
  height: 100% !important;
	display: block;
}




/*その他
---------------------------------------------------------------------------*/
/*メニュー折りたたみ設定*/
#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;
}


/*商品詳細ページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
	display: inline-block;


}

/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
   object-fit: cover;
  width: 80px;
  height: 80px;

}




.frame {
  position: relative;
  width: 100%;
  padding-top: 63%;
}

.frame-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.color1 {
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	padding-left: 5px;
	font-weight: bold;
	padding-top: 15px;
	line-height: 24px;

}

.color2 {
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 17px;
	padding-left: 5px;
	font-weight: normal;
	line-height: 25px;
	padding-top: 30px;
	clear: both;
	padding-right: 5px;
}


.color3 {
	color: #C30;
	font-weight: bold;
}

.color4 {
	color: #C30;
	font-weight: bold;
	padding-left: 10px;
	padding-right: 10px;
}

.color5 {
	color: #006633;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 17px;

	font-weight: normal;
	line-height: 25px;
	clear: both;
    padding-left: 10px;
    padding-right: 10px;
	margin-bottom: 15px;
}






/*メニューブロック全体の設定*/
#manubar3 {
	float: left;
}

#manubar3 ul li {
	float: left;		/*右にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
	padding-top: 5px;
}

#manubar3 ul li a {
	background: #006633;	/*背景色（古いブラウザ用）*/
	text-decoration: none;
	display: block;
	width: 200px;	/*メニュー幅*/
	line-height: 30px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	padding: 5px;
	margin-top: 15px;
}

/*マウスオン時の設定*/
#manubar3 ul li a:hover {
	color: #FFF;			/*文字色*/
	background-color: #369;
}


.j-textWithImage figure {
  z-index: 0 !important;
}

}
