/* 追従ボタン */
.p_following{
  position: relative;
  z-index: 100;
}
.p_following__link{
  position: fixed;
  text-decoration: none;
  background-color: #00146E;
  width: clamp(44px,16vw,100px);
  height: clamp(44px,16vw,100px);
  border-radius: 50%;
  right: 20px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p_following__link.-max{
  position: absolute;
  bottom: 5px;
}
.p_following__icon{
  font-size: 0;
  display: block;
}
svg.p_following__icon_i {
  width: clamp(1rem, 2.5vw, 2rem);
  height: clamp(0.7rem, 1.3vw, 1.7rem);
  max-width: 90%;
}
svg.p_following__icon_i line{
  stroke: white;
  stroke-linecap: round;
  stroke-width: 10;
}
.p_following__link_i{
  font-size: clamp(0.75rem, 2vw, 1.4rem);
  color: #fff;
  font-weight: bold;
  font-weight: normal;
  line-height: 1.3;
  text-align: center;
  margin-top: clamp(3px, 0.5vw, 1rem);
}
a.p_following__link{
  transition: transform 0.5s;
}
a.p_following__link:hover{
  transform: scale(1.2);
}
a.p_following__link:focus{
  transform: scale(1.2);
}
@media (max-width:1024px){
  .p_following__link{
    bottom: 70px;
  }
}
@media (min-width: 767px) and (max-width:1024px){
  .p_following__link{
    bottom: 70px !important;
  }
}
@media screen and (min-width: 767px){
	.p_following{
	  position: relative;
	  z-index: 100;
	}
	.p_following__link{
	  position: fixed;
	  text-decoration: none;
	  background-color: #00146E;
	  width: clamp(44px,11vw,100px);
	  height: clamp(44px,11vw,100px);
	  border-radius: 50%;
	  right: 20px;
	  bottom: 40px;
	  z-index: 3;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	}
	.p_following__link.-max{
	  position: absolute;
	  bottom: 5px;
	}
	.p_following__icon{
	  font-size: 0;
	  display: block;
	}
	svg.p_following__icon_i {
	  width: clamp(1rem, 2.5vw, 2rem);
	  height: clamp(0.7rem, 1.3vw, 1.7rem);
	  max-width: 90%;
	}
	svg.p_following__icon_i line{
	  stroke: white;
	  stroke-linecap: round;
	  stroke-width: 10;
	}
	.p_following__link_i{
	  font-size: clamp(0.75rem, 2vw, 1.4rem);
	  color: #fff;
	  font-weight: bold;
	  font-weight: normal;
	  line-height: 1.3;
	  text-align: center;
	  margin-top: clamp(3px, 0.5vw, 1rem);
	}
	a.p_following__link{
	  transition: transform 0.5s;
	}
	a.p_following__link:hover{
	  transform: scale(1.2);
	}
	a.p_following__link:focus{
	  transform: scale(1.2);
	}
}