/* /Components/ContactContent.razor.rz.scp.css */
/*----------------------------------------
  コンタクト全体
----------------------------------------*/
.contact-section[b-p47hm9imi0] {
    text-align: center;
    color: #ddd;
}

/*----------------------------------------
  サブタイトル・フッターテキスト
----------------------------------------*/
.contact-subtitle[b-p47hm9imi0],
.contact-bottom[b-p47hm9imi0] {
    color: #aaa;
}

.contact-subtitle[b-p47hm9imi0] {
    margin-bottom: 2rem;
}

.contact-bottom[b-p47hm9imi0] {
    margin-top: 4rem;
}

/*----------------------------------------
  アイコン一覧
----------------------------------------*/
.contact-icons[b-p47hm9imi0] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/*----------------------------------------
  各アイコンカード
----------------------------------------*/
.contact-item[b-p47hm9imi0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: #1c1c2e;
    border-radius: 1rem;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease;
}

    .contact-item:hover[b-p47hm9imi0] {
        background: #2c2c3e;
    }

    .contact-item img[b-p47hm9imi0] {
        width: 48px;
        height: 48px;
        margin-bottom: 0.1rem;
    }

    .contact-item .label[b-p47hm9imi0] {
        font-size: 1.2rem;
    }

/*----------------------------------------
  スマホ対応
----------------------------------------*/
@media (max-width: 640px) {
    .contact-subtitle[b-p47hm9imi0] {
        font-size: 0.8rem;
    }

    .contact-icons[b-p47hm9imi0] {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .contact-item[b-p47hm9imi0] {
        width: 180px;
        height: 120px;
    }

        .contact-item img[b-p47hm9imi0] {
            width: 56px;
            height: 56px;
        }
}
/* /Components/DemoContent.razor.rz.scp.css */
/*----------------------------------------
  カードリスト全体
----------------------------------------*/
.demo-list[b-3ouo7mgysb] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

/*----------------------------------------
  カード本体
----------------------------------------*/
.demo-card[b-3ouo7mgysb] {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 1000px;
    background: #1e1e2f;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

/*----------------------------------------
  左側（画像＋タイトル＋ボタン）
----------------------------------------*/
.demo-image-area[b-3ouo7mgysb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

    .demo-image-area h3[b-3ouo7mgysb] {
        background: linear-gradient(90deg, #3a2ca0, #0080ff);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
        padding: 6px 14px;
        border-radius: 6px;
        margin-bottom: 1rem;
    }

        .demo-image-area h3 a[b-3ouo7mgysb] {
            color: inherit;
            text-decoration: none;
        }

.demo-image[b-3ouo7mgysb] {
    width: 300px;
    border-radius: 0.5rem;
    object-fit: contain;
}

/*----------------------------------------
  デモサイトボタン
----------------------------------------*/
.demo-link-btn[b-3ouo7mgysb] {
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 14px;
    transition: opacity 0.2s;
}

    .demo-link-btn:hover[b-3ouo7mgysb] {
        opacity: 0.8;
    }

/*----------------------------------------
  右側（説明＋リンク）
----------------------------------------*/
.demo-body[b-3ouo7mgysb] {
    flex: 1;
    text-align: left;
}

    .demo-body p[b-3ouo7mgysb] {
        margin: 0;
        color: #ccc;
        font-size: 1rem;
        line-height: 1.7;
    }

/*----------------------------------------
  Qiita / GitHub リンクパネル
----------------------------------------*/
.demo-links-wide[b-3ouo7mgysb] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.link-panel[b-3ouo7mgysb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1c1c2e;
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .link-panel:hover[b-3ouo7mgysb] {
        background: #333645;
    }

    .link-panel img[b-3ouo7mgysb] {
        width: 48px;
        height: 48px;
        border-radius: 6px;
        padding: 4px;
    }

.link-body[b-3ouo7mgysb] {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.link-title[b-3ouo7mgysb] {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.link-url[b-3ouo7mgysb] {
    font-size: 0.75rem;
    color: #ccc;
}

/*----------------------------------------
  スマホ対応
----------------------------------------*/
@media (max-width: 640px) {
    .demo-card[b-3ouo7mgysb] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        font-size: 0.85rem;
    }

    .demo-image[b-3ouo7mgysb] {
        width: 100%;
    }

    .demo-image-area h3[b-3ouo7mgysb] {
        font-size: 1.2rem;
    }

    .demo-body p[b-3ouo7mgysb] {
        font-size: 0.9rem;
    }

    .demo-link-btn[b-3ouo7mgysb] {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .link-panel[b-3ouo7mgysb] {
        gap: 0.2rem;
        padding: 0.8rem;
    }

        .link-panel img[b-3ouo7mgysb] {
            width: 40px;
            height: 40px;
        }

    .link-title[b-3ouo7mgysb] {
        font-size: 0.85rem;
    }

    .link-url[b-3ouo7mgysb] {
        font-size: 0.65rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-z84eycmmkb] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-z84eycmmkb] {
    flex: 1;
}

.sidebar[b-z84eycmmkb] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-z84eycmmkb] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-z84eycmmkb]  a, .top-row[b-z84eycmmkb]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-z84eycmmkb]  a:hover, .top-row[b-z84eycmmkb]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-z84eycmmkb]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-z84eycmmkb] {
        justify-content: space-between;
    }

    .top-row[b-z84eycmmkb]  a, .top-row[b-z84eycmmkb]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-z84eycmmkb] {
        flex-direction: row;
    }

    .sidebar[b-z84eycmmkb] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-z84eycmmkb] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-z84eycmmkb]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-z84eycmmkb], article[b-z84eycmmkb] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-z84eycmmkb] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-z84eycmmkb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/*----------------------------------------
  ����
----------------------------------------*/
.bi[b-3nrn2dz4vx] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

/*----------------------------------------
  �i�r�{�́iPC�\���j
----------------------------------------*/
.nav-scrollable[b-3nrn2dz4vx] {
    position: relative;
    width: 260px;
    height: 100vh;
    background-color: #1a1a2e;
    overflow-y: auto;
    display: block;
}

/*----------------------------------------
  �w�b�_�[��
----------------------------------------*/
.nav-header[b-3nrn2dz4vx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    color: white;
    background: linear-gradient(135deg, #0a0f3c, #1c3d8c);
    border-radius: 10px;
    margin: 10px;
}

.nav-profile-icon[b-3nrn2dz4vx] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.nav-title[b-3nrn2dz4vx] {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: color 0.2s ease;
}

    .nav-title:hover[b-3nrn2dz4vx] {
        color: #ffd6ff;
    }

/*----------------------------------------
  ���j���[���ځi::deep�Ή��j
----------------------------------------*/
.nav-item[b-3nrn2dz4vx] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-3nrn2dz4vx] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-3nrn2dz4vx] {
        padding-bottom: 1rem;
    }

    /* NavLink���a�^�O�փX�^�C����K�p */
    .nav-item[b-3nrn2dz4vx]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        font-size: 1rem;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    /* active��� */
    .nav-item[b-3nrn2dz4vx]  a.active {
        background-color: rgba(255,255,255,0.37);
        color: white;
        font-weight: bold;
    }

    /* hover */
    .nav-item[b-3nrn2dz4vx]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

/*----------------------------------------
  �A�C�R��
----------------------------------------*/
.nav-menu-icon[b-3nrn2dz4vx] {
    font-size: 1.25rem;
    line-height: 1;
    position: relative;
    top: 0;
    flex-shrink: 0;
    color: #B1B5B9;
    align-items: center;
}

/*----------------------------------------
  ���̑�
----------------------------------------*/
.main-content[b-3nrn2dz4vx] {
    margin-left: 0;
}

/*----------------------------------------
  �X�}�z�p �g�O���{�^���i�O�{���j
----------------------------------------*/
.navbar-toggle[b-3nrn2dz4vx] {
    position: fixed;
    top: 0.75rem;
    right: 1rem;
    z-index: 2000;
    display: none; /* PC�ł͔�\�� */
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    background-color: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.menu-icon[b-3nrn2dz4vx] {
    width: 22px;
    height: 2px;
    background: white;
    position: relative;
}

    .menu-icon[b-3nrn2dz4vx]::before,
    .menu-icon[b-3nrn2dz4vx]::after {
        content: "";
        position: absolute;
        left: 0;
        width: 22px;
        height: 2px;
        background: white;
        transition: 0.3s;
    }

    .menu-icon[b-3nrn2dz4vx]::before {
        top: -7px;
    }

    .menu-icon[b-3nrn2dz4vx]::after {
        top: 7px;
    }

.menu-text[b-3nrn2dz4vx] {
    font-size: 0.9rem;
}

/*----------------------------------------
  �X�}�z�\���i640px�ȉ��j
----------------------------------------*/
@media (max-width: 640px) {

    /* �g�O���{�^���\�� */
    .navbar-toggle[b-3nrn2dz4vx] {
        display: flex;
    }

    /* ���j���[������ԁi���ɉB���j */
    .nav-scrollable[b-3nrn2dz4vx] {
        position: fixed;
        top: 0;
        left: -260px; /* �� ��\�� */
        width: 260px;
        height: 100vh;
        background-color: #1a1a2e;
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 1500;
        display: block !important;
    }

        /* ���j���[�J������� */
        .nav-scrollable.open[b-3nrn2dz4vx] {
            left: 0; /* �� ������X���C�h�C�� */
        }
}

/*----------------------------------------
  ���j���[������Ƃ��{�^���ĕ\��
----------------------------------------*/
.hidden[b-3nrn2dz4vx] {
    display: none !important;
}
/* /Components/Pages/Top.razor.rz.scp.css */
/*----------------------------------------
  全体スクロール
----------------------------------------*/
/* 画面全体で横スクロールを防ぐ */
html[b-b55v4d063f], body[b-b55v4d063f] {
    max-width: 100%;
    overflow-x: hidden;
}

html[b-b55v4d063f] {
    scroll-behavior: smooth;
}

.scroll-page[b-b55v4d063f] {
    display: flex;
    flex-direction: column;
}

/*----------------------------------------
  各セクション共通
----------------------------------------*/
.scroll-section[b-b55v4d063f] {
    width: 100%;
    padding: 6rem 2rem;
    background: #0c0d1a;
    scroll-margin-top: 80px; /* メニュー高さぶんずらす */
}

.page-title[b-b55v4d063f] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

    .page-title span[b-b55v4d063f] {
        background: linear-gradient(90deg, #a855f7, #6b21a8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/*----------------------------------------
  Heroセクション
----------------------------------------*/
.main-hero[b-b55v4d063f] {
    height: 100vh;
    width: 100%;
    overflow-x: hidden; /* ← 横スクロール防止 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* ↓ これを削除または条件付き除外 */
    /* background-attachment: fixed; */
    transition: background-image 3s ease-in-out;
    color: #fff;
    position: relative;
}

    .main-hero[b-b55v4d063f]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

/* iPhone用：fixedの代わりにパララックス風に */
@supports (-webkit-touch-callout: none) {
    .main-hero[b-b55v4d063f] {
        background-attachment: scroll !important;
        background-position: center top !important;
    }
}


/*----------------------------------------
  タイトルアニメーション
----------------------------------------*/
.animated-title[b-b55v4d063f] {
    font-size: 4rem;
    font-weight: 600;
    background: linear-gradient(270deg, #7b2ff7, #f107a3, #00d4ff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow-b-b55v4d063f 8s ease infinite;
    margin: 0;
}

@keyframes gradientFlow-b-b55v4d063f {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*----------------------------------------
  スマホ調整
----------------------------------------*/
@media (max-width: 800px) {
    .scroll-section[b-b55v4d063f] {
        padding: 3rem 1rem;
    }
}

/*----------------------------------------
  追加：スマホではカードを全幅表示に
----------------------------------------*/
@media (max-width: 640px) {
    .scroll-section[b-b55v4d063f],
    .demo-card[b-b55v4d063f],
    .project-card[b-b55v4d063f],
    .profile-card[b-b55v4d063f],
    .skill-card[b-b55v4d063f] {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        max-width: 100%;
        width: 100%;
    }

    .scroll-section[b-b55v4d063f] {
        padding: 3rem 0.5rem;
    }
}
/* /Components/ProfileContent.razor.rz.scp.css */
/*----------------------------------------
  全体レイアウト
----------------------------------------*/
.profile-page[b-usj5aqp453] {
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央寄せ */
    gap: 2rem;
    margin-top: 3rem;
}

/*----------------------------------------
  プロフィールカード
----------------------------------------*/
.profile-card[b-usj5aqp453] {
    display: flex;
    background: #12122a;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.1);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

/*----------------------------------------
  左側エリア
----------------------------------------*/
.profile-left[b-usj5aqp453] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-photo[b-usj5aqp453] {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #8a2be2;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

.profile-meta[b-usj5aqp453] {
    display: flex;
    gap: 1rem;
    color: #aaa;
    font-size: 0.9rem;
}

.meta-item[b-usj5aqp453] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .meta-item i[b-usj5aqp453] {
        color: #b388ff;
    }

/*----------------------------------------
  右側エリア
----------------------------------------*/
.profile-right[b-usj5aqp453] {
    flex: 1;
    margin-left: 2rem;
}

    .profile-right h2[b-usj5aqp453] {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }

    .profile-right h3[b-usj5aqp453] {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .profile-right h4[b-usj5aqp453] {
        font-size: 1rem;
        font-weight: 600;
        background: linear-gradient(90deg, #4cc9f0, #7209b7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
    }

    .profile-right p[b-usj5aqp453] {
        line-height: 1.8;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

/*----------------------------------------
  スキルタグ
----------------------------------------*/
.profile-tags span[b-usj5aqp453] {
    display: inline-block;
    background: #2b2b3d;
    color: #ddd;
    border-radius: 20px;
    padding: 6px 14px;
    margin: 4px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

    .profile-tags span:hover[b-usj5aqp453] {
        background: #3a3a4d;
    }

/*----------------------------------------
  資格ラベル
----------------------------------------*/
.profile-certifications[b-usj5aqp453] {
    margin-top: 1rem;
}

    .profile-certifications span[b-usj5aqp453] {
        display: inline-block;
        background: linear-gradient(135deg, #007bff, #00c6ff);
        color: #fff;
        border-radius: 24px;
        padding: 6px 14px;
        margin: 4px;
        font-size: 0.9rem;
        box-shadow: 0 0 6px rgba(0, 180, 255, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .profile-certifications span:hover[b-usj5aqp453] {
            transform: translateY(-2px);
            box-shadow: 0 0 12px rgba(0, 200, 255, 0.6);
        }

/*----------------------------------------
  スマホ対応
----------------------------------------*/
@media (max-width: 640px) {
    .profile-card[b-usj5aqp453] {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem;
    }

    .profile-photo[b-usj5aqp453] {
        width: 70px;
        height: 70px;
    }

    .profile-meta[b-usj5aqp453] {
        font-size: 0.75rem;
        gap: 0.5rem;
        justify-content: center;
        white-space: nowrap;
    }

    .meta-item[b-usj5aqp453] {
        white-space: nowrap;
    }

    .profile-right[b-usj5aqp453] {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

        .profile-right h2[b-usj5aqp453] {
            font-size: 1.5rem;
            white-space: nowrap;
        }

        .profile-right h3[b-usj5aqp453],
        .profile-right h4[b-usj5aqp453] {
            font-size: 0.85rem;
            white-space: nowrap;
        }

        .profile-right p[b-usj5aqp453] {
            text-align: left;
            padding: 0 0.5rem;
        }

    .profile-tags span[b-usj5aqp453],
    .profile-certifications span[b-usj5aqp453] {
        font-size: 0.85rem;
    }
}
/* /Components/ProjectContent.razor.rz.scp.css */
/*----------------------------------------
  プロジェクトセクション
----------------------------------------*/
.project-section[b-ezpxqspopt] {
    margin-top: 3rem;
}

    .project-section:nth-of-type(2)[b-ezpxqspopt] {
        margin-top: 8rem;
    }

.project-section-title[b-ezpxqspopt] {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 6px solid #4cc9f0;
    padding-left: 0.8rem;
    letter-spacing: 0.5px;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    text-align: left;
}

/*----------------------------------------
  プロジェクトカード
----------------------------------------*/
.project-card[b-ezpxqspopt] {
    background: #1e1e2f;
    border-radius: 1rem;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.project-name[b-ezpxqspopt] {
    display: inline-block;
    background: linear-gradient(90deg, #3a2ca0, #0080ff);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

/*----------------------------------------
  詳細カード群（グリッド）
----------------------------------------*/
.project-detail-grid[b-ezpxqspopt] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.project-detail-card[b-ezpxqspopt] {
    background: #26263f;
    border-radius: 0.8rem;
    padding: 0.9rem 1.1rem;
    color: #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .project-detail-card:hover[b-ezpxqspopt] {
        background: #2e3052;
        transform: translateY(-2px);
    }

    .project-detail-card.wide[b-ezpxqspopt] {
        grid-column: 1 / -1;
    }

    .project-detail-card h4[b-ezpxqspopt] {
        font-size: 1rem;
        font-weight: 600;
        color: #9dbee8;
        margin: 0;
    }

    .project-detail-card p[b-ezpxqspopt] {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #e9eef2;
    }

/*----------------------------------------
  テキスト配置
----------------------------------------*/
.text-left[b-ezpxqspopt] {
    text-align: left;
    margin-left: 1.5rem;
}

.text-right[b-ezpxqspopt] {
    text-align: right;
    padding-right: 2rem;
}

/*----------------------------------------
  アイコン＋タイトル行
----------------------------------------*/
.icon-title[b-ezpxqspopt] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-icon[b-ezpxqspopt] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 8px;
    font-size: 1.4rem;
}

/*----------------------------------------
  「デモへ移動」リンクボタン
----------------------------------------*/
.project-link-btn[b-ezpxqspopt] {
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 14px;
    text-align: right;
    transition: opacity 0.2s;
}

    .project-link-btn:hover[b-ezpxqspopt] {
        opacity: 0.8;
    }

/*----------------------------------------
  スマホ対応
----------------------------------------*/
@media (max-width: 800px) {
    .project-card[b-ezpxqspopt] {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .project-section-title[b-ezpxqspopt] {
        font-size: 1.1rem;
        border-left-width: 3px;
        padding-left: 0.5rem;
        font-weight: 300;
    }

    .project-name[b-ezpxqspopt] {
        font-size: 1.1rem;
        font-weight: 300;
    }

    .project-detail-grid[b-ezpxqspopt] {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .text-left[b-ezpxqspopt] {
        margin-left: 0.8rem;
    }

    .category-icon[b-ezpxqspopt] {
        width: 40px;
        height: 40px;
    }
}
/* /Components/SkillContent.razor.rz.scp.css */
/*----------------------------------------
  カード配置（最大2列）
----------------------------------------*/
.skills-grid[b-biq6kbjmy6] {
    display: grid;
    grid-template-columns: repeat(2, minmax(380px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto 0;
    max-width: 1000px;
    justify-content: center;
}

/*----------------------------------------
  カード
----------------------------------------*/
.skill-card[b-biq6kbjmy6] {
    background: #1a1b2f;
    border-radius: 0.8rem;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

    .skill-card:hover[b-biq6kbjmy6] {
        transform: translateY(-3px);
    }

/*----------------------------------------
  カードヘッダー
----------------------------------------*/
.skill-card-header[b-biq6kbjmy6] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.2rem;
}

/*----------------------------------------
  カテゴリアイコン
----------------------------------------*/
.category-icon[b-biq6kbjmy6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 8px;
    font-size: 1.4rem;
}

/*----------------------------------------
  スキルリスト
----------------------------------------*/
.skill-list[b-biq6kbjmy6] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/*----------------------------------------
  スキル項目
----------------------------------------*/
.skill-item[b-biq6kbjmy6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #23243b;
    border-radius: 6px;
    padding: 1.2rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .skill-item:hover[b-biq6kbjmy6] {
        background: #2e3052;
        transform: translateY(-2px);
    }

/* 左側（アイコン＋名称） */
.skill-item-left[b-biq6kbjmy6] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 5px;
}

.skill-item img[b-biq6kbjmy6] {
    width: 36px;
    height: 36px;
}

.skill-item span[b-biq6kbjmy6] {
    color: #ddd;
}

/*----------------------------------------
  星マーク
----------------------------------------*/
.stars[b-biq6kbjmy6] {
    color: gold !important;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-right: 30px;
}

/*----------------------------------------
  スマホ対応：1列に変更
----------------------------------------*/
@media (max-width: 800px) {
    .skills-grid[b-biq6kbjmy6] {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .skill-card[b-biq6kbjmy6] {
        padding: 1rem 1.2rem;
    }

    .skill-item[b-biq6kbjmy6] {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .skill-item-left[b-biq6kbjmy6] {
        gap: 0.6rem;
    }

    .skill-item img[b-biq6kbjmy6] {
        width: 28px;
        height: 28px;
    }

    .stars[b-biq6kbjmy6] {
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .category-icon[b-biq6kbjmy6] {
        width: 40px;
        height: 40px;
    }
}
