/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background-color: #f5f5f5;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* 背景 */
.background {
  background: url("plufow-le-studio-GIBqrWNIZW8-unsplash.jpg") no-repeat center
    center/cover;
  filter: brightness(0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* メイン */
.container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
  backdrop-filter: blur(4px);
}

/* プロフィール */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #111;
}
.subtitle {
  font-size: 0.95rem;
  color: #444;
  margin: 8px 0 20px;
}
.desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #333;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

p {
  overflow-wrap: normal;
  word-break: keep-all;
}

/* リンクカード */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  color: #000;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* アイコン部分 */
.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
}

/* テキスト部分 */
.link-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.4;
}

.link-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 3px;
}

.link-text p {
  text-align: left;
  font-size: 0.82rem;
  color: #333;
  opacity: 0.9;
}

/* フッター */
.footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #555;
  opacity: 0.8;
}

.footer .credit {
  margin-top: 6px;
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer .credit a {
  color: #555;
  text-decoration: underline;
}

.footer .credit a:hover {
  color: #000;
}
