/* /src/css/profile.css */

/* ===== BASE ===== */
.profile-body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
      "Hiragino Sans", "Meiryo", sans-serif;
    color: #e5f0ff;
    background: radial-gradient(circle at top, #020617 0, #020617 50%, #000 100%);
    overflow-x: hidden;
  }
  
  .pf-shell {
    position: relative;
    min-height: 100vh;
    padding: 20px 16px 40px;
  }
  
  /* ===== ANIMATED BACKGROUND + SCANLINES ===== */
  .pf-shell::before {
    content: "";
    position: fixed;
    inset: -40px;
    background-image:
      linear-gradient(120deg, #22c55e, #6366f1, #ec4899, #22c55e);
    background-size: 400% 400%;
    opacity: 0.18;                /* 少し控えめにして怪しげに */
    mix-blend-mode: screen;
    z-index: -3;
    animation: pf-bg-shift 18s ease-in-out infinite;
  }
  
  .pf-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.9), rgba(15, 23, 42, 0.95)),
      repeating-linear-gradient(
        0deg,
        rgba(148, 163, 184, 0.16),
        rgba(148, 163, 184, 0.16) 1px,
        transparent 1px,
        transparent 11px
      ),
      repeating-linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.9),
        rgba(15, 23, 42, 0.9) 1px,
        transparent 1px,
        transparent 9px
      );
    background-blend-mode: overlay;
    z-index: -2;
    pointer-events: none;
    opacity: 0.95;
    animation: pf-scan 6s linear infinite;
  }
  
  
  /* ほんのり「走査線」ノイズ */
  .pf-shell::marker {
    /* ブラウザ無視されるので実質何もしないが、ちょっとした遊び */
  }
  
  /* ===== HERO ===== */
  .pf-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 18px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto 24px;
  }
  
  @media (max-width: 768px) {
    .pf-hero {
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
      margin-top: 8px;
    }
  }
  
  /* Orbit block */
  .pf-orbit-wrap {
    display: flex;
    justify-content: center;
  }
  
  .pf-orbit {
    position: relative;
    width: min(320px, 80vw);
    height: min(320px, 80vw);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
  }
  
  
  /* 外側／内側のリングを毒々しいグリーン寄りに */
  .pf-orbit-ring {
    position: absolute;
    inset: 12%;
    border-radius: inherit;
    border: 1px solid rgba(45, 212, 191, 0.25);
    box-shadow: 0 0 24px rgba(52, 211, 153, 0.4);
  }
  
  .pf-orbit-ring--outer {
    inset: 2%;
    border-color: rgba(52, 211, 153, 0.8);
    animation: pf-orbit-spin 32s linear infinite;
  }
  
  .pf-orbit-ring--inner {
    inset: 25%;
    border-style: dashed;
    border-color: rgba(129, 230, 217, 0.7);
    animation: pf-orbit-spin-rev 26s linear infinite;
  }

  /* オービット上を回る小さな衛星（ドット） */
.pf-orbit::before,
.pf-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow:
    0 0 10px rgba(34, 197, 94, 0.9),
    0 0 18px rgba(74, 222, 128, 0.9);
}

.pf-orbit::before {
  top: 4%;
  left: 50%;
  transform-origin: -20px 110px;
  animation: pf-satellite 18s linear infinite;
}

.pf-orbit::after {
  bottom: 6%;
  left: 50%;
  transform-origin: 60px -80px;
  animation: pf-satellite-rev 24s linear infinite;
}

@keyframes pf-satellite {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}

@keyframes pf-satellite-rev {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(-360deg) translateX(0);
  }
}

  
.pf-avatar {
    position: relative;
    width: 180px;   /* ← ここを大きくした */
    height: 180px;  /* ← ここも */
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 22px 50px rgba(15, 23, 42, 0.9),
      0 0 0 2px rgba(15, 23, 42, 1),
      0 0 0 6px rgba(34, 197, 94, 0.9);
  }
  
  .pf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  

  .pf-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg,
        rgba(0,255,180,0.1) 0px,
        rgba(0,255,180,0.1) 1px,
        transparent 1px,
        transparent 6px
      ),
      repeating-linear-gradient(
        0deg,
        rgba(0,255,180,0.08) 0px,
        rgba(0,255,180,0.08) 1px,
        transparent 1px,
        transparent 6px
      );
    mix-blend-mode: screen;
    pointer-events: none;
  }
  
  
  
  /* ===== META TEXT / 裏サイト感ラベル ===== */
  .pf-meta {
    position: relative;
    padding: 16px 16px 16px 10px;
  }
  /* ===== ユーザーネーム入力フォーム ===== */
.pf-login {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.7);
    background: rgba(5, 46, 22, 0.9);
    box-shadow: 0 0 12px rgba(21, 128, 61, 0.6);
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
    pointer-events: none;
    transition:
      opacity 0.45s ease,
      transform 0.45s ease,
      filter 0.45s ease;
  }
  
  .pf-shell.pf-waiting-name .pf-login {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
  }
  
  .pf-login-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #bbf7d0;
    margin-bottom: 6px;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  
  .pf-login-row {
    display: flex;
    gap: 8px;
  }
  
  #pf-username-input {
    flex: 1;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid rgba(52, 211, 153, 0.7);
    background: rgba(15, 23, 42, 0.95);
    color: #e5f0ff;
    font-size: 0.8rem;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  
  #pf-username-input::placeholder {
    color: rgba(148, 163, 184, 0.8);
  }
  
  #pf-username-submit {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.9);
    background: rgba(5, 46, 22, 0.95);
    color: #bbf7d0;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  #pf-username-submit:hover {
    background: radial-gradient(circle at top,
          rgba(74, 222, 128, 0.35),
          rgba(5, 46, 22, 0.98));
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.9);
  }
  
  .pf-login.pf-login--done {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(4px);
    pointer-events: none;
  }
  
  /* 「ようこそ XX さん」表示 */
  .pf-welcome {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #bbf7d0;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
    min-height: 1.4em; /* レイアウトが動かないよう確保 */
  }
  
  /* 上に「非公開ルート」っぽいラベル帯を追加 */
  .pf-meta::before {
    content: "PRIVATE ROUTE / ACCESS GRANTED";
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(22, 163, 74, 0.8);
    background: rgba(5, 46, 22, 0.9);
    color: #bbf7d0;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  
  /* 下に細いライン */
  .pf-meta::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(34, 197, 94, 0.2),
      rgba(94, 234, 212, 0.8),
      rgba(34, 197, 94, 0.2)
    );
    opacity: 0.7;
  }
  
  .pf-meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  
  .pf-name {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 4px;
    background: linear-gradient(120deg, #e0f2fe, #a5b4fc);
    -webkit-background-clip: text;
    color: transparent;
    /* グリッチ風に時々揺れる */
    animation: pf-glitch 4s infinite;
  }
  
  .pf-role {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 8px;
  }

  /* 役職行の右端でカーソルが点滅する感じ */
.pf-role {
    position: relative;
    display: inline-block;
    padding-right: 12px;
  }
  
  .pf-role::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 1.1em;
    transform: translateY(-50%);
    background: rgba(190, 242, 100, 0.9);
    box-shadow: 0 0 8px rgba(190, 242, 100, 0.9);
    animation: pf-cursor 1.2s steps(1, end) infinite;
  }
  
  @keyframes pf-cursor {
    0%, 55% {
      opacity: 1;
    }
    56%, 100% {
      opacity: 0;
    }
  }
Ï  
  
  .pf-sub {
    font-size: 0.83rem;
    color: #e5e7eb;
    max-width: 430px;
    line-height: 1.7;
  }
  
  /* ===== PANELS ===== */
  .pf-panels {
    max-width: 980px;
    margin: 16px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  
  @media (min-width: 768px) {
    .pf-panels {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  .pf-panel {
    position: relative;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: radial-gradient(circle at top left,
          rgba(34, 197, 94, 0.22),
          rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(22, 163, 74, 0.8);
    box-shadow:
      0 12px 34px rgba(15, 23, 42, 0.9),
      0 0 0 1px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(18px);
    overflow: hidden;
  }
  
  /* マウス位置に光が追従（profile.jsで座標を書き込み） */
  .pf-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--pf-pointer-x, 50%) var(--pf-pointer-y, 0%),
        rgba(94, 234, 212, 0.18),
        transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
  }
  
  /* ▒ のような「コード枠」風の装飾 */
  .pf-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px dashed rgba(34, 197, 94, 0.25);
    opacity: 0.3;
    pointer-events: none;
  }
  
  .pf-panel--wide {
    grid-column: 1 / -1;
  }
  
  .pf-panel-title {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 6px;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  
  /* [ ABOUT ] のように見せる */
  .pf-panel-title::before {
    content: "[ ";
    opacity: 0.6;
  }
  .pf-panel-title::after {
    content: " ]";
    opacity: 0.6;
  }
  
  .pf-panel p {
    font-size: 0.88rem;
    color: #e5e7eb;
    line-height: 1.7;
  }
  
  /* List */
  .pf-list {
    list-style: none;
    padding-left: 0;
    margin: 4px 0 0;
  }
  
  .pf-list li {
    font-size: 0.88rem;
    padding: 3px 0;
    color: #e5e7eb;
  }
  
  /* Chips */
  .pf-chips {
    margin-top: 4px;
  }
  
  .pf-chips span {
    display: inline-block;
    margin: 4px 6px 4px 0;
    padding: 5px 11px;
    font-size: 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.85);
    background: rgba(5, 46, 22, 0.92);
    color: #bbf7d0;
  }
  
  /* Timeline */
  .pf-timeline {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 0;
    border-left: 1px solid rgba(74, 222, 128, 0.7);
  }
  
  .pf-timeline li {
    position: relative;
    padding: 6px 0 6px 14px;
  }
  
  .pf-timeline li::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.35);
  }
  
  .pf-timeline-year {
    display: inline-block;
    width: 60px;
    font-size: 0.72rem;
    color: #9ca3af;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  
  .pf-timeline-desc {
    font-size: 0.88rem;
  }
  
  /* Links */
  .pf-links {
    margin-top: 4px;
  }
  
  .pf-link-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }
  
  .pf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(74, 222, 128, 0.9);
    color: #bbf7d0;
    text-decoration: none;
    background: rgba(5, 46, 22, 0.95);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  
  .pf-btn:hover {
    background: radial-gradient(circle at top,
          rgba(74, 222, 128, 0.3),
          rgba(5, 46, 22, 0.98));
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.95);
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes pf-bg-shift {
    0% {
      background-position: 0% 0%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 0%;
    }
  }
  
  @keyframes pf-orbit-spin {
    0% {
      transform: rotateX(55deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(55deg) rotateZ(360deg);
    }
  }
  
  @keyframes pf-orbit-spin-rev {
    0% {
      transform: rotateX(65deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(65deg) rotateZ(-360deg);
    }
  }
  
  /* 文字が少しだけ「壊れた」ように揺れるグリッチ */
  @keyframes pf-glitch {
    0%, 92%, 100% {
      text-shadow: 0 0 0 rgba(34, 197, 94, 0.0);
      transform: translate(0, 0);
    }
    93% {
      text-shadow: -3px 0 rgba(34, 197, 94, 0.6),
                   3px 0 rgba(94, 234, 212, 0.6);
      transform: translate(-1px, 0);
    }
    95% {
      text-shadow: 3px 0 rgba(34, 197, 94, 0.7),
                   -3px 0 rgba(94, 234, 212, 0.7);
      transform: translate(1px, 0);
    }
    97% {
      text-shadow: -1px 0 rgba(34, 197, 94, 0.4),
                   1px 0 rgba(94, 234, 212, 0.4);
      transform: translate(-0.5px, 0);
    }
  }
  @keyframes pf-scan {
    0% {
      opacity: 0.7;
      transform: translateY(0);
    }
    40% {
      opacity: 1;
      transform: translateY(2px);
    }
    80% {
      opacity: 0.8;
      transform: translateY(-1px);
    }
    100% {
      opacity: 0.7;
      transform: translateY(0);
    }
  }
  /* 画面下部のステータスバー（裏コンソールっぽく） */
.pf-status {
    position: fixed;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    padding: 4px 14px 5px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(34, 197, 94, 0.9);
    box-shadow:
      0 0 12px rgba(21, 128, 61, 0.8),
      0 0 0 1px rgba(0, 0, 0, 1);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #bbf7d0;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    pointer-events: none; /* クリック邪魔しない用 */
    opacity: 0.9;
  }
  
  .pf-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    margin-right: 8px;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
    animation: pf-pulse 1.4s ease-in-out infinite;
    vertical-align: middle;
  }
  
  @keyframes pf-pulse {
    0%, 100% {
      transform: scale(0.8);
      opacity: 0.7;
    }
    50% {
      transform: scale(1.1);
      opacity: 1;
    }
  }
/* ===== タイピング完了までパネル・ステータスを隠す ===== */

/* ===== 初期状態：ロック中はパネル＆ステータス非表示 ===== */
.pf-panels,
.pf-status {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  pointer-events: none;
}

/* ===== アンロック時：電気が点滅してつく演出 ===== */

/* 各パネル自体の初期状態を透明にしておく */
.pf-panel {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
}

/* アンロック後、パネルごとに少し時間差でバチバチ点灯 */
.pf-shell.pf-unlocked .pf-panel {
  animation: pf-panel-flicker 0.8s linear forwards;
}

.pf-shell.pf-unlocked .pf-panel:nth-child(1) {
  animation-delay: 0.05s;
}
.pf-shell.pf-unlocked .pf-panel:nth-child(2) {
  animation-delay: 0.12s;
}
.pf-shell.pf-unlocked .pf-panel:nth-child(3) {
  animation-delay: 0.18s;
}
.pf-shell.pf-unlocked .pf-panel:nth-child(4) {
  animation-delay: 0.24s;
}
.pf-shell.pf-unlocked .pf-panel:nth-child(5) {
  animation-delay: 0.30s;
}

/* パネル群全体の位置・ブラーは最終的に整える */
.pf-shell.pf-unlocked .pf-panels {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

/* ステータスバーも「バチッ」とつく */
.pf-shell.pf-unlocked .pf-status {
  animation: pf-unlock-flicker 0.7s linear forwards;
}

/* パネルの点滅アニメーション */
@keyframes pf-panel-flicker {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
  }
  10% {
    opacity: 1;
    filter: blur(2px) brightness(1.6);
  }
  20% {
    opacity: 0.2;
    filter: blur(4px) brightness(0.5);
  }
  35% {
    opacity: 0.9;
    filter: blur(1px) brightness(1.3);
  }
  50% {
    opacity: 0.4;
    filter: blur(3px) brightness(0.8);
  }
  65% {
    opacity: 1;
    filter: blur(1px) brightness(1.1);
  }
  80% {
    opacity: 0.7;
    filter: blur(1px) brightness(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0) brightness(1);
  }
}

/* ステータスバー用の点灯アニメーション */
@keyframes pf-unlock-flicker {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }
  20% {
    opacity: 1;
    filter: blur(2px) brightness(1.7);
  }
  40% {
    opacity: 0.3;
    filter: blur(3px) brightness(0.6);
  }
  60% {
    opacity: 1;
    filter: blur(1px) brightness(1.2);
  }
  80% {
    opacity: 0.8;
    filter: blur(1px) brightness(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0) brightness(1);
  }
}

 /* ===== FOCUS：別コンテンツへのリンクカード ===== */

.pf-focus-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
  }
  
  @media (min-width: 768px) {
    .pf-focus-links {
      gap: 10px;
    }
  }
  
  .pf-focus-card {
    position: relative;
    display: block;
    padding: 9px 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(74, 222, 128, 0.7);
    background: rgba(5, 46, 22, 0.92);
    text-decoration: none;
    color: #bbf7d0;
    box-shadow:
      0 8px 18px rgba(15, 23, 42, 0.8),
      0 0 0 1px rgba(0, 0, 0, 0.9);
    transition:
      background 0.2s ease,
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }
  
  .pf-focus-card::after {
    content: "↗";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #bbf7d0;
    opacity: 0.7;
  }
  
  .pf-focus-card:hover {
    background: radial-gradient(circle at top,
          rgba(74, 222, 128, 0.35),
          rgba(5, 46, 22, 0.96));
    transform: translateY(-1px);
    box-shadow:
      0 12px 26px rgba(15, 23, 42, 0.95),
      0 0 0 1px rgba(0, 0, 0, 1);
    border-color: rgba(190, 242, 100, 0.9);
  }
  
  .pf-focus-tag {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 3px;
    color: #bbf7d0;
  }
  
  .pf-focus-desc {
    display: block;
    font-size: 0.82rem;
    color: #e5f7ec;
    line-height: 1.6;
  }
   
/* =========================================
   FOCUS：リンクカードUI（完全動作版）
   ========================================= */

   .pf-focus-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
  }
  
  .pf-focus-card {
    display: block; /* これがないとカードにならない！ */
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(74, 222, 128, 0.7);
    background: rgba(5, 46, 22, 0.92);
    text-decoration: none;
    color: #bbf7d0;
  
    box-shadow:
      0 8px 18px rgba(15, 23, 42, 0.8),
      0 0 0 1px rgba(0, 0, 0, 0.9);
  
    transition:
      background 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
    position: relative;
  }
  
  /* 矢印アイコン */
  .pf-focus-card::after {
    content: "↗";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.8;
    color: #bbf7d0;
    pointer-events: none;
  }
  
  .pf-focus-card:hover {
    background: radial-gradient(circle at top left,
          rgba(74, 222, 128, 0.4),
          rgba(5, 46, 22, 0.96));
    transform: translateY(-2px);
    border-color: rgba(190, 242, 100, 1);
    box-shadow:
      0 12px 26px rgba(15, 23, 42, 0.95),
      0 0 0 1px rgba(0, 0, 0, 1);
  }
  
  .pf-focus-tag {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #bbf7d0;
  }
  
  .pf-focus-desc {
    display: block;
    color: #e0ffe9;
    font-size: 0.85rem;
    line-height: 1.55;
  }
  