/* ==========================================================================
   装飾ショートコード用スタイル
   [POINT] / [WARNING] / [SUMMARY] / [MERIT] / [DEMERIT] / [PROS-CONS]
   ========================================================================== */

/* 共通ボックス */
.deco-box {
    padding: 20px 24px;
    border-radius: 12px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}
.deco-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
}
.deco-box .deco-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.deco-box .deco-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 8px;
}
.deco-box .deco-content {
    font-size: 16px;
    line-height: 1.7;
}

/* POINT */
.deco-point {
    background: #1e1e1e;
    color: #ffffff;
    border: 1px solid #333;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.deco-point::before {
    content: none;
}
.deco-point .deco-icon {
    color: #f59e0b;
}
.deco-point .deco-label {
    color: #f59e0b;
}

/* WARNING */
.deco-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fffbeb;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
}
.deco-warning::before {
    background: rgba(255, 255, 255, 0.6);
}

/* SUMMARY */
.deco-summary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}
.deco-summary::before {
    background: rgba(255, 255, 255, 0.6);
}

/* PROS-CONS ラッパー */
.pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}
@media (max-width: 768px) {
    .pros-cons-wrapper {
        grid-template-columns: 1fr;
    }
}

/* MERIT */
.deco-merit {
    padding: 20px;
    border-radius: 12px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.deco-merit .deco-header {
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.deco-merit .deco-content {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.7;
}

/* DEMERIT */
.deco-demerit {
    padding: 20px;
    border-radius: 12px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.deco-demerit .deco-header {
    color: #ef4444;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.deco-demerit .deco-content {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================================================================
   [FAQ] / [Q] / [A] ショートコード
   ========================================================================== */
.faq-section {
    margin: 24px 0;
}
h3.faq-item-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #1e1e1e;
    border-radius: 12px 12px 0 0;
    border: 1px solid #333;
    border-bottom: none;
    margin: 0 0 0 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #ffffff;
}

h3.faq-item-question::before {
    content: 'Q';
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.faq-item-answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #252525;
    border-radius: 0 0 12px 12px;
    border: 1px solid #333;
    margin-bottom: 16px;
}
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #ffffff;
}
.faq-icon-q {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.faq-icon-a {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.faq-question-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 4px;
}
.faq-answer-text {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
    padding-top: 4px;
}
