@charset "utf-8";

/* fixedItem
-------------------------------------------------- */
.fixedItem{
	display: inline-block;
	transform: translateX(-100px);
	background: #fff;
	padding: 15px 10px;
	border-radius: 0 20px 20px 0;
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 150;
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
	opacity: 0;
}
.fixedItem.show{
	transform: translateX(0);
	opacity: 1;
}
.fixedItem-sns{
	width: 34px;
}
.fixedItem-sns div{
	margin-bottom: 7px;
}
.fixedItem-sns div:last-child{
	margin-bottom: 0;
}
.fixedItem-sns img{
	width: 100%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media screen and (max-width: 736px) {
	.fixedItem{
		display:none;
		/*background: none;
		padding: 0;
		border-radius: 0;
		position: fixed;
		bottom: auto;
		left: 10px;
		top: 85px;
		right: auto;
		z-index: 9999;
		box-shadow: none;
		width: 60px;
		display: flex;
		justify-content: center;
		transform: translateX(0);
		opacity: 1;*/
	}
	.fixedItem-sns{
		width: 6vw;
		max-width: 38px;
		min-width: 36px;
	}
}
