
        /* 基本設定 */
        body {
            font-family: 'Noto Sans JP', sans-serif;
            padding-top: 56px; /* 固定ヘッダーの高さ分空ける */
        }

        /* ヒーローセクション（トップ）の設定 */
        .hero-section {
            position: relative;
            height: 50vh; /* 画面の高さの50% */
            min-height: 350px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        /* 背景画像 */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        /* 画像の上の暗いフィルター */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        /* トップのテキスト */
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .hero-tagline {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            padding: 8px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.4);
        }

        /* セクション共通 */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #0d6efd; /* BootstrapのPrimaryカラー */
        }

        /* カード画像の調整 */
        .card-img-custom {
            height: 200px;      /* 高さを固定 */
            object-fit: cover;  /* 枠に合わせてトリミング */
            width: 100%;
        }

        /* カードのホバーエフェクト */
        .hobby-card {
            transition: transform 0.3s;
            height: 100%; /* 高さを揃える */
        }
        .hobby-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
        }