:root {
            --primary-color: #004a99; /* エムディー精密イメージカラー */
            --text-dark: #222;
            --text-muted: #666;
            --bg-light: #f8f9fa;
        }
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: #f8f9fa;
}

.page-header {
    padding: 100px 0;
    color: white;
    text-align: center;
}
.page-header-noimg{
    padding: 60px 0 30px 0;
    color: #333;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
}


/* セクション見出し */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-left: 7px solid #007bff;
    padding-left: 15px;
    margin-bottom: 30px;
}

.breadcrumb-container {
        background-color: #f8f9fa; /* ごく薄いグレーで区切りを明確に */
}
.breadcrumb {
    letter-spacing: 0.05em;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">"; /* 区切り文字を「>」に変更 */
    color: #ccc;
}
.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-item a:hover {
    color: #003366; /* コーポレートカラー */
}
.breadcrumb-item.active {
    color: #999;
    font-weight: 500;
}


/* フッター */
/* フッターリンクのカスタマイズ */
.footer-section{
    background:#eee;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color:#333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    line-height:0.5;
}
.footer-links a:hover {
    color: #007bff;
    transform: translateX(5px); /* 少し右にずれる */
}

.hover-top {
    transition: transform 0.3s ease;
}

.hover-top:hover {
    transform: translateY(-10px);
}


