/* ミニ・ヒーロー */
.lk-hero {
  text-align: center;
  padding: 56px 16px 24px;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lk-logo {
  width: 200px;
  height: auto;
  margin-bottom: 8px;
}
.lk-hero h1 {
  margin: 8px 0 4px;
  font-size: 1.6rem;
}
.lk-sub { opacity: .9; margin: 0; }

/* コンテナ */
.lk-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

/* プロフィール */
.lk-profile {
  text-align: center;
  margin-bottom: 12px;
  opacity: .95;
}

/* リンクカード */
.lk-links { margin-top: 8px; }

.lk-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin: 10px 0;
  border-radius: 12px;
  text-decoration: none;
  color: #fff; /* 通常時アイコン・文字白 */
  background: #121212;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.lk-card:hover {
  transform: translateY(-1px);
  background: #151515;
  border-color: rgba(30,144,255, .4);
  color: #1E90FF; /* ホバー時に文字・アイコン青 */
}
.lk-card.lk-main {
  border-color: rgba(30,144,255,.6);
  box-shadow: 0 0 0 1px rgba(30,144,255,.25) inset;
}

.lk-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lk-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

/* タイトル・説明 */
.lk-title { font-weight: 700; }
.lk-desc  { opacity: .9; font-size: .95rem; }
.lk-arrow { opacity: .6; font-size: 1.4rem; }

/* QRブロック（任意） */
.lk-qr { text-align: center; margin-top: 28px; }
.lk-qr h2 { font-size: 1.2rem; margin-bottom: 8px; }
.lk-qrimg {
  width: 180px; height: auto;
  background: #fff; padding: 8px; border-radius: 8px;
}
.lk-qrnote { opacity: .85; margin-top: 6px; }

/* フッター */
.lk-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 24px 16px;
  background: #000;
}
.lk-footer a { color: #fff; text-decoration: none; }
.lk-footer a:hover { text-decoration: underline; }
}
/* ===== アイコンをCSSマスクで描画（通常：白、ホバー：青） ===== */
/* ===== アイコンマスク（色固定） ===== */
.lk-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: #fff;               /* 通常は白 */
  flex: 0 0 auto;

  background-color: #ffffff !important; /* ← 初期状態で白に強制 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
          mask-repeat: no-repeat;
          mask-position: center;
          mask-size: contain;
}

/* 各アイコンのマスク指定 */
.lk-icon.youtube {
  -webkit-mask-image: url('/assets/icons/youtube.svg');
          mask-image: url('/assets/icons/youtube.svg');
}
.lk-icon.instagram {
  -webkit-mask-image: url('/assets/icons/instagram.svg');
          mask-image: url('/assets/icons/instagram.svg');
}
.lk-icon.playlist {
  -webkit-mask-image: url('/assets/icons/playlist.svg');
          mask-image: url('/assets/icons/playlist.svg');
}
.lk-icon.mail {
  -webkit-mask-image: url('/assets/icons/mail.svg');
          mask-image: url('/assets/icons/mail.svg');
}
.lk-icon.building {
  -webkit-mask-image: url('/assets/icons/building.svg');
          mask-image: url('/assets/icons/building.svg');
}

/* ホバー時に青に */
.lk-card:hover .lk-icon {
  background-color: #1E90FF !important;
}

/* 初期表示から確実に白にする */
.lk-card .lk-icon {
  background-color:#ffffff; /* 初期も白 */
}

/* ホバー時に青にする */
.lk-card:hover .lk-icon {
  background-color:#1E90FF;
}

/* スマホ対応 */
@media (max-width: 560px) {
  .lk-logo { width: 170px; }
  .lk-hero h1 { font-size: 1.4rem; }
  .lk-card { padding: 12px 14px; }
  .lk-title { font-size: 1rem; }
  .lk-desc  { font-size: .9rem; }
}
