/* ========================================
   Pricing Page New Sections Styles
   料金ページ追加セクション用CSS
   ======================================== */

/* 水商売POSの料金で確認すべき5つのポイント */
.pricing-checklist-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.pricing-check-card {
    background: #222222;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pricing-check-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.check-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.check-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.check-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.check-description strong {
    color: #ffffff;
    font-weight: 600;
}

.checklist-cta {
    margin-top: 3rem;
    text-align: center;
}

.checklist-note {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

.checklist-note i {
    font-size: 1.5rem;
}

/* 店舗規模別のおすすめプラン */
.store-size-recommendation-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.store-size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.store-size-card {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-size-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-size-card:hover::before {
    opacity: 1;
}

.store-size-card:hover {
    border-color: #4a90e2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.store-size-featured {
    background: linear-gradient(135deg, #1a2a4a 0%, #0f1a2e 100%);
    border-color: #4a90e2;
}

.store-size-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.store-size-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.store-size-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.store-size-subtitle {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.store-size-content {
    margin-top: 1.5rem;
}

.store-size-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.store-size-plan {
    background: #222222;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.store-size-plan-label {
    font-size: 0.85rem;
    color: #4a90e2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.store-size-plan-name {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
}

.store-size-plan-price {
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.store-size-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.store-size-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #cccccc;
    border-bottom: 1px solid #2a2a2a;
}

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

.store-size-note {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
}

.store-size-note p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.store-size-note i {
    color: #4a90e2;
    margin-right: 0.5rem;
}

/* Dシステムの料金が向いている店舗 */
.pricing-fit-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.pricing-fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-fit-card {
    background: #222222;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-fit-card:hover {
    border-color: #4a90e2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.pricing-fit-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.pricing-fit-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.pricing-fit-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.pricing-fit-description strong {
    color: #ffffff;
    font-weight: 600;
}

.pricing-fit-cta {
    margin-top: 3rem;
}

.pricing-fit-cta-box {
    background: linear-gradient(135deg, #1a2a4a 0%, #0f1a2e 100%);
    border: 2px solid #4a90e2;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.pricing-fit-cta-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.pricing-fit-cta-box h3 i {
    color: #4a90e2;
    margin-right: 0.5rem;
}

.pricing-fit-cta-box p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* プラン詳細の関連リンク */
.plan-detail-related-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.related-link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    text-decoration: none;
    color: #cccccc;
    transition: all 0.3s ease;
}

.related-link-card:hover {
    background: #222222;
    border-color: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
}

.related-link-card i {
    font-size: 1.5rem;
    color: #4a90e2;
}

.related-link-card span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pricing-check-card,
    .store-size-card,
    .pricing-fit-card {
        padding: 1.5rem;
    }

    .check-icon,
    .store-size-icon,
    .pricing-fit-icon {
        font-size: 2rem;
    }

    .check-title,
    .store-size-title,
    .pricing-fit-title {
        font-size: 1rem;
    }

    .check-description,
    .store-size-description,
    .pricing-fit-description {
        font-size: 0.9rem;
    }

    .checklist-note {
        flex-direction: column;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .store-size-grid,
    .pricing-fit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-links-grid {
        grid-template-columns: 1fr;
    }

    .pricing-fit-cta-box {
        padding: 1.5rem;
    }

    .pricing-fit-cta-box h3 {
        font-size: 1.1rem;
    }

    .pricing-fit-cta-box p {
        font-size: 0.9rem;
    }
}
