/* Company Page Styles - 会社情報ページ専用のスタイル */
/* パンくずリスト（グローバル用） */

/* ページヘッダー */
.page-header {
    background-image: url('../images/header-bg/company-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 59, 131, 0.7);
    z-index: 1;
}

.page-header .breadcrumb {
    position: absolute;
    top: 20px;
    left: 40px;
    color: #fff;
    font-size: 13px;
    z-index: 2;
    text-align: left;
    margin: 0;
    padding: 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.page-header .breadcrumb a {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
    color: #fff;
}

.breadcrumb-separator,
.breadcrumb-current {
    color: #fff;
    opacity: 0.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
}

/* 会社概要セクション */
.company-overview {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    padding-left: 20px;
    position: relative;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
}

.overview-table {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.overview-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.overview-row:last-child {
    border-bottom: none;
}

.overview-label {
    background-color: var(--light-bg);
    padding: 20px;
    font-weight: 700;
    color: var(--text-color);
    min-width: 160px;
    flex-shrink: 0;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.overview-value {
    padding: 20px;
    flex: 1;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* ミッション・ビジョンセクション */
.mission-vision {
    padding: 80px 20px;
    background-color: var(--white);
}

.mission-section,
.vision-section {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-section {
    margin-bottom: 0;
}

.mission-title,
.vision-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-image,
.vision-image {
    margin-bottom: 30px;
}

.mission-image img,
.vision-image img {
    max-width: 100%;
    height: auto;
}

.mission-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
    max-width: 800px;
}

.vision-content {
    display: flex;
    justify-content: center;
}

/* 役員紹介セクション */
.executives {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.executive-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.executive-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-info {
    padding: 30px;
    text-align: center;
}

.executive-position {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.executive-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.executive-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    text-align: left;
}



/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .executives-grid {
        max-width: 800px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .executives-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .mission-content {
        text-align: center;
    }
    
    .mission-description {
        text-align: center;
    }
    
    .overview-row {
        flex-direction: column;
    }
    
    .overview-label {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        min-width: auto;
    }
    
}

@media (max-width: 768px) {
    .main{
        padding-top: 20px;
    }

    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header .breadcrumb {
        top: 15px;
        left: 20px;
        font-size: 12px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .company-overview,
    .mission-vision,
    .executives {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        padding-left: 15px;
    }
    
    .section-title:before {
        width: 3px;
    }
    
    .overview-table {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    .overview-label,
    .overview-value {
        padding: 15px;
    }
    
    .overview-label {
        min-width: auto;
        font-size: 14px;
    }
    
    .overview-value {
        font-size: 14px;
    }
    
    .mission-title,
    .vision-title {
        font-size: 18px;
    }
    
    .mission-description {
        font-size: 15px;
    }
    
    .executive-image {
        height: 250px;
    }
    
    .executive-info {
        padding: 20px;
    }
    
    .executive-name {
        font-size: 20px;
    }
    
    .executive-description {
        font-size: 14px;
    }
    
    
    .hero-download-btn {
        width: 280px;
        height: 60px;
    }
    
    .hero-download-btn .button-paper {
        width: 60px;
        top: -15px;
        left: -20px;
    }
    
    .tel-number {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .company-overview,
    .mission-vision,
    .executives {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .overview-label,
    .overview-value {
        padding: 12px;
        font-size: 13px;
    }
    
    .mission-section,
    .vision-section {
        margin-bottom: 20px;
    }
    
    .mission-title,
    .vision-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .mission-description {
        font-size: 14px;
    }
    
    .executive-image {
        height: 200px;
    }
    
    .executive-info {
        padding: 15px;
    }
    
    .executive-position {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .executive-name {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .executive-description {
        font-size: 13px;
    }
    
}