@media screen and (min-width: 769px) {
	.sns_box {
		display: flex;
		justify-content: center;
		margin-bottom: 10px;
	}

	.sns_box .Apple, .Google, .Facebook, .Yahoo {
		margin: 10px 10px;
		height: 40px;
		cursor: pointer;
	}

	.sns_box img {
		height: 40px;
	}
}

@media screen and (max-width: 768px) {
	.sns_box {
		display: block;
	}

	.sns_box .Apple, .Google, .Facebook, .Yahoo {
		margin-bottom: 16px;
		cursor: pointer;
	}

	.sns_box img {
		height: 40px;
	}
}