@charset "UTF-8";

/* ============================================================
	スタイルシート
============================================================ */
html {
	height: 100%;
}
body {
	background: #fff;
	font-family: 'Noto Sans JP','Helvetica Neue', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', meiryo, sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	line-height: 1;
	height: 100%;
}
body * {
	box-sizing: border-box;
}
a {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}
a:hover {
	opacity: .8;
}
#wrap {
	width: 100vw;
	height: 100%;
}

/*------------------------------
	タイトル
------------------------------ */
#wrap .title {
	position: fixed;
	left: 1000rem;
    background: #151411;
    width: 100%;
    padding: 4px 8px;
    font-size: 16px;
    color: #fff;
}



/* ============================================================
	コンテンツ
============================================================ */
#contents {
	width: 100%;
	height: 100%;
}

/*------------------------------
	カテゴリーブロック
------------------------------ */
#contents .category-block {
	position: relative;
	float: left;
	width: 50%;
	height: 100%;
	cursor: pointer;
}
/* 見出し */
#contents .category-block .headline {
	position: absolute;
	z-index: 1;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}
#contents .category-block .headline-main {
}
#contents .category-block .headline-main a {
	font-family: 'Arizonia', cursive;
	font-size: 60px;
}
#contents .category-block .headline-main a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#contents .category-block .headline-logo {
	margin-top: 23px;
}
#contents .category-block .headline-logo img {
	width: 114px;
	height: 17px;
}
/* 背景 */
#contents .category-block .background {
}
#contents .category-block .background::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
}
#contents .category-block .background-fade {
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}