/* 国際配送セクション用のスタイル */
.international-shipping {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 2rem;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.country-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.country-card {
    background-color: var(--color-bg);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-small);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.country-flag {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-light);
}

.country-flag img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.country-card h3 {
    text-align: center;
    padding: 1.2rem 1rem 0.8rem;
    color: var(--color-primary);
    font-size: 1.3rem;
    border-bottom: 1px solid var(--color-border);
    margin: 0 1rem;
}

.shipping-info {
    padding: 1.5rem;
}

.shipping-info p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.shipping-info strong {
    color: var(--color-secondary);
}

.country-card .button {
    display: block;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
}

.more-services {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.more-services .button {
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.more-services .button:hover {
    transform: translateY(-3px);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .international-shipping {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .country-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .country-flag {
        height: 120px;
    }
    
    .more-services {
        flex-direction: column;
        gap: 1rem;
    }
    
    .more-services .button {
        width: 100%;
    }
}