
/*
 * max-width: 576px
 * max-width: 768px
 * max-width: 992px
 * max-width: 1200px
 */

table {
    border-bottom: 1px solid #ddd;
}
table th {
    background: #ededed;
    white-space: nowrap;
}
/*------------------------------------------------------------------------------
 common css
 -------------------------------------------------------------------------------*/
.bcRed {
    background-color: #f8d7da !important; 
}
.bcBlue {
    background-color: #cce5ff !important; 
}
.bcGreen {
    background-color: #d4edda !important;   
}
.bcGray {
    background-color: #ededed !important; 
}
.tool_form {
    display: none;
}

/*------------------------------------------------------------------------------
 table layout
 -------------------------------------------------------------------------------*/

/* form */
.table-form th {
    width: 20%;
    border: 1px solid #ddd;
    padding: 8px;
    background-color: #ededed;
    vertical-align: middle;
    font-size: 14px;
     font-weight: normal;
    
}
.table-form td {
    border: 1px solid #ddd;
    padding: 8px;   

}
.table-form input {
    /*height: 36px;*/
}

@media (max-width: 576px) {
    .table-form th, .table-form td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    .btn-submit {
        width: 100%;
    }
    .inline-horizontal > div{
        float:left;
        margin-right: 5px;
    }
}
@media (max-width: 768px) {
    .table-form th, .table-form td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    .inline-horizontal > div{
        float:left;
        margin-right: 5px;
    }
}


.panel-green a, .panel-green a:hover, .panel-green a:focus {
    background-color: #dff0d8 !important;
    border-color: #d6e9c6;
}

.panel-red a, .panel-red a:hover, .panel-red a:focus {
    background-color: #f2dede;
    border-color: #ebccd1;
}
/*------------------------------------------------------------------------------
 link
 -------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------
 btn
 -------------------------------------------------------------------------------*/
.btn-multiple {
    display: block;
    color: #286090;
    font-size: 14px;
}
.btn-multiple input {
    display: none;
}

.btn-multiple input:checked + span{
    color: #FFF;
    background: #337ab7;
    border: 1px solid #337ab7;
}
/*------------------------------------------------------------------------------
 badge
 -------------------------------------------------------------------------------*/
.badge-danger {
    color: #fff;
    background-color: #dc3545;
}
/*------------------------------------------------------------------------------
 popup
 -------------------------------------------------------------------------------*/
#overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
/* ウィンドウ部分 */
#popup_window {
    width: 30%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: rgb(183, 17, 65);
    color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
    z-index: 90;
}
@media screen and (max-width: 768px) {
    #popup_window {
        width: 65%;
    }
}
#popup_window img {
    border-radius: 15px 15px 0 0;
}
#popup_btn_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(41, 41, 41, 0.95);
    /*background-color: #CE5D8B;*/
    border-radius: 50%;
    z-index: 100;
    cursor: pointer;
}
#popup_btn_close:hover {
    opacity: 0.8;
}
#popup_btn_close span,#popup_btn_close span::before {
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
}
#popup_btn_close span {
    transform: rotate(45deg);
}
#popup_btn_close span::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
}
#popup_contents {
    padding: 20px;
}
#popup_title {
    font-size: 22px;
    font-weight: bold;
}
#popup_contents a {
    width: 100%;
    text-align: center;
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: rgb(250, 180, 0);
    border-radius: 20px;
    padding: 0.75em 1.5em;
    text-decoration: none;
    
}
#popup_contents a:hover {
    opacity: 0.8;
}
/*------------------------------------------------------------------------------
 override
 -------------------------------------------------------------------------------*/
 h1 {
    font-size: 24px;
 }
.pagination {
    margin: 0px;
    float: right;
}

a:hover, a:focus {
    text-decoration: none;
}

table {
    font-size: 13px;
}

.navbar-inverse {
    border-bottom: none;
}


