/* Pricing ページ専用スタイル */

/* Hero Section */
.hero-section {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/top_pricing.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 20px;
    color: #e5e7eb;
}

/* Simulator Section */
.simulator-section {
    background-color: white;
}

.simulator-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.simulator-controls {
    margin-bottom: 40px;
}

.control-group {
    text-align: center;
}

.control-label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

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

.size-btn {
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    background-color: white;
    color: #6b7280;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-btn:hover,
.size-btn.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.size-slider {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    outline: none;
    margin-bottom: 12px;
    -webkit-appearance: none;
}

.size-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
}

.size-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    font-size: 14px;
    color: #6b7280;
}

.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.plan-card {
    position: relative;
    padding: 32px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.plan-card.popular {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b82f6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 20px;
}

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

.price {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 4px;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
}

.plan-features {
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
}

.plan-features i {
    color: #10b981;
    font-size: 16px;
}

.detailed-pricing {
    margin-bottom: 32px;
}

.detailed-pricing h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-table {
    width: 100%;
    background-color: white;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.pricing-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.important-notes {
    background-color: #fef3cd;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 32px;
}

.important-notes h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.important-notes ul {
    margin-left: 20px;
}

.important-notes li {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 8px;
    list-style-type: disc;
}

.cta-center {
    text-align: center;
}

/* Service Areas Section */
.areas-section {
    background-color: #f9fafb;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.areas-info .section-title,
.wallpaper-compatibility .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background-color: #f3f4f6;
    border-radius: 8px;
}

.area-item i {
    color: #3b82f6;
    font-size: 16px;
}

.area-item span {
    font-weight: 500;
    color: #1f2937;
}

.areas-note {
    color: #6b7280;
    line-height: 1.6;
}

.compatibility-table-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.compatibility-table {
    width: 100%;
    background-color: white;
    border-collapse: collapse;
}

.compatibility-table th,
.compatibility-table td {
    padding: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.compatibility-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.compatibility-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.rating.excellent {
    background-color: #10b981;
}

.rating.good {
    background-color: #3b82f6;
}

.rating.caution {
    background-color: #f59e0b;
}

.rating.unsuitable {
    background-color: #ef4444;
}

/* Process Section */
.process-section {
    background-color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 64px;
    height: 64px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.step-number {
    position: absolute;
    top: -8px;
    right: calc(50% - 40px);
    background-color: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background-color: #3b82f6;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .simulator-card {
        padding: 24px;
    }
    
    .size-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plan-card {
        padding: 24px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .pricing-table {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 12px;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}