@charset "utf-8";

/***************************************************************************
*
* menu-B.css
*
***************************************************************************/

.menu-B {
    max-width: 1050px;
    margin: 5% auto 0;
    position: relative;
}

.menu-B h3.title {
    font-size: 20px;
    margin: 0 0 2%;
    padding: 1%;
}

.menu-B img {
    display: block;
    margin: 0 auto 1%;
}

.menu-B .menu-B-inner {
    overflow: hidden;
    margin: 0 0 5%;
}

.menu-B .inner-left {
    padding: 0 1%;
    width: 50%;
    float: left;
}

.menu-B .inner-right {
    padding: 0 1%;
    width: 50%;
    float: right;
}

.menu-B table {
    width: 100%;
    margin-bottom: 20px;
}

.menu-B .menu-B-inner:nth-child(even) {
    background-color: #f4f4f4;
}

.menu-B table td {
    padding: 1%;
    border-top: 1px solid #ddd;
}

.menu-B .menu-B-inner:nth-child(even) table td {
    border-top: 1px solid #999;
}

.menu-B table tr:first-child td {
    border-top: none;
}

.menu-B .menu-B-inner:nth-child(even) table tr:first-child td {
    border-top: none;
}

.menu-B table td.col-1 {
    font-weight: bold;
    width: 40%;
    padding: 2% 1%;
}

.menu-B table td.col-2 {
    width: 60%;
    text-align: right;
    padding: 2% 1%;
}

.menu-B table td.col-3 {
    width: 100%;
    text-align: justify;
}

@media (max-width: 768px) {
    .menu-B {
        width: 100%;
    }
    
    .menu-B .inner-left,
    .menu-B .inner-right {
        width: 100%;
        float: none;
    }
    
    .menu-B table {
        margin: 0 0 5%;
    }
    
    .menu-B table td.col-1 {
        width: 60%;
    }

    .menu-B table td.col-2 {
        width: 40%;
    }
}