/*全ページ共通のスタイル*/
@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;
}

input[type=submit] {
    -webkit-appearance: none;
}

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;
}

/************汎用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;
}

.btn:disabled,
.smallBtn:disabled {
    opacity: 0.3;
    box-shadow: none;
}

.blue {
    color: rgba(56, 108, 169, 1) !important;
}

.orange {
    color: darkorange !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;
}

.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;
}

.nomal {
    font-weight: normal !important;
}

.clearFix:after {
    content: "";
    clear: both;
    overflow: hidden;
}

/*コンテンツ共通***********/
#container{
    max-width: 1200px;
    margin:0 auto;
    background: white;
    display: flex;
    flex-direction: column;
}
#content_area {
    padding: 0 10px;
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 800px) {

    #content_area {
        flex-direction: column;
    }

}


/*ヘッダー***********/
header{
    width:100%;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    padding-left: 1em;
}

#header_logo {
    width: 200px;
    margin: 0 auto;
}

#header_logo img {
    margin-left: 1em;
}

#logout {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    padding-left: 2px;
    margin-right: 1em;
}

#logout i {
    padding: inherit;
    font-size: 1.5em;
    color: white;
}

@media screen and (max-width: 800px) {
    #header_logo {
        width: 125px;
    }

    #logout {
        width: 35px;
        height: 35px;
    }

    #logout i {
        font-size: inherit;
    }
}

/*メニュー**********/
nav{
    width: 250px;
    padding: 10px;
}

nav ul li {
    border-top: 2px solid rgba(56, 108, 169, 1);
    border-left: 2px solid rgba(56, 108, 169, 1);
    border-right: 2px solid rgba(56, 108, 169, 1);
    background: transparent;
}

nav ul li:hover {
    background: #eee;
}

.activeMenu {
    background: rgba(56, 108, 169, .1);
    font-weight: bold;
}

nav ul li > a {
    padding: 0 0.5em;
    display: flex;
    align-items: center;
    min-height: 3em;
}
nav ul li:first-child {
    border-radius: 5px 5px 0 0;
}

nav ul li:last-child {
    border-bottom: 2px solid rgba(56, 108, 169, 1);
    border-radius: 0 0 5px 5px;
}

nav ul li .attention {
    display: inline-block;
    padding-left: 2em;
    font-weight: normal;
}

nav #app_download {
    margin: 10px 0;
}

nav #app_download .btn {
    color: #fff;
    font-size: larger;
    padding: 10px 0;
    border-radius: 25px;
}

nav #app_download .btn.disabled {
    opacity: 0.3;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
}

nav img {
    width: 25px;
    padding: 0 5px;
    border-left: 3px solid #37bef0;
}

#boss {
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width: 800px) {

    nav {
        width: 100%;
        content: "";
        clear: both;
        overflow: hidden;
    }

    nav ul li {
        border: 2px solid rgba(56, 108, 169, 1);
        border-radius: 5px;
    }

    nav ul li:first-child {
        display: none;
    }

    nav ul li:last-child {
        border-radius: 5px;
    }

    nav ul li#menu_account {
        float: left;
        margin: 10px 0;
        width: calc(100% - 50% - 5px);
    }

    nav ul li#menu_password {
        float: right;
        margin: 10px 0;
        width: calc(100% - 50% - 5px);
    }
}

/*コンテンツ**********/

#contents {
    width: 65%;
    padding: 10px;
    margin-bottom: 2em;
}

#contents h2 {
    font-size: 1.3em;
    padding: 5px;
    text-align: center;
}

#contents dl dt {
    padding: 5px 0;
    font-weight: bold;
}

#contents dl dd {
    padding: 2px 0;
}

#submintBtns {
    margin: 10px 0;
    display: flex;
    justify-content: space-evenly;
}


@media screen and (max-width: 800px) {

    #contents {
        width: 100%;
    }

}


@media screen and (max-width: 800px) {

}

/* footer *********************************************/
footer {
    width: 100%;
    background: rgba(56, 108, 169, 1);
    position: fixed;
    left: 0;
    bottom: 0;
}
