@charset 'UTF-8';

/* Cascading Style Sheet For kinois.net office base style */

body {
	font-size: 100%;
	font-family: Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 150%;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
em {
    color: #ff0000;
}
body > header {
    background-color: #eeeeee;
    padding: 1em;
    border-radius: 0 0 10px 10px;
    position: relative;
}
#account {
    position: absolute;
    top: 5px;
    right: 10px;
}

/*** bread crumbs ***/
body > nav {
    margin-bottom: 0.2em;
}
body > nav > ol {
    margin: 0.2em 0px;
    padding: 0px;
}
body > nav > ol > li {
    list-style-type: none;
    display: inline;
}
body > nav > ol > li::before {
    content: ">";
}
body > nav > ol > li:first-of-type::before {
    content: "";
}
footer {
    margin-top: 1em;
    border-top: solid 1px #cccccc;
}
#copyright {
    text-align: center;
    margin: 0.4em;
}

table {
    width: 100%;
}

table th, table td {
    padding: 0.4em;
}
table th {
    background-color: #eeeeee;
    font-weight: normal;
    border-radius: 5px;
}
input[type=text] {
    font-size: 100%;
    padding: 0.8em 0.4em;
}
select {
    font-size: 100%;
}
button[type=submit] {
    padding: 0.8em;
    text-decoration: none;
    background: #3399ff !important;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 100%;
    cursor: pointer;
    cursor: hand;
}
a.link {
    display: inline-block;
    padding: 0.8em;
    text-decoration: none;
    background: orange;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 100%;
    cursor: pointer;
    cursor: hand;
}
a.cancel {
    display: inline-block;
    padding: 0.8em;
    text-decoration: none;
    background: #33cc00;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 100%;
    cursor: pointer;
    cursor: hand;
}
div.tabable ul {
    margin: 0px;
    padding: 0px;
    border-bottom: solid 1px #cccccc;
}
div.tabable li {
    list-style-type: none;
    display: inline-block;
    border: solid 1px #cccccc;
    padding: 0.5em 0.5em 0.5em 0.5em;
    margin: 0px 0px -1px;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}
div.tabable li.current {
    border-bottom: 2px #fff solid;
}


@media screen and (min-width:481px){

    body {
        width: 1000px;
        margin: auto;
    }
}


@media screen and (max-width:480px){

    body {
        width: 96% !important;
        margin: auto;
    }
}