/* ==========================================
   共通CSSファイル - 株式会社オートバックス・スクエアカーズ
   全ページ共通のスタイル定義
   ========================================== */

/* ==========================================
   CSS RESET & GLOBAL STYLES
   ========================================== */

/* Reset margins, padding, and set border-box sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base body styles with Japanese font stack */
body {
    font-family: 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Container for consistent page width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global section styling */
section {
    padding: 80px 0;
}

/* Global heading styles */
h2 {
    text-align: center;
    color: #374151;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    background: white;
    color: #333;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #374151;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo img {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: sepia(1) hue-rotate(15deg) saturate(2) brightness(1.2);
}

/* Navigation menu */
.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #374151;
}

/* ==========================================
   HERO SECTION (TOPページ用)
   ========================================== */

.hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    margin-top: 67px;
   /* min-height: 40vh;*/
   min-height:84vh;
}

/* Hero background with gradient overlay */
.hero-bg {
    /*width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	background: url('../images/top_hero.png');
	background-color:rgba(255,255,255,0.3);
	background-blend-mode:lighten;		
    background-size: cover;
    background-position: 50% 24%;
    background-attachment: fixed;*/
    padding: 6em 0 4em;
    text-align: center;
    color: white;
	background: url('../images/top_hero.png');
	background-color:rgba(255,255,255,0.3);
	background-blend-mode:lighten;		
    background-size: cover;
    background-position: 50% 20%;
    background-attachment: fixed;
}

/* Left side background image (mirrored) 
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('https://cdn1.genspark.ai/user-upload-image/gpt_image_edited/072c362c-13a1-40b2-842c-349592b47872') no-repeat center center;
    background-size: cover;
    transform: scaleX(-1);
}*/

/* Right side background image 
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://cdn1.genspark.ai/user-upload-image/gpt_image_edited/072c362c-13a1-40b2-842c-349592b47872') no-repeat center center;
    background-size: cover;
}*/

/* Hero content container */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 1650px;
    width: 70%;
}

/* Hero text styling */
.hero-subtitle {
    font-size: 1.8rem;
    color: #374151;
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 0;
   /* color: #374151;*/
    color: #fff;
    line-height: 1.2;
    text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    /*color: #4b5563;*/
	color:#FFFFFF;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================
   下層ページ用ヒーロー（会社概要・プライバシー）
   ========================================== */

/* 会社概要ページ用ヒーロー */
.hero.company-hero {
    padding: 6em 0 4em;
    text-align: center;
    color: white;
    background: url('../images/office_hero.png');
	background-color:rgba(255,255,255,0.3);
	background-blend-mode:lighten;		
    background-size: cover;
    background-position: 50% 90%;
    background-attachment: fixed;
}

.hero.company-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* プライバシーポリシーページ用ヒーロー */
.hero.privacy-hero {
    padding: 6em 0 4em;
    text-align: center;
    color: white;
    /*background: linear-gradient(135deg, rgba(55,65,81,0.5) 0%, rgba(75,85,99,0.5) 100%), 
                url('https://unitedlocksmith.net/wp-content/uploads/clean-desk.jpg');*/
	background: url('../images/privacy_hero.png');
	background-color:rgba(255,255,255,0.3);
	background-blend-mode:lighten;	
    background-size: cover;
    background-position: 50% 120%;
    background-attachment: fixed;
}

.hero.privacy-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ==========================================
   MAIN CONTENT AREA
   ========================================== */

main {
    margin-top: 70px;
    padding: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(55, 65, 81, 0.3);
}

.btn-secondary {
    background: rgba(249, 115, 22, 0.1);
    color: #374151;
    border: 2px solid #374151;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    background: white;
}

.about-text h3 {
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-points {
    display: grid;
    gap: 1.5rem;
}

.point {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    border-left: 4px solid #374151;
}

.point h4 {
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #333;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.services h2 {
    color: #374151;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.7rem 1.3rem;
    background: white;
    border-radius: 15px;
    border: 2px solid #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: #374151;
}

.service-icon {
    font-size: 2.3rem;
    color: #374151;
    margin-bottom: 1rem;
}

.service-icon img,
.info-icon img {
    filter: grayscale(1) brightness(0.7) contrast(1.2);
    width: 40px;
    height: 40px;
}

.service-item h3 {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    font-weight: 600;
	text-align:left;
	padding-top:0.5em;
}

.service-item p {
    line-height: 1.5;
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================
   SHOPS SECTION
   ========================================== */

.shops {
    background: white;
}

.shop-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.shop-info-unified {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.shop-info-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.shop-info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #374151;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.info-content p {
    color: #4b5563;
    font-size: 1.1rem;
}

.shop-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 350px;
}

.shop-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   NEWS SECTION
   ========================================== */

.news {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-date {
    color: #374151;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 120px;
}

.news-content {
    flex: 1;
}

.news-tag {
    background: #374151;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content h3 {
    color: #374151;
    margin: 0.5rem 0;
    font-weight: 600;
}

/* ==========================================
   RECRUITMENT SECTION
   ========================================== */

.recruitment {
    background: white;
}

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

.recruitment-content h3 {
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.recruitment-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.position {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border-left: 4px solid #374151;
    text-align: left;
}

.position h4 {
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    background: #f8f9fa;
    color: #333;
    border-top: 3px solid #374151;
}

.contact h2 {
    color: #374151;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.contact-item img {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Contact form styling */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(55, 65, 81, 0.3);
}

/* ==========================================
   会社概要ページ専用スタイル
   ========================================== */

.page-header h1 {
    font-size: 3rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.section {
    margin-bottom: 1.5rem;
    padding: 15px 0;
}

.section h2 {
    font-size: 2rem;
    color: #374151;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
}

.section h3 {
    font-size: 2rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section h4 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 600;
}

.greeting {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.greeting-container {
    display: block;
}

.greeting-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.greeting-title {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    text-align: right;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.purpose-section {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    color: #333;
    text-align: left;
}

.purpose-section h3 {
    color: #374151;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.purpose-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ==========================================
   プライバシーポリシーページ専用スタイル
   ========================================== */

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.privacy-section {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.privacy-section h2 {
    color: #374151;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: left;
    border-bottom: 2px solid #374151;
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: #374151;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    text-align: left;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-section ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */

.footer {
    background: white;
    color: #333;
    padding: 4rem 0 1rem;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 2fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-company {
    grid-column: 1;
}

.footer-services {
    grid-column: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #374151;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #374151;
}

/* Social media links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #374151;
    border-color: #374151;
    transform: translateY(-3px);
}

.social-links a:hover img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #666;
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */

@media (max-width: 1200px) {
    .hero-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 1350px;
        padding: 12px 40px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.27rem;
    }

    .hero.company-hero h1,
    .hero.privacy-hero h1 {
        font-size: 2.4rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */

@media (max-width: 768px) {
    .header .container {
        /*flex-direction: column;
        gap: 1rem;*/
    }
	.logo img{
		width:8px;
	}
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .hero-content {
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 1200px;
        padding: 10px 33px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero.company-hero h1,
    .hero.privacy-hero h1 {
        font-size: 2.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid,
    .recruitment-positions {
        grid-template-columns: 1fr;
    }

    .shop-info-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-item {
        flex-direction: column;
        gap: 1rem;
    }

    .news-date {
        min-width: auto;
    }

    .container {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .greeting,
    .purpose-section,
    .privacy-section {
        padding: 2rem;
    }
	.footer-content {
		display:block;
		margin-bottom: 2rem;
	}
	.footer-section{
		margin-bottom:1em;
	}
}

/* ==========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {
	.hero{
		margin-top: 40px;
    	min-height:40vh;
	}
    .hero-content {
        padding: 20px;
		width:100%;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .hero.company-hero h1,
    .hero.privacy-hero h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-item,
    .position {
        padding: 1.5rem;
    }

    .shop-info-unified,
    .contact-form {
        padding: 1.5rem;
    }

    .greeting,
    .purpose-section,
    .privacy-section {
        padding: 1.5rem;
    }

    .philosophy-item {
        padding: 1.5rem;
    }
/*スマホサイズ 帯画像*/	
	.hero-bg {
		padding: 6em 0 4em;
		text-align: center;
		color: white;
		background: url('../images/top_hero.png');
		background-color:rgba(255,255,255,0.3);
		background-blend-mode:lighten;		
		background-size: cover;
		background-position: 50% 60px;
	}
	.hero.company-hero {
		padding: 6rem 0 4rem;
		text-align: center;
		color: white;
		background: url('../images/office_hero.png');
		background-color:rgba(255,255,255,0.5);
		background-blend-mode:lighten;	
		background-size: cover;
		background-position:30% 60px;
	}
	.hero.privacy-hero {
		padding: 6rem 0 4rem;
		text-align: center;
		color: white;
		background: url('../images/privacy_hero.png');
		background-color:rgba(255,255,255,0.5);
		background-blend-mode:lighten;	
		background-size: cover;
		background-position:50% 60px;
	}

}

.fBlockTitle{
	padding:4px 0;
	text-align:center;
	/*background-color:#B1C9F9;*/
	margin-bottom:1em;
	font-size:1.3rem;
}

.fBlockList{
	text-align:left;
	line-height: 1.5;
    color: #666;
    font-size: 0.95rem;
}
.fBlockList dt{
	font-weight:bold;
	margin-left:1em;
	margin-bottom:0.25em;
}
.fBlockList dd{
	margin-left:2em;
	margin-bottom:1em;
}

.serviceIconBlock{
	 display: grid;
	grid-template-columns: 3fr 4fr;
}

/*トップページ店舗情報*/
.topStoreArea{
	max-width: 1268px;
	margin:0 auto;
}
.topStoresBox{
	display: flex;
	column-gap: 4px;
}
.topStoresBox .topStore{
	background: white;
    border-radius: 15px;
    padding: 1em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.topStoresBox .topStore:hover{
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: #374151;
}
.topStoresBox .topStore dt{
    color: #374151;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.topStoresBox .topStore dd{
	color: #4b5563;
    font-size: 0.9em;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom:0.5em;
	padding-left:2em;
}
.topStoresBox p.storeName{
    color: #374151;
    margin-bottom: 0.25rem;
	font-size:1.1em;
    font-weight: 600;
	text-align:center;
}
.topStoresBox .storeMap {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.topStoresBox .storeMap iframe{
	width:280px;
	height:280px;
}
@media (max-width: 768px) {
	.topStoresBox{
		display: block;
		column-gap: 0;
	}
	.topStoresBox .storeMap{
		margin:0 auto;
		width:640px;
		height:480px;
	}
	.topStoresBox .storeMap iframe{
		width:640px;
		height:480px;
	}
}
@media (max-width: 480px) {
	.topStoresBox{
		display: block;
		column-gap: 0;
	}
	.topStoresBox .storeMap{
		margin:0 auto;
		width:260px;
		height:260px;
	}
	.topStoresBox .storeMap iframe{
		width:260px;
		height:260px;
	}
}

.iconAddress:before{
	position: relative;
	top: 10px;
	margin: 0 10px 0 0;
	content: url('../images/location.svg');
}
.iconPhone:before{
	position: relative;
	top: 10px;
	margin: 0 10px 0 0;
	content: url('../images/phone.svg');
}
.iconClock:before{
	position: relative;
	top: 10px;
	margin: 0 10px 0 0;
	content: url('../images/clock.svg');
}
.iconCalender:before{
	position: relative;
	top: 10px;
	margin: 0 10px 0 0;
	content: url('../images/calender.svg');
}
.iconParking:before{
	position: relative;
	top: 10px;
	margin: 0 10px 0 0;
	content: url('../images/parking.svg');
}
