/* =========================================
           変数定義 (テーマカラー)
           ========================================= */
        :root {
            --ruru-purple: #b4a0e5;
            --ruru-purple-light: #e8e2f6;
            --ruru-dark: #3a3354;
            --bg-color-sp: #f8f6fc;
            --text-main: #333333;
            --text-sub: #6b7280;
        }

        /* =========================================
           ベーススタイル
           ========================================= */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            color: var(--text-main);
            /* SP用の背景色 */
            background-color: var(--bg-color-sp);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }

        /* 選択時の色 */
        ::selection {
            background-color: var(--ruru-purple);
            color: white;
        }

        /* スクロールバーのカスタマイズ */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: #dcd3f6;
            border-radius: 10px;
        }

        /* =========================================
           PC用: 背景画像の固定表示設定
           (画面幅が768px以上の場合に適用されます)
           ========================================= */
        @media (min-width: 768px) {
            body {
                /* ▼▼ ここに背景画像のURLを指定してください ▼▼ */
                background-image: url('./img/icon.png');
                background-size: cover;
                background-position: center;
                background-attachment: fixed; /* 背景を固定 */
                background-repeat: no-repeat;
            }
        }

        /* =========================================
           レイアウト・コンポーネント
           ========================================= */
        /* メインコンテナ (スマホ幅の枠) */
        .container {
            width: 100%;
            max-width: 448px; /* max-w-md 相当 */
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            min-height: 100vh;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: 4rem;
        }

        /* 背景の装飾 (月と星) */
        .bg-decoration {
            position: absolute;
            color: rgba(180, 160, 229, 0.1);
            pointer-events: none;
            z-index: 0;
        }
        .bg-dec-1 { top: 6rem; left: -3rem; font-size: 8rem; transform: rotate(-12deg); }
        .bg-dec-2 { top: 18rem; right: -2rem; font-size: 6rem; transform: rotate(12deg); }
        .bg-dec-3 { bottom: 12rem; left: -4rem; font-size: 10rem; transform: rotate(-6deg); }

        /* プロフィールヘッダー */
        .profile-header {
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 1.5rem;
            width: 100%;
            position: relative;
            z-index: 10;
        }

        .icon-wrapper {
            position: relative;
        }

        .profile-icon {
            width: 112px;
            height: 112px;
            border-radius: 50%;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            background-color: var(--ruru-purple-light);
            overflow: hidden;
        }

        .profile-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .verified-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: #2dd4bf; /* teal-400 */
            color: white;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ffffff;
            font-size: 12px;
        }

        .profile-name {
            margin-top: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ruru-dark);
            letter-spacing: 0.05em;
        }

        .profile-desc {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-sub);
            font-weight: 500;
        }

        /* リンク一覧エリア */
        .link-nav {
            margin-top: 2rem;
            width: 100%;
            padding: 0 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
            z-index: 10;
        }

        /* リンクカード */
        .link-card {
            display: flex;
            align-items: center;
            width: 100%;
            background-color: #ffffff;
            border: 2px solid var(--ruru-purple-light);
            border-radius: 1rem; /* 16px */
            padding: 0.875rem;
            text-decoration: none;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .link-card:hover, .link-card:active {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(180, 160, 229, 0.2);
            border-color: var(--ruru-purple);
        }

        .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.125rem;
            flex-shrink: 0;
        }
        
        /* 各アイコンの色設定 */
        .icon-twitter { background-color: #ffffff; color: #1f2937; }
        .icon-youtube { background-color: #fef2f2; color: #ef4444; }
        .icon-twitch { background-color: #faf5ff; color: #a855f7; }
        .icon-marshmallow { background-color: #fdf2f8; color: #f472b6; }
        .icon-fanclub { background-color: #fefce8; color: #eab308; }
        .icon-shop { background-color: #eff6ff; color: #60a5fa; }
        .icon-discord { background-color: #eef2ff; color: #6366f1; }

        .card-content {
            margin-left: 1rem;
            flex: 1;
        }

        .card-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: #374151; /* gray-700 */
        }

        .card-desc {
            font-size: 11px;
            color: var(--text-sub);
            margin-top: 2px;
            line-height: 1.3;
        }

        .card-arrow {
            color: #d1d5db; /* gray-300 */
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }

        /* 画像コンテナ (メインビジュアル、プラン画像など) */
        .image-container {
            width: 100%;
            border-radius: 1rem;
            border: 2px solid var(--ruru-purple-light);
            background-color: #ffffff;
            padding: 0.375rem;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        
        .main-visual { margin: 1rem 0; }
        .plan-visual { margin-top: 0.75rem; }

        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            display: block;
        }

        /* セリューショングループ (ファンクラブまとめ等) */
        .link-group {
            width: 100%;
            margin-top: 0.5rem;
        }

        /* フッター */
        .footer {
            margin-top: 3.5rem;
            margin-bottom: 1rem;
            text-align: center;
            z-index: 10;
        }

        .footer p {
            font-size: 11px;
            color: #9ca3af; /* gray-400 */
            font-weight: 500;
            letter-spacing: 0.05em;
        }