/* 注意事項セクションのスタイル - プレミアム・ミニマルデザイン */
.notes-section {
    background-color: #12100a;
    /* より深い黒 */
    position: relative;
    overflow: hidden;
}

/* 装飾的な背景要素 */
.notes-section::before {
    content: "INFORMATION";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.notes-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.notes-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.notes-block {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 40px;
    transition: all 0.4s ease;
}

.notes-block:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.notes-heading {
    font-size: 1.2rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.notes-heading i {
    font-size: 0.9em;
    opacity: 0.8;
}

.notes-list {
    list-style: none;
    padding: 0;
}

.notes-list li {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 0.95rem;
    color: rgba(245, 245, 240, 0.9);
    display: flex;
    gap: 12px;
}

.notes-list li:last-child {
    margin-bottom: 0;
}

.notes-list .bullet {
    color: var(--color-gold);
    font-size: 0.8em;
    padding-top: 0.2em;
    flex-shrink: 0;
}

.notes-list .caution {
    color: var(--color-gold-light);
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
    padding-left: 24px;
    font-weight: 500;
}

@media (max-width: 781px) {
    .notes-flex {
        flex-direction: column;
        gap: 20px;
    }

    .notes-block {
        padding: 30px 20px;
    }

    .notes-heading {
        font-size: 1.1rem;
    }

    .notes-list li {
        font-size: 0.9rem;
    }
}

/* お食事についての注意事項（ミールノート）専用スタイル */
.meal-notes-section {
    background-color: #0c0c0c;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.meal-notes-section::before {
    content: "GUIDELINE";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.02);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.meal-notes-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 四隅の装飾 */
.meal-notes-card::before,
.meal-notes-card::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--color-gold);
    border-style: solid;
    opacity: 0.6;
}

.meal-notes-card::before {
    top: 15px;
    left: 15px;
    border-width: 1px 0 0 1px;
}

.meal-notes-card::after {
    bottom: 15px;
    right: 15px;
    border-width: 0 1px 1px 0;
}

.meal-notes-heading {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 50px;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.meal-notes-heading i {
    font-size: 1.2rem;
    opacity: 0.7;
}

.meal-notes-list {
    list-style: none;
    padding: 0;
}

.meal-notes-list li {
    margin-bottom: 30px;
    line-height: 2;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meal-notes-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.meal-notes-list .meal-item-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.meal-notes-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
}

.meal-notes-caution {
    color: var(--color-gold-light);
    font-size: 0.85rem;
    display: block;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.8;
}

@media (max-width: 781px) {
    .meal-notes-card {
        padding: 40px 10px;
        margin: 0;
    }

    .meal-notes-heading {
        font-size: 1.2rem;
    }

    .meal-notes-text {
        padding-left: 0;
        font-size: 0.9rem;
    }
}

/* Added: Side-by-side images above the card */
.meal-notes-imgs {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
    width: 100%;
}

.meal-notes-imgs img {
    width: calc(50% - 10px);
    height: 200px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.meal-notes-imgs img:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

@media (max-width: 767px) {
    .meal-notes-imgs {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    .meal-notes-imgs img {
        width: 100%;
        height: 180px;
    }
}