/* ============================================================
   口コミ詳細：最終確定・余白最適化版
   ============================================================ */

/* 1. ベースレイアウト */
.review-single { 
    background: var(--mist-50); 
    padding: 0 15px 80px; 
}
.review-article { 
    max-width: 760px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 60px 50px; 
    border-radius: 12px; 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); 
}

/* 2. ヘッダー：タイトルと装飾線（余白を削減） */
.review-header { 
    text-align: center; 
    margin-bottom: 25px; /* ★写真との距離を25pxに短縮 */
}
.review-main-title {
    font-family: var(--font-serif); 
    font-size: 32px !important; 
    color: var(--depth-700);
    line-height: 1.4; 
    margin: 0 0 20px 0 !important; /* ★装飾線までの距離 */
    padding-bottom: 20px !important; /* ★装飾線を置くためのスペース */
    position: relative; 
    display: inline-block; 
    letter-spacing: 0.05em;
}
.review-main-title::after {
    content: ""; 
    position: absolute; 
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%); 
    width: 40px; 
    height: 2px; 
    background: var(--sacred-gold);
}

/* 3. 施行写真：アルバム写真風 */
.review-photo-section { 
    margin-bottom: 50px; 
    display: flex; 
    justify-content: center; 
}
.review-photo-container {
    max-width: 580px; 
    width: 100%; 
    background: #fff; 
    padding: 10px;
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.review-main-photo { 
    width: 100%; 
    height: auto; 
    border-radius: 4px; 
    display: block; 
}

/* 4. プロフィール：情報集約 */
.review-author-profile-unit.bubble-author {
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    margin: 0 0 15px 10px !important;
}
.review-avatar-wrap { 
    width: 60px; 
    height: 60px; 
    flex-shrink: 0; 
}
.review-avatar-wrap img { 
    width: 100%; 
    height: 100%; 
    border-radius: 50% !important; 
    border: 1px solid rgba(0, 0, 0, 0.08); 
}

.review-meta-wrap { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
}
.review-name-attr { 
    margin: 0; 
    font-size: 15px; 
    font-weight: 600; 
    color: var(--depth-700); 
}
.review-stars-box { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.review-stars { 
    color: var(--sacred-gold) !important; 
    font-size: 15px; 
    letter-spacing: 1.5px; 
}
.review-score { 
    font-size: 13px; 
    color: var(--sys-text-tertiary); 
    font-weight: bold; 
}

/* プラン・海域リンク */
.review-plan-info-sm { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 13px; 
    color: var(--sys-text-secondary); 
    margin-top: 4px; 
}
.review-plan-info-sm a { 
    color: var(--horizon-cta) !important; 
    text-decoration: none !important; 
    transition: 0.3s; 
    border-bottom: 1px solid transparent; 
}
.review-plan-info-sm a:hover { 
    color: var(--sacred-gold) !important;
    border-bottom-color: var(--sacred-gold); 
}
.review-plan-info-sm .meta-divider { 
    color: var(--mist-600); 
    font-size: 11px; 
}
.review-plan-info-sm i { 
    font-size: 14px; 
    position: relative; 
    top: 1px; 
}

/* 5. 本文（吹き出しデザイン） */
.review-text-bubble { 
    position: relative; 
    background: var(--mist-50); 
    padding: 30px; 
    border-radius: 12px; 
    margin-bottom: 40px; 
}
.review-text-bubble::before { 
    content: ""; 
    position: absolute; 
    top: -12px; 
    left: 30px; 
    border-style: solid; 
    border-width: 0 12px 12px 12px; 
    border-color: transparent transparent var(--mist-50) transparent; 
}
.review-text-main { 
    font-size: 17px; 
    line-height: 2.1; 
    color: var(--sys-text-primary); 
    margin-bottom: 15px; 
}
.review-date-sig { 
    text-align: right; 
    font-size: 11px; 
    color: var(--sys-text-tertiary); 
    margin: 0; 
}

/* 6. 下部プランカード */
.review-plan-cta { 
    margin-top: 60px !important; 
    padding-top: 30px !important; 
    border-top: 1px solid var(--sacred-gold) !important; 
}
.review-cta-title { 
    font-size: 16px !important; 
    text-align: center; 
    color: var(--sys-text-secondary); 
    margin: 0 0 20px !important; 
}
.mini-plan-card { 
    display: flex !important; 
    background: #fff; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.06); 
    overflow: hidden; 
    text-decoration: none !important; 
    border: 1px solid var(--mist-100); 
    transition: 0.3s; 
}
.mini-plan-card:hover { 
    transform: translateY(-3px); 
    border-color: var(--sacred-gold); 
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); 
}
.mini-card-thumb { width: 35%; flex-shrink: 0; }
.mini-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mini-card-body { width: 65%; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.mini-card-name { font-size: 16px; font-weight: 600; margin-bottom: 8px !important; color: var(--depth-700); }
.mini-card-price strong { font-size: 20px; color: var(--sacred-gold); }
.mini-card-btn { font-size: 12px; font-weight: bold; color: var(--horizon-cta); text-align: right; margin-top: 10px; }

/* 7. 下部アクション（一覧へ戻るボタン） */
.review-footer-action {
    margin-top: 80px;
    text-align: center;
}
.btn-back-to-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 50px;
    background: #fff;
    border: 1px solid var(--depth-700);
    color: var(--depth-700) !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-decoration: none !important;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.btn-back-to-list:hover {
    background: var(--depth-700);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(28, 46, 61, 0.2);
}

/* スマホ版調整 */
@media screen and (max-width: 768px) {
    .review-article { padding: 30px 20px; }
    .review-header { margin-bottom: 20px; }
    .review-main-title { 
        font-size: 24px !important; 
        margin-bottom: 15px !important; 
        padding-bottom: 15px !important; 
    }
    .review-plan-info-sm { font-size: 12px; flex-wrap: wrap; gap: 6px 10px; }
    .review-author-profile-unit.bubble-author { margin-left: 0 !important; }
    .review-photo-container { padding: 6px; }
    .btn-back-to-list { width: 100%; max-width: 300px; padding: 12px 30px; }
}