/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: visible;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  padding: 1em 1em;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  border: 1px solid #e50012;
  background: #e50012;
	border-radius: 5px;
}
.btn.full {
  padding: 1em 0px !important;
  width: 100%;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #b20218; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
	border-radius: 5px;
}
/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .btn {
    padding: 0.8em 4em;
  }
  .btn.full {
    padding: 0.5em 0px !important;
  }

}