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

/* パンくずナビ */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    margin-top: 80px;
    border-bottom: 1px solid #e9ecef;
}

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

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* ページヘッダー */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* 会社紹介セクション */
.company-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* 会社情報セクション */
.company-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.company-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-table th,
.info-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
}

.info-table th {
    background: #333;
    color: white;
    font-weight: 600;
    width: 30%;
}

.info-table td {
    color: #333;
    font-weight: 500;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* アクセス情報セクション */
.access-info {
    padding: 80px 0;
    background: white;
}

.access-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.access-details {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 지도가 포함된 access-details 컨테이너 */
.access-details:has(iframe) {
    padding: 0;
    min-height: 450px;
}

.access-details iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

.access-details h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.access-details h3:first-child {
    margin-top: 0;
}

.access-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.access-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.access-details li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.access-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .company-intro,
    .company-info,
    .access-info {
        padding: 60px 0;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

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

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .access-details {
        padding: 2rem;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .access-details:has(iframe) {
        min-height: 300px;
    }

    .access-details iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 10px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .intro-text h2 {
        font-size: 1.6rem;
    }

    .intro-text p {
        font-size: 0.95rem;
    }

    .info-table th,
    .info-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .access-details {
        padding: 1.5rem;
    }

    .access-details:has(iframe) {
        padding: 0;
        min-height: 250px;
    }

    .access-details iframe {
        height: 250px;
    }

    .access-details h3 {
        font-size: 1.1rem;
    }
}
