@charset "utf-8";
/*---------------------------------------------------------------------------*/
/*  Reset                                                                    */
/*---------------------------------------------------------------------------*/
*
{
    margin: 0;
    padding: 0;
}
/*---------------------------------------------------------------------------*/
/*  body                                                                     */
/*---------------------------------------------------------------------------*/
body
{
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: black;
    min-height: 100vh;
}
/*---------------------------------------------------------------------------*/
/*  left-area                                                                */
/*---------------------------------------------------------------------------*/
#left-area
{
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
}
/*---------------------------------------------------------------------------*/
/*  header                                                                   */
/*---------------------------------------------------------------------------*/
header
{
    margin: 20px 0;
    color: white;
    text-align: center;
}
header h1
{
    font-weight: bold;
    font-size: 64px;
    line-height: 1.0em;
}
header p
{
    font-size: 32px;
}
/*---------------------------------------------------------------------------*/
/*  nav                                                                      */
/*---------------------------------------------------------------------------*/
nav dd 
{
    font-size: 24px;
    text-align: center;
}
nav dd a
{
    color: white;
    display: block;
    padding: 20px;
    text-decoration: none;
}
nav dd a:hover
{
    color: black;
    background-color: white;    
}
/*---------------------------------------------------------------------------*/
/*  footer                                                                   */
/*---------------------------------------------------------------------------*/
footer
{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    color: white;
    background-color: black;
    text-align: center;
    font-size: 24px;
}
/*---------------------------------------------------------------------------*/
/*  clear                                                                    */
/*---------------------------------------------------------------------------*/
br.clr { clear: both; }
/*---------------------------------------------------------------------------*/
/*  info-area                                                                */
/*---------------------------------------------------------------------------*/
#info-area
{
    position: absolute;
    left: 400px;
    bottom: 100px;
    height: 300px;
    margin: 0 20px;
    padding: 50px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}
#info-area h2 { font-size: 32px; }
#info-area hr { margin-bottom: 20px; }
#info-area .newicon
{
	color: white;
    background: red;
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
#info-area p { font-size: 24px; }