:root {
    --primary-color: #0056b3; /* 信頼感のあるブルー */
    --text-color: #333333;
    --bg-light: #f4f7f6;
    --bg-dark: #2c3e50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; 
    color: var(--text-color); 
    line-height: 1.6; 
}
a { text-decoration: none; color: inherit; }

/* ヘッダーとナビゲーション */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 5%; 
    background: #ffffff; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); }
nav ul { list-style: none; display: flex; gap: 20px; align-items: center; }
nav a:hover { color: var(--primary-color); }
.nav-btn { background: var(--primary-color); color: #fff; padding: 8px 15px; border-radius: 4px; font-weight: bold; }
.nav-btn:hover { background: #004494; color: #fff; }

/* ヒーローセクション（トップ画像） */
.hero { 
    /* 画像を差し替える場合は以下のURLを変更してください */
    background: url('https://images.unsplash.com/photo-1541888086425-d81bb192a0e0?auto=format&fit=crop&w=1500&q=80') center/cover; 
    color: #fff; 
    text-align: center; 
    padding: 120px 20px; 
    background-color: #555; 
    background-blend-mode: multiply; /* 画像を少し暗くして文字を読みやすくする */
}
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; }

/* 共通セクション設定 */
.section { padding: 80px 5%; max-width: 1200px; margin: auto; }
.section h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; color: var(--primary-color); }
.bg-light { background-color: var(--bg-light); max-width: 100%; }
.bg-dark { background-color: var(--bg-dark); max-width: 100%; color: #fff; }
.text-center { text-align: center; }

/* カードレイアウト（事業内容・採用） */
.card-container, .recruit-container { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.card, .recruit-box { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); flex: 1; min-width: 300px; }
.card h3, .recruit-box h3 { margin-bottom: 15px; border-bottom: 3px solid var(--primary-color); display: inline-block; padding-bottom: 5px; }

/* 会社概要テーブル */
.company-table { width: 100%; max-width: 800px; margin: auto; border-collapse: collapse; background: #fff; }
.company-table th, .company-table td { padding: 15px; border: 1px solid #ddd; }
.company-table th { background: var(--primary-color); color: #fff; width: 30%; text-align: left; }

/* ボタン */
.btn { display: inline-block; padding: 10px 20px; background: var(--primary-color); color: #fff; border-radius: 4px; margin-top: 15px; text-align: center; transition: 0.3s; font-weight: bold;}
.btn:hover { background: #004494; color: #fff; }
.btn-large { font-size: 1.2rem; padding: 15px 50px; border-radius: 50px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: #fff; }

.note { font-size: 0.9rem; margin-top: 20px; opacity: 0.8; }

/* フッター */
footer { background: #222; color: #aaa; text-align: center; padding: 20px; font-size: 0.9rem;}

/* スマホ対応（レスポンシブ） */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; padding-bottom: 10px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 10px;}
    .hero h1 { font-size: 1.8rem; }
    .company-table th, .company-table td { display: block; width: 100%; }
    .company-table th { border-bottom: none; }
}