@charset "UTF-8";

/* タイトルバー */
.titlebar {
	font-size: 2.0em;
	text-align: center;
	background: #000000;
	width: 100vw;
}
.titlebar a {
	display: grid;
	color: #00FF00;
	justify-content: center;	
}

/* アカウントバー */
.accountbar {
	font-size: 2.0em;
	text-align: center;
	background: #DDDDFF;
	width: 50vw;
	display: table-cell;
}
.accountbar > div {
	display: inline;
	width: 30vw;
	min-width: 100px;
	margin: 0px;
}
.accountbar_point {
	font-size: 2.0em;
	text-align: center;
	background: #FFFFDD;
	width: 50vw;
	display: table-cell;
}

/* ドロップダウンメニュー */
.ulmenu {
	margin: 0px;
	padding: 0px;
	width: 100%;
}
.ulmenu li {
	width: 100%;
	display: inline-block;
	list-style-type: none;
	position: relative;
}
.ulmenu li:hover ul {
	display: block;
}
.ulmenu ul {
	margin: 0px;
	padding: 0px;
	display: none;
	position: absolute;
	width: 100%;
	background: #FFBBBB;
	z-index: 1;
}

/* 四角枠コンテンツ */
.gamelist {
	display: flex;
	justify-content: center;
	/*width: 100%;
	position: relative;*/
}
.gamelist_col {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px 10px 10px 10px;
	width: 90%;
}
.categorylist_col {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px 10px 10px 10px;
	width: 90%;
}
.gamelist_cell {
	position: relative;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
    text-decoration: none;
    color: #000;
	width: 50%;
	max-width: 300px;
	float: left;
}
.categorylist_cell {
	position: relative;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
    text-decoration: none;
    color: #000;
	width: 33%;
	max-width: 300px;
	float: left;
}
.gamelist_content {
    background: #FFFFFF;
	border-radius: 10px 10px 10px 10px;
	padding: 10px;
	text-align: center;
}
.gamelist_content img {
	width: 100%;
}

/* アイテムリスト */
.itemList {
	width: 80%;
	text-align: center;
}
.itemListImage {
	vertical-align: middle;
}
.itemListName {
	background-color: #FFFFC0;
	width: 100%;
	float: left;
	text-align: center;
}
.itemListPoint {
	background-color: #C0FFC0;
	width: 100%;
	font-weight: bold;
	white-space: nowrap;
	float: right;
}
.itemListDescription {
	background-color: #DEDEDE;
	text-align: left;
}
.itemListSale {
	font-weight: bold;
	color: #FF0000;
}

/* アイテム表示ビューア */
#showItem {
	display: none;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
}
#itemClose {
	display: none;
	position: fixed;
	right: 10px;
	top: 10px;
	cursor: pointer;
}
