/* ==========================================================================
   Cancellation Policy Page Styles
   キャンセルポリシーページのスタイル
   ========================================================================== */

.cancellation-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Policy Introduction */
.policy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid var(--color-primary, #CC211B);
    border-radius: 4px;
}

/* Cancellation Fee Table */
.cancellation-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

.cancellation-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cancellation-fee-table thead {
    background: var(--color-primary, #CC211B);
    color: white;
}

.cancellation-fee-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.cancellation-fee-table th:first-child {
    width: 50%;
}

.cancellation-fee-table th:last-child {
    width: 50%;
    text-align: center;
}

.cancellation-fee-table tbody tr {
    border-bottom: 1px solid #eee;
}

.cancellation-fee-table tbody tr:last-child {
    border-bottom: none;
}

.cancellation-fee-table tbody tr:nth-child(odd) {
    background: #fafafa;
}

.cancellation-fee-table tbody tr:hover {
    background: #f0f0f0;
}

.cancellation-fee-table tbody tr.highlight {
    background: #fff3f3;
}

.cancellation-fee-table tbody tr.highlight:hover {
    background: #ffe0e0;
}

.cancellation-fee-table td {
    padding: 20px;
    font-size: 1rem;
    color: #333;
}

.cancellation-fee-table td.fee-rate {
    text-align: center;
    font-weight: 600;
    color: var(--color-primary, #CC211B);
}

/* Special Notice Section */
.special-notice {
    margin: 40px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 100%);
    border-radius: 8px;
    border-left: 4px solid #2c7a7b;
}

.special-notice h3 {
    color: #2c7a7b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.special-notice p {
    margin: 0;
    color: #444;
    line-height: 1.7;
}

/* Notes List */
.notes-list {
    margin: 25px 0;
    padding-left: 20px;
}

.notes-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
    position: relative;
}

.notes-list li::marker {
    color: var(--color-primary, #CC211B);
}

/* Contact Section */
.contact-section {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.contact-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-section p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-section .btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-primary, #CC211B);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-section .btn:hover {
    background: #a81b16;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 33, 27, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cancellation-content {
        padding: 20px 0;
    }
    
    .cancellation-fee-table {
        font-size: 0.9rem;
    }
    
    .cancellation-fee-table th,
    .cancellation-fee-table td {
        padding: 14px 16px;
    }
    
    .special-notice {
        padding: 20px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .policy-intro {
        font-size: 1rem;
        padding: 15px;
    }
    
    .cancellation-fee-table th,
    .cancellation-fee-table td {
        padding: 12px;
    }
    
    .cancellation-fee-table td.fee-rate {
        font-size: 0.9rem;
    }
}
