/* -----------------------------------
Template :https://blanche-toile.com/web/js-copy-clipboard

NOTE: ページのURLをコピーするボタンの作成

--------------------------------------*/
#copy-page {
  display: inline-block;
  width: 140px;
  padding: 4px 5px;
  font-size: 14px;
  font-weight:bold;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  background: #1876f1;
  outline: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#cAction{
  font-size: 14px;
  font-weight:bold;
}

#copy-page:hover {
  cursor: pointer;
  opacity: .7;
}

#copy-page-2 {
  display: inline-block;
  width: 240px;
  padding: 10px 10px;
  font-size: 18px;
  font-weight:bold;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  background: #1876f1;
  outline: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#cAction-2{
  font-size: 18px;
  font-weight:bold;
}
#copy-page-2:hover {
  cursor: pointer;
  opacity: .7;
}