/* カスタムブロック用スタイル */

/* テーブルスタイル */
.yanesapo-price-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.yanesapo-price-table th {
    background: linear-gradient(135deg, #2882C7, #1565c0);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.yanesapo-price-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.yanesapo-price-table tr:nth-child(even) {
    background: #f8f9fa;
}

.yanesapo-price-table tr:hover {
    background: #e3f2fd;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .yanesapo-columns {
        grid-template-columns: 1fr !important;
    }
}