/* =========================================
   Ha-Mil Group 全体用 デザイン調整 CSS
   （ロゴ・タイトルは縦並び、メニューはその下）
   ========================================= */

/* ▼ 全体 */
body {
    background: #f3f4f6;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
}

/* =========================================
   ヘッダー（ロゴ + タイトル + 説明）
   ========================================= */

.site-header {
    background: #0b2239;      /* 濃紺 */
    margin: 0;
    padding: 20px 0 0 0;      /* 下方向は 0（メニューと隙間を作らない） */
    border-bottom: none;
}

/* ヘッダー内は「元の縦並び」にしておく */
.site-header .inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;         /* 左寄せ */
}

/* ロゴ */
.site-logo img {
    max-height: 120px;        /* ロゴを少し小さく */
    width: auto;
    height: auto;
}

/* タイトル・キャッチコピー */
.site-title,
.site-description {
    margin: 0;
    color: #ffffff;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
}

.site-description {
    font-size: 16px;
    margin-top: 6px;
}

/* スマホ幅でも特にレイアウト変更しない（縦のまま） */
@media (max-width: 767px) {
    .site-header .inner {
        padding: 0 15px;
    }
}

/* =========================================
   メニュー（グローバルナビ）
   ========================================= */

.global-nav {
    background: #0b2239;       /* ヘッダーと同じ色 */
    margin: 0;
}

/* メニューリスト：横並び・中央寄せ */
.global-nav ul {
    margin: 0;
    padding: 12px 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* メニューのリンク */
.global-nav a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    padding: 6px 4px;
}

/* ホバー時 */
.global-nav a:hover {
    color: #ffd700;            /* ゴールド */
}

/* スマホでは少し詰める */
@media (max-width: 767px) {
    .global-nav ul {
        flex-wrap: wrap;
        gap: 16px;
        padding: 10px 8px;
    }
}

/* =========================================
   固定ページ本文
   ========================================= */

.site-main {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
}

.site-main p {
    font-size: 20px;
    line-height: 1.8;
}

.site-main h1,
.site-main h2,
.site-main h3 {
    color: #111827;
    margin-top: 45px;
}

.site-main a {
    color: #1d4ed8;
}

/* =========================================
   フッター
   ========================================= */

.site-footer {
    background: #0b2239;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffd700;
}
