/* 店舗案内ページ専用スタイル */

/* ヒーローセクション */
.stores-hero {
    background: linear-gradient(135deg, #2c4f8d 0%, #1a3a6b 100%);
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stores-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/business/warehouse.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.stores-hero-content {
    position: relative;
    z-index: 1;
}

.stores-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.65;
}

/* 紹介セクション */
.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c4f8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.intro-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.device-types {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.device-badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c4f8d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
}

.device-badge:hover {
    background-color: #1a3a6b;
    transform: translateY(-2px);
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c4f8d;
    margin: 30px 0;
}

.cash-text {
    font-size: 20px;
    font-weight: 700;
    color: #2c4f8d;
    margin: 25px 0;
}

.contact-text {
    font-size: 15px;
    color: #666;
    margin-top: 20px;
}

.contact-text a {
    color: #2c4f8d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* 店舗一覧セクション */
.stores-list-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c4f8d;
    text-align: center;
    margin-bottom: 50px;
}

.store-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.store-card:hover {
    border-color: #2c4f8d;
    box-shadow: 0 8px 30px rgba(44, 79, 141, 0.15);
    transform: translateY(-5px);
}

.store-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #2c4f8d;
}

.store-status-badge {
    width: 80px;
    height: auto;
}

.store-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c4f8d;
    margin: 0;
}

.store-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-size: 14px;
    color: #2c4f8d;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-text a {
    color: #2c4f8d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.info-text a:hover {
    text-decoration: underline;
}

/* 地図セクション */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.access-note {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-top: 20px;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .stores-hero {
        padding: 180px 0 80px;
    }
}

@media (max-width: 767px) {
    .stores-hero {
        padding: 160px 20px 60px;
    }

    .stores-hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .intro-section {
        padding: 50px 0;
    }

    .intro-content h2 {
        font-size: 20px;
    }

    .intro-content p {
        font-size: 15px;
    }

    .device-types {
        gap: 10px;
    }

    .device-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .highlight-text {
        font-size: 16px;
    }

    .cash-text {
        font-size: 18px;
    }

    .stores-list-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .store-card {
        padding: 25px;
        margin-bottom: 30px;
    }

    .store-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-status-badge {
        width: 60px;
    }

    .store-header h3 {
        font-size: 22px;
    }

    .store-content p {
        font-size: 15px;
    }

    .map-section {
        padding: 50px 0;
    }

    .map-container iframe {
        height: 300px;
    }
}
