a.toggle {
	cursor: pointer !important;
}

:root {
	--color-1: rgba(54, 50, 44, 0.8);
}

:root {
	--color-2: #fff7ef;
}

/*按鈕顏色*/
:root {
	--color-3: hsl(240, 8%, 16%);
}

.title-yellow {
	color: #e7e68b !important;
}

/*var(--color-1)*/

/************************************/
/*按鈕*/
/************************************/
section#social_area {
	padding: 0 !important;
	margin: 0 !important;
}

#socail_icon_box {
	position: fixed;
	right: -7em;
	top: 8em;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
	z-index: 2500;
	opacity: 0.8;
	-o-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

#socail_icon_box:hover {
	opacity: 1;
}

#socail_icon_box a {
	background-color: var(--color-1);
	padding: 0.5em 1em;
	min-width: 11em;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
	right: 0;
	position: relative;
	-o-transition: right 0.35s;
	-moz-transition: right 0.35s;
	-webkit-transition: right 0.35s;
	transition: right 0.35s;
	margin-bottom: 0.5em;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

#socail_icon_box a:hover {
	right: 6.5em;
	cursor: pointer;
}

#socail_icon_box a img {
	width: 2em !important;
	margin-right: 1em;
}

#socail_icon_box a p {
	color: var(--color-2);
	line-height: 2em;
	font-size: 1.2em;
}

@media screen and (max-width: 768px) {
	#socail_icon_box {
		right: -8em;
	}
}

/****************/
/*手機板按鈕*/
/****************/
@media screen and (max-width: 575px) {
	#socail_icon {
		background-color: var(--color-1);
		border-radius: 0;
		position: fixed;
		width: 100%;
		left: 0;
		bottom: 0;
		padding-bottom: 1em;
	}

	#socail_icon_box {
		position: relative;
		right: unset;
		top: unset;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;

		-ms-flex-align: start !important;
		align-items: flex-start !important;

		-ms-flex-direction: row !important;
		flex-direction: row !important;

		width: 75%;
		margin-left: 3%;
	}

	#socail_icon_box a {
		background-color: unset;
		padding: 1em 0em;
		min-width: 1em;
		width: 50%;
		margin-bottom: 0em;
		box-shadow: unset;

		-ms-flex-pack: center !important;
		justify-content: center !important;

	}

	#socail_icon_box a:hover {
		right: 0em;
	}

	#socail_icon_box a img {
		width: 3em !important;
	}

	#socail_icon_box a p {
		line-height: 2;
		font-size: 1.6em;
		letter-spacing: 2px;
		font-weight: 300 !important;
	}
}

/**/



/************************************/
/*按鈕特效*/
/************************************/

@keyframes sheen {
	0% {
		transform: skewY(-45deg) translateX(0);
	}

	100% {
		transform: skewY(-45deg) translateX(12.5em);
	}
}

a.shine {
	color: var(--color-1);
	border: 2px solid var(--color-3);
	position: relative;
	overflow: hidden;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a.shine:before {
	content: '';
	background-color: rgba(255, 255, 255, 0.1);
	height: 100%;
	width: 3em;
	display: block;
	position: absolute;
	top: 0;
	left: -4.5em;
	transform: skewX(-45deg) translateX(0);
	-o-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	transition: none;
}

a.shine:hover {
	background-color: var(--color-3);
	color: rgba(255, 255, 255, 0.6);
}

a.shine:hover:before {
	transform: skewX(-45deg) translateX(13.5em);
	-o-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}