/*全ページ共通のスタイル*/
@charset "UTF-8";

* {
    font-size: 1em;
    margin: 0;
    padding: 0;
    color: #666;
    border: none;
    border-color: #aaa;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "游ゴシック", "メイリオ", arial, sans-serif;
}

img {
    width: 100%;
    height: auto;
    border: none;
    vertical-align: bottom;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

i {
    padding-right: .5em;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
select,
textarea {
    width: 100%;
    border: 2px solid #aaa;
    border-radius: 5px;
    padding: 2px;
}

textarea {
    resize: vertical;
}

::placeholder {
  color: #aaa;
}

.placeHolder {
    position: relative;
    width: 80%;
    height: 6em;
    background: #eeffee;
    font-weight: bold;
    text-align: center;
    border: 3px dashed #9bca54;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 auto;
}

.placeHolder input[type=file] {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    _cursor: hand;
    opacity: 0;
    filter: alpha(opacity = 0);
}

.fillBox {
    display: block;
    margin: 1em auto;
    line-height: 4em;
}

#container{
    max-width: 1200px;
    margin:0 auto;
    background: white;
}

/*ヘッダー***********/
header{
    width:100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-top: 8px solid rgba(56, 108, 169, 1);
}

#header_left {
    width: 15%;
    float: left;
    margin-top: 10px;
}

#header_right {
    width: 75%;
    float: right;
    border-bottom: 3px solid darkorange;
    overflow: hidden;
}

#author_area {
    width: 80%;
    margin: 50px 0 0 10px;
    float: left;
}

#author_area span {
    color: #37bef0;
}

#logout{
    float: right;
    margin: 10px 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: darkorange;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logout i {
    padding: inherit;
    font-size: 1.5em;
    color: white;
}

/*メニュー**********/
nav{
    width: 220px;
    float: left;
    margin-right: 20px;
}

nav ul li {
    border-top: 1px solid #aaa;
    background: transparent;
    transition: background .3s linear;
}

nav ul li:hover {
    background: #eee;
}

.activeMenu {
    background: rgba(56, 108, 169, .1);
    font-weight: bold;
}

nav ul li > a {
    display: block;
    padding: 1em;
}

nav ul li:last-child {
    border-bottom: 1px solid #666;
}

nav img {
    width: 25px;
    padding: 0 5px;
    border-left: 3px solid #37bef0;
}

#boss {
    width: 80%;
    margin: 0 auto;
}

/*コンテンツ共通*/
#content_area {
    float: left;
    width: calc(100% - 240px);
}

#content_area h2 {
    color: #fff;
    font-size: 1.2em;
    padding: 5px;
    text-indent: 1em;
    background: rgba(56, 108, 169, 1);
}

#contents {
    padding: 10px;
    margin-bottom: 1em;
}

/* footer *********************************************/
footer {
    width: 100%;
    background: rgba(56, 108, 169, 1);
    clear: both;
    position: fixed;
    left: 0;
    bottom: 0;
}

footer div small,
footer div small span {
    color: #fff;
    font-size: .9em;
}

/************汎用CLASS**************/

.btn {
    display: inline-block;
    background: rgba(56, 108, 169, 1);
    color: #fff;
    border-radius: 5px;
    border: none;
    width:100px;
    padding: 5px 0;
    font-weight:bold;
    box-shadow: 0px 1px 2px #333;
    cursor: pointer;
    text-align: center;
}

.smallBtn {
    color: #fff;
    border-radius: 3px;
    border: 1px solid transparent;
    display: inline-block;
    padding: 3px 8px;
    font-weight:bold;
    box-shadow: 0px 1px 2px #333;
    cursor: pointer;
    box-sizing: border-box;
}

.btn:hover,
.smallBtn:hover {
    color: #000;
    opacity: 0.8;
}

.btn:active,
.smallBtn:active {
    box-shadow: none;
}

.blue {
    color: rgba(56, 108, 169, 1) !important;
}

.bkBlue {
    background: rgba(56, 108, 169, 1) !important;
}

.bkRed {
    background: #fc4444 !important;
}

.bkOrange {
    background: darkorange !important;
}

.bkGray {
    background: gray !important;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.attention {
    color: red;
    font-size: .9em;
}

.hidden {
    display: none;
}

.margin10 {
    margin: 10px 0;
}

.marginB05 {
    margin-bottom: .5em !important;
}

.marginB1 {
    margin-bottom: 1em !important;
}

.marginR3 {
    margin-right: 3em !important;
}

.sizeS {
    width: 15%;
}

.sizeM {
    width: 30%;
}

.sizeL {
    width: 60%;
}

.sizeF {
    width: 100%;
}

.unique::after {
    content: "必須";
    margin-left: 10px;
    font-size: 75%;
    background: red;
    color: white;
    border: 1px solid red;
    border-radius: 3px;
}

.alignCenter {
    text-align: center !important;
}

.alignRight {
    text-align: right !important;
}

.padding2 {
    padding: 2em !important;
}

.paddingL10 {
    padding-left: 10px !important;
}

.paddingT2 {
    padding-top: 2em !important;
}

.paddingLR1 {
    padding-left: 1em !important;
    padding-right: 1em !important;
}

.paddingLR3 {
    padding-left: 3em !important;
    padding-right: 3em !important;
}

.fontS {
    font-size: .8em !important;
}

.fontL {
    font-size: 1.5em !important;
}

.bold {
    font-weight: bold !important;
}

.clearFix:after {
    content: "";
    clear: both;
    overflow: hidden;
}

/**検索テーブル****************/
#searchTable {
    width: 100%;
    margin-bottom: 20px;
}

#searchTable th {
    text-align: right;
    padding: .5em;
    width: 150px;
}

#searchTable td {
    padding: 5px 0;
}

/**検索結果テーブル****************/
#resultTable {
    margin-top: 20px;
    width: 100%;
    display: block;
    overflow-y: auto;
    max-height: 540px;
    border-collapse: collapse;
}

#resultTable tr:nth-child(odd) {
    background: rgba(255, 165, 0, .1);
}

#resultTable tr:hover {
    background: #e6e6e6;
}

#resultTable thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

#resultTable th {
    padding: 5px;
    background: darkorange;
    color: white;
}

#resultTable td {
    font-size: 0.9em;
    padding: 5px;
}

#resultCount {
    float: right;
    text-align: right;
    font-size: 0.9em;
}

#resultCount span {
    font-weight: bold;
}