
/* SEIKA Store List Page Specific Styles */
.seika-store-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 60px;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Breadcrumb Styles */
.seika-store-list-breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.seika-store-list-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.seika-store-list-breadcrumb a:hover {
    color: #0052a5;
    text-decoration: underline;
}

/* Main Title */
.seika-store-list-main-title {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0 30px;
    color: #333;
    text-align: left;
}

/* Store List - Two Column Grid for Desktop */
.seika-store-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .seika-store-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Store Item */
.seika-store-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    transition: background-color 0.3s ease;
    position: relative;
}

.seika-store-item:hover {
    background-color: #f9f9f9;
}

.seika-store-content {
    flex: 1;
    padding-right: 15px;
}

.seika-store-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #0052a5;
}

.seika-store-address {
    font-size: 14px;
    margin: 0 0 8px;
    color: #333;
    line-height: 1.4;
}

.seika-store-hours,
.seika-store-holiday {
    font-size: 14px;
    margin: 0 0 5px;
    color: #555;
}

.seika-store-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.seika-store-tag {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    background-color: #fff;
    color: #0052a5;
    border: 1px solid #0052a5;
    border-radius: 2px;
}

.seika-store-tag-language {
    color: #e74c3c;
    border-color: #e74c3c;
}

.seika-store-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #0052a5;
    text-decoration: none;
    flex-shrink: 0;
    margin-top: 5px;
}

.seika-store-arrow {
    font-size: 24px;
    font-weight: bold;
}

/* Back to Top Button */
.seika-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.seika-back-to-top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #0052a5;
    border: 1px solid #0052a5;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.seika-back-to-top-visible {
    opacity: 1;
    visibility: visible;
}

.seika-back-to-top-button:hover {
    background-color: #0052a5;
    color: #fff;
}

.seika-back-to-top-arrow {
    font-size: 20px;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .seika-store-list-main-title {
        font-size: 22px;
        margin: 15px 0 20px;
    }
    
    .seika-store-item {
        padding: 15px;
    }
    
    .seika-store-name {
        font-size: 16px;
    }
    
    .seika-store-address,
    .seika-store-hours,
    .seika-store-holiday {
        font-size: 13px;
    }
    
    .seika-store-tag {
        font-size: 11px;
        padding: 2px 6px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .seika-store-list-main-title {
        font-size: 24px;
    }
    
    .seika-store-name {
        font-size: 15px;
    }
    
    .seika-store-address,
    .seika-store-hours,
    .seika-store-holiday {
        font-size: 13px;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .seika-store-list-main-title {
        font-size: 28px;
    }
    
    .seika-store-item {
        padding: 25px;
    }
    
    .seika-store-name {
        font-size: 16px;
    }
}

/* Fix for grid borders */
@media (min-width: 768px) {
    .seika-store-item:nth-child(odd) {
        border-right: 1px solid #e0e0e0;
    }
    
    .seika-store-item:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid #e0e0e0;
    }
    
    /* If there's an odd number of items, fix the last one */
    .seika-store-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .seika-store-item:not(:last-child) {
        border-bottom: 1px solid #e0e0e0;
    }
}