/**
 * WP Simple Like
 *
 * いいねボタン
 */


/* ---------------------------------------------------------
   外側
--------------------------------------------------------- */

.wpsl-like-wrap {
  margin: 30px 0 32px;
  text-align: center;
  background-color: #ffeeed;
  border-radius: 10px;
  padding: 1px 27px;
}


/* ---------------------------------------------------------
   ボタン
--------------------------------------------------------- */

.wpsl-like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border: 2px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #444;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}


/* ---------------------------------------------------------
   マウスを乗せたとき
--------------------------------------------------------- */

.wpsl-like-button:hover {
  border-color: #ff5e5e;
}


/* ---------------------------------------------------------
   いいね済み
--------------------------------------------------------- */

.wpsl-like-button.is-liked {
  border-color: #e66;
  background: #ffeeed;
  color: #e33;
}


/* ---------------------------------------------------------
   ハート
--------------------------------------------------------- */

.wpsl-like-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.wpsl-heart-svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition:
		fill 0.2s ease,
		stroke 0.2s ease,
		transform 0.2s ease;
}

/* いいね済み */
.wpsl-like-button.is-liked {
	border-color: #ff6b81;
	background: #fff5f7;
	color: #ff4f6d;
}

.wpsl-like-button.is-liked .wpsl-heart-svg {
	fill: currentColor;
	stroke: currentColor;
	transform: scale(1.05);
}

.wpsl-like-label {
	font-size: 15px;
}

.wpsl-like-count {
	min-width: 1em;
	font-weight: 600;
}

.wpsl-like-button.is-loading {
	opacity: 0.6;
	cursor: wait;
}

.wpsl-like-button:disabled {
	cursor: wait;
}

.wpsl-like-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}
.wpsl-like-wrap > p {
  margin-bottom: 8px;
}

/* ---------------------------------------------------------
   ラベル
--------------------------------------------------------- */

.wpsl-like-label {

	font-size: 15px;

}


/* ---------------------------------------------------------
   カウント
--------------------------------------------------------- */

.wpsl-like-count {

	min-width: 1em;

	font-weight: 600;

}


/* ---------------------------------------------------------
   通信中
--------------------------------------------------------- */

.wpsl-like-button.is-loading {

	opacity: 0.6;

	cursor: wait;

}


/* ---------------------------------------------------------
   無効状態
--------------------------------------------------------- */

.wpsl-like-button:disabled {

	cursor: wait;

}


/* ---------------------------------------------------------
   キーボード操作
--------------------------------------------------------- */

.wpsl-like-button:focus-visible {

	outline: 2px solid currentColor;

	outline-offset: 3px;

}

