﻿@import url(./font.css);

body {
    background-color: #fff;
    background-image:
    linear-gradient(90deg, transparent 79px, #abced4 79px, #abced4 81px, transparent 81px),
    linear-gradient(#eee .1em, transparent .1em);
    background-size: 100% 1.2em;
    /* Pattern from : https://projects.verou.me/css3patterns/#lined-paper */
}

nav {
    width: 15%;
    background-color:#eee;
    border-right:1px solid #ddd;
    position: fixed;
    height:100%;
}
.menu {
    left: 0;
    top: 0;
}
.menu li {}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: relative;
}
.menu ul {
    background-color: #f1f1f1;
}

.menu li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}
.menu li a.active {
    background-color: #4CAF50;
    color: white;
}
.menu li a:hover:not(.active) {
    background-color: #555;
    color: white;
}

section{
    margin-left:20%;
    margin-right:10%;
    padding:3%;
    font-family: "LogoTypeGothic7", sans-serif;
    border-style: solid;
    border-color: #d6dde5;
    border-width: 10px;
    background-color: #ffffff;
}

section > h1, h2 {
    font-family: 'LogoTypeGothic7', sans-serif;
}

section > h3 {
    font-family: 'LogoTypeGothic7', sans-serif;
}

section > p > strong {
    padding-right: 20px;
}

section > p > input[type=color] {
    margin-left: 5px;
    margin-right: 20px;
}

section.input_sheet > h1, h2 {
    background-color: #fff;
}

section.input_sheet > h3 {
    background-color: #f1f1f1;
}

.content:after {content:""; clear:both; display:block;}
.content > div {
    float:left;
    width:33%;
    height:100%;
    padding: 10px;
    box-sizing:border-box;
}
.hidden {
    display: none;
}
canvas {
    border: solid 1px;
    margin: 1em;
    width: calc(100% - 2em);
}

.release ul {
    background-color: none;
    list-style-type: decimal;
    margin-left: 25px;
}

.explain {
    font-size: 0.9rem;
    color: gray;
}

div.footer {
    font-family: 'LogoTypeGothic7', sans-serif;
    font-size: 10px;
    position: absolute;

    margin-left:15%;
    margin-top:10%;
    left: 0;
    width: 90%;
    height: 10%;
	padding: 15px 0;
	text-align: center;
	color: #2b2b2b;
	background-color: none;
	z-index: -1;
}
div.footer > p > span {
    background-color: white;
}

.use_info {
    font-size: 1.1rem;
	text-align: left;
}

html {
    font-size: 0.8rem;
}

table.select_table {
    width: 100%;
    text-align: center;
    table-layout: fixed;
    border: 2px #e1s9ed;
}
table.select_table > tbody > tr > td {
    color: rgb(255, 255, 255);
}
table.select_table label {
    width: 100%;
    height: 100%;
    background-color: #88a5ba;
    background-size: cover;
    display: block;
}
table.select_table > tbody > tr > td > input:checked + label {
    background-color: #d5dc92;
}

table.select_table > tbody td > input {
    display: none;
}