.elementor-27735 .elementor-element.elementor-element-b6b8082{--display:flex;}/* LP全体のコンテナ */
.company-lp-container {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* メインビジュアル */
.lp-hero {
    /* 背景画像がない場合のために背景色を設定 */
    background-color: #002040; 
    /* 画像を使う場合は下の行のコメントを外し、URLを差し替えてください */
    /* background-image: linear-gradient(rgba(0, 32, 64, 0.6), rgba(0, 32, 64, 0.6)), url('ここに画像のURLを入れる'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: center;
}

.lp-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    color: #ffffff;
}

/* グリッドレイアウト */
.lp-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* カードのデザイン */
.nav-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 4px solid #dddddd;
}

/* リンクの色を強制的に固定 */
.company-lp-container a.nav-card {
    color: #333333 !important;
}

.nav-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom-color: #003366;
}

.nav-card h3 {
    font-size: 1.25rem;
    margin: 15px 0 10px;
    color: #003366;
}

.nav-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
}

.card-icon {
    font-size: 2rem;
}

/* 採用情報のハイライト設定 */
.nav-card.highlight {
    background: #eef4f8;
    border-bottom-color: #f39c12;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .lp-hero h1 {
        font-size: 1.8rem;
    }
    .lp-nav-grid {
        grid-template-columns: 1fr;
    }
}