/* フードメニューのCSS（仮）
.twin-menu-set{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}
.pickup-menu{
    width:50%;
    height: auto;
}
.list-menu{
    width:50%;
    height: auto;
}
.name-and-price{
    display: flex;
    flex-direction: row;
    align-content: end;
    justify-content: space-between;
}
.menu-main-color{
    background-color:gainsboro;
}
.menu-sub-color{
    background-color:grey;
} */

/*pickup-menu*/
dt{
    float: left;
    border: none;
  }
  
  dd{
    margin-left: 80px;
    border: none;
  }

.pp-pickup-menu{
    width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
}

.pickup-menu-body{
    position: relative;
}

.menu-tag{
    position: absolute;
    background-color: #074d96;
    top: 0;
    left: 0;
}

.pickup-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

@media screen and (min-width: 1024px) {
    .pickup-slide {
        width: 25%; /* 4 items per row on PC */
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .pickup-slide {
        width: 50%; /* 2 items per row on iPad */
    }
}

@media screen and (max-width: 767px) {
    .pickup-slide {
        width: 100%; /* 1 item per row on iPhone */
    }
}

.pickup-menu-top{
    background-color: #074d96;
    color: #FFFFFF;
    width: 100%;
    height: 80px;
    border-radius: 10px;
    padding: 3%;
    margin-bottom: 16px;
}

.pp-pickup-menu .menu-tag,
.pp-pickup-menu .name,
.pp-pickup-menu .price,
.pp-pickup-menu .period{
    color: white;
    font-size: 16px;
}

.pp-pickup-menu .menu-tag{
    font-size: 12px;
}

.pp-pickup-menu .name{
    border-bottom:none;
    font-size: 16px;

}
.pp-pickup-menu .price{
    border-bottom:none;
    font-size: 12px;
    text-align: right;
}

.pp-pickup-menu .period{
    border-bottom:none;
    font-size: 12px;
    bottom:0px;
    right:16px;
}

.pp-pickup-menu img{
    object-fit: cover;
    aspect-ratio: 1/1;
    width:100%;
    height:auto;
    border-radius: 10%;
}


/* regular-menu */
.pp-reg-menu{
    display:flex;
    flex-wrap: wrap;
    gap:16px 8px;
}

.pp-reg-menu-single{
    width: 20%;
    height: auto;
}

.pp-reg-menu-single .name-space{
    height: 64px;
    width: 100%;
}

.pp-reg-menu-single .name{
    color: black;
    border-bottom:none;
    font-size: 16px;
}

.pp-reg-menu-single .price{
    color:black;
    border-bottom:none;
    font-size: 12px;

}

.pp-reg-menu .period{
    color:black;
    border-bottom:none;
    font-size: 12px;
}

.reg-menu-photo-sec{
    width: 100%;
    position: relative;
}

.pp-reg-menu-single img{
    object-fit: cover;
    width:100%;
    aspect-ratio: 16/9;
}

.reg-menu-photo-sec .menu-tag{
    position: absolute;
    background-color: blue;
    color: white;
    font-size: 12px;
    top:0;
    left: 0;
}
/* list */
/* Alternating background colors for pp-list-single */
.pp-list-single:nth-child(odd) {
    background-color: white;
}
.pp-list-single:nth-child(even) {
    background-color: gray;
}

/* Set pp-list-single to full width */
.pp-list-single {
    width: 100%;
    align-items: center; /* Vertically center the items */
    padding: 10px;
    box-sizing: border-box; /* Ensures padding does not exceed width */
}

.pp-list-single-top{
    display: flex;
}

/* Align name-space left and pp-list-price-space right */
.name-space {
    flex: 1;
    text-align: left;
}

.pp-list-price-space {
    text-align: right;
    flex: 1;
}

/* Position pp-list-label on top left */
.pp-list-label {
    padding: 5px;
    font-size: 0.8em;
}

/* Responsive font size adjustments */
@media (max-width: 768px) {
    .pp-list-single {
        flex-direction: column;
        align-items: flex-start;
    }

    .name-space, .pp-list-price-space {
        text-align: left;
        width: 100%;
        margin-bottom: 5px;
    }

    .pp-list-label {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
}
/* movie */
.swiper-movie{
    position: relative;
    height: auto;
    width: auto;
    aspect-ratio: 16/9;
}

.movie-slide{
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.movie-slide.slide-visible{
    opacity: 1;
    visibility: visible;
}

.movie-slide video{
    object-fit: cover;
    aspect-ratio: 16/9;
}