@charset "UTF-8";


/*==============================================
================================================
catalogArea
================================================
==============================================*/
.catalog_mv {
    line-height: 0;
}

.catalogBtn {
    width: 100%;
    font-size: 20px;
    text-align: center;
    background-color: #e4d2ae;
}
.catalogBtn a {
    display: block;
    color: #231815;
    padding: 1em;
}
.catalogBtn a:hover {
    background-color: #231815;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .catalogBtn {
        font-size: 14px;
    }
}

/*----------------------------
movieBox
----------------------------*/
.movieBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}
.movieBox div {
    width: 49%;
}
.movieBox iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}
@media screen and (max-width: 767px) {
    .movieBox div {
        width: 100%;
    }
    .movieBox div:nth-child(n+2) {
        margin-top: 15px;
    } 
}

/*----------------------------
料金表
----------------------------*/
h3 {    
    font-size: 20px;
    color: #fff;
    background-color: #231815;
    padding: .7em;
}
h3:nth-child(n+2) {
    margin-top: 2em;
}
@media screen and (max-width: 767px) {
    h3 {
        font-size: 14px;
    }
}

/*caption-table*/
.caption-table {
    margin-top: 1em;
}
.caption-table li {
    text-indent: -1em;
    padding-left: 1em;
}

/*table*/
.tableBox {
    width:100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 1em; 
}
th, td { 
    border: 1px solid #ccc; 
    padding: .5em; 
    text-align: left; 
}
th { 
    background-color: #f0f0f0; 
}
th.name {
    width: 16em;
}
th.price {
    width: 6em;
    text-align: center;
}
th.quantity {
    text-align: center;
}
td.quantity {
    text-align: center;
}
td.price {
    text-align: right;
}
@media screen and (max-width: 767px) {
    table {
        width: 200%;
    }
}
