/* 769px以上のとき */
@media screen and (min-width: 769px) {
  .sp-only{
		display:none !important;
	}
}
/* 768px以下のとき */
@media screen and (max-width: 768px) {
  .pc-only{
		display:none !important;
	}
	.top-main-visual__image img{
		right:0% !important;
		left: 50%;
		transform: translateX(-50%);
	}
}

