/* 全体のデザイン設定白FFFFFFピンクfff5f7 */
body {
  font-family: sans-serif;
  background-color: #FFFFFF;
  color: #333;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

/* プロフィール画像 */
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
}

h1 {
  font-size: 1.0rem;
  margin: 0 0 0 0;
}

.bio {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
}

/* リンクカード */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* 画像用 */
.image-card {
  flex-direction: column;
  padding: 12px;
}

.image-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.card-title {
  margin-top: 8px;
  font-size: 0.9rem;
}

/* SNSアイコン */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px; /* アイコン同士の隙間 */
  margin-bottom: 24px;
}

/* 丸いアイコン */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  color: #333333;
  border-radius: 50%; /* 丸にする */
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

/* マウスを乗せた時の動き */
.icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  background-color: #f8f9fa;
}

/* 画像とテキスト */
.image-section {
  background: transparent; /* 背景を透明にする */
  padding: 0;               /* 余計な隙間をなくす */
  box-shadow: none;         /* 影を消す */
  margin-bottom: 0px;      /* 次の要素との間隔 */
  text-align: left;       /* 左揃え */
}

/* 見出し */
.section-title {
  font-size: 0.9rem;
  font-weight: 600; /* 文字の濃さ */
  color: #1a1a1a;   /* 色 */
  margin: 10 0 0px 0;
}

/* 普通の文字 */
.section-text {
  font-size: 0.8rem;
  font-weight: normal; /* 太さ */
  color: #555555;      /* 色 */
  line-height: 1.6;    /* 行の間隔 */
  margin: 0 0 1px 0;
}

/* 画像の設定 */
.section-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-top: 0;
}

/* 画像の下の隙間を小さく */
.section-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-bottom: 16px; /* ←ここで画像間の隙間を調整 */
}

/* 一番最後だけ下の隙間をなくす */
.section-img:last-child {
  margin-bottom: 0;
}