/*
@charset "utf-8";@charset "euc-jp";
---------------------------------------------------------------------------*/

@charset "utf-8";



/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 320px;	/*ブロックの幅*/
	height: 180px;	/*ブロックの高さ　初期170px*/
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	color: #FFF;				/*文字色*/
	background-color: #fa5d95;	/*背景色*/
	font-size: 12px;			/*文字サイズ*/
	text-align: right;			/*文字を右寄せ*/
	line-height: 25px;			/*行間 初期18px*/
}
/*ロゴ画像の設定*/

header #logo {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から10pxの位置に配置*/
	top: 30px;	/*ヘッダーブロックに対して上から38pxの位置に配置*/
}


/*電話番号ボックスの設定*/
header address {
	position: absolute; /*  */
	top: 150px;			/*ヘッダーブロックに対して上から38pxの位置に配置*/
	/*right: 0px;		初期20px ヘッダーブロックに対して右から20pxの位置に配置*/
	font-size: 18px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	font-style: normal;	/*通常斜体になっているのを通常に*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定*/
	line-height: 1.2;		/*行間*/
	color: #fa5d95;		/*文字色*/
	font-weight: bold;	/*文字を太字に*/
}
/*電話番号ボックス内の「TEL」の設定*/
header address .tel {
	display: inline-block;
	color: #FFF;				/*文字色*/
	background-color: #fa5d95;	/*背景色*/
	padding: 2px 10px 1px;		/*上、左右、左へのボックス内の余白*/
	margin-right: 10px;
	font-weight: normal;
}

header img {
	max-width: 100%;
	height: auto;
}

