@charset "utf-8";

/* 全てのクラスにデフォルト適用する物。 */
* {
	margin: 0;
	padding: 0;
}

/* 全体的なプロパティの設定（背景・フォントなど） */
html {
	background-color: #000;
	color: #fff;
	font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, メイリオ, Meiryo, 游ゴシック, "Yu Gothic", "sans-serif";
	font-weight: bold;
}

/* ------------------------------------------------------------------------------------------------- */
/* ■ 画面サイズによって設定が変わるクラス */
/* widthとかheightを再定義する？ */

/* body全体へ設定する物 */
body {
	background-image: url("images/back_ground.jpg");
	color: #fff;
	width: var(--defaultwidth);
	justify-content: center;
	margin: 0 auto;
	text-align: center;
	--defaultwidth: 1000px;
	font-size: calc(var(--defaultwidth) / 100 + 0.5rem);
}

/* ヘッダーフッターみたいに使っているボックス */
.headerFooterBox{
	color: #fff;
	width: var(--defaultwidth);
	/* height: 100px; */
}

/* ヘッダーフッターボックス用のテキスト */
.headerFooterBox p {
	font-size: 0.85rem;
	/* ボックスの高さに合わせて中央配置している。 */
	/* line-height: 50px; */
	text-align: center;
	font-weight: normal;
}

/* タイトルロゴ画像を配置するブロック */
.circlelogoImg {
	width: calc(var(--defaultwidth) / 2);
	height: calc(var(--defaultwidth) / 5);
	display: block;
	margin: auto;
	position: relative;
	text-align: center;
}
.circlelogoImg img{
	width: 100%;
	height: auto;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/* リンクのデザイン */
a {
	color: white;
}

@media (max-width: 960px) {
	body {
		--defaultwidth: 520px;
	}
}

@media (max-width: 520px) {
	body {
		--defaultwidth: 360px;
	}
}
