/* ===== エディタ装飾スタイル ===== */

/* テキスト装飾 */
.highlight-yellow {
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    padding: 2px 4px;
    font-weight: 600;
}

.highlight-blue {
    background: linear-gradient(transparent 60%, #2196f3 60%);
    color: white;
    padding: 2px 4px;
    font-weight: 600;
    border-radius: 3px;
}

.important-text {
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.1em;
}

.warning-text {
    color: #ff9800;
    font-weight: 600;
    background: #fff3e0;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ボックス装飾 */
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    position: relative;
}

.info-box::before {
    content: "ℹ️";
    position: absolute;
    left: -2px;
    top: -2px;
    background: #2196f3;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.warning-box {
    background: #fff8e1;
    border-left: 4px solid #ff9800;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    position: relative;
}

.warning-box::before {
    content: "⚠️";
    position: absolute;
    left: -2px;
    top: -2px;
    background: #ff9800;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.success-box {
    background: #e8f5e8;
    border-left: 4px solid #4caf50;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    position: relative;
}

.success-box::before {
    content: "✅";
    position: absolute;
    left: -2px;
    top: -2px;
    background: #4caf50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.point-box {
    background: #f3e5f5;
    border-left: 4px solid #9c27b0;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    position: relative;
}

.point-box::before {
    content: "💡";
    position: absolute;
    left: -2px;
    top: -2px;
    background: #9c27b0;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ボタン装飾 */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white !important;
    padding: 12px 24px;
    text-decoration: none !important;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40,167,69,0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40,167,69,0.4);
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    padding: 10px 20px;
    text-decoration: none !important;
    border-radius: 20px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

.btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white !important;
    padding: 16px 32px;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
    border: none;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

/* リスト装飾 */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2em;
}

.number-list-circle {
    counter-reset: item;
    padding-left: 0;
}

.number-list-circle li {
    display: block;
    margin-bottom: 8px;
    padding-left: 40px;
    position: relative;
}

.number-list-circle li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    background: #2196f3;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
}

.arrow-list {
    list-style: none;
    padding-left: 0;
}

.arrow-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}

.arrow-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9800;
    font-weight: bold;
    font-size: 1.1em;
}

.single-content h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #2E2E2E;
}

/* レスポンシブ対応 */
@media (max-width: 960px) {
    .info-box, .warning-box, .success-box, .point-box {
        padding: 12px 16px;
        margin: 15px 0;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1em;
    }

    .single-content h2 {
        font-size: 1em;
    }