/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.nusep_btn.full {
  padding: 8px 0px !important;
  width: 100%;
}
/*== ボタン共通設定 */
.nusep_btn.fbtn {
  background: #000;
  padding: 8px 50px;
}
.nusep_btn.fbtn2 {
  margin: 1em auto 0;
  background: #06C755;
  padding: 8px 50px;
  border: none;
}
.nusep_btn.fbtn2 img {
  position: inherit;
  top: inherit;
  right: inherit;
  z-index: 3;
  width: 15px !important;
  margin: 0 5px 0 0;
}
.nusep_btn {
  position: relative;
  overflow: visible;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555;
  padding: 5px 50px;
  text-align: center;
  outline: none;
  transition: ease .2s;
  border-radius: 30px;
}
.nusep_btn img {
  position: absolute;
  top: 15px;
  right: -20px;
  width: 30px !important;
  z-index: 3;
}
.nusep_btn.margin {
  margin-bottom: 8px;
}
/*ボタン内spanの形状*/
.nusep_btn.fbtn span {
  color: #fff;
}
.nusep_btn.fbtn2 span {
  color: #fff;
}
.nusep_btn span {
  position: relative;
  z-index: 3;
  color: #333;
}
.nusep_btn:hover span {
  color: #fff;
}
.nusep_btn.pink {
  background: #DBB1A7;
  border: none;
  padding: 7px 50px;
}
.nusep_btn.pink span {
  color: #fff;
}
.nusep_btn.pink::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
	font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  z-index: 2;
  transition: ease .2s;
}
.nusep_btn.pink:hover::after {
  right: 10px;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333;
  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);
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .nusep_btn.fbtn2 img {
    padding: 0 0 3px;
    width: 20px !important;
    margin: 0 5px 0 0;
  }
  .nusep_btn.pink {
    padding: 7px 90px;
  }
}