/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cold-box-page {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cold-box-page img {
    max-width: 100%;
    height: auto;
}

.cold-box-page a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.cb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.cb-hero-section {
   text-align: center;
    margin-bottom: 20px;
}

.cb-hero-image {
    
    width: 50%;
    height: auto;
/*display: block;*/
    margin: 0 auto;
}

/* Section Styles */
.cb-section {
    padding: 64px 0;
}

.cb-section-white {
    background-color: #fff;
}

.cb-section-gray {
    background-color: #f9fafb;
    margin: 20px 0;
    border-radius: 8px;
}

.cb-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 48px;
}

.cb-section-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    text-align: center;
    margin-bottom: 24px;
}

/* Introduction Section */
.cb-intro-content {
    max-width: 1024px;
    margin: 0 auto;
}

.cb-intro-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Cost Comparison */
.cb-cost-comparison {
    text-align: center;
}

.cb-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 768px;
    margin: 0 auto 32px;
}

.cb-comparison-card {
    padding: 24px;
    border-radius: 8px;
    border: 2px solid;
}

.cb-comparison-expensive {
    background-color: #fef2f2;
    border-color: #fecaca;
}

.cb-comparison-affordable {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

.cb-comparison-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.cb-comparison-expensive .cb-comparison-title {
    color: #dc2626;
}

.cb-comparison-affordable .cb-comparison-title {
    color: #2563eb;
}

.cb-comparison-price {
    font-size: 24px;
    font-weight: bold;
    margin: 8px 0;
}

.cb-comparison-expensive .cb-comparison-price {
    color: #dc2626;
}

.cb-comparison-affordable .cb-comparison-price {
    color: #2563eb;
}

/* Features Section */
.cb-features-header {
    background-color: #1e40af;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 48px;
}

.cb-feature-item {
    margin-bottom: 64px;
}

.cb-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    align-items: center;
}

.cb-feature-image-container {
    background-color: #f3f4f6;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 16px;
}

.cb-feature-content {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cb-feature-badge {
    background-color: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 16px;
}

.cb-feature-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.cb-feature-description {
    color: #374151;
    line-height: 1.7;
}

/* Pricing Table */
.cb-pricing-container {
    max-width: 768px;
    margin: 0 auto;
}

.cb-pricing-header {
    background-color: #1e40af;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px 8px 0 0;
}

.cb-pricing-content {
    background-color: white;
    padding: 32px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cb-pricing-breakdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.cb-pricing-item {
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    min-width: 200px;
}

.cb-pricing-label {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.cb-pricing-amount {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.cb-pricing-total {
    text-align: center;
}

.cb-pricing-total-container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.cb-pricing-total-badge {
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cb-pricing-total-amount {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
}

/* Comparison Table */
.cb-comparison-section {
    max-width: 1280px;
    margin: 0 auto;
}

.cb-comparison-header {
    margin-bottom: 48px;
}

.cb-comparison-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.cb-comparison-underline {
    width: 100%;
    height: 4px;
    background-color: #3b82f6;
    border-radius: 2px;
}

.cb-comparison-table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.cb-comparison-vehicle {
    text-align: center;
}

.cb-vehicle-image-container {
    width: 192px;
    height: 128px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-vehicle-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.cb-vehicle-price {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.cb-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.cb-table-header {
    background-color: #f3f4f6;
}

.cb-table-cell {
    border: 1px solid #d1d5db;
    padding: 16px;
    text-align: left;
}

.cb-table-header .cb-table-cell {
    font-weight: bold;
    color: #1f2937;
}

.cb-table-row-even {
    background-color: #f9fafb;
}

/* Attractions Section */
.cb-attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.cb-attraction-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cb-attraction-image {
    height: 192px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cb-attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-attraction-content {
    padding: 24px;
}

.cb-attraction-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.cb-attraction-number {
    background-color: #2563eb;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}

.cb-attraction-title {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
}

.cb-attraction-description {
    color: #374151;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cb-attraction-button {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.cb-attraction-button:hover {
    background-color: #1d4ed8;
}

/* Use Cases Section */
.cb-use-cases-container {
    max-width: 1536px;
    margin: 0 auto;
}

.cb-use-case-item {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 48px;
}

.cb-use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    align-items: center;
}

.cb-use-case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cb-use-case-number {
    background-color: #2563eb;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
}

.cb-use-case-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
}

.cb-use-case-description {
    color: #374151;
    line-height: 1.7;
}

.cb-use-case-image-container {
    display: flex;
    justify-content: center;
}

.cb-use-case-image {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Testimonials Section */
.cb-testimonial-container {
    max-width: 1024px;
    margin: 0 auto;
}

.cb-testimonial-content {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 32px;
}

.cb-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.cb-testimonial-image {
    width: 100%;
    border-radius: 8px;
}

.cb-testimonial-company {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.cb-testimonial-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

/* FAQ Section */
.cb-faq-container {
    max-width: 1024px;
    margin: 0 auto;
}

.cb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cb-faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cb-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.cb-faq-q-badge {
    background-color: #fbbf24;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.cb-faq-question-text {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
}

.cb-faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cb-faq-a-badge {
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.cb-faq-answer-text {
    color: #374151;
}

/* Process Flow Section */
.cb-process-container {
    max-width: 1024px;
    margin: 0 auto;
}

.cb-process-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cb-process-step {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.cb-process-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cb-process-badge {
    background-color: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.cb-process-title {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
}

.cb-process-description {
    font-size: 14px;
    color: #374151;
}

.cb-process-arrow {
    display: flex;
    justify-content: center;
    font-size: 24px;
    color: #9ca3af;
}

/* Contact Section */
.cb-contact-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.cb-contact-description {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cb-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 768px;
    margin: 0 auto;
}

.cb-contact-method {
    text-align: center;
}

.cb-contact-method-title {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.cb-contact-phone {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
}

.cb-contact-email {
    font-size: 18px;
    color: #2563eb;
}

.cb-contact-hours {
    font-size: 14px;
    color: #6b7280;
}

/* Buttons */
.cb-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.cb-btn-primary {
    background-color: #f59e0b;
    color: white;
}

.cb-btn-primary:hover {
    background-color: #d97706;
}

.cb-btn-secondary {
    background-color: #eab308;
    color: white;
}

.cb-btn-secondary:hover {
    background-color: #ca8a04;
}

.cb-btn-large {
    padding: 16px 48px;
    font-size: 18px;
    border-radius: 9999px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cb-container {
        padding: 0 16px;
    }

    .cb-section {
        padding: 32px 0;
    }

    .cb-section-title {
        font-size: 24px;
    }

    .cb-feature-grid {
        grid-template-columns: 1fr;
    }

    .cb-comparison-grid {
        grid-template-columns: 1fr;
    }

    .cb-comparison-table-grid {
        grid-template-columns: 1fr;
    }

    .cb-attractions-grid {
        grid-template-columns: 1fr;
    }

    .cb-use-case-grid {
        grid-template-columns: 1fr;
    }

    .cb-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cb-contact-methods {
        grid-template-columns: 1fr;
    }

    .cb-pricing-breakdown {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cb-section-title {
        font-size: 20px;
    }

    .cb-feature-title {
        font-size: 20px;
    }

    .cb-pricing-total-amount {
        font-size: 28px;
    }
}