@charset "UTF-8";
#go_form {
	position: fixed;
	bottom: 70px;
	top: 12%;
	left: calc(50% - 108px);
	z-index: 999;
	transition: .3s;
	/* 非表示にする */
	opacity: 0;
	visibility: hidden;
	width: 216px;
	height: 100px;
}
#go_form.is-active{
  /* 表示する */
  opacity: 1;
  visibility: visible;
}
#go_form img {
	height: 100px;
	width: auto;
}
