/* 料金ページ専用スタイル */
.shipping-intro {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.country-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: var(--color-accent-light);
}

.tab-button.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.country-flag {
    width: 100px;
    height: auto;
}

.country-flag img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.country-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--color-bg);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-small);
}

.country-info ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.service-tabs {
    margin-bottom: 2rem;
}

.service-tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-tab-button {
    padding: 0.6rem 1.2rem;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-tab-button:hover {
    background-color: var(--color-accent-light);
}

.service-tab-button.active {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.service-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-tab-content.active {
    display: block;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.price-table th, .price-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.price-table th {
    background-color: var(--color-accent-light);
    color: var(--color-text-dark);
}

.price-table tr:nth-child(even) {
    background-color: var(--color-bg-alt);
}

.shipping-notes {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--border-radius-small);
}

.shipping-notes ul {
    padding-left: 1.2rem;
}

.shipping-notes li {
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .tab-buttons, .service-tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .country-header {
        flex-direction: column;
        text-align: center;
    }
    
    .country-flag {
        width: 80px;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}