* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  background: #fdf8f5;
  color: #444;
  line-height: 1.85;
  font-size: 15px;
}

/* ヒーロー */
.hero {
  background: linear-gradient(160deg, #fce4ec 0%, #e8eaf6 100%);
  padding: 56px 24px 48px;
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #f9a8c4;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initials {
  font-size: 28px;
  font-weight: bold;
  color: #f48fb1;
}

.name {
  font-size: 24px;
  font-weight: bold;
  color: #3d3d3d;
  margin-bottom: 6px;
}

.role {
  font-size: 14px;
  color: #9e9e9e;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.catch {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #f9a8c4;
  color: #e06c91;
  border-radius: 24px;
  padding: 6px 24px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* コンテナ */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 16px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* カード */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 13px;
  font-weight: bold;
  color: #e06c91;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fce4ec;
}

.body-text {
  color: #555;
  font-size: 15px;
}

/* できること */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-icon {
  color: #f48fb1;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-name {
  font-weight: bold;
  color: #3d3d3d;
  font-size: 15px;
}

.service-desc {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}

/* SNS */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fdf8f5;
  transition: background 0.2s;
}

.link-item:hover {
  background: #fce4ec;
}

.link-label {
  font-size: 13px;
  font-weight: bold;
  color: #e06c91;
  min-width: 80px;
}

.link-url {
  font-size: 14px;
  color: #7986cb;
}

/* お問い合わせ */
.contact-card {
  text-align: center;
}

.contact-card .body-text {
  margin-bottom: 20px;
  font-size: 14px;
  color: #888;
}

.mail-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f48fb1, #9fa8da);
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(244, 143, 177, 0.35);
  transition: opacity 0.2s;
}

.mail-btn:hover {
  opacity: 0.85;
}

/* フッター */
footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: #bbb;
}

/* レスポンシブ */
@media (max-width: 480px) {
  .card {
    padding: 22px 18px;
  }

  .name {
    font-size: 20px;
  }
}
