@charset "UTF-8" ;
/* ボディ */
body{
	margin: 0 ;		/* スペース */
	padding: 0 ;		/* 余白 */
	font-size : 15px;	/* 文字サイズ */
	line-height: 1.618 ;	/* 行の高さ */

  font-family : ぼくたちのゴシック２ボールド;
  background-size: 100%;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	/* ボディ */
	body{
		font-size: 13px ;	/* 文字サイズ */
	}
}

/* ヘッダー */
.header{
	border-bottom: 3px solid #888 ;		/* 枠線 */
	text-align: center ;			/* テキスト、画像の真ん中寄せ */
	padding: 1em 0 ;			/* 上下の余白 */
	margin-bottom: 2em ;			/* 他のブロックとのスペース */
	background: #e8e8e8 ;			/* 背景色(確認用) */
}

/* ロゴ画像を囲むh1 */
.logo-wrapper{
	margin: 0 ;
	padding: 0 ;
	line-height: 1 ;
}

/* ロゴ画像 */
.logo{
	width: 400px ;
	height: auto ;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	/* ロゴ画像 */
	.logo{
		width: 200px ;
	}
}

/* フッター */
.footer{
	border-top : 1px solid #888888;		/* 枠線 */
	text-align: center ;			/* テキスト、画像の真ん中寄せ */			/* 他のブロックとのスペース */
	padding: 1em 0 ;			/* 上下の余白 */
	background: #e8e8e8 ;
}

/* 全体(デスクトップPCとスマホ)に適用するCSS */
.wrapper{
	width: 1000px ;
	margin: 0 auto ;		/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0 ;			/* 上下左右の余白を0にしておく */
}
img{
	max-width: 100%;
height: auto;
width /***/:auto;　
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	.wrapper{
		width: auto ;
		padding: 0 10px ;
	}
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	.main{
		width: auto ;
		padding: 0 ;		/* 余白 */
		border: none ;		/* 枠線 */
	}
img{
	height: auto;
width /***/:auto;　
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	.main, .side{
		float: none ;
	}
}

.wrapper{
	overflow: hidden ;
}

-->