/* ==========================================================================
   Gemaris スタッフ紹介（修正版：バストアップ安定版）
   ========================================================================== */

/* 背景 */
body.gemaris-theme {
  background-color: #fdfaf5 !important;
  color: #3a241c !important;
}

/* =========================
   プロフィールカード
========================= */
.staff-profile {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  background: #ffffff !important;
  border: 1px solid #c9b195 !important;
  border-radius: 12px !important;
  padding: 30px !important;
  max-width: 750px !important;
  margin: 0 auto 30px !important;
  position: relative !important;
  box-shadow: 0 4px 15px rgba(160, 130, 100, 0.05) !important;
}

.staff-profile::before {
  content: '' !important;
  position: absolute !important;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid #f0e6da !important;
  border-radius: 9px !important;
  pointer-events: none !important;
}

/* =========================
   アイコン（重要部分）
========================= */
.staff-img {
  flex-shrink: 0 !important;
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid #c9b195 !important;
  position: relative;
}

/* ★ここが本体（修正ポイント） */
.staff-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: none !important; /* ←重要：ズーム廃止 */
}

/* =========================
   顔位置調整（ここでバストアップ調整）
========================= */
.img-kaicho {
  object-position: center 20% !important;
}

.img-hina {
  object-position: center 10% !important;
}

.img-makoto {
  object-position: center 12% !important;
}

.img-risa {
  object-position: center 35% !important;
}

/* =========================
   テキスト
========================= */
.staff-info h3 {
  font-size: 20px !important;
  color: #3a241c !important;
  margin: 0 0 5px 0 !important;
  font-weight: bold !important;
}

.staff-role {
  font-size: 13px !important;
  color: #6a1b1b !important;
  font-weight: bold !important;
  margin-bottom: 10px !important;
}

.staff-desc {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: #555555 !important;
}

/* =========================
   マスコット
========================= */
.character-message {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  background: #f4eee6 !important;
  border-radius: 12px !important;
  padding: 30px !important;
  max-width: 750px !important;
  margin: 50px auto 0 !important;
}

.character-image {
  width: 110px;
  flex-shrink: 0;
}

.character-image img {
  width: 100%;
  height: auto;
}

/* =========================
   スマホ
========================= */
@media screen and (max-width: 768px) {

  .staff-profile {
    flex-direction: column !important;
    text-align: center !important;
    padding: 25px 20px !important;
  }

  .staff-img {
    width: 100px !important;
    height: 100px !important;
  }

  .staff-desc {
    font-size: 13.5px !important;
    text-align: left !important;
  }

  .character-message {
    flex-direction: column !important;
    text-align: center !important;
  }
}