/* ボディ */
body
{
	margin: 0 ;				/* スペース */
	padding: 0 ;			/* 余白 */
	font-size: 15px ;		/* 文字サイズ */
	line-height: 1.618 ;	/* 行の高さ */
         font: 0.8rem/1   'ヒラギノ角ゴ','メイリオ', 'Meiryo','ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN','游ゴシック体', 'YuGothic', '游ゴシック', 'Yu Gothic', sans-serif;
 line-height: 150%;	/* 行の高さを指定する */

background-color: #232323;
color: #f9f9f9;
}


a {

color:#fefefe;
text-decoration:underline;

}
a:visited {

color:#cca6bf;
text-decoration:underline;

}

a:hover {

color:#b4acad;
text-decoration:underline;

}


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



/* 画像の最大幅を指定する */
img
{
	max-width: 90% ;		/* 横幅の90% */
	height: auto ;			/* 縦幅を自動調整 */
}


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

/* ロゴ画像を囲む[h1] */
.logo-wrapper
{
	margin: 0 ;			/* スペース */
	padding: 0 ;		/* 余白 */
	line-height: 1 ;	/* 行の高さ */
}

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

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



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

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


.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 50%;
  height: 50%;
}



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


