@charset "UTF-8";


/*************
全体FMT
*************/
.container {
	padding: 0 8px;
	max-width: 960px;
	margin: 0 auto;
  }



/*************
h2
*************/
h2 {
	padding-top: 40px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	position: relative;
}
h2::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	right: calc(50% - 10px);
	top: 16px;
	background-image: url(../images/icon_h2_result.svg);
	background-size: cover;
}
@media(min-width:769px) and (min-aspect-ratio: 1/1) {
	h2 {
		padding-top: 56px;
		font-size: 24px;
	}
	h2::before {
		width: 30px;
		height: 30px;
		right: calc(50% - 15px);
	}
}

/*************
所持金
*************/
#statusTable.container {
max-width: 296px;
margin-top: 28px;
}
.statusTable_block {
	background-color: #FFF;
	border-radius: 4px;
	padding: 12px;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--light-gray-color);
	justify-content: space-between;
}
.statusTable_block dl {
	padding: 8px;
	text-align: center;
	border-radius: 4px;
	width: 100%;
}
.statusTable_block dl.statusTable_item01 {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 8px;
	padding: 4px;
}
.statusTable_block dl.statusTable_item02 {
	background-color: var(--whitesmoke-color);
	width: 49%;
}
.statusTable_block dt {
	font-size: 12px;
	font-weight: bold;
}
.statusTable_block dl.statusTable_item01 dt {
	margin-right: 1em;
}
.statusTable_block dl.statusTable_item02 dt {
	color: var(--darkgray-color);
	margin-bottom: 4px;
}
.statusTable_block dd {
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-color);
	line-height: 1;
}
.statusTable_block dl.statusTable_item02 dd {
	font-size: 16px;
	text-align: right;
}
.statusTable_block dd span.unit {
	font-size: 14px;
	font-weight: normal;
}
.statusTable_block dl.statusTable_item02 dd span.unit {
	font-size: 12px;
	font-weight: normal;
}
.statusTable_block+.statusTable_block {
	margin-top: 8px;
}
@media(min-width:480px){
	.sp {
		display: none;
	}
	#statusTable.container {
		max-width: 480px;
		}

	.statusTable_block dl dt {
		font-size: 14px;
	}
	.statusTable_block dl.statusTable_item01 dd{
		font-size: 28px;
	}
	.statusTable_block dl.statusTable_item02 dd {
		font-size: 20px;
	}
	.statusTable_block dd span.unit {
		font-size: 14px;
	}
	.statusTable_block+.statusTable_block {
		margin-top: 16px;
	}

}
/****************
データ
****************/
/* 表組み */
#tabularData {
	margin: 16px auto 0;
	font-size: 10px;
	width: 100%;
}
.taLeft {
	text-align: left;
}
.taRight {
	text-align: right;
}
#tabularData table {
	width: 100%;
}
#tabularData th {
	background-color: var(--table-hd);
	color: var(--switch-text-color);
	text-align: center;
	vertical-align: middle;
	padding: 4px;
}
#tabularData th+th,
#tabularData td+td{
	border-left: 1px solid var(--table-line);
}
#tabularData tr+tr{
	border-top: 1px solid var(--table-line);
}
#tabularData tr:nth-child(2){
	border-top: none;
}
#tabularData td{
	background-color: var(--white-box);
	padding: 8px;
	vertical-align: middle;
}

/* 取引履歴 */
#history {
	margin-top: 8px;
}
.history_head {
	background-color: var(--table-hd);
	color: var(--switch-text-color);
	padding: 4px 8px;
	text-align: center;
}
.history_body {
	background-color: var(--white-box);
	padding: 8px;
	height: 52px;
	line-height: 1.4;
	overflow-y: scroll;
}
@media(min-width:480px){
	#tabularData {
		font-size: 14px;
		margin-top: 28px;
	}
	.history_body {
		height: 10vh;
	}
	#history {
		margin-top: 16px;
	}
	#tabularData th {
		padding: 8px 4px;
	}
	.history_head {
		padding: 8px;
	}
}
@media(min-width:769px) and (min-aspect-ratio: 1/1) {
}
/****************
ランキングを見るボタン
****************/
#ranking_btn {
	padding: 16px 8px;
}
.text-center {
	text-align: center;
}