/*------------------------------------------------------------------------------

                                リセットなど
                                
------------------------------------------------------------------------------*/
body,h1,div,textarea,a,em{
    display: block;
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-style: normal;
}

body{
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #000;
    font-family: verdana, osaka, sans-serif;
    text-align: center;
}



/*------------------------------------------------------------------------------

                                    A
                                    
------------------------------------------------------------------------------*/
h1{
    position: relative;
    line-height: 1.1;
    overflow: hidden;
    height: 220px;
    background: -moz-linear-gradient(top, #600, #000);
    background: -webkit-gradient(linear, left top, left bottom, from(#600), to(#000));
    border-top: 1px solid #f90;
    font-size: 200%;
}

em{
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%;
    margin-top: -0.5em;
    color: #f90;
    font-size: 300%;
    text-shadow: 0 0 10px #f00;
}

/*グラデはやめた
em:after{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 128), rgba(0, 0, 0, 0));
    content: " ";
    opacity: 0.5;
}
*/

em:before,
em:after{
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;/*----- ie8 -----*/
    content: "A";
}

em:before{
    top: 2px;
    right: -2px;
    left: 2px;
    bottom: -2px;
    color: #f00;
    opacity: 0.75;
    text-shadow: 0 0 20px #c30;
}

em:after{
    top: 0;
    right: 0;
    left: 0;
    bottom: 50%;
    overflow: hidden;
    color: #fc3;
    opacity: 0.5;
    text-shadow: 0 0 0 #000;
}



/*------------------------------------------------------------------------------

                                コンソール
                                
------------------------------------------------------------------------------*/
div{
    overflow: hidden;
    width: 425px;
    height: 205px;
    margin: 10px auto;
    padding: 10px;
    background-color: #eee;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    /*
    -webkit-box-shadow: 2px 2px 3px #aaa inset;
    */
    -moz-box-shadow: 2px 2px 3px #aaa inset;
    box-shadow: 2px 2px 3px #aaa inset;
    border: 1px solid #aaa;
    font-size: 75%;
    text-align: left;
}

div.hot{
    background-color: #ffc;
    /*
    -webkit-box-shadow: 2px 2px 3px #cc9 inset;
    */
    -moz-box-shadow: 2px 2px 3px #cc9 inset;
    box-shadow: 2px 2px 3px #cc9 inset;
    border: 1px solid #cc9;
}

* html div{
    width: 445px;
    height: 225px;
}

textarea{
    width: 425px;
    height: 205px;
    background-color: transparent;
    border-style: none;
    color: #999;
    font-family: verdana, osaka, sans-serif;
    outline: 0 none #000;
}

div.hot textarea{
    color: #333;
}



/*------------------------------------------------------------------------------

                                文字サイズ変更ボタン
                                
------------------------------------------------------------------------------*/
a{
    position: absolute;
    top: 100px;
    line-height: 1;
    padding: 0.2em 0.5em 0.3em 0.5em;
    background-color: #f63;
    background: -moz-linear-gradient(top, #f63, #f00);
    background: -webkit-gradient(linear, left top, left bottom, from(#f63), to(#f00));
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border-top: 1px solid #fc3;
    border-right: 1px solid #f63;
    border-bottom: 1px solid #f63;
    border-left: 1px solid #fc3;
    color: #300;
    -webkit-box-shadow: 0 0 10px #f00;
    -moz-box-shadow: 0 0 10px #f00;
    box-shadow: 0 0 10px #f00;
    text-shadow: 0 0 10px #f00;
    font-size: 120%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    outline: none;
}

a:hover{
    opacity: 0.75;
}

a:active{
    margin-top: 1px;
    opacity: 0.5;
}

a#plus{
    right: 20px;
}

a#minus{
    left: 20px;
}

