
@charset "UTF-8";

* {
    margin: 0px;
    padding: 0px;
}

html, body {
    color: #eee;
    font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    line-height: 2;
    text-align: center;
    width: 100%;
    height: 100%;
}

a, a:visited {
    color: tomato;
    text-decoration: underline;
    text-shadow: 0px 0px 1px black;
}

a:hover {
    color: silver;
}

h1 {
    font-family: 'Play', meiryo, sans-serif;
    background-color: #555550;
    color: white;
    font-size: 24px;
    margin: 20px 0px 30px 0px;
    padding: 10px 20px;
    box-shadow: 5px 5px 5px 0px rgba(32, 32, 32, 0.5);
    text-shadow: 0px 0px 3px darkgoldenrod;
}

h2 {
    font-family: 'Play', meiryo, sans-serif;
    border-bottom: 5px solid #555550;
    font-size: 20px;
    margin: 50px 0px 20px;
    padding: 0px 5px;
    text-shadow: 0px 0px 3px darkgoldenrod;
}

h3 {
    font-family: 'Play', meiryo, sans-serif;
    font-size: 18px;
    margin: 10px 0px 15px;
}

h3:before {
    content: "≫";
    margin: 0px 5px 0px 0px;
    display: inline-block;
}

em {
    color: gold;
    font-style: normal;
    margin: 0px 2px;
    padding: 0px 5px;
    display: inline-block;
}

strong {
    color: tomato;
    font-style: italic;
    font-weight: bold;
    margin: 0px 2px;
    padding: 0px 5px;
    display: inline-block;
}

code {
    background-color: rgba(128, 128, 128, 0.3);
    border-radius: 3px;
    font-family: 'consolas', 'Ricty', 'Monaco', monospace;
    margin: 1px 2px;
    padding: 0px 5px;
    display: inline-block;
}

em code {
    color: gold;
    font-weight: normal;
}

img {
    border: 1px solid silver;
}

canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 0;
}

/* id */
#wrap {
    text-align: left;
    margin: 0px auto;
    position: relative;
}

#layer {
    background-color: rgba(32, 32, 32, 1.0);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
}

#layer.hidden {
    background-color: rgba(32, 32, 32, 0.0);
    transition: background-color 1.0s ease-in;
}

#navi {
    background-color: rgba(32, 32, 32, 0.75);
    font-size: small;
    line-height: 30px;
    text-align: left;
    width: 100%;
    height: 30px;
    position: fixed;
    top: 0px;
}

#navi p {
    margin: 0px;
    padding: 0px 20px;
}

#header {
    text-align: center;
}

#headerDescription {
    color: #ddd;
    font-family: 'Play', sans-serif;
    font-size: 72px;
    padding: 50px 0px;
    text-shadow: 0px 0px 10px orangered;
}

#burgerArea {
    line-height: 45px;
    text-align: center;
    width: 45px;
    height: 45px;
    float: right;
    position: fixed;
}

#burgerArea a {
    color: white;
    width: 45px;
    height: 45px;
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
}

#burgerArea a:hover {
    text-decoration: none;
}

#tiles {
    background-color: #776;
    content: "　";
    width: 120px;
    height: 120px;
    display: inline-block;
    position: fixed;
    top: -60px;
    right: -60px;
    transform: rotate(-45deg);
    transition: background-color 0.1s linear, transform 0.1s linear;
}

#tiles.hover {
    background-color: orangered;
    transform: rotate(0deg);
    transition: background-color 0.1s linear, transform 0.1s linear;
}

#main {
    text-align: center;
    width: 100%;
    height: auto;
    display: inline-block;
}

#mainAdArea {
    background-color: transparent;
    text-align: center;
    max-width: 100%;
    margin: auto;
    padding: 30px 00px 0px 0px;
}

#text {
    background-color: rgba(36, 36, 30, 0.9);
    margin: 0px auto;
    padding: 10px 0px 0px;
    width: 100%;
    max-width: 800px;
}

#text img {
    max-width: 100%;
}

#column {
    background-color: rgba(255, 255, 255, 0.1);
    width: 360px;
    height: 100%;
    float: right;
    display: inline-block;
    position: fixed;
    top: 0px;
    right: -405px;
    overflow: auto;
    transition: right 0.2s cubic-bezier(0, 0, 0, 1);
}

#column.visible {
    right: -20px;
    transition: right 0.2s cubic-bezier(0, 0, 0, 1);
}

#columnContent {
    background-color: #111;
    text-align: left;
    margin: 60px 0px 0px;
}

#content {
    text-align: left;
    margin: 0px;
    padding: 10px 20px;
}

#contentFooter {
    margin: 0px;
    padding: 20px 0px;
}

#content p {
    margin: 0px 30px;
}

#content table {
    border: 2px solid #aaa;
    border-collapse: collapse;
    font-size: 12px;
    font-family: 'consolas', monospase;
    margin: 15px;
    max-width: 90%;
    border-collapse: collapse;
}

#content th {
    background-color: rgba(128, 128, 128, 0.3);
    font-weight: bold;
    text-align: left;
    padding: 5px;
}

#content th.thcenter {
    text-align: center;
}

#content td {
    padding: 5px;
}

#content td.tdcenter {
    text-align: center;
}

#content ul {
    margin: 20px 20px 20px 50px;
}

#content img {
    margin: 10px auto;
    box-shadow: 2px 2px 5px rgba(64, 64, 64, 0.5);
}

#contentFooterNavi {
    text-align: center;
    margin: 10px 0px;
    padding: 10px;
}

#contentFooterNavi #centerColumn {
    text-align: center;
    margin: 0px;
    padding: 0px;
    width: 20%;
    display: inline-block;
}

#contentFooterNavi #leftColumn {
    text-align: left;
    margin: 0px;
    padding: 0px;
    width: 38%;
    display: inline-block;
}

#contentFooterNavi #rightColumn {
    text-align: right;
    margin: 0px;
    padding: 0px;
    width: 38%;
    display: inline-block;
}

#contentFooterAd {
    text-align: center;
    margin: 10px 0px;
    padding: 10px 0px;
}

#columnAd {
    text-align: center;
    margin: 0px auto;
    padding: 0px;
    width: 300px;
}

#footer {
    background-color: rgba(6, 6, 0, 0.7);
    color: #999;
    font-size: small;
    text-align: left;
    padding: 20px 0px 30px;
}

#footer ul {
    font-size: small;
    line-height: 3;
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    padding: 0px;
    list-style-type: none;
}

#footer li {
    padding: 0px 20px;
}

#footer p {
    text-align: center;
}

#footer a {
    text-shadow: 1px 1px 1px black;
}

#footerAd {
    text-align: center;
    padding: 30px 0px;
}

/* class */
.come {
    color: #993;
    font-size: small;
}

.capt {
    border-bottom: 1px dashed #cc5;
    color: #993;
    font-size: small;
    display: inline-block;
}

.capt:before {
    content: "＞ ";
}

.screenshot {
    text-align: center;
    margin: 10px;
}

.screenshot p {
    color: silver;
    font-size: small;
    margin: 3px 5px 10px;
    padding: 0px;
}

.screenshot img {
    margin: 0px auto;
    display: block;
}

.col {
    background-color: rgba(120, 120, 120, 0.25);
    border: 1px solid silver;
    color: #ccc;
    font-size: small;
    line-height: 150%;
    margin: 20px;
    padding: 10px;
}

.col p {
    margin: 10px 5px !important;
}

.columnList {
    font-family: 'Play', sans-serif;
    font-size: small;
}

.columnList ul {
    font-size: small;
    line-height: 200%;
    margin: 0px 0px 30px;
    padding: 0px 0px 0px 15px;
    list-style-type: none;
}

.columnList .cTitle {
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    line-height: 36px;
}

.columnList p {
    background-color: #555550;
    color: #ccc;
    font-size: large;
    font-weight: bold;
    margin: 0px 0px 10px;
    padding: 5px;
    box-shadow: 0px 3px 5px 0px black;
}

@media screen and (max-width: 800px)  {
    #content p {
        margin: 0px 10px;
    }
    #content ul {
        margin: 20px 10px 20px 30px;
    }
    #content table {
        font-size: 10px;
    }
    #content th {
        padding: 1px;
    }
    #content td {
        padding: 1px;
    }
}


