@charset "utf-8";
/* CSS Document */

/*--------reset----------*/
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "微軟正黑體", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

ol, ul {
  list-style: none;
}

img {
  vertical-align: bottom;
	border: 0;
}

.wrapper{
	width: 840px;
	margin: 0 auto;
}
.content {
	width: 840px; 
	margin: 0 auto;
}

/* 店舖資訊 */
.icon{
	width: 30px;
	height: 30px;
	margin-right: 8px;

}

.qa {
    width: 840px;
    margin: 0 auto;
    padding-bottom: 30px;
    position: relative;
    text-align: center;
}
.qa-content {
    width: 840px;
    margin: 0 auto;
}
.accordion {
    cursor: pointer;
    line-height: 40px;
    background: #469b40;
    padding: 5px 10px;
	font-size: 24px;
    font-weight: bold;
    color: #fff7d6;
	border-top: #e0dfdb 2px solid;
}
.line{
	border-bottom: #fff6d2 2px solid;
}
.accordion:after {
    content: '\002B';
    float: right;
}
.active:after {
    content: "\2212";
}
.panel {
    text-align: center;
    max-height: 0;
    line-height: 30px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0px;
    /* border-bottom: #e0dfdb 1px solid; */
    background: #ffffff;
    color: #2b3034c5;
}
.panel:last-child {
    border-bottom: none;
}
.panel-table {
    width: 100%;
    background: #469b40;
	table-layout: fixed;
}
.panel-table th:first-child,
.panel-table td:first-child {
    width: 40%; 
}

.panel-table th:last-child,
.panel-table td:last-child {
    width: 60%; 
}
.panel-table tr:nth-child(even) {
    background: #effde5;
}
.panel-table tr:nth-child(odd) {
    background: #fffef4;
}
.panel-table tr th{
	font-size: 20px;
	padding: 10px 0;
}
.panel-table tr td{
	text-align: left;
	font-size: 20px;
	padding: 4px 0;
	padding-left: 24px;
}
.panel-table tr td a{
	color: #503516;
}

.footer{
	clear: both;
	padding: 20px 0;
	text-align: center;
	line-height: 1.5;
	font-size: 14px;
	/* background: #c40018; */
	/* color: #FFF; */
}
/* .footer a {color: #FFF;
} */
.gotop {
	width: 60px;
	height: 60px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 50%;
	opacity: 80%;
	background-image: linear-gradient(#f1ab41, #ee9035);
	cursor: pointer;
	position:fixed;
	right: 1rem;
	bottom: 1rem;
	display: none;
}
.gotop::before, .gotop::after {
	width: 28px;
	height: 6px;
	border-radius: 6px;
	background: #fff;
	position: absolute;
	content: "";
}
.gotop::before {
	transform: rotate(-50deg) translate(0, -90%);
	left: 12px;
}
.gotop::after {
	transform: rotate(50deg) translate(0, -90%);
	right: 12px;
}
.gotop:focus {outline: none;}