@charset "UTF-8";
body{background: #000;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
details{
	display:block;
	color: #fff;
	border: 0.01rem solid;
	border-color: #fff;
	background: #000;
	width:98%;
	box-shadow: 0 10px 10px -5px rgb(0, 0, 0), 0 10px 10px -5px rgb(255, 255, 255);
	border-radius: 10px;
	overflow:hidden;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	text-decoration: none;
}
summary::-webkit-details-marker{display:none;}
summary::-moz-list-bullet{list-style-type:none;}
summary::marker{display:none;} 
summary {
   display:block;
   padding:0.1em 1em 0.4em .0em;
	border-bottom: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 1px;
   	position: relative;
	background-color: #363636;
	color: #fff;
	text-decoration: none;
}
summary:before {  
  top: .1em;
  right: .2em;
  	color: transparent;
	font-size: 30px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTE2LjU5IDguNTlMMTIgMTMuMTcgNy40MSA4LjU5IDYgMTBsNiA2IDYtNnoiLz48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+") no-repeat 50% 50% / 1em 1em;
  width: 1em;
  height: 1em;  
  content: "";
  position: absolute;
  transition: transform .5s;
}
details[open] > summary:before {
  transform: scale(-1,-1);
}

details[open] summary ~ *{ 
  animation: sweep .5s ease-in-out;
}
@keyframes sweep {
  0%    {opacity: 0;}
  100%  {opacity: 1;}
}
summary:focus {
  outline:0;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.3), inset 0 0 2px rgba(0,0,0,0.3);
}
summary ~ * {
   padding: 0.2em 0.9em 0em .9em;
}
@font-face {
	font-family: 'text_1'; 
	src: url("/font/text_1.ttf");
}
@font-face {
	font-family: 'text_2'; 
	src: url("/font/text_2.otf");
}
@font-face {
	font-family: 'text_3'; 
	src: url("/font/text_3.ttf");
}
.text_1{
	font-family: 'text_1';
	color: white;
	font-weight: 600;
	font-variant: small-caps;
	font-size: xx-large;
}
.text_2{
	font-family: 'text_2';
	color: white;
	font-weight: 10;
	font-size: 10px;
}

li{}
ul{
	background-color: #555;
}
details > ul {
  background-color: #000;
	width:98%;
	margin-left: -10px;
	margin-top: 5px;
}
summary > span {
	font-family: 'text_2';
	font-size: 20px;
	font-style: normal;
	color: #fff;
	padding: 0em 0em 0em 0.5em;
}
summary > span2 {
	font-size: 14px;
	font-style: italic;
	font-family: 'text_3';
	float: right;
	padding: 0.8em 1.5em 0em 0em;
}
ul > details > summary {
	background-color: #555;
}