/* 会社概要ページのスタイル */
.company-main {
    margin-top: 80px;
    padding: 0;
}

.company-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.company-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.company-info {
    padding: 4rem 2rem;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.info-table th {
    width: 30%;
    text-align: left;
    color: #2c3e50;
    font-weight: 500;
}

.info-table td {
    color: #34495e;
}

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

.info-table td ul li {
    margin-bottom: 0.5rem;
}

.company-philosophy {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

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

.philosophy-content > p {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: bold;
}

.philosophy-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.philosophy-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #7f8c8d;
}

/* 代表メッセージ */
.company-message {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.company-message h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.message-container {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.ceo-image {
    flex: 0 0 200px;
}

.image-placeholder {
    width: 200px;
    height: 260px;
    background-color: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.5;
}

.message-content {
    flex: 1;
}

.message-content h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 沿革 */
.company-history {
    padding: 4rem 2rem;
    background-color: white;
}

.company-history h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.history-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #3498db;
}

.history-item {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    position: relative;
}

.history-item::before {
    content: '';
    position: absolute;
    left: 111px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #3498db;
}

.year {
    flex: 0 0 100px;
    font-weight: bold;
    color: #3498db;
    font-size: 1.1rem;
}

.event {
    flex: 1;
    color: #495057;
    padding-left: 2rem;
}

/* アクセス */
.company-access {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.company-access h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.access-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.access-info h4 {
    color: #495057;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.access-info p, .access-info ul {
    color: #6c757d;
    line-height: 1.8;
}

.access-info ul {
    list-style-position: inside;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
}

/* 企業文化 */
.company-culture {
    padding: 4rem 2rem;
    background-color: white;
}

.company-culture h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.culture-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.culture-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.culture-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.culture-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .company-hero h1 {
        font-size: 2rem;
    }

    .company-info,
    .company-philosophy {
        padding: 2rem 1rem;
    }

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table th {
        border-bottom: none;
        padding-bottom: 0;
    }

    .philosophy-details {
        grid-template-columns: 1fr;
    }
}