.header {
    width: 100%;
    height: 35px;
    overflow: visible;
}

.header * {
    height: 100%;
    overflow: visible;
}

.mainTheme {
    background-color: #0094E2;
    color: #FFFFFF;
}

.logo {
    display: inline-block;
    width: 150px;
    height: 28px;
    margin-top:3px;
    margin-left:13px;
    /*ADD - 2021/02/23 - SF6.18.0_SF02-29-00 - START*/
    float: left;
    /*ADD - 2021/02/23 - SF6.18.0_SF02-29-00 - END*/
}

.searchBox {
    background: #FFFFFF;
    display: none;
    width: 185px;
    height: 20px;
    margin-top: calc((35px - 20px) / 2)
}

.noTextButton {
    border-style: solid;
    text-indent: -100px;
}

.searchButton {
    background-size: contain;
    background: #FFFFFF url(/image/ico_search.png) no-repeat center;
    display: inline-block;
    width: 15px;
    height: 20px;
    border: 0;
    margin-left: -5px; /* submitかtextに謎のスペースがある  */
    cursor: pointer;
}

.searchInput {
    display: inline-block;
    width: 170px;
    height: 20px;
    border: 0;
}

.lineSeparator {
    display: none;
    border-right: 1px #FFFFFF solid;
    padding-right: calc(10px - 1px);
}

.userMenuBox {
    width: 165px;
    padding-right: 20px;
    height: 100%;
}

.userMenu {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.userMenu li {
    height: 100%;
    display: none;
}

.userMenuList {
    z-index: 100;
    position: absolute;
    height: auto;
    top: 35px;
    width: 240px;
    left: calc(100% - 240px);
    border: 1px solid #C5C5C5;
    display: none
}

.rightBox {
    float: right;

    height: 100%;
}

.rightBox::after {
    clear: right;
}

.left {
    float: left;
}

.left::after {
    clear: left;
}

.pulldown {
    display: inline-block;
    background: url(/image/ico_pulldown_white.png) no-repeat center;
    width: 8px;
    height: 100%;
    margin-right: 10px;
}

.loginUser {
    display: inline-block;
    background: url(/image/ico_login_user.png) no-repeat center;
    width: 18px;
    height: 100%;
}

ul.projectHistoryList {
    list-style-type: disc;
    color: #262626;
}

ul.projectHistoryList li {
    padding-left: 24px;
    list-style-position: inside;
}

ul.projectHistoryList li:first-child{
    border-top: 1px dashed;
}

.userMenuItem a, .userMenuItem p, .projectHistoryLabel {
    display: block;
    /* 文字開始位置がbody天辺からなので、35pxから全体の半分+フォントサイズの半分をパディングにし、中央から始まるように見せかける。そしてbodyから
    パディング分を引くことで35pxに保つ */
    height: calc(35px - (35px / 2 - 12px / 2));
    padding-top: calc(35px / 2 - 12px / 2);
    padding-left: 45px;

    text-decoration: none;
}

.projectHistoryList a {
    display: inline-block; /* 現在は.userMenuItem a でもあるので上書きになる  */
    padding-left: 5px; /* 中点からテキスト開始までの間隔 */
}

.underBorderLessList {
    /* 高さは可変の内容物にするため未指定  */
    border-width: 1px 1px 0 1px;
    border-style: solid;
}

.borderLessList {
    height: 35px;
    border-width: 0;
}

.borderList {
    height: 35px;
    /* borderでまとめると色まで変わるので別々に指定(色は別クラスで定義) */
    border-width: 1px;
    border-style: solid;
}
.userMenuItem{
    border-style:none;
    border-top-style:solid;

}
.userMenuItem::after {
    clear: right;
}

.userInfo {
    background: url("/image/user_pulldown/user_off.png") no-repeat center  left;
}

.userInfo:hover {
    background: url("/image/user_pulldown/user_on.png") no-repeat center  left;
}

.favoriteProject {
    background: url("/image/user_pulldown/favorite_off.png") no-repeat center  left;
}

.favoriteProject:hover {
    background: url("/image/user_pulldown/favorite_on.png") no-repeat center  left;
}

.projectHistoryLabel {
    background: url("/image/user_pulldown/history_off.png") no-repeat center  left;
}

.help {
    background: url("/image/user_pulldown/help_off.png") no-repeat 10px 60%;
}

.help:hover {
    background-image: url("/image/user_pulldown/help_on.png");
}

.logout {
    background: url("/image/user_pulldown/logout_off.png") no-repeat 10px 60%;
}

.logout:hover {
    background-image: url("/image/user_pulldown/logout_on.png");
}

.pulldown_skin_no_link {
    border-color: #c5c5c5;
    background-color:white;
    color:#262626;
    cursor:default;
}

/*ADD - 2021/02/23 - SF6.18.0_SF02-29-00 - START*/
.subscription_license_expiration_date{
    height: 100%;
    line-height: 35px;
    float: left;
    padding-left: 5px;
}
/*ADD - 2021/02/23 - SF6.18.0_SF02-29-00 - END*/
