/* 料金プランページ - プランカード */

.plan-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-card-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

.plan-image {
    width: 100%;
    height: 240px;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plan-img-placeholder {
    object-fit: contain;
    background-color: var(--gray-50);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.plan-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 18px;
    color: var(--gray-600);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

