

/* 共通スタイル */
.page-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0;
    animation: fadeIn 0.6s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 会社情報と地図のコンテナスタイル - 募集要項と同じスタイルに合わせる */
.company-info, 
.map-section {
    margin-bottom: 80px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: calc(100% - 80px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.company-info:hover, 
.map-section:hover {
    transform: translateY(-5px);
}

/* セクションのタイトルスタイル */
.content-title {
    font-size: 28px;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.content-title span {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.content-title span:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ffe100;
}

/* 会社情報テーブル */
.company-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.company-table th, 
.company-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 25%;
    font-weight: bold;
    color: #333;
    background-color: #f9f9f9;
}

/* 地図セクション */
.map-container {
    margin-bottom: 20px;
    border: none;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 6px;
}

.access-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #ffe100;
    margin-top: 20px;
}

.access-info p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
    .company-info, 
    .map-section {
        padding: 30px 20px;
        margin-bottom: 40px;
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .content-title {
        font-size: 22px;
    }
    
    .company-table th,
    .company-table td {
        padding: 15px;
    }
    
    .company-table th {
        width: 100%;
        display: block;
        border-bottom: none;
        padding-bottom: 5px;
    }
    
    .company-table td {
        width: 100%;
        display: block;
        padding-top: 5px;
    }
    
    .access-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .company-info, 
    .map-section {
        padding: 20px 15px;
        width: calc(100% - 30px);
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .page-content {
        margin: 40px auto;
    }
}

