/*---------------------------------------------
                  departure-date
----------------------------------------------*/
#main {
	background-color: #ffffe6 !important;
}
/*------------------Filter--------------*/
.post-perpage-wrap {
    margin-bottom: 50px;
    padding: 30px;
    background: #ffeacc;
    border-radius: 5px;
}

.button-filter-title span {
    background: #000;
    color: #fff;
    padding: 1px 20px;
    width: 100%;
    max-width: 200px;
    display: block;
    text-align: center;
    margin-bottom:10px;
}

.post-perpage-wrap select {
    width: 200px;
    display: block;
    margin-bottom: 20px;
    color: #000;
}

.youbi-button-wrap {
    margin-bottom: 30px;
}

.month-button-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-perpage-wrap button {
    border: none;
    width: calc(100% / 14 - 5px);
    margin-right: 10px;
    background: orange;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.post-perpage-wrap button:hover{
    opacity: 0.7;
}

/*------------------table--------------*/
.departure-list {
    border: none;
    width:100%;
}

.departure-list th {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

.departure-list td {
    text-align: center;
    font-size: 14px !important;
    padding: 10px 5px;
}

.departure-list tr {
    border-bottom: solid 1px #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.clickable:hover {
    background-color: #ffeacc !important;
}

.departure-list tr:nth-child(even) {
    background: #fff;
}

.departure-list tr:nth-child(odd) {
    background: #f7f7f7;
}

.departure-list .th-year {
    width: 8%;
}

.departure-list .th-month {
    width: 3%;
}

.departure-list .th-day {
    width: 5%;
}

.departure-list .th-week{
    width: 6%;
}

.departure-list .th-area {
    width: 8%;
}

.departure-list .th-days {
    width: 8%;
}

.departure-list .th-title {
    width: 30%;
}

.departure-list .th-status {
    width: 10%;
}

.departure-list .th-guide {
    width: 12%;
}

.departure-list .th-favorites {
    width: 10%;
}

.td-favorites {
    position: relative;
}

.simplefavorite-button {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    cursor: pointer;
    transform: translate(-50%,-50%);
}

.td-status span {
    width: 100% !important;
    display: block;
    border-radius: 3px;
}

#article-none h4 {
    margin: 30px auto;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border: solid 1px;
    background-color: #fff;
    padding: 10px;
}


/*---------------------------------------------

                    PC

----------------------------------------------*/

/*---------------------------------------------

                    Tablet

----------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px){

}

/*---------------------------------------------

                    Mobile

----------------------------------------------*/
@media only screen and (max-width: 767px){
    #main {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #main .fusion-row {
        padding-left: 10px;
        padding-right: 10px;
    }

    .post-perpage-wrap select {
        width: 100%;
    }

    .month-button-wrap {
        display: block;
    }

    .post-perpage-wrap .btn-seach-month {
        width: 100%;
        margin-bottom: 10px;
        padding: 5px 0;
    }

    .youbi-button-wrap {
        margin-bottom: 30px;
        display: block !important;
    }

    .youbi-button-wrap button {
        width: 100%;
        margin-bottom: 10px;
        padding: 5px 0;
    }
}