@charset "UTF-8";

html,
body,
div,
dl, dt, dd,
ul, ol, li,
h1, h2, h3, h4, h5, h6,
form, input, textarea,
p,
blockquote,
th, td,
img,
a {
  margin: 0;
  padding: 0;
}

html {
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  color: #000;
  font-family: 'YuGothic', 'Yu Gothic','游ゴシック','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Meiryo',sans-serif;
  line-height: 1;
  text-align: left;
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100% !important;
}

.wrap {
	width: 100vw;
	height: 100vh;
	box-sizing: border-box;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
  padding: 0 10px;	
}

img {
  border: 0;
  outline: none;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

ul, ol, li {
  list-style: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.alert {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/* 	background: rgba(255,255,255,0.9); */
	background: #fff;
	z-index: 11;
}
.alert .txt {
	position: fixed;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	font-size: 1.6em;
	line-height: 100px;
	text-align: center;
}
.alert .btn {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 290px;
	height: 80px;
	margin: -20px 0 0 -145px;
	border-radius: 45px;
	overflow: hidden;
	box-sizing: border-box;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 10;
}
.loading img {
	position: fixed;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
}


.table {
	position: relative;
	max-width: 1200px;
	z-index: 2;
	*zoom: 1;
}
.table:before,
.table:after {
	content: '';
	display: table;
}
.table:after {
	clear: both;
}

.table > li {
	width: calc( ( 100% - 90px ) / 10 );
	float: right;
}
.table > li + li {
	margin-right: 10px;
}
.table > li ul li {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
}
body#takeshi .table > li ul li {
  border: 1px solid #2073da;
}
body#kouta .table > li ul li {
  border: 1px solid #da4821;
}
.table > li ul li + li {
	margin-top: 10px;
}
.table a {
	display: block;
	width: 100%;
}
.table img {
	width: 100%;
	height: auto;
}

.switch {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.switch a {
	display: block;
	width: 200px;
	height: 40px;
	line-height: 38px;
	font-size: 16px;
	color: #ccc;
	background: #fff;
	border-radius: 9999px;
	border: 1px solid #ccc;
	text-align: center;
	box-sizing: border-box;
}
body#takeshi .switch a.takeshi {
  border: 1px solid #2073da;
  color: #2073da;
}
body#kouta .switch a.kouta {
  border: 1px solid #da4821;
  color: #da4821;
}

audio {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}