/* seijin.html ページ固有スタイル（HTML内<style>から移設） */

.adult-recommend-container {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    padding: 10px;
    box-sizing: border-box;
}

.accent-gold-line {
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f3e5ab, #aa7c11, #d4af37);
    margin-bottom: 25px;
    border-radius: 2px;
}

.menu-header {
    text-align: center;
    margin-bottom: 25px;
}
.menu-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 5px 0;
    padding: 0;
    border: none;
}
.menu-subtitle {
    font-size: 14px;
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 上部写真エリア（比率を崩さず、頭が切れない設定です） */
.photo-flex-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}
.photo-item-card {
    flex: 1;
    max-width: 380px;
}
.photo-item-card img {
    width: 100%;
    height: auto;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 4px;
    display: block;
}

/* キャッチコピー */
.message-box {
    text-align: center;
    background-color: #fdfaf2;
    border-left: 3px solid #d4af37;
    border-right: 3px solid #d4af37;
    padding: 18px 15px;
    margin-bottom: 25px;
}
.message-box p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
}

.description-text-area {
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 14px;
}
.description-text-area p {
    margin: 0 0 15px 0;
}

/* 【新設計】下部：写真（左）＋金額・内容（右）のボックス */
.price-details-box-v2 {
    display: flex;
    border: 2px solid #d4af37; /* 上品な金枠で目立たせています */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    background-color: #fafafa;
}

/* 左側：横長写真エリア */
.price-left-photo-area {
    width: 45%;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}
.price-left-photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠に合わせて横長に綺麗にフィットさせます */
    display: block;
}

/* 右側：情報エリア */
.price-right-info-area {
    width: 55%;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 上段の金額部分 */
.price-row-top {
    margin-bottom: 15px;
    border-bottom: 1px dashed #dddddd;
    padding-bottom: 12px;
}
.price-heading {
    display: block;
    font-size: 11px;
    color: #666666;
    margin-bottom: 4px;
}
.price-amount {
    font-size: 28px;
    font-weight: bold;
    color: #1a252f;
    line-height: 1;
}
.price-currency {
    font-size: 16px;
    margin-left: 2px;
}
.price-tax-inclusive {
    font-size: 12px;
    color: #888888;
    font-weight: normal;
    margin-left: 6px;
}

/* 下段のセット内容部分 */
.info-panel-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px 0;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 2px;
    display: inline-block;
}
.info-bullet-list {
    margin: 0;
    padding-left: 18px;
    font-size: 13.5px;
    list-style-type: square;
}
.info-bullet-list li {
    margin-bottom: 5px;
    line-height: 1.4;
}
.info-bullet-list li:last-child {
    margin-bottom: 0;
}
.info-footnote {
    font-size: 11px;
    color: #777777;
    margin-top: 10px;
}

/* スマートフォン用の縦並び切り替え設定 */
@media (max-width: 640px) {
    .photo-flex-box {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .photo-item-card {
        width: 100%;
    }

    /* スマホの時は料金エリアを縦並び（上に写真、下に金額）にします */
    .price-details-box-v2 {
        flex-direction: column;
    }
    .price-left-photo-area {
        width: 100%;
    }
    .price-left-photo-area img {
        height: 200px; /* スマホで見やすい高さに */
    }
    .price-right-info-area {
        width: 100%;
        padding: 20px;
    }
    .pc-display-only {
        display: none;
    }
}
