@charset 'UTF-8';

/* スマホプレビューボタン */
.sp-preview-button {
  height: 70px;
  margin: 8px 0 23px 0;
  width: 350px;
  align-items: center;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  padding: 9.6px 12.8px;
  text-align: left;
  transition-duration: .2s;
  transition-property: color background;
  background: #419cd9;
  &:hover {
    background: #2473c2;
  }
  /* アイコンを追加 */
  &:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 4px;
    background-image: url(/common/img/parts/smartphone.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media print {
  .sp-preview-button {
    visibility: hidden;
  }
}

