       /* ==========================================================================
           1. 全体のベースデザイン（Color & Typography）
           ========================================================================== */
        body {
            font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
            background-color: #f0f4f8; /* 爽やかで目に優しい淡いブルーグレー */
            color: #2d3748;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        .container {
            max-width: 500px; /* スマホで一番見やすくなる横幅 */
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        /* ==========================================================================
           2. ヘッダーと検索バー
           ========================================================================== */
        header {
            text-align: center;
            padding: 20px 0 10px 0;
        }

        header h1 {
            font-size: 1.5rem;
            color: #004494; /* 九産大をイメージした誠実なディープブルー */
            margin: 0 0 5px 0;
            font-weight: 700;
        }

        header p {
            font-size: 0.85rem;
            color: #718096;
            margin: 0;
        }

        .search-container {
            margin: 15px 0 25px 0;
            position: relative;
        }

        .search-bar {
            width: 100%;
            padding: 14px 15px 14px 40px; /* 左側に虫眼鏡アイコンのスペースを空ける */
            font-size: 0.95rem;
            border: 2px solid #cbd5e0;
            border-radius: 12px;
            box-sizing: border-box;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }

        /* 検索バーにフォーカスが当たった時のエフェクト */
        .search-bar:focus {
            outline: none;
            border-color: #004494;
            box-shadow: 0 4px 10px rgba(0,68,148,0.15);
        }

        /* 虫眼鏡の擬似アイコン */
        .search-container::before {
            content: "🔍";
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            opacity: 0.6;
        }

        /* ==========================================================================
           3. 4つのメインカテゴリー（グリッドレイアウト）
           ========================================================================== */
        .section-title {
            font-size: 1rem;
            font-weight: bold;
            color: #4a5568;
            margin: 0 0 12px 4px;
        }

        .grid-menu {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* きれいに2列に並べる */
            gap: 12px; /* ボタン同士のすき間 */
            margin-bottom: 30px;
        }

        /* 押しやすいカード型ボタン */
        .menu-card {
            background-color: #ffffff;
            border-radius: 14px;
            padding: 20px 15px;
            text-align: center;
            text-decoration: none;
            color: #2d3748;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid rgba(0,0,0,0.02);
        }

        /* タップ・クリックしたときの立体的な動き */
        .menu-card:active {
            transform: scale(0.97);
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .menu-icon {
            font-size: 1.8rem;
            display: block;
            margin-bottom: 8px;
        }

        .menu-label {
            font-size: 0.95rem;
            font-weight: bold;
            display: block;
        }

        /* ==========================================================================
           4. 在学生のためのクイックリンク
           ========================================================================== */
        .quick-links {
            background-color: #ffffff;
            border-radius: 14px;
            padding: 18px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
        }

        .link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .link-list li {
            border-bottom: 1px solid #edf2f7;
        }

        .link-list li:last-child {
            border-bottom: none; /* 最後の線の削除 */
        }

        .link-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 4px;
            text-decoration: none;
            color: #4a5568;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .link-item:active {
            background-color: #f7fafc;
        }

        /* 外部リンクマーク（矢印） */
        .link-item::after {
            content: "➔";
            color: #cbd5e0;
            font-size: 0.8rem;
            transition: transform 0.2s;
        }

        .link-item:hover::after {
            color: #004494;
            transform: translateX(3px);
        }

        /* 著作権表記 */
        footer {
            text-align: center;
            font-size: 0.75rem;
            color: #a0aec0;
            margin-top: 40px;
            padding-bottom: 20px;
        }