/* 企業情報ページのスタイル */

/* ページヘッダースタイル - 已移动到全局样式 */
/* .page-header, .page-header::before, .page-header h1, .page-header .lead 样式已移至style.css */

/* 会社概要セクション */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #5637d1);
    transition: width 0.3s ease;
}

.company-info {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
}

.company-info.active {
    transform: translateY(0);
    opacity: 1;
}

.company-info table {
    border: none;
    margin-bottom: 0;
}

.company-info th {
    background-color: #f8f9fa;
    font-weight: 600;
    width: 30%;
    vertical-align: middle;
    color: #2c3e50;
    border-color: #eaeaea;
}

.company-info td {
    border-color: #eaeaea;
    padding: 15px;
    vertical-align: middle;
}

.company-info tr:hover {
    background-color: #f8fbff;
}

/* 経営理念セクション */
.company-vision {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
}

.company-vision.active {
    transform: translateY(0);
    opacity: 1;
}

.company-vision .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.company-vision .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-vision .card-body {
    padding: 25px;
}

.company-vision .card-title {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.company-vision .card-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, #3498db, #5637d1);
    margin-right: 12px;
    border-radius: 4px;
}

.company-vision .card-text {
    color: #666;
    line-height: 1.6;
}

.company-vision .card-text ul {
    padding-left: 20px;
    margin-top: 10px;
}

.company-vision .card-text li {
    margin-bottom: 8px;
    position: relative;
}

/* アクセスセクション */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
}

.map-container.active {
    transform: translateY(0);
    opacity: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.h5 {
    color: #3498db;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* アニメーション効果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .company-info th,
    .company-info td {
        padding: 12px;
    }
    
    .map-container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    /* 已移除page-header相关样式，统一使用全局样式 */
    
    .company-info th {
        width: 40%;
    }
    
    .company-vision .card {
        margin-bottom: 20px;
    }
} 