/* common CSS */

html {
    font-size: 1.0em;
    margin-left: 10px;
    margin-right: 10px;
}

.top05  { padding-top: 5px; }
.top10  { padding-top: 10px; }
.top20  { padding-top: 20px; }
.top30  { padding-top: 30px; }
.center { text-align:center; }
.right  { text-align:right; }
.red    { color:#ff0000; }
.pink   { color:#ff1493; }
.fleft  { float: left; }
.clear  { clear:both; }
.nowrap { white-space: nowrap; }
.fs09   { font-size: 0.9em; }
.fs10   { font-size: 1.0em; }
.fs10b  { font-size: 1.0em; font-weight: bold; }
.fs12   { font-size: 1.2em; }
.msg    { color: #ff1493; font-weight: bold; }

input[type="text"], input[type="password"] {
    border-color: #ff1493;
    padding: 5px;
}

#wrapper {
    margin: 0 auto;
    width: 1000px;
    max-width: 100%;
    padding: 0 3px;
}

header, #bottom_button { text-align: center; }
main, #top_logo, #top_button, #bottom_button { padding-top: 20px; }
#top_button button, #bottom_button button {font-size: 1.2em; }

.top_image {
    margin-top: 10px;
    padding: 0 10px;
}

.top_title {
    color: #ff1493;
    font-size: 1.8em;
    font-weight: bold;
    padding-top: 30px;
    text-align: center;
    text-shadow: 2px 2px 2px #bbb;
}

footer {
    text-align: center;
    color: #ff1493;
    padding-top: 30px;
    padding-bottom: 100px;
}

/* button */
/*-----------------------------------------------------------------------------*/
button {
    display: inline-block;
    text-decoration: none;
    border: solid 1px #ff1493;
    background: #ffffff;
    color: #ff1493;
    border-radius: 3px;
    transition: .4s;
    padding: 0.3em 1em;
    box-shadow: 2px 2px 2px #bbb;
}

button:hover {
    color: #ffffff;
    border: solid 1px #ff1493;
    background: #ff1493;
    cursor:pointer;
}

/* Page Top */
/*-----------------------------------------------------------------------------*/
#pageTop {
    display: none;
    background-color: #ffffff;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: 2%;
    line-height: 2.0;
    border: solid 1px #ff1493;
    text-align: center;
    color: #ff1493;
    border-radius: 10%;
    box-shadow: 2px 2px 2px #bbb;
}
#pageTop:hover {
    background-color: #ff1493;
    color: #ffffff;
}
#pageTop span {
    font-family: FontAwesome;
    font-size: 1.2em;
}
