/* ============================================
   メニューページと他のページ用スタイル
   ============================================ */

/* 実写真画像スタイル */
.menu-intro-image {
    margin: 0 -999px 50px -999px;
    padding: 0 999px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    overflow: hidden;
}

.menu-intro-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.menu-category-divider {
    margin: 60px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.menu-category-divider img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.menu-category-divider img:hover {
    opacity: 1;
}

/* メニューページ */
.menu-category {
    margin-bottom: 60px;
}

.menu-category h2 {
    font-size: 26px;
    color: white;
    padding: 18px 25px;
    background: linear-gradient(90deg, #5c3d25 0%, #8b6f47 100%);
    margin: 0 0 30px 0;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 2px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.menu-item-detail {
    background: white;
    padding: 20px;
    border-left: 3px solid #b8956a;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.menu-item-detail:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 16px rgba(92, 61, 37, 0.12);
}

.menu-item-detail h3 {
    font-size: 17px;
    color: #5c3d25;
    margin: 0 0 8px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.menu-item-detail .price {
    font-size: 15px;
    color: #b8956a;
    font-weight: 600;
    margin: 8px 0 12px 0;
    letter-spacing: 0.5px;
}

.menu-item-detail p {
    font-size: 13px;
    color: #8a7a6d;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.4px;
}

.menu-note {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(176, 130, 93, 0.08);
    border-left: 3px solid #b8956a;
    border-radius: 2px;
}

.menu-note p {
    font-size: 13px;
    color: #8a7a6d;
    margin: 8px 0;
    letter-spacing: 0.5px;
}

/* テイクアウトメニュー */
.takeout-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 30px 0;
}

.takeout-item {
    background: white;
    padding: 25px;
    border-left: 4px solid #b8956a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.takeout-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(92, 61, 37, 0.12);
}

.takeout-item h3 {
    font-size: 19px;
    color: #5c3d25;
    margin: 0 0 10px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.takeout-item .price {
    font-size: 18px;
    color: #b8956a;
    font-weight: 600;
    margin: 10px 0 15px 0;
}

.takeout-item p {
    font-size: 14px;
    color: #8a7a6d;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.5px;
}

/* 法要プランページ */
.ceremony-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 0;
}

.ceremony-package {
    background: white;
    padding: 35px;
    border: 2px solid #ede8e0;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.ceremony-package:hover {
    border-color: #b8956a;
    box-shadow: 0 10px 25px rgba(92, 61, 37, 0.1);
    transform: translateY(-5px);
}

.ceremony-package h3 {
    font-size: 22px;
    color: #5c3d25;
    margin: 0 0 15px 0;
    font-weight: 400;
    letter-spacing: 0.8px;
}

.ceremony-package .price {
    font-size: 18px;
    color: #b8956a;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ede8e0;
}

.ceremony-package ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.ceremony-package li {
    font-size: 14px;
    color: #8a7a6d;
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.4px;
}

.ceremony-package li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8956a;
    font-weight: bold;
}

.ceremony-note {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(176, 130, 93, 0.08);
    border-left: 3px solid #b8956a;
    border-radius: 2px;
}

.ceremony-note p {
    font-size: 13px;
    color: #8a7a6d;
    margin: 8px 0;
    letter-spacing: 0.5px;
}

/* 情報ページFAQ */
.faq-wrapper {
    margin-top: 40px;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border: 1px solid #ede8e0;
    border-radius: 2px;
    overflow: hidden;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 16px;
    color: #5c3d25;
    margin: 0 0 15px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.faq-item p {
    margin: 0;
    color: #8a7a6d;
    line-height: 1.8;
    font-size: 15px;
    letter-spacing: 0.4px;
}

/* ============================================
   レスポンシブ
   ============================================ */

@media (max-width: 768px) {
    .menu-list,
    .takeout-menu,
    .ceremony-packages {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
