/*
 * 会社案内ページのスタイル
 * Company Page Styles
 */

/* ========================================
   メインラッパー
   ======================================== */

.site-main-wrapper {
    min-height: auto;
}

/* ========================================
   ヒーローセクション
   ======================================== */

.company-hero {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    width: 100%;
}

.company-hero .hero-background {
    position: relative;
    background-image: url('../images/background05.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-3xl) 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.company-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.company-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.company-hero .hero-title {
    font-size: 4rem;
    color: var(--color-text-white);
    font-weight: 800;
    font-family: var(--font-family-en);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-top: 0;
}

.company-hero .subtitle {
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ========================================
   会社概要セクション
   ======================================== */

.company-overview {
    background-color: #f8f9fa;
    padding: 80px 0;
    width: 100%;
    margin: 0;
}

.company-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   アクセスセクション
   ======================================== */

.company-access {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    margin: 0;
}

.company-access .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-access .access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.company-access .access-info {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.company-access .access-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.company-access .access-address {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.company-access .access-tel {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

.company-access .access-tel strong {
    font-weight: 700;
}

.company-access h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.company-access .access-transport {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.company-access .access-transport strong {
    font-weight: 700;
    color: #333;
}

.company-access .access-map {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-access .access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .company-hero .hero-background {
        min-height: 350px;
    }

    .company-hero .hero-title {
        font-size: 3rem;
    }

    .company-hero .subtitle {
        font-size: 1.35rem;
        font-weight: 700;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .company-hero .hero-background {
        min-height: 300px;
    }

    .company-hero .hero-title {
        font-size: 2.5rem;
    }

    .company-hero .subtitle {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    .company-access {
        padding: 60px 0;
    }
    
    .company-access .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .company-access .access-info {
        order: 2;
    }
    
    .company-access .access-map {
        height: 350px;
        order: 1;
    }
}

/* 小型スマートフォン */
@media (max-width: 480px) {
    .company-hero .hero-background {
        min-height: 250px;
    }

    .company-hero .hero-title {
        font-size: 2rem;
    }

    .company-hero .subtitle {
        font-size: 1.1rem;
        font-weight: 700;
    }
}

