/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: visible;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  background: #EA907C;
  letter-spacing: 2px;
	border-radius: 30px;
}
.btn.choco{
	 background: #381806;
	
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff !important;
}
.btn:hover span {
  color: #fff;
}
.btn img {
  position: absolute;
	 top: 43%;
  right: -24px;
  width: 40px;
	height: 2px;
  z-index: 1;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #F57A5E; /*背景色*/
  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: 30px;
}
/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn.full {
  padding: 10px 0px !important;
  width: 100%;
}

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

	
}