.schedule_area {
    max-width: var(--content-width);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* 横に並べる */
.schedule_area_wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.3s ease;
}

/* 各日コンテナを常に1画面幅に固定し、空要素でも幅0にならないようにする */
.schedule_area_items {
    flex: 0 0 100%;
    align-self: flex-start;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .schedule_area_items {
        padding: 0 10px;
    }
}

/* アイテムのスタイル */
.schedule_area_items .item {
    display: flex;
    margin-bottom: 25px;
    width: 100%;
    border: 4px solid #6CCCFF;
    background-image: url('data: image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="88.917" height="97" viewBox="0 0 88.917 97"><path id="title-head-svg" d="M37.993,28.935c1.869,1.409,5.209,3.933,9.108,2.644,4.876-1.612,6.413-9.2,4.848-15.425C50.1,8.8,45.235-.132,35.936-.008c-1.49.7-2.981.9-3.967,2.057-6.762,7.93.72,22.884,6.023,26.884ZM71.782,41.716c13.3-2.638,8.363-29.531-5.436-29.529-4.732,1.917-6.545,2.546-8.08,7.639C55.359,29.47,62.133,43.63,71.782,41.716ZM15.516,42.3c2.5,1.516,7.056,3.43,10.724,1.616,3.912-1.935,4.873-8.391,2.938-13.222-2.8-6.984-8.92-15.393-18.657-15.278-1.72.705-3.141.726-4.407,1.763C3.939,18.961,3.4,23.728,4.351,27.319A24.242,24.242,0,0,0,15.516,42.3ZM88.088,59.2C85.4,51.473,79.449,48.544,71.341,46.27c-3.073-.862-6.332-1.177-8.814-2.644-5.321-3.145-7.885-8.853-16.454-8.814l-4.26.735a19.3,19.3,0,0,0-10.871,8.08c-4.325,7.137.928,12.661-.294,20.126q-1.615,7.785-3.232,15.572C26.031,88.005,33.5,95.665,40.049,96.806,50.431,98.613,56.19,86.671,61.792,82.7c8.291-5.873,22.273-4.285,26.443-14.4C89.336,65.637,88.965,61.719,88.088,59.2ZM8.17,46.858c-3.034,1.193-5.193,1.125-6.758,3.673-6.442,10.492,10.629,26.8,21.155,20.861,4.168-2.353,4.963-8.468,2.791-13.516A18.22,18.22,0,0,0,8.17,46.858Z" transform="translate(0.001 0.009)" fill="%236CCCFF" /></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% + 10px) calc(100% + 28px);
    background-size: 120px auto;
    padding: 30px;
    border-radius: 20px;
    gap: 30px;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff;
}

.schedule_area_items .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .schedule_area_items .item {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
}


/* nowonairのスタイル */
.schedule_area_items .item .now_on_air {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #f66463;
    color: #fff;
    font-weight: bold;
    padding: 4px 18px;
    border-radius: 999px;
    animation: nowonair-blink 1.5s ease-in-out infinite;
    opacity: 1;
}

@keyframes nowonair-blink {
    0% {
        opacity: 0.1;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}


.schedule_area_items .item .thumb {
    width: 36%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .schedule_area_items .item .thumb {
        width: 100%;
    }
}

.schedule_area_items .item .summary {
    flex: 1;
}

.schedule_area_items .item .summary .delivery_datetime {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #6CCCFF;
    font-family: futura-pt, sans-serif;
    display: flex;
    align-items: center;
    gap: 0.3em;
    position: relative;
}

/* 左側アロー（三角形） ::before */
.schedule_area_items .item .summary .delivery_datetime::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="6,2 22,12 6,22" fill="%236CCCFF"/></svg>');
    flex-shrink: 0;
    vertical-align: middle;
}

.schedule_area_items .item .summary .title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {

    .schedule_area_items .item .summary .delivery_datetime,
    .schedule_area_items .item .summary .title {
        font-size: 1.2rem;
    }

    .schedule_area_items .item .summary .delivery_datetime {
        gap: 0.2em;
        margin-bottom: 0;
    }
        .schedule_area_items .item .summary .title {
        margin-bottom: 0.5em;
            }
    .schedule_area_items .item .summary .delivery_datetime::before {
        width: 0.8em;
        height: 0.8em;
    }
}


.schedule_area_items .item .summary .txt {
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

/* UI */
.schedule_area_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 3px;
    width: 100%;
    background-color: #6CCCFF;
    border-radius: 99px;
    color: #fff;
    margin-bottom: 30px;

}

@media (max-width: 768px) {
    .schedule_area_nav {
        width: calc(100% - 20px);
        margin: 0 auto 30px;
    }
}

.schedule_area_nav .button-next,
.schedule_area_nav .button-prev {
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 0;
}

.schedule_area_nav .button-next.disabled,
.schedule_area_nav .button-prev.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.schedule_area_nav .button-next::after,
.schedule_area_nav .button-prev::after {
    content: '';
    display: block;
    width: 30px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.schedule_area_nav .button-next::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 15.03 20.32"><path d="M0,1.16C0,.06.74-.33,1.65.29l12.7,8.73c.91.62.91,1.64,0,2.27L1.65,20.02c-.91.62-1.65.23-1.65-.87C0,19.15,0,1.16,0,1.16Z" fill="%236CCCFF" /></svg>');
    margin-left: 10%;
}

.schedule_area_nav .button-prev::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 15.03 20.32"><path d="M15.03,19.15c0,1.1-.74,1.49-1.65.87L.68,11.29c-.91-.62-.91-1.64,0-2.27L13.38.29c.91-.62,1.65-.23,1.65.87v18h0Z" fill="%236CCCFF"/></svg>');
    margin-right: 10%;
}

.schedule_area_nav .schedule_area_label {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    font-family: futura-pt, sans-serif;
}