a.toggle {
	cursor: pointer !important;
}

:root {
	--color-1: rgba(54, 50, 44, 0.8);
	--color-2: #fff7ef;
	--color-3: hsl(240, 8%, 16%);
}

.title-yellow {
	color: #e7e68b !important;
}

/*var(--color-1)*/
/************************************/
/*版權*/
/************************************/

.copyright {
	padding: 2em 0;
}

.copyright p {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
	padding: 0 1em;
}

/************************************/
/*按鈕*/
/************************************/
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;
	visibility: hidden;
	-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 .8em;
	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: 2.5em !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; */
		display: none;
		z-index: 5;
	}

	#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 .5em;
		min-width: 1em;
		width: 30%;

		margin-bottom: 0em;
		box-shadow: unset;

		-ms-flex-pack: justify !important;
		justify-content: space-between !important;

		-ms-flex-align: center !important;
		align-items: center !important;

		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	#socail_icon_box a:hover {
		right: 0em;
	}

	#socail_icon_box a img {
		width: 2.5em !important;
		margin-right: 0em;
		margin-bottom: 0.8em;
	}

	#socail_icon_box a p {
		line-height: 1em;
		font-size: 1em;
		letter-spacing: 2px;
		font-weight: 300 !important;
	}
}

/**/

/************************************/
/*廣告*/
/************************************/

.ad_box {
	width: 13em;
	position: absolute;
	left: 1em;
	top: 80%;
	-o-transition: top 0.35s;
	-moz-transition: top 0.35s;
	-webkit-transition: top 0.35s;
	transition: top 0.35s;
	display: none;
}

.ad_box .coll_close {
	right: 0;
	top: 0;
	padding: 0;
	border-radius: 1.6em;
	width: 1.6em;
	height: 1.6em;
	font-size: 1.2em;
	line-height: 1;
	padding-top: 0.2em;
	background-color: rgba(0, 0, 0, 0.2);
}

.ad_box.open {
	width: 5em;
	position: absolute;
	left: 1em;
}

.ad_box.open .coll_close {
	top: -1em;
	width: 1.8em;
	height: 1.8em;
	font-size: 1em;
	line-height: 1.2;
}

@media screen and (max-width: 575px) {
	.ad_box {
		width: 18em;
	}

	.ad_box.open {
		width: 8em;
	}

	.ad_box .coll_close {
		font-size: 2.5em;
	}

	.ad_box.open .coll_close {
		font-size: 2em;
	}
}

/************************************/
/*展開內容*/
/************************************/

.coll_close {
	top: 0;
	right: 0;
	border-radius: 50%;
	color: #fff !important;
	padding: 15px;
	position: absolute;
	font-size: 2em;
	text-align: center;
	z-index: 2000 !important;
}

.coll_close:hover {
	cursor: pointer;
	transform: scale(1.1, 1.1);
	transition: 0.35s all;
	-webkit-transition: 0.35s all;
	-moz-transition: 0.35s all;
	-o-transition: 0.35s all;
	-ms-transition: 0.35s all;
}

.s_overlay {
	position: fixed;
	background: #2c4d50;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	opacity: 0;
	/* visibility: hidden; */
	visibility: visible;

	-o-transition: opacity 0.35s, visibility 0.35s, width 0.35s;
	-moz-transition: opacity 0.35s, visibility 0.35s, width 0.35s;
	-webkit-transition: opacity 0.35s, visibility 0.35s, width 0.35s;
	transition: opacity 0.35s, visibility 0.35s, width 0.35s;
	overflow: hidden;
	z-index: 2005;
	font-size: 1vw;
}

.s_overlay.open {
	visibility: visible;
	opacity: 1;
	top: 0;
	right: 0;
	width: 100%;
}

/**********************/
/*展開內容背景*/
/**********************/

.s_bg {
	width: 100%;
	height: 100%;
	background: url(../images/social/s_bg1.jpg) no-repeat center center;
	background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
}

.s_bg::before {
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #2c4d50;
	opacity: 0.8;
	position: absolute;
}

/*****
act_act
*******/
#act_act .s_bg {
	background: url(../images/social/s_bg2.jpg) no-repeat center right 37%;
}

#act_act .s_bg::before {
	background-color: #dbc6c1;
}

#act_act .overlay-menu .social_title {
	background: #3f2033;
}

#act_act .overlay-menu .social_title::before {
	content: url(../images/social/s_act_bg.png);
	right: 5%;
	top: unset;
	bottom: -2%;
}

/*****
fb_fb
*******/
#fb_fb .s_bg {
	background: url(../images/social/s_bg3.jpg) no-repeat center center;
}

#fb_fb .s_bg::before {
	background-color: #bfc4d1;
}

#fb_fb .overlay-menu .social_title {
	background: #3e537c;
}

#fb_fb .overlay-menu .social_title::before {
	content: url(../images/social/s_fb_bg.png);
	right: 5%;
	top: unset;
	bottom: -11%;
}

/******fb_fb*******/
.overlay-menu .social_title {
	background: hsl(240, 8%, 16%);
	height: 50vh;
	opacity: 0.95;
	overflow: hidden;
	z-index: 1051;
	text-align: left;
	position: relative;
}

.overlay-menu .social_title::before {
	content: url(../images/social/s_line_bg.png);
	right: 0%;
  top: 5%;
	opacity: 0.05;
	position: absolute;
}
.overlay-menu  .social_box{
	top: 24%;
	position: relative;
}

.overlay-menu .social_title_con {
	position: absolute;
	width: 90%;
	left: 5%;
	bottom: 15%;
}

.overlay-menu .social_con {
	/* background: hsl(240, 8%, 16%); */
	height: 50vh;
	text-align: left;
}

.overlay-menu .social_title_con h3,
.overlay-menu .social_title_con h4,
.overlay-menu .social_title_con h5,
.overlay-menu .social_title_con h6,
.overlay-menu .social_title_con p {
	line-height: 1.8;
	letter-spacing: 2px;
	color: #fff;
}

.overlay-menu .social_title_con .s_title {
	letter-spacing: 5px;
	margin-bottom: 0.7em;
	line-height: 1.2;
}

.social_con {
	padding-left: 2vw;
	padding-right: 6.5vw;
}

.social_con ul li {
	width: calc(100% / 4);
	margin: .4em 0;
	text-align: center;
}

.social_con ul li a {
	font-size: 1em;
	background-color: var(--color-3);
	color: #fff;
	border-radius: 8em;
	padding: 0.4em 0;
	display: inline-block;
	width: 86%;
	text-align: center;
	letter-spacing: 2px;
}


@media screen and (max-width: 1199px) {
	.s_overlay {
		font-size: 1.3vw;
	}

	.social_con ul li {
		width: calc(100% / 3);
	}
}

@media screen and (max-width: 991px) {
	.overlay-menu .social_title::before {
		background-position: left 28% top 26%;
		background-size: 25%;
		-ms-background-size: 25%;
		-moz-background-size: 25%;
		-webkit-background-size: 25%;
	}
}

@media screen and (max-width: 767px) {
	.s_bg {
		background: url(../images/social/s_bg1.jpg) no-repeat right 40% center;
	}

	.s_overlay {
		font-size: 2.2vw;
	}

	.overlay-menu .social_title {
		height: 22vh;
		margin: 3vh 0;
	}

	.social_con ul li {
		margin: 0.2em 0;
	}

	.overlay-menu .social_title::before {
		background-position: left 81% top 5%;
	}
	.overlay-menu  .social_box{
		top: 11%;
	}
}

@media screen and (max-width: 575px) {
	.s_overlay {
		font-size: 3vw;
	}
	.overlay-menu  .social_box{
		top: 6%;
	}
}

/**/

/************************************/
/*按鈕特效*/
/************************************/

@keyframes sheen {
	0% {
		transform: skewY(-45deg) translateX(0);
	}

	100% {
		transform: skewY(-45deg) translateX(15.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;
}



/**********************/
/*彈跳社群*/
/**********************/

#madol_line {
	z-index: 2001;
	font-size: 1.3em;
}

#madol_line.modal_social_bg {
	background-color: rgba(0, 0, 0, .4);
}

#madol_line .modal-content {
	border: none;
	background: url(../images/social/md_line_bg_bottom.png) no-repeat center bottom;
	background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-color: #f9f8f2;
	padding-bottom: 3em;
}

/* 彈跳視窗尺寸 */
#madol_line .modal-lg {
	max-width: 90vw;
}

@media (max-width: 575px) {
	#madol_line .modal-lg {
		margin-left: 5vw;
	}
}

@media (min-width: 768px) {
	#madol_line .modal-lg {
		max-width: 750px;
	}
}

@media (min-width: 992px) {
	#madol_line .modal-lg {
		max-width: 900px;
	}
}

@media (min-width: 1200px) {
	#madol_line .modal-lg {
		max-width: 1000px;
	}
}

@media (min-width: 1600px) {
	#madol_line .modal-lg {
		max-width: 1200px;
	}
}

/* #END_彈跳視窗尺寸 */


/* 彈跳視窗_modal-header */

/* 彈跳視窗_關閉按鈕 */
#madol_line .modal-header .close {
	padding: 0;
	margin: 0;
	position: absolute;
	right: 0.5em;
	top: 0.35em;
	width: 1.8em;
	height: 1.8em;
	font-size: 1.8em;
	font-weight: 300;
	color: rgba(255, 255, 255, 1);
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .3);

}

/* #END_彈跳視窗_關閉按鈕 */


#madol_line .modal-content .modal-header {
	position: relative;
	background-image: url("../images/social/md_line_bg_top.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;

	padding: 2em 3em 5.5em 3em;
	border-bottom: none;
	border-top-left-radius: calc(0.3em - 1px);
	border-top-right-radius: calc(0.3em - 1px);

	/*垂直*/
	-ms-flex-align: center;
	align-items: center;
	/*水平*/
	-ms-flex-pack: start;
	justify-content: flex-start;

}

#madol_line .modal-content .modal-header .modal-desc {
	width: 80%;
	color: #fff;
}

#madol_line .modal-content .modal-header .modal-icon {
	width: 12%;
	text-align: center;
}

#madol_line .modal-content .modal-header .modal-icon img {
	width: 4.2em;
	display: inline-block;
}

#madol_line .modal-content .modal-header .modal-desc .modal-desc-box {
	border-left: 1px solid #fff;
	padding-left: 4%;
}

#madol_line .modal-content .modal-header .modal-desc .modal-desc-box .modal-title {
	line-height: 1.2;
	margin-bottom: .5em;
}

@media (max-width: 1199px) {
#madol_line .modal-content .modal-header .modal-desc {
	padding-left: 3%;
}
}
@media (max-width: 767px) {
	#madol_line .modal-content .modal-header .modal-desc {
		padding-left: 8%;
	}
}
@media (max-width: 650px) {
	#madol_line .modal-content .modal-header .modal-desc {
		padding-left: 15%;
	}
}

/* 彈_Media */
@media (max-width: 575px) {
	#madol_line .modal-header .close {
		top: 0.5em;
	}

	#madol_line .modal-content .modal-header .modal-icon {
		display: none;
	}

	#madol_line .modal-content .modal-header .modal-desc {
		width: 96%;
		padding-left: 0%;
	}

	#madol_line .modal-content .modal-header .modal-desc .modal-desc-box {
		border-left: none;
	}

	#madol_line .modal-content .modal-header .modal-desc .modal-desc-box .modal-title {
		border-left: 1px solid #fff;
		padding-left: .8em;
		position: relative;
		margin-left: 2.2em;
		margin-bottom: .75em;
	}

	#madol_line .modal-content .modal-header .modal-desc .modal-desc-box .modal-title::before {
		content: url(../images/social/s_icon_1.png);
		position: absolute;
		top: 0;
		left: -2.2em;
		width: 1.5em;
	}

}

/* # */

/* #END_彈_Media*/
/* #END_彈_Hmodal-header*/


/* 彈_Hmodal-body*/

/* 按鈕_留單-btn_liudan */
#madol_line a.btn_liudan {
	border-radius: 8em;
	font-size: 1em;
	color: #fff;
	padding: .5em 1.35em .55em 1.35em;
	background: linear-gradient(0deg, #62cc8f 0%, #209191 100%);
	background: -moz-linear-gradient(0deg, #62cc8f 0%, #209191 100%);
	background: -webkit-linear-gradient(0deg, #62cc8f 0%, #209191 100%);
	background: -o-linear-gradient(0deg, #62cc8f 0%, #209191 100%);
	display: inline-block;
	text-align: center;
}

/* #按鈕_留單-btn_liudan */

.modal-body-content {
	width: 85%;
}

.btn_line_box {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}


.btn_line_box li {
	margin: .5em;
}

/* btn_line */
.btn_line_box li a.btn_line {
	border-radius: 8em;
	font-size: 1em;
	color: #586d67;
	padding: .5em 1.35em .55em 1.35em;
	border: .1em solid rgba(88, 109, 103, .75);
	display: inline-block;
	text-align: center;
}

.btn_line_box li a.btn_line:hover {
	transform: scale(.96, .96);
	background: linear-gradient(0deg, #c1e4a1 0%, #a0d6b4 100%);
	background: -moz-linear-gradient(0deg, #c1e4a1 0%, #a0d6b4 100%);
	background: -webkit-linear-gradient(0deg, #c1e4a1 0%, #a0d6b4 100%);
	background: -o-linear-gradient(0deg, #c1e4a1 0%, #a0d6b4 100%);
	border: .1em solid rgba(88, 109, 103, .1);
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

/* #btn_line */



@media (max-width: 991px) {
	.modal-body-content {
		width: 90%;
	}
}

@media (max-width: 575px) {
	.modal-body-content {
		width: 100%;
	}

	#madol_line {
		font-size: 4vw !important;
	}

	#madol_line .modal-content .modal-header {
		background-image: url("../images/social/md_line_bg_top_ph.png");
	}

	#madol_line .modal-content .modal-header {
		padding: 2em 0.75em 3.6em 0.75em;
	}

	.btn_line_box li {
		margin: 0.3em 0.35em;
	}

	.btn_line_box li a.btn_line {
		font-size: 3.4vw;
	}
	.modal-body {
    padding: 0 1rem;
}

}

/* #END_彈跳視窗_madol_line_Media */


/**********************/
/*#END__彈跳社群*/
/**********************/