.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.toggle-label {
    font-size: 1.1rem;
    color: #333;
}

.discount-badge {
    background-color: #ff4757;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* スイッチのスタイル */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* 料金表示のスタイル */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem;
}

/* 月払い/年払いの切り替え */
.amount.yearly,
.period-yearly {
    display: none;
}

#billingToggle:checked ~ .pricing-card .amount.monthly,
#billingToggle:checked ~ .pricing-card .period-monthly {
    display: none;
}

#billingToggle:checked ~ .pricing-card .amount.yearly,
#billingToggle:checked ~ .pricing-card .period-yearly {
    display: inline;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    margin: 0.5rem 0;
    color: #666;
}

.pricing-features li:before {
    content: "✓";
    color: #2196F3;
    margin-right: 0.5rem;
} 