/*
 * input
 */
/* input[type=number] hide-arrow */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    margin-top: 25px;
    background-color: #d5f1d0;
}

td.width-fit {
    width:1%;
    white-space:nowrap;
}

.btn-group-table {
    margin-bottom: 5px;
}
tr ul.courseuser-control {
    display: none;
    list-style-type: none;
    margin: 5px 0 0 0;
    padding: 0;
}
tr:hover ul.courseuser-control {
    display: block;
}
tr ul.courseuser-control li {
    display: inline-block;
}

.alert-default {
    color: #777;
    background-color: #eee;
    border-color: #777;
}

.alert-primary {
    background-color: #337ab7;
}

.fa-btn {
    margin-right: 6px;
}
.table-text div {
    padding-top: 6px;
}

#FreezePane {
    position: fixed;
}

.FreezePaneOff
{
    visibility: hidden;
    display: none;
    position: absolute;
    top: -100px;
    left: -100px;
}

.FreezePaneOn
{
    position: absolute;
    top: 0px;
    left: 0px;
    visibility: visible;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 999;
    filter:alpha(opacity=85);
    -moz-opacity:0.85;
    padding-top: 20%;
}

.InnerFreezePane
{
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.5);

    width: 30%;
    height: 30%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35%;
    margin: auto;


    display: table-cell;
    text-align:center;
    vertical-align: middle;
}

.FreezeText {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    padding-top: 12%;
    font-size: 20px;
}

#FreezeImage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 !important;
    max-width: 100%;
    max-height: 100%;
    padding-top: 20px;
}

.pagetop {
    position: fixed;
    bottom: 5px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

p.fdpager {
    position: fixed;
    bottom: 5px;
    left: 15px;
    background-color: rgba(204,204,204,0.5);
    list-style-type: none;

    padding: 5px;

    text-align: center;
    font-size: 12px;
}
p.fdpager a {
    text-decoration: none;
}

.btn-xxs {
    padding: 1px;
    font-size: 10px;
}
.cursorpt {
    cursor: pointer;
}
.width1px {
    width: 1px;
}
.width100pc {
    width: 100%;
}
.padding0px {
    padding: 0px !important;
}
.padding-lr0px {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.margin0px {
    margin: 0px !important;
}
.border0px {
    border: 0px !important;
}
.bgFFFFFF {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
}
.bg9C9C9C {
    background: #9C9C9C !important;
    background-color: #9C9C9C !important;
}
.category_selected {
    background-color: #f8f8f8;
}
.category_item_left {
    float: left;
}
.clDDDDDD {
    color: #DDDDDD;
}


.search_children [deleted_flg="1"] {
    background-color: #999999;
}

.dialog_completed.ui-dialog .ui-dialog-content {
}
.dialog_completed.ui-dialog .ui-dialog-buttonpane {
    padding: .3em 1em .5em 1em;
    border-width: 0;
}
.dialog_completed.ui-dialog .ui-dialog-buttonpane button {
    width: 100%;
    margin: 3px;
}

/*
 * read more
 * https://ameblo.jp/pixelog/entry-12256964073.html#more1
 */
.more{
    max-height: 0;
    transform: scaleY(0);
    transform-origin: center top;
    transition: .3s ease;
    transition-property: transform,max-height;
}
.morefix:target +  .more{
    max-height: 99999px;
    transform: scaleY(1);
}
.morefix{
    position: fixed;
    top: 0;
}
.more{
    word-break: break-all;
}

/*
 * nest dropdown
 * http://stackoverflow.com/questions/18023493/bootstrap-3-dropdown-sub-menu-missing
 */
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
    margin-left:-1px;
    -webkit-border-radius:0 6px 6px 6px;
    -moz-border-radius:0 6px 6px 6px;
    border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display:block;
}
.dropdown-submenu>a:after {
    display:block;
    content:" ";
    float:right;
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#cccccc;
    margin-top:5px;
    margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
    float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left:-100%;
    margin-left:10px;
    -webkit-border-radius:6px 0 6px 6px;
    -moz-border-radius:6px 0 6px 6px;
    border-radius:6px 0 6px 6px;
}
