.menu {
    max-width: 900px;
    margin: 0 auto;
}

.menu-header {
    margin-top: 250px;
    margin-bottom: 100px;
    display: flex;
    justify-content: start;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 110px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.menu-item.is-visible {
    opacity: 1;
    transform: translateY(0);}

.menu-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.menu-img {
    width: 200px;
    height: 200px;
    min-width: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.menu-item>div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

.menu-item h3 {
    font-size: 18px;
    color: #555;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.menu-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #B2A86F;
}

.item-text {
    color: #555;
    background-color: transparent;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

.price {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    background: transparent;
    border-top: 1px solid rgba(178, 168, 111, 0.5);
    padding: 14px 0 0 0;
    border-radius: 0;
    margin: 0;
    line-height: 2;
    box-shadow: none;
    width: 100%;
}

.price.flex {
    display: flex;
    gap: 63px;
}

.price-border {
    width: 100%;
    border-top: 1px solid rgba(178, 168, 111, 0.5);
    padding-top: 14px;
}

.price.flex.insurance {
    width: fit-content;
    border-top: none;
    padding-top: 0;
}

.price dl {
    flex: 1;
    margin: 0;
}

.price.flex.insurance dl {
    flex: 0 0 auto;
}

.price dt {
    font-size: 14px;
    font-weight: 600;
    color: #B2A86F;
    margin-bottom: 6px;
    padding-bottom: 0;
    border-bottom: none;
}

.price dd {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #888;
   
}

.plan,
.fee {
    display: inline-block;
}

/* SPスタイル */
@media (max-width: 768px) {
    .menu {
        max-width: 100%;
        padding: 0 16px;
    }

    .menu-header {
        margin-top: 150px;
        margin-bottom: 60px;
    }

    .menu-content {
        gap: 60px;
        max-width: 100%;
    }

    .menu-item {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .menu-img {
        width: 100%;
        height: 200px;
        min-width: unset;
        border-radius: 10px;
    }

    .menu-item > div {
        gap: 14px;
    }

    .menu-item h3 {
        font-size: 16px;
    }

    .item-text {
        font-size: 14px;
    }

    .price {
        font-size: 13px;
    }

    .price.flex {
        flex-direction: column;
        gap: 20px;
    }

    .price.flex.insurance {
        flex-direction: row;
        width: fit-content;
    }

    .price dt {
        font-size: 13px;
    }

    .price dd {
        font-size: 13px;
    }
}