/* 料金ページ専用スタイル */

/* ユースケース別料金のスタイル */
.use-case-label {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured {
    border: 3px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 255, 255, 1));
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}



.service-name {
    font-size: 16px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

/* 追加サービス情報 */
.additional-service {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.05));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    position: relative;
}

.additional-service::before {
    content: "セット割引";
    position: absolute;
    top: -8px;
    left: 15px;
    background: #4caf50;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.additional-service-title {
    font-size: 14px;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 8px;
}

.additional-service-price {
    font-size: 16px;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 10px;
}

.additional-service-description {
    font-size: 13px;
    color: #2e7d32;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* ロゴのリンクスタイル */
.logo a {
    color: #2c5aa0;
    text-decoration: none;
}

.logo a:hover {
    color: #1e3d6f;
}

/* パンくずナビ */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    margin-top: 80px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #2c5aa0;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.separator {
    color: #666;
}

/* ページヒーロー */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.page-title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

/* 無料相談セクション */
.free-consultation {
    padding: 40px 0;
    background: #f8f9fa;
}

.consultation-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 550px;
    margin: 0 auto;
    border: 2px solid #4caf50;
}

.consultation-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.consultation-card h2 {
    color: #4caf50;
    font-size: 24px;
    margin-bottom: 12px;
}

.consultation-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* メイン料金セクション */
.main-pricing {
    padding: 60px 0;
}

.pricing-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b6b;
    display: inline-block;
    width: 100%;
}

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

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h4 {
    color: #2c5aa0;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

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

/* 注意事項セクション */
.pricing-notes {
    background: #f8f9fa;
    padding: 60px 0;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.note-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.note-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.note-item h3 {
    color: #2c5aa0;
    font-size: 18px;
    margin-bottom: 15px;
}

.note-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* お支払い方法 */
.payment-methods {
    padding: 60px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.payment-item h3 {
    color: #2c5aa0;
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 支払い方法の注意書き */
.payment-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
}

.payment-note p {
    color: #d68910;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* お問い合わせCTA */
.contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.contact-cta h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* LINEボタンを優先表示 */
.btn-primary {
    background: linear-gradient(135deg, #00C300, #00B300);
    border: 2px solid #00FF00;
    box-shadow: 0 5px 15px rgba(0, 195, 0, 0.3);
    transform: scale(1.05);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00B300, #00A300);
    box-shadow: 0 8px 25px rgba(0, 195, 0, 0.4);
    transform: scale(1.08);
}

@keyframes pulse {
    0% { box-shadow: 0 5px 15px rgba(0, 195, 0, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(0, 195, 0, 0.5); }
    100% { box-shadow: 0 5px 15px rgba(0, 195, 0, 0.3); }
}

/* メール代替手段 */
.contact-alternative {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.alternative-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    opacity: 0.8;
    font-size: 14px;
    padding: 10px 25px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    opacity: 1;
}

/* サービス説明文 */
.service-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
    background: rgba(255,255,255,0.8);
    padding: 10px;
    border-radius: 8px;
}

/* サブタイトル */
.sub-title {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    background: rgba(255,255,255,0.7);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
}

/* リピーター向けメッセージ */
.repeat-customer-note {
    font-size: 13px;
    color: #4caf50;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #4caf50;
    margin-top: 15px;
    line-height: 1.4;
}

/* リピーター割引カード */
.repeat-customer-discount {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.repeat-customer-discount:hover {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
}

.repeat-customer-discount .note-icon {
    color: #4caf50;
}

.repeat-customer-discount h4 {
    color: #2e7d32;
    font-weight: 600;
}

.repeat-customer-discount p {
    color: #2e7d32;
    font-weight: 500;
}

/* 料金に関する注意事項 */
.pricing-notes {
    margin-top: 60px;
    padding: 40px 0;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

.notes-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: white;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.note-item {
    background: rgba(255,255,255,0.9);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note-item:hover {
    transform: translateY(-3px);
}

/* 重要な注意事項を強調 */
.note-item.important {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.8));
    border: 2px solid rgba(255, 193, 7, 0.7);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.note-item.important:hover {
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
    transform: translateY(-5px);
}

.note-item.important .note-icon {
    color: #333;
    text-shadow: none;
}

.note-item.important h4 {
    color: #333;
    font-weight: 600;
    text-shadow: none;
}

.note-item.important p {
    color: #333;
    font-weight: 500;
    text-shadow: none;
}

.note-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #333;
}

.note-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.note-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .consultation-card {
        padding: 25px 20px;
        margin: 0 20px;
    }
    
    .consultation-card h2 {
        font-size: 20px;
    }
    
    .consultation-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .pricing-card h4 {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .notes-title {
        font-size: 24px;
    }
    
    .note-item h4 {
        font-size: 16px;
    }
    
    .note-item p {
        font-size: 13px;
    }
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .notes-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .breadcrumb {
        margin-top: 120px;
    }
    
    .pricing-category {
        margin-bottom: 60px;
    }
}
