/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.btn {
  display: inline-block;
  padding: 1em 3em;
  text-decoration: none;
  color: #fff;
  transition: .4s;
  background: #5f5f5f;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.btn:hover {
  opacity: 0.8;
  background: #000;
}
.btn a:link {
  color: #fff !important;
}
.btn100 {
  display: inline-block;
  padding: 0.8em 0;
  text-decoration: none;
  color: #fff;
  transition: .4s;
  border: none; /* 枠線を消す */
  outline: none; /* クリックしたときに表示される枠線を消す */
  background: transparent; /* 背景の灰色を消す */ background: #F29600;
  border: 1px solid #F29600;
  text-align: center;
  width: 100%;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.btn100:hover {
  opacity: 0.8;
  background: #fff;
  color: #fff;
  cursor: pointer;
}
a.btn100:link {
  color: #fff!important;
}
a.btn100:hover {
  color: #F29600!important;
}





.btnarrow {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #F29600;
  padding: 10px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #F29600;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s linear;
  letter-spacing: 2px;
  font-size: 1.3rem;
	border-radius: 30px;
}
.btnarrow {
  color: #F29600 !important;
}
.btnarrow:hover {
  background: #F29600;
  color: #fff !important;
}
/*矢印と下線の形状*/
.btnarrow::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #F29600;
  /*アニメーションの指定*/
  transition: all .2s linear;
}
.btnarrow::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 23%;
  right: -21px;
  /*矢印の形状*/
  width: 1px;
  height: 12px;
  background: #F29600;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all .2s linear;
}
/*hoverした際の移動*/
.btnarrow:hover::before {
  right: -30px;
}
.btnarrow:hover::after {
  right: -25px;
}



.btnarrow_g {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #004A28;
  padding: 10px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #004A28;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s linear;
  letter-spacing: 2px;
  font-size: 1.3rem;
	border-radius: 30px;
}
.btnarrow_g {
  color: #004A28 !important;
}
.btnarrow_g:hover {
  background: #004A28;
  color: #fff !important;
}
/*矢印と下線の形状*/
.btnarrow_g::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #004A28;
  /*アニメーションの指定*/
  transition: all .2s linear;
}
.btnarrow_g::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 23%;
  right: -21px;
  /*矢印の形状*/
  width: 1px;
  height: 12px;
  background: #004A28;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all .2s linear;
}
/*hoverした際の移動*/
.btnarrow_g:hover::before {
  right: -30px;
}
.btnarrow_g:hover::after {
  right: -25px;
}


.btnarrow_w.full{
	padding: 10px 0!important;
	width: 80%!important;
	margin: 0 auto 1em;
}


.btnarrow_w {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #fff;
  padding: 10px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s linear;
  letter-spacing: 2px;
  font-size: 1.3rem;
	border-radius: 30px;
}
.btnarrow_w {
  color: #fff !important;
}
.btnarrow_w:hover {
  background: #fff;
  color: #F29600 !important;
}
/*矢印と下線の形状*/
.btnarrow_w::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all .2s linear;
}
.btnarrow_w::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 23%;
  right: -21px;
  /*矢印の形状*/
  width: 1px;
  height: 12px;
  background: #fff;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all .2s linear;
}
/*hoverした際の移動*/
.btnarrow_w:hover::before {
  right: -30px;
}
.btnarrow_w:hover::after {
  right: -25px;
}


/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .btn {
    padding: 1em 5em;
  }
  .btn100 {
    width: 100%;
    padding: 1.0rem 0rem;
  }
  .btnarrow {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
  .btnarrow::after {
    top: 29%;
    right: -21px;
  }
  
	  .btnarrow_g {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
  .btnarrow_g::after {
    top: 29%;
    right: -21px;
  }
	
		  .btnarrow_w {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
  .btnarrow_w::after {
    top: 29%;
    right: -21px;
  }
}