/* 店舗案内ページ専用スタイル */
.store-page-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.store-page-section .container {
    max-width: none;
    padding: 0 20px;
}

.store-page-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-page-section .section-title {
    color: #fd7e14;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.store-content {
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .store-content {
        max-width: 1100px;
    }
}

/* セクション見出し */
.section-subtitle {
    color: #fd7e14;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #fd7e14;
    position: relative;
}


/* 各セクション */
.store-info-section,
.company-info-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* 情報テーブル */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-table th {
    background: linear-gradient(135deg, #fd7e14 0%, #e56b00 100%);
    color: white;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    width: 180px;
    border-bottom: 2px solid #e56b00;
}

.info-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
    font-size: 1rem;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) {
    background: #fafafa;
}



/* リンクスタイル */
.info-table a {
    color: #fd7e14;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-table a:hover {
    text-decoration: underline;
}

/* Google Map セクション */
.google-map-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0 3rem;
}

.map-title {
    color: #fd7e14;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #fd7e14 0%, #e56b00 100%);
    border-radius: 2px;
}

.map-container {
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-container iframe {
    border: none;
}

.map-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #fd7e14;
}

.map-info p {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.6;
}

.map-info strong {
    color: #fd7e14;
    font-weight: 600;
}

/* 店舗の特徴セクション */
.store-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.store-feature-item {
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.feature-header {
    background: linear-gradient(135deg, #fd7e14 0%, #e56b00 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.feature-body {
    display: flex;
    align-items: stretch;
}

.store-feature-image {
    position: relative;
    width: 30%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.store-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-feature-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fd7e14 0%, #e56b00 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
}

.store-feature-image-placeholder p {
    margin: 0;
    font-weight: 500;
}

.feature-content {
    padding: 2rem;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* 関連会社セクション */
.related-company-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #fd7e14;
}

.related-title {
    color: #fd7e14;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fd7e14 0%, #e56b00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .store-page-section {
        padding: 2rem 0;
    }
    
    .store-page-section .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .store-info-section,
    .company-info-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .related-company-section {
        padding: 2rem 1.5rem;
    }
    
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table th {
        width: 120px;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .info-table td {
        padding: 1rem;
    }
    
    .google-map-section {
        padding: 2rem 1.5rem;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        padding: 1.2rem;
    }
    
    .store-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-body {
        flex-direction: column;
    }
    
    .store-feature-image {
        width: 100%;
        min-height: 200px;
    }
    
    .feature-content {
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .store-content {
        margin: 0 0.5rem;
    }
    
    .store-info-section,
    .company-info-section,
    .related-company-section {
        border-radius: 8px;
        padding: 1.5rem 1rem;
    }
    
    .info-table th {
        width: 100px;
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .info-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .google-map-section {
        padding: 1.5rem 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .store-feature-image {
        min-height: 150px;
    }
    
    .feature-content {
        padding: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
}

/* 印刷用スタイル */
@media print {
    .store-page-section {
        background: white;
        padding: 0;
    }
    
    .store-info-section,
    .company-info-section,
    .related-company-section {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .info-table th {
        background: #f0f0f0 !important;
        color: #333 !important;
    }
    
    .store-features {
        display: block;
    }
    
    .store-feature-item {
        margin-bottom: 1rem;
        page-break-inside: avoid;
    }
} 