/* 全体設定 */
body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background: #f6f6f6;
    color: #333;
    text-align: center;
}

/* ヘッダー */
.header {
    background: #020617;
    padding: 20px;
    border-bottom: 3px solid #3b82f6;
}

.header h1 {
    color: white;
    margin: 0;
    font-size: 28px;
}

/* 画像セクション */
.hero {
    position: relative;
    width: 100%;
}

.hero img {
    width: 100%;
    height: 90vh;     /* ←ここを変えれば大きくできる */
    object-fit: cover;
    display: block;
}

/* 画像上テキスト（半透明） */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.45);
    padding: 30px 40px;
    border-radius: 10px;
    color: white;
    width: 80%;
    max-width: 500px;
}

.hero-text h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.hero-text p {
    margin: 0 0 20px;
    line-height: 1.6;
}

/* ボタン */
.button {
    background: #2563eb;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

/* 会社紹介 */
.company-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.company-section h2 {
    margin-bottom: 15px;
    color: #1e3a8a;
}
/* =========================
   採用情報（カードデザイン）
========================= */
.recruit-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px 40px;
    text-align: center;
}

.recruit-section h2 {
    color: #2563eb;
    font-size: 28px;
    margin-bottom: 15px;
}

.recruit-intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ここが「カード」部分 */
.recruit-block {
    background: #ffffff;               /* 白いカード */
    border-radius: 12px;               /* 角を丸く */
    border: 1px solid #e5e7eb;         /* 薄いフチ */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* うっすら影 */
    padding: 20px 22px;
    margin-bottom: 24px;
    text-align: left;                  /* 中の文字は読みやすく左寄せ */
}

/* カード内の見出し */
.recruit-block h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1e40af;
    text-align: center;
}

.recruit-block h4 {
    margin: 14px 0 6px;
    font-size: 15px;
    color: #111827;
}

/* 箇条書き */
.recruit-block ul {
    margin: 0;
    padding-left: 1.2em;
    font-size: 14px;
    line-height: 1.7;
}

.recruit-block li {
    margin-bottom: 4px;
}

/* 応募・お問い合わせのところ */
.recruit-contact {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.recruit-contact a {
    color: #2563eb;
    text-decoration: none;
}

.recruit-contact a:hover {
    text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .recruit-section {
        margin: 40px auto;
        padding: 0 16px 32px;
    }

    .recruit-block {
        padding: 16px 14px;
    }
}

/* 会社情報（枠つき） */
.info-box {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    border: 2px solid #3b82f6;
    background: white;
    border-radius: 10px;
}

.info-box h2 {
    margin-bottom: 15px;
    color: #1e3a8a;
}

.info-box p {
    margin: 8px 0;
    font-size: 16px;
}

/* GoogleMap */
.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 20px;
    border-radius: 10px;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 768px) {
    .hero img {
        height: 60vh;
    }

    .hero-text {
        width: 90%;
        padding: 20px;
    }

    .hero-text h2 {
        font-size: 22px;
    }
}
