@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #3f3f3f;	/*全体の文字色*/
	font-family: YuGothic,'Yu Gothic','Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
a:hover img {opacity: 0.6}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*h1見出しタグの設定
---------------------------------------------------------------------------*/
h1 {
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #147587;
	padding-bottom: 30px;
}
h1 span{
	color: #fa7e5c;
}

/*h2見出しタグの設定
---------------------------------------------------------------------------*/
h2 {
	clear: both;
	color: #147587;
	font-size: 20px;
	text-align: center;
	margin : 30px auto;
	border-bottom: 2px #147587 solid;
}

/*h3見出しタグの設定
---------------------------------------------------------------------------*/
h3 {
	clear: both;
	margin-bottom: 15px;
	padding: 3px 20px;			/*上下、左右への余白*/
	border-radius: 4px;			/*角丸のサイズ。大きくすれば角の丸みが大きくなる。角丸が不要ならこの１行削除。*/
	border: 2px solid #436308;	/*枠線の幅、線種、色*/
}

/*段落タグ設定
---------------------------------------------------------------------------*/
p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}

/*リンク設定
---------------------------------------------------------------------------*/
a {
	color: #147587;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;
}
a:hover {
	color: #fa7e5c;	/*マウスオン時の文字色*/
}

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	width: 80%;					/*ブロックの幅を画面の80%にする設定。*/
	max-width: 1000px;			/*上のwidth指定の追加設定。幅1000pxを最大幅に設定し、それ以上広げない。*/
	margin: 5% auto 0px;		/*HP画面の左右中央に表示させる設定。最初の5%は上(コンテナーの外側)に空ける余白の指定。*/
	background: #fff;					/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgba値は左３つが色指定(この場合は白)で最後の小数点が透明度。*/
	border-radius: 10px;	/*角丸のサイズ。大きくすれば角の丸みが大きくなる。角丸が不要ならこの１行削除。*/
	padding: 0 4%;			/*ブロック内の余白*/
	overflow: hidden;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	text-align: center;	/*ヘッダーブロックの内容をセンタリングする設定*/
}
/*ロゴ画像設定*/
header  img {
	width: auto;			/*画像幅を上で設定している「container」の80%にする設定。*/
	height: auto;
	padding: 0;
}

header  img:hover{
	opacity: 1;
}

/*index.html
---------------------------------------------------------------------------*/
/*画像の設定*/
.plan figure img,
.jirei figure img{
	float: left;	/*左に回り込みさせる設定*/
	width: 31%;		/*画像の幅*/
	margin: 0px 1% 50px;	/*画像の外側に空けるスペース。左から、上(0px)、左右(1%)、下(15px)への設定。*/
}

/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0px;	/*左から、上下、左右への余白*/
	color: #3f3f3f;		/*文字色*/
}
footer a {
	text-decoration: none;
	border: none;
	color: #3f3f3f;	/*文字色*/
}
footer .pr {
	display: block;
}

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

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	margin: 15px 0px;	/*メニューブロックの上下(ブロックの外側)に空けるスペース*/
	border-bottom: none;	/*共通設定で指定していた下線をなしにする設定*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: block;	/*メニューを「横並び」から「縦並び」に変更する設定*/
	margin-bottom: 5px;
	border-bottom: 3px solid #436308;	/*下の線の幅、線種、色を追加指定*/
}
}