@charset "utf-8";

.btn-like {
  padding: 12px 24px;
  background-color: #DDDDDD;   /* ボタン色 */
  color: #222222;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;          /* 角丸 */
  cursor: pointer;             /* マウスカーソル */
  text-align: center;
  user-select: none;           /* 文字選択防止 */
  transition: background-color 0.1s ease, transform 0.1s ease;
  display: block;
  margin: 0 auto;
}

.btn-like:hover {
  background-color: #005fa3;
}

.btn-like:active {
  transform: translateY(1px);
  background-color: #004f8a;
}


@media screen and (max-width: 450px) {
  .hide-mobile {
    display: none;
  }
}


