@charset "UTF-8";
/* =============================================================
   リンクシート(独立1ページ) 固有スタイル (links.css)
   名刺QRの遷移先。サイト本体と世界観を統一(青×ゴールド/スクエア)。
   ※ カラー変数・フォントは base.css を流用。ヘッダー/フッターは持たない。
   ============================================================= */

body.is-linkpage {
  background: var(--navy-deep);
  min-height: 100svh;
}

.linksheet {
  min-height: 100svh;
  background: var(--grad-konjo);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 9vh, 96px) clamp(20px, 6vw, 40px) clamp(40px, 7vh, 72px);
}
/* 質感の粒子(サイト本体と統一) */
.linksheet::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.4px);
  background-size: 6px 6px; opacity: 0.4; mix-blend-mode: overlay; pointer-events: none;
}

.ls-inner {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---- ヘッド(アバター/名前/肩書) ---- */
.ls-avatar {
  position: relative;
  width: clamp(104px, 30vw, 128px);
  aspect-ratio: 1 / 1;
  margin-bottom: clamp(20px, 4vw, 28px);
}
.ls-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 56% 30%;
  border-radius: var(--radius);
  display: block;
}
.ls-avatar .frame {
  position: absolute; inset: -8px;
  border: 1px solid var(--gold);
  opacity: 0.6; border-radius: var(--radius);
}

.ls-name {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  letter-spacing: 0.16em;
  color: var(--paper);
  line-height: 1.4;
}
.ls-name .en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.62em;
  letter-spacing: 0.28em;
  color: var(--blue-pale);
  margin-top: 0.7em;
}
.ls-role {
  margin-top: 1em;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}
.ls-tagline {
  margin-top: 1.2em;
  font-size: 0.84rem;
  line-height: 2;
  color: var(--blue-mist);
  max-width: 24em;
}

/* 金の細い区切り */
.ls-divider {
  width: 46px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
  margin: clamp(26px, 5vw, 36px) 0;
}

/* ---- リンク群(縦並び) ---- */
.ls-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.6vw, 16px);
}
.ls-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: clamp(15px, 3.4vw, 19px) clamp(16px, 4vw, 22px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.ls-link:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}
.ls-link .ls-ic {
  flex: none;
  width: 30px; height: 30px;
  color: var(--gold-light);
  transition: color 0.4s var(--ease);
}
.ls-link:hover .ls-ic { color: var(--paper); }
.ls-link .ls-ic svg { width: 100%; height: 100%; fill: currentColor; }

.ls-link .ls-txt {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.28em;
  min-width: 0;
}
.ls-link .ls-label {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}
.ls-link .ls-sub {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--blue-pale);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ls-link .ls-arrow {
  flex: none;
  font-family: var(--font-en);
  color: var(--gold-light);
  opacity: 0.7;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.ls-link:hover .ls-arrow { transform: translateX(4px); opacity: 1; }

/* メイン(公式サイト)を少し強調 */
.ls-link.is-primary {
  background: rgba(226,200,132,0.12);
  border-color: rgba(226,200,132,0.5);
}

/* ---- フッター ---- */
.ls-foot {
  margin-top: clamp(34px, 6vw, 48px);
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--blue-pale);
  line-height: 2;
}
.ls-foot a { color: var(--blue-pale); border-bottom: 1px solid rgba(198,162,83,0.5); }
.ls-foot a:hover { color: var(--gold-light); }
