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

/* ページヒーロー */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-title-en {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.page-title-jp {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
}

/* 経営理念 */
.philosophy {
    padding: 80px 0;
    background: white;
}

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

.philosophy-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.philosophy-main {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.philosophy-description {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
}

/* 会社情報テーブル */
.company-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.info-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.info-table dl {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-table dl:last-child {
    border-bottom: none;
}

.info-table dt {
    font-weight: 700;
    color: var(--primary-color);
}

.info-table dd {
    color: var(--text-color);
}

.info-table ul {
    list-style: none;
    padding: 0;
}

.info-table ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.info-table ul li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* 代表メッセージ */
.message {
    padding: 80px 0;
    background: white;
}

.message-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.message-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.message-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.message-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.message-text p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 20px;
}

.message-signature {
    margin-top: 40px;
    font-weight: 700;
    text-align: right;
}

/* 沿革タイムライン */
.history {
    padding: 80px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 140px;
    padding-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 94px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px white;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 15px;
}

/* アクセス */
.access {
    padding: 80px 0;
    background: white;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.access-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.access-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.access-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* アクティブメニュー */
.nav-menu a.active {
    color: var(--secondary-color);
    font-weight: 700;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .info-table {
        padding: 30px 20px;
    }
    
    .info-table dl {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-table dt {
        font-size: 14px;
        opacity: 0.8;
    }
    
    .message-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .message-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-item::before {
        left: 14px;
    }
    
    .timeline-date {
        position: static;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
}