body {
	/*設置する親要素ページ全体ならbodyなど*/
  position: relative;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.contents {
  /*サンプルはfixedの確認のためにheight指定しています。*/
  height: 10px;
}
/*SNSリンクブロックの位置設定*/
.cp_snslink01 {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
}
/*それぞれのSNS iconの設定*/
.cp_snslink01 .cp_link {
  position: relative;
  display: block;
  width: 56px;
  height: 40px;
  padding: 0px;
  cursor: pointer;
}
.cp_snslink01 .cp_link::before {
  position: absolute;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  width: 56px;
  height: 40px;
}
.cp_snslink01 .cp_link.order::before {
  background-image: url(https://sworkcare.com/img/mousikomi.svg);
}
.cp_snslink01 .cp_link.price::before {
  background-image: url(https://sworkcare.com/img/price.svg);
}
.cp_snslink01 .cp_link.inquiry::before {
  background-image: url(https://sworkcare.com/img/inquiry.svg);
}
/*hoverで表示されるブロックの設定*/
.cp_snslink01 .cp_link .nav-label {
  position: absolute;
  top: 0;
  right: 56px;/*.cp_linkの幅＋padding*/
  display: flex;
  align-items: center;
  width: 150px;
  height: 40px;/*.cp_linkの高さ＋padding*/
  padding: 0 20px;
  white-space: nowrap;
}
.cp_snslink01 .cp_link a,
.cp_snslink01 .cp_link:hover {
  color: #ffffff;
}
/*申込*/
.cp_snslink01 .order,
.cp_snslink01 .order:hover,
.cp_snslink01 .order:hover .nav-label {
  background: #00A0EA;/*iconの背景とhover後の色*/
}
.cp_snslink01 .order .nav-label {
  background: #5d9afc;/*hover時最初の色*/
}
/*twitter*/
.cp_snslink01 .price,
.cp_snslink01 .price:hover,
.cp_snslink01 .price:hover .nav-label {
  background: #6fba2c;/*iconの背景とhover後の色*/
}
.cp_snslink01 .twitter .nav-label {
  background: #dddddd;/*hover時最初の色*/
}
/*instagram*/
.cp_snslink01 .inquiry,
.cp_snslink01 .inquiry:hover,
.cp_snslink01 .inquiry:hover .nav-label {
  background: linear-gradient(45deg, #FF7A00 0%, #FF0169 50.06%, #D300C5 99.36%);/*iconの背景とhover後の色*/
}
.cp_snslink01 .inquiry .nav-label {
  background: #D300C5;/*hover時最初の色*/
}
/* effect */
.cp_snslink01 .cp_link.nav-label,
.cp_snslink01 .cp_link.cp_link:hover .nav-label {
  transition: transform 0.4s ease, background 0.4s ease 0.1s;
}
.cp_snslink01 .cp_link.cp_link .nav-label {
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right 100%;/*伸縮の基点*/
}
.cp_snslink01 .cp_link.cp_link:hover .nav-label {
  transform: scaleX(1);
}