@charset "utf-8";

:root {
	--color1: #ef5a45;
	--color2: #ffeadd;
	--color3: #ffc620;
	--color4: #4b3225;
}

/* CSS Document */
/* ---reset.css--- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}


html {
	background: url("../images/bg-fixed.jpg") top center repeat fixed;
	scroll-behavior: smooth;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

@media screen and (max-width: 991px) {
	html {
		background: var(--color2);
	}

	html:before {
		content: "";
		position: fixed;
		z-index: -1;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url("../images/bg-fixed.jpg")center no-repeat;
		background-size: cover;
	}
}


/* PC */
.WRAPPER {
	position: relative;
	width: 100%;
	min-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.WRAPPER {
		min-width: 100%;
	}
}

.container {
	overflow: hidden;
	background: url("../images/side-deco.png") center 100px repeat-y;
}

.topbox {
	position: relative;
	width: 1200px;
	margin: auto;
}

.kv_pc {
	position: relative;
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: center;
	text-align: center;
	width: 100%;
	/* max-width: 1920px; */
	margin: auto;
}

.kv_pc img {
	/* display: block; */
	text-align: center;
}

.kv_m {
	display: none;
}

/* .kv_m img {
	display: block;
} */

.kv_m a {
	/* display: block; */
	font-size: 0;
}

.for_pc {
	display: block;
}

.for_m {
	display: none;
}

/* m */
@media screen and (max-width: 991px) {
	.kv_m {
		display: flex;
		width: 100%;
	}

	.kv_m img {
		width: 100%;
	}

	.kv_pc {
		display: none;
	}

	.container {
		width: 100%;
		min-width: auto;
	}

	.for_pc {
		display: none;
	}

	.for_m {
		display: block;
	}
}



/*主視覺動畫*/
.kv-bg {
	width: 100%;
}

.kvitem {
	position: absolute;
}

.kv-stt {
	width: calc((251 / 1920)* 100%);
	top: calc((484 / 1920) * 100%);
	left: calc((1045 / 1920) * 100%);
	animation: bounceInDown 1.2s;
	animation-delay: .1s;
	animation-fill-mode: backwards;
}

.kv-date {
	width: calc((327 / 1920)* 100%);
	top: calc((314 / 1920) * 100%);
	left: calc((965 / 1920) * 100%);
	animation: bounceInDown 1.2s;
	animation-delay: .3s;
	animation-fill-mode: backwards;
}

.kv-p {
	width: calc((627 / 1920)* 100%);
	top: calc((1288 / 1920) * 100%);
	left: calc((302 / 1920) * 100%);
	animation: flipInX 1.2s;
	animation-delay: .7s;
	animation-fill-mode: backwards;
}


/* 區塊 */
.blk {
	max-width: 1210px;
	margin: 200px auto 0px;
	padding: 0 0 20px;
	border-radius: 30px;
	outline: 5px solid var(--color1);
	background: #ffeaddcc;
}

.block_0 {
	max-width: 1920px;
	margin: 0 auto 290px;
	padding: 1px 0 0;
	background: url("../images/blk0-deco-l.png")top left no-repeat, url("../images/blk0-deco-r.png") top right no-repeat, var(--color3);
	transform-style: preserve-3d;
}

.block_0::after {
	display: flex;
	position: relative;
	top: 119px;
	max-width: 1920px;
	height: 120px;
	margin: -135px auto 0;
	background: url("../images/blk0-af.png")center top no-repeat;
	transform: translateZ(-1px);
	pointer-events: none;
	content: '';
}

@media screen and (max-width: 991px) {
	.blk {
		margin: 22vw auto 0vw;
		padding: 0 0 2vw;
		border-radius: 20px;
		outline: 2.5px solid var(--color1);
		outline-offset: -2.5px;
	}

	.block_0 {
		margin: 0 auto 26vw;
		padding: 2vw 0 0;
		background: var(--color3);
	}

	.block_0::after {
		display: flex;
		position: relative;
		top: 5.5vw;
		height: 6vw;
		margin: -5vw auto 0;
		background: url("../images/blk0-af.png")center top no-repeat;
		background-size: 100vw;
		pointer-events: none;
		transform: translateZ(-1px);
		content: '';
	}
}


/*文字標題*/

h2,
h3,
.menustyle2 ul li a,
.go-cta-a a {
	font-family: 'Noto Serif TC', serif;
}

.tt {
	display: flex;
	justify-content: center;
}

big {
	color: var(--color1);
}

.btt {
	position: relative;
	width: fit-content;
	height: 140px;
	margin: -140px auto 30px;
	background: url("../images/btt-bg.png");
	background-position: top center;
	background-repeat: repeat-x;
	background-size: contain;
	text-align: center;
}

.btt h2 {
	padding: 25px 10px 0;
	color: var(--color4);
	font-size: 3.8rem;
	font-weight: 900;
	letter-spacing: 2px;
}

.btt::before {
	display: block;
	width: 100%;
	height: 140px;
	position: absolute;
	left: 1px;
	background-image: url("../images/btt-be.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	content: "";
}

.btt::after {
	display: block;
	width: 100%;
	height: 140px;
	position: absolute;
	right: 1px;
	background-image: url("../images/btt-af.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	content: "";
}

.block_0 .btt {
	width: fit-content;
	height: auto;
	position: relative;
	margin: 30px auto 20px;
	text-align: center;
	background: none;
}

.block_0 .btt h2 {
	padding: 0px 10px;
}

.block_0 .btt::before {
	display: block;
	width: 100%;
	height: 60px;
	position: absolute;
	top: 2px;
	left: 0px;
	background-image: url("../images/stt-be.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	content: "";
}

.block_0 .btt::after {
	display: block;
	width: 100%;
	height: 60px;
	position: absolute;
	top: 2px;
	right: 0px;
	background-image: url("../images/stt-af.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	content: "";
}

.stt {
	width: fit-content;
	position: relative;
	margin: 30px auto 20px;
	text-align: center;
}

.stt h3 {
	padding: 12px 10px 0;
	color: var(--color4);
	font-size: 2.2rem;
	font-weight: 900;
	letter-spacing: 2px;
}

.stt::before {
	display: block;
	width: 100%;
	height: 40px;
	position: absolute;
	top: 12px;
	left: 0px;
	background-image: url("../images/stt-be.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	content: "";
}

.stt::after {
	display: block;
	width: 100%;
	height: 40px;
	position: absolute;
	top: 12px;
	right: 0px;
	background-image: url("../images/stt-af.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	content: "";
}

.warning_words {
	display: flex;
	justify-content: center;
	margin: 10px auto 0px;
}

.warning_words p {
	color: #000;
	font-size: .8rem;
	text-align: center;
}

@media screen and (max-width: 991px) {

	.btt {
		height: 16vw;
		margin: -16vw auto 5vw;
	}

	.btt h2 {
		padding: 2.5vw 1vw 0;
		font-size: 2rem;
		letter-spacing: 1px;
	}

	.btt::before {
		height: 16vw;
	}

	.btt::after {
		height: 16vw;
	}

	.block_0 .btt {
		margin: 2vw auto 1vw;
	}

	.block_0 .btt h2 {
		padding: 0 1vw 0;
	}

	.block_0 .btt::before {
		height: 8vw;
		top: 0;
	}

	.block_0 .btt::after {
		height: 8vw;
		top: 0;
	}

	.stt {
		margin: 3vw auto 1vw;
	}

	.stt h3 {
		padding: 0 1vw 0;
		font-size: 1.7rem;
		letter-spacing: 1px;
	}

	.stt::before {
		height: 6vw;
		top: 1vw;
	}

	.stt::after {
		height: 6vw;
		top: 1vw;
	}

	.warning_words {
		margin: 1vw 3vw 2vw;
	}

	.warning_words p {
		text-align: center;
		line-height: 1.3;
	}
}


/*攻略四顆*/
.dis-tip-four {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 1200px;
	margin: 20px auto;
}

@media screen and (max-width: 991px) {
	.dis-tip-four {
		width: 96%;
		margin: 2vw auto 0;
		padding: 0 1vw;
	}

	.dis-tip-four li img {
		width: 47vw;
	}
}


/*元件調整*/
.banner {
	padding: 0;
}

.hightlight,
.boxmixbg,
.collect_5x6 {
	margin: 20px auto;
}

.collect_5x6 .special {
	background: var(--color1);
}

.crosswise_3p li,
.hightlight li,
.collect_5x6 .h-row li,
.collect_5x6 .s-row li,
.banner img {
	border-radius: 10px;
}

.hightlight .font p,
.collect_5x6 .font p {
	padding: 5px 5px 0;
}

.collect_5x6 .s-row img {
	margin: 0;
}

.hightlight img,
.collect_5x6 .s-row img {
	border-radius: 10px 10px 0 0;
}

.slick5itam-2 h4,
.slick5itam-2 p {
	color: var(--color1);
}

@media screen and (max-width: 991px) {

	.banner {
		padding: 0 3vw;
	}

	.hightlight,
	.boxmixbg,
	.collect_5x6 {
		margin: 2vw auto;
	}

	.hightlight .font p,
	.collect_5x6 .font p {
		padding: 1vw;
	}
}


/*crosswise_3p挖空*/
.crosswise_3p {
	width: 1140px;
	margin: 20px auto;
}

.crosswise_3p.sp5p {
	background: url("../images/crosswise-3p-sp-bg.png")top center no-repeat;
}

.crosswise_3p ul {
	justify-content: space-between;
}


@media screen and (max-width: 991px) {
	.crosswise_3p {
		width: 100% !important;
		margin: 2vw auto;
	}

	.crosswise_3p ul {
		justify-content: center;
	}

	.crosswise_3p.sp5p {
		background: none;
	}
}


/* hightlightAd_word */
.hightlightAd_word {
	width: 1160px;
	margin: 20px auto;
}

.hightlightAd_word ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.hightlightAd_word li.Ad_word {
	width: 280px;
	height: 330px;
	background: none;
}

.hightlightAd_word li.Ad_word img {
	width: 280px;
	height: auto;
	border-radius: 10px;
}

.hightlightAd_word li.Ad_word h4 {
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 0;
	width: 280px;
	height: auto;
	margin: 9px 0 0;
	padding: 10px 0;
	border-radius: 99rem;
	color: var(--color2);
	background: var(--color1);
	font-weight: 700;
}

.hightlightAd_word h3 {
	width: 1160px;
	margin: 8px;
}

.hightlightAd_word li {
	width: 200px;
	margin: 6px;
	padding: 0;
	border-radius: 10px;
	background: #fff;
}

.hightlightAd_word li img {
	object-fit: contain;
	border-radius: 10px 10px 0 0;
}

.hightlightAd_word .font {
	display: block;
	text-align: center;
}

.hightlightAd_word .font h4 {
	margin: 0 0 5px;
	padding: 6px 10px;
	color: #fff;
	background: var(--color1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hightlightAd_word .font p {
	margin: 0;
	padding: 5px 5px 0;
}

.hightlightAd_word .font .price {
	margin: 10px 0 15px;
}

.hightlightAd_word img {
	display: block;
	width: 200px;
	height: 200px;
	object-fit: cover;
}

@media screen and (max-width: 991px) {
	.hightlightAd_word {
		width: 100%;
		margin: 2vw auto;
	}

	.hightlightAd_word ul {
		flex-wrap: wrap;
	}

	.hightlightAd_word h3 {
		width: 96vw;
		margin: 1vw;
	}

	.hightlightAd_word li {
		width: 46vw;
		margin: 1vw;
		padding: 0;
	}

	.hightlightAd_word .font {
		margin: 0 0 3vw 0;
	}

	.hightlightAd_word .font h4 {
		padding: 1vw;
	}

	.hightlightAd_word .font .price {
		margin: 1vw 0;
	}

	.hightlightAd_word img {
		width: 46vw;
		height: 46vw;
	}

	.hightlightAd_word li.Ad_word {
		width: 94vw;
		height: auto;
		margin: 2vw auto;
		padding: 0vw;
	}

	.hightlightAd_word li.Ad_word img {
		width: 94vw;
		padding: 0vw;
		border-radius: 10px 10px 0 0;
	}

	.hightlightAd_word li.Ad_word a {
		flex-wrap: wrap;
	}

	.hightlightAd_word li.Ad_word h4 {
		width: 100%;
		margin: 0;
		padding: 3vw 0;
		border-radius: 0 0 10px 10px;
	}
}


/*五品一大四小帶標題*/
.special_5p_1 {
	margin: 10px auto;
}

.special_5p_1 .hightlight_5p {
	width: 1200px;
	margin: 0px auto;
	padding: 0;
	background: url("../images/h5psp-stt-bg.png")top center no-repeat;
}

.special_5p_1 .hightlight_5p ul li,
.special_5p_1 .hightlight_5p ul li:first-child {
	height: auto;
}

.special_5p_1 .hightlight_5p ul li {
	height: auto;
	margin-top: 82px;
	border-radius: 10px;
}

.special_5p_1 .hightlight_5p ul li:first-child {
	width: 240px;
	height: auto;
	padding-top: 0;
}

.special_5p_1 .hightlight_5p ul li h4 {
	background: var(--color1);
}

.special_5p_1 .hightlight_5p ul li p {
	padding: 5px 5px 0;
}

.special_5p_1 .hightlight_5p .font .price {
	margin: 5px 0 15px;
}

.special_5p_1 .hightlight_5p img {
	width: 100%;
	object-fit: contain;
}

.special_5p_1 .hightlight_5p ul li:first-child img {
	width: 100%;
	height: 270px;
}

.special_5p_1 .hightlight_5p ul li:first-child img {
	margin: 0 auto;
}

.special_5p_1 .stt-sp {
	width: 1160px;
	position: relative;
	margin: auto;
}

.special_5p_1 .stt-sp h3 {
	width: 100%;
	position: absolute;
	padding: 20px 0 0 200px;
	text-align: center;
	color: var(--color4);
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: 2px;
}

@media screen and (max-width: 991px) {
	.special_5p_1 {
		margin: 1vw auto 0;
	}

	.special_5p_1 .hightlight_5p {
		width: 98%;
		margin: 0 auto;
		padding: 0;
		background: none;
	}

	.special_5p_1 .hightlight_5p ul li {
		width: 46vw;
		margin: 1vw auto;
	}

	.special_5p_1 .hightlight_5p ul li:first-child {
		width: 98vw;
		margin: 1.5vw;
		padding: 2vw;
	}

	.special_5p_1 .hightlight_5p ul li:first-child .font {
		padding: 0;
	}

	.special_5p_1 .hightlight_5p ul li p {
		padding: 1vw 1vw 0;
	}

	.special_5p_1 .hightlight_5p .font .price {
		margin: 1vw 0 3vw;
	}

	.special_5p_1 .hightlight_5p img {
		width: 100%;
	}

	.special_5p_1 .hightlight_5p ul li:first-child img {
		width: 48vw;
		height: 48vw;
	}

	.special_5p_1 .stt-sp {
		width: 100%;
		margin: 3vw auto 1vw;
	}

	.special_5p_1 .stt-sp h3 {
		position: relative;
		margin: auto;
		padding: 0;
		text-align: center;
		color: var(--color4);
		font-size: 1.7rem;
		font-weight: 900;
		letter-spacing: 1px;
	}

	.special_5p_1 .stt-sp h3:before {
		display: inline-block;
		width: 6vw;
		height: 6vw;
		margin-right: 1.5vw;
		margin-bottom: -1vw;
		background-image: url("../images/stt-be.png");
		background-size: contain;
		content: "";
	}

	.special_5p_1 .stt-sp h3:after {
		display: inline-block;
		width: 6vw;
		height: 6vw;
		margin-left: 1.5vw;
		margin-bottom: -1vw;
		background-image: url("../images/stt-af.png");
		background-size: contain;
		content: "";
	}
}


/* 一ad配兩品修正 */
.boxmix-forbn .box-mix {
	margin: 0 auto;
}
.boxmix-forbn .box-mix ul.quotes {
	width: 580px;
}

.boxmix-forbn .box-mix ul.hightlight {
	width: 500px;
	padding: 0 10px;
}

.boxmix-forbn .box-mix ul.quotes li {
	width: 100%;
}

.boxmix-forbn .box-mix ul.hightlight li {
	width: 230px;
}

.boxmix-forbn .box-mix ul.hightlight li img {
	width: 230px;
	height: 230px;
}

.boxmix-forbn .box-mix ul.quotes img {
	border-radius: 10px;
}

@media screen and (max-width: 991px) {
	.boxmix-forbn .box-mix ul.quotes {
		width: 94vw;
	}

	.boxmix-forbn .box-mix ul.hightlight {
		width: 100%;
		padding: 1vw 0;
	}

	.boxmix-forbn .box-mix ul.hightlight li {
		width: 46vw;
	}

	.boxmix-forbn .box-mix ul.hightlight li img {
		width: 46vw;
		height: 46vw;
	}
}


/*按鈕A款*/
.go-cta-a {
	margin: 50px auto;
}

.go-cta-a a {
	display: block;
	width: fit-content;
	height: auto;
	margin: 0 auto;
	padding: 0 30px;
	border: 3px solid var(--color4);
	border-radius: 999em;
	text-align: center;
	color: var(--color4);
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 5rem;
	letter-spacing: 1px;
	background: var(--color3);
	box-shadow: 0 7px var(--color4);
	transition: .2s;
}

.go-cta-a a:hover {
	filter: brightness(70%);
	transform: translateY(4px);
	box-shadow: 0 2px var(--color4);
}

@media screen and (max-width: 991px) {
	.go-cta-a {
		margin: 6vw auto;
	}

	.go-cta-a a {
		padding: 0 5vw;
		font-size: 2rem;
		line-height: 4rem;
	}

	.go-cta-a a:hover {
		transform: translateY(3px);
	}
}


/*輪播統一設定*/
.slick-dotted.slick-slider {
	margin-bottom: 0px !important;
}

@media screen and (max-width: 991px) {
	.slider {
		margin: 2vw auto !important;
	}

	.slick-dotted.slick-slider {
		padding-bottom: 2vw !important;
	}
}


/*--  nav 選單 固定側邊--*/
@media only screen and (min-width: 992px) {
	.menustyle2 {
		display: flex;
		flex-wrap: wrap;
		position: fixed;
		top: 180px;
		right: 10px;
		z-index: 999;
		width: 115px;
		height: auto;
		border-radius: 999em;
		background: var(--color1);
	}

	.menustyle2 ul {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		margin: 0 auto;
		padding: 25px 0px;
	}

	.menustyle2 ul li {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.menustyle2 ul li a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: fit-content;
		margin: 1px auto;
		padding: 6px 12px;
		color: #fff;
		font-size: 1rem;
		font-weight: 700;
		line-height: 1.2;
		text-align: center;
		text-decoration: none;
	}

	.menustyle2 a br {
		display: block;
	}

	.menustyle2 ul li a:hover {
		border-radius: 99em;
		color: var(--color4) !important;
		background: var(--color3);
		transform: scale(1);
	}

	.menustyle2 ul .active {
		border-radius: 99em;
		color: var(--color4) !important;
		background: var(--color3);
	}
}

@media screen and (max-width: 991px) {
	.menustyle2::-webkit-scrollbar {
		display: none;
	}

	.menustyle2 {
		display: block;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		position: absolute;
		z-index: 999;
		width: 100%;
		height: auto;
		padding: 2vw 1vw;
		border-bottom: 1px solid var(--color2);
		background: var(--color1);
		overflow-x: auto;
		white-space: nowrap;
		webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}

	.menustyle2 ul {
		display: flex;
		flex-wrap: nowrap;
		width: 100%;
		margin: 0 auto;
	}

	.menustyle2 ul li {
		display: flex;
		justify-content: center;
		align-items: center;
		width: fit-content;
		box-sizing: border-box;
	}

	.menustyle2 ul li.showByDate {
		margin-top: 1.5vw;
	}

	.menustyle2 ul li a {
		box-sizing: border-box;
		padding: 1.5vw 2.5vw;
		color: #fff;
		font-size: 1rem;
		font-weight: 700;
		letter-spacing: 0px;
	}

	.menustyle2 a br {
		display: none;
	}

	.menustyle2 ul li a:hover {
		width: 100%;
		justify-content: center;
		align-items: center;
		text-align: center;
		border-radius: 999em;
		color: var(--color4) !important;
		background: var(--color3);
	}

	.menustyle2 ul .active {
		width: 100%;
		justify-content: center;
		align-items: center;
		text-align: center;
		border-radius: 999em;
		color: var(--color4) !important;
		background: var(--color3);
	}

	.sticky {
		position: fixed;
		top: 0;
	}
}


/*手機版選單下滑出現*/
@media screen and (max-width: 991px) {
	#TopMenu2 {
		position: absolute;
		top: 0;
		z-index: 999;
		transition: background-color 1s, opacity 1s, visibility 1s;
		opacity: 0;
		visibility: hidden;
	}

	#TopMenu2.show {
		position: fixed;
		top: 0;
		opacity: 1;
		visibility: visible;
	}
}



/*--  錨點微調--*/
.target-fix {
	display: block;
	position: relative;
	top: -150px;
	height: 0;
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.target-fix {
		top: -30vw;
	}
}


/*--goto top--*/
#gotop {
	display: inline-block;
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: 1000;
	width: 40px;
	height: 40px;
	margin: 30px;
	border-radius: 100%;
	background-color: #000;
	text-align: center;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
}

#gotop::after {
	display: block;
	position: absolute;
	background: url("../images/top.png") center no-repeat;
	background-size: 50%;
	background-position: 75% 35%;
	color: #fff;
	font-family: FontAwesome;
	content: '　';
	font-weight: normal;
	font-style: normal;
	font-size: 2em;
	line-height: 50px;
	opacity: 0.5;
}

#gotop:hover {
	background-color: #666;
	cursor: pointer;
}

#gotop:active {
	background-color: #ccc;
}

#gotop.show {
	opacity: 0.4;
	visibility: visible;
}

@media screen and (max-width: 991px) {
	#gotop {
		right: 0;
		bottom: 70px;
		margin: 2vw;
	}
}

/* share url */
#share {
	display: inline-block;
	position: fixed;
	bottom: 50px;
	right: 0px;
	z-index: 1000;
	width: 40px;
	height: 40px;
	margin: 30px;
	border-radius: 100%;
	background-color: #000;
	opacity: 0.4;
	text-align: center;
	transition: background-color .3s, opacity .5s, visibility .5s;
}

#share::after {
	display: block;
	position: absolute;
	background: url("../images/share.png") center no-repeat;
	background-size: 50%;
	background-position: 75% 35%;
	font-family: FontAwesome;
	content: '　';
	color: #fff;
	font-weight: normal;
	font-style: normal;
	font-size: 2em;
	line-height: 50px;
	opacity: 0.5;
}

#share:hover {
	background-color: #666;
	cursor: pointer;
}

#share:active {
	background-color: #666;
}

@media screen and (max-width: 991px) {
	#share {
		right: 0;
		bottom: 115px;
		margin: 2vw;
	}
}

@media screen and (max-width: 991px) {
	html {
		padding-bottom: 80px;
	}
}