/* Icon 1 */

.third-button { border-color: rgba(0,0,0,0) !important; }	/* ハンバーガーメニューの枠を消す */
.third-button:focus { outline: none !important; }

.animated-icon3 {
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
}

.animated-icon3 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.animated-icon3 span {
	background: #cccccc;
}

/* Icon 4 */

.animated-icon3 span:nth-child(1) {
	top: 0;
	transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
	top: 10px;
	transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
	top: 20px;
	transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
	transform: rotate(45deg);
	top: 0;
	left: 8px;
}

.animated-icon3.open span:nth-child(2) {
	width: 0;
	opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
	transform: rotate(-45deg);
	top: 21px;
	left: 8px;
}
