html, body,
div, p,
table, tr, th, td,
ul, ol, li,
dl, dt, dd,
h1, h2, h3, h4, h5, h6,
img, a, address, figure {
	margin: 0;
	padding: 0;
	border: 0;
}

li {
	list-style: none;
}

* {
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
}

main {
    height: 100vh;
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
	background-color: #eaeaea;
}

article {
    flex: 1;
	display: flex;
	flex-direction: column;
	max-height: 100vh;
	margin: 8px;
	overflow: auto;
}

article > h1 {
	margin: 0 4px;
}

.board-list {
}

.board-list > ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	height: 100%;
	gap: 4px;
}

.board-list > ul > li {
	display: flex;
	flex-direction: row;
	filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.board-number {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 48px;
	font-size: 16px;
	color: whitesmoke;
	background-color: #444;
}

.board-number.japan {
	background-color: #275791;
}

.board-number.ladies {
	background-color: #d23c5a;
}

.match-players {
	padding: 2px 0 0;
	background-color: white;
}

.match-players > i {
	display: none;
}

.match-players > ul {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.match-players > ul > li {
	flex: 1;
	width: 170px;
	padding-left: 4px;
	font-size: 14px;
}

.match-players > ul > li.bounty_icon {
	background-image: radial-gradient(rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .5) 100%), url(./bounty_svg/target.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 50% 50%;
}

.match-players > ul > li.bounty_icon_golden {
	background-image: radial-gradient(rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .5) 100%), url(./bounty_svg/target_golden.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 50% 50%;
}

.match-players > ul > li small {
	display: block;
	font-size: 10px;
}

.match-players > ul > li .kana {
	display: none;
}

.round-title {
	margin-top: 2px;
	padding: 2px 0 2px 4px;
	font-size: 10px;
	color: whitesmoke;
	background-color: #444;    
}

.round-title.empty {
	background-color: initial;
}

input[type="text"] {
	width: calc(100% - 8px);
	border: 2px solid #aaa;
	border-radius: 4px;
	margin: 8px 0;
	outline: none;
	padding: 8px;
	box-sizing: border-box;
	transition: 0.3s;
	font-size: 14px;
}
  
input[type="text"]:focus {
	border-color: #52575d;
	box-shadow: 0 0 8px 0 #52575d;
}

.hide {
	display: none !important;
}

@media screen and (min-width: 1025px) {
	.full article {
		margin: 10px;
	}

	.full #stage {
		display: none;
	}

	.full .search {
		display: none;
	}

	.full .board-number {
		flex-direction: column;
		width: 64px;
	}

	.full .board-number > span {
		flex-grow: 1;
		display: flex;
    	align-items: center;
	}

	.full .round-title {
		width: 100%;
		padding: 2px 0;
		font-size: 10px;
		text-align: center;
	}

	.full .round-title.empty {
		display: none;
	}

	.full .match-players {
		padding: 1px 0 2px;
	}
	
	.full .match-players > ul > li {
		width: 170px;
		font-size: 13px;
	}
}

@media screen and (max-width: 1024px) {
	input[type="text"] {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	
	article > h1 {
		margin: 0;
		font-size: 12px;
	}

	.board-list > ul > li {
		width: 100%;
	}

	.match-players {
		width: calc(100% - 48px);
	}

	.match-players.app {
		background-color: #ffc870;
	}

	.match-players > ul {
		flex-direction: row;
		padding: 0 4px;
	}

	.match-players > ul > li {
		width: 50%;
		overflow: hidden;
		white-space: nowrap;
	}

	.match-players > ul > li:first-child {
		padding-left: 0;
		padding-right: 2px;
	}

	.match-players > ul > li:last-child {
		padding-left: 2px;
	}
}