/* ==========================================================================
   Object / Component / Button
   カンプ実測（PC）:
     ボタン本体 331.56 × 66.15px / 角丸フル / #af5c9f
     外側に 4.25px の #ededed の縁取り（490.17 / 120.00 / 340.07 × 74.66）
     右端に「扉」の装飾 41.82 × 65.16px（本体の上から +26.15px、右へ +14.19px）
       左半分 #fbffeb・右半分 #ededed、上に取っ手 6.62px（左 #628f92・右 #49747b）
     文字 22px / 行送り32px / 字送り0.05em / #ffffff
   ========================================================================== */
.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 25px;
  text-align: center;
  letter-spacing: 0.05em;
  box-shadow: 0 0 0 4.25px var(--color-gray);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

/* 扉（本体より下にはみ出す） */
.c-btn::after {
  content: "";
  position: absolute;
  top: 26.15px;
  right: -14.19px;
  width: 41.82px;
  height: 65.16px;
  border-radius: 25px;
  background: linear-gradient(90deg, #fbffeb 0 50%, #ededed 50% 100%);
}

/* 取っ手 */
.c-btn::before {
  content: "";
  position: absolute;
  top: 35.21px;
  right: 3.41px;
  z-index: 1;
  width: 6.62px;
  height: 6.62px;
  border-radius: 50%;
  background: linear-gradient(90deg, #628f92 0 50%, #49747b 50% 100%);
}

.c-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
