@charset "UTF-8";
.kv {
  margin-top: 70px;
}
.kv_pc {
  display: block;
}
.kv_m {
  display: none;
}
@media (max-width: 800px) {
  .kv {
    margin-top: 60px;
  }
  .kv_pc {
    display: none;
  }
  .kv_m {
    display: block;
  }
}
.kv .h1 {
  opacity: 0;
  font-size: 0;
  display: block;
}

@keyframes floatUpDown1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatUpDown2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes floatUpDown3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatUpDown4 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.svg1 {
  animation: floatUpDown1 3s ease-in-out infinite;
  animation-delay: 0s;
}

.svg2 {
  animation: floatUpDown2 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.svg3 {
  animation: floatUpDown3 3.5s ease-in-out infinite;
  animation-delay: 1s;
}

.svg4 {
  animation: floatUpDown4 4.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.section1 {
  background-color: #FFFDE6;
}

.section_style {
  padding: 40px 0px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.section_style .title_style {
  font-size: 32px;
  font-weight: bold;
  color: #00a19b;
  text-align: center;
  display: block;
  margin: 0 auto 16px;
}
.section_style .img_style {
  display: block;
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.section_style .subtitle {
  font-size: 24px;
  color: #242424;
  text-align: center;
  margin: 0 auto;
}
.section_style .p_style {
  font-size: 18px;
  color: #242424;
  line-height: 1.5em;
}
.section_style .list_style {
  display: block;
  margin: 16px auto;
  padding-inline-start: 24px;
}
.section_style .notice_style {
  font-size: 16px;
  color: #242424;
  line-height: 1.5em;
  padding-inline-start: 24px;
}
.section_style .link_style {
  display: inline-block;
  color: #00a19b;
  text-decoration: underline;
}
.section_style .btn {
  background: #00a19b;
  color: #ffffff;
  font-size: 16px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  letter-spacing: 1px;
  position: relative;
  cursor: pointer;
  width: 150px;
}
.section_style .btn-secondary {
  background: #fff;
  color: #00a19b;
  border: 2px solid #00a19b;
}
.section_style .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  text-align: center;
  flex-wrap: wrap;
}
.section_style .btn:hover {
  box-shadow: none;
  top: 2px;
  color: #fff !important;
  text-decoration: none;
}
.section_style .btn.btn-secondary:hover {
  box-shadow: none;
  top: 2px;
  color: #00a19b !important;
  text-decoration: none;
}
@media (max-width: 800px) {
  .section_style {
    padding: 20px 16px;
  }
  .section_style .title_style {
    font-size: 22px;
    margin: 0 auto 8px;
  }
  .section_style .subtitle {
    font-size: 20px;
  }
  .section_style .p_style {
    font-size: 16px;
  }
  .section_style .list_style {
    margin: 8px auto;
  }
  .section_style .notice_style {
    font-size: 14px;
    padding-inline-start: 11px;
    width: 92%;
  }
}

.section1 {
  background-color: #FFFDE6;
}
.section1 .content_width {
  max-width: 780px;
}
.section1 .img1-1 {
  max-width: 500px;
}
.section1 .notice-container {
  max-width: 960px;
  width: 100%;
  margin: 32px auto;
  background-color: #fff;
  padding: 8px 24px;
}
.section1 .notice-header {
  line-height: 54px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section1 .notice-arrow {
  width: 20px;
  height: 10px;
  transition: transform 0.3s ease;
}
.section1 .notice-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.section1 .notice-header.open .notice-arrow {
  transform: rotate(180deg);
}
@media (max-width: 800px) {
  .section1 .notice-container {
    padding: 8px 12px;
    margin: 16px auto;
  }
}

.section2 {
  /* 地圖樣式 */
}
.section2 .filter-section {
  display: flex;
  margin-bottom: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.section2 .filter-group {
  border-bottom: 1px solid #00a19b;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.section2 .filter-group h3 {
  margin: 0px 32px 0px 0px;
  width: 80px;
  color: #00a19b;
}
.section2 .filter-group:last-child {
  justify-content: center;
  border-bottom: none;
}
.section2 .filterStyle {
  gap: 0;
  flex-direction: column;
  background-color: #F4F8FA;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 8px;
  font-size: 16px;
}
.section2 .inputStyleBox {
  position: relative;
}
.section2 .inputStyleBox .inputStyle {
  padding: 4px 33px 4px 4px;
  border-radius: 4px;
  border: 1px solid #00a19b;
  height: 40px;
}
.section2 .inputStyleBox .magnifier {
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
  right: 0;
  top: 5px;
}
.section2 #taiwan-map {
  width: 250px;
  height: 467px;
  display: block;
  margin-right: 20px;
}
.section2 svg g {
  fill: #eee;
  cursor: pointer;
  transition: box-shadow 0.3s;
  border: 1px solid #242424;
  z-index: 0;
  position: relative;
}
.section2 svg g.highlight {
  filter: drop-shadow(0 0 3px rgb(255, 237, 101));
  fill: #ffecb3;
  z-index: 1;
}
.section2 .store-list .store-item {
  border: 1px solid #00a19b;
  border-radius: 4px;
  padding: 12px;
  margin: 12px auto;
}
.section2 .store-list .store-item .tagRowStyle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.section2 .store-list .store-item .tagRowStyle .store-region {
  background-color: #00a19b;
  padding: 4px 16px;
  border-radius: 50px;
  color: #fff;
  margin: 0;
  font-size: 14px;
}
.section2 .store-list .store-item .tagRowStyle .productTagsWrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.section2 .store-list .store-item .tagRowStyle .productTagsWrapper .store-productTags {
  background-color: #D99E09;
  padding: 4px 16px;
  border-radius: 50px;
  color: #fff;
  margin: 0px 4px;
  font-size: 14px;
}
.section2 .store-list .store-item .storeInfo {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.section2 .store-list .store-item .storeInfo .storeStoryBox {
  max-width: 150px;
}
.section2 .store-list .store-item .storeInfo .storeStoryBox .storeImgStyle {
  width: 150px;
  height: 150px;
  display: block;
  overflow: hidden;
}
.section2 .store-list .store-item .storeInfo .storeStoryBox .storeImgStyle img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.section2 .store-list .store-item .storeInfo .storeStoryBox .btn-group {
  margin-top: 8px;
}
.section2 .store-list .store-item .storeInfo .storeWordBox .storeWord {
  display: flex;
  align-items: flex-start;
  margin: 8px auto;
}
.section2 .store-list .store-item .storeInfo .storeWordBox .storeWord p {
  font-size: 16px;
  color: #595959;
  margin: 0;
}
.section2 .store-list .store-item .storeInfo .storeWordBox .storeWord .storeSubtitle {
  font-size: 18px;
  color: #00a19b;
  font-weight: bold;
  word-break: keep-all;
}
.section2 .pagination {
  margin-top: 12px;
  text-align: center;
}
.section2 .pagination button {
  margin: 0;
  border: none;
  outline: 1px solid #D9D9D9;
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #00a19b;
}
.section2 .pagination button:disabled {
  background-color: #ccc;
  border: none;
  cursor: not-allowed;
  opacity: 0.6;
}
@media (max-width: 800px) {
  .section2 {
    /* 地圖樣式 */
  }
  .section2 .filter-group {
    align-items: flex-start;
    gap: 16px;
  }
  .section2 .filter-group h3 {
    margin: 0px 16px 0px 0px;
    width: 100%;
  }
  .section2 .filterStyle {
    gap: 0;
    flex-direction: column;
    background-color: #F4F8FA;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 8px;
  }
  .section2 .inputStyleBox {
    position: relative;
  }
  .section2 .inputStyleBox .inputStyle {
    padding: 4px 33px 4px 4px;
    border-radius: 4px;
    border: 1px solid #00a19b;
    height: 40px;
  }
  .section2 .inputStyleBox .magnifier {
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    pointer-events: none;
    right: 0;
    top: 5px;
  }
  .section2 #taiwan-map {
    display: none;
  }
}
@media (max-width: 500px) {
  .section2 .store-list .store-item .storeInfo {
    flex-direction: column;
    align-items: center;
  }
}

.section3 {
  background-color: #F4F8FA;
}
.section3 .tab {
  max-width: 1130px;
  margin: 0 auto;
}
.section3 .tab .tabs {
  max-width: 336px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  border-radius: 10px;
  position: relative;
  height: 40px;
  overflow: visible;
}
.section3 .tab .tabs::before {
  content: "";
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #E1EFEF;
  border-radius: 10px;
  position: absolute;
}
.section3 .tab .tabs .tab-item {
  flex: 1;
  text-align: center;
  cursor: pointer;
  position: relative;
  line-height: 40px;
  font-size: 18px;
  color: #333;
  font-weight: normal;
  user-select: none;
  padding-bottom: 16px; /* 讓 active 有空間底線 */
  transition: color 0.3s;
  width: 50%;
}
.section3 .tab .tabs .tab-item.active {
  color: #00a19b;
  font-weight: bold;
}
.section3 .tab .tabs .tab-item.active::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #00a19b;
  border-radius: 10px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.section3 .tab .tab-content .carousel-wrapper {
  display: none;
}
.section3 .tab .tab-content .carousel-wrapper.active {
  display: block;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container {
  position: relative;
  max-width: 630px;
  margin: 20px auto 0px;
  overflow: hidden;
  /* 新增包裹輪播圖片的區塊 */
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .carousel-slide-wrapper {
  width: 488px; /* 顯示區塊寬度 */
  margin: 0 auto; /* 水平置中 */
  overflow: hidden; /* 隱藏超出 */
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .carousel-slide-wrapper .carousel-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .carousel-slide-wrapper .carousel-slide figure {
  margin: 0 auto;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .carousel-slide-wrapper .carousel-slide figure figcaption {
  text-align: center;
  margin: 0 auto 8px;
  min-height: 81px;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .carousel-slide-wrapper .carousel-slide img {
  width: 200px; /* 圖片固定寬度 */
  user-select: none;
  pointer-events: none;
  transform: scale(1);
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 29px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: filter 0.3s;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .arrow:hover, .section3 .tab .tab-content .carousel-wrapper .carousel-container .arrow:focus {
  filter: brightness(0.75); /* 滑鼠或鍵盤聚焦時箭頭稍微變暗 */
  outline: none;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .arrow.arrow-left {
  left: 12px;
  background-image: url("../img/arrow_left.svg");
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .arrow.arrow-right {
  right: 12px;
  background-image: url("../img/arrow_right.svg");
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .dots {
  margin-top: 12px;
  text-align: center;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .dots button {
  display: inline-block;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background-color: #bbb;
  cursor: pointer;
  transition: background-color 0.3s;
}
.section3 .tab .tab-content .carousel-wrapper .carousel-container .dots button.active {
  background-color: #00a19b;
}
@media (max-width: 600px) {
  .section3 .tab .tabs .tab-item {
    font-size: 14px;
  }
  .section3 .tab .tab-content .carousel-container {
    max-width: 100%;
    margin: 16px auto 0px;
    /* 新增包裹輪播圖片的區塊 */
  }
  .section3 .tab .tab-content .carousel-container .carousel-slide-wrapper {
    width: 100% !important; /* 顯示區塊寬度 */
  }
  .section3 .tab .tab-content .carousel-container .carousel-slide-wrapper .carousel-slide img {
    width: 60%;
    transform: scale(1);
  }
  .section3 .tab .tab-content .carousel-container .arrow {
    width: 10px;
    height: 16px;
  }
  .section3 .tab .tab-content .carousel-container .arrow.arrow-left {
    left: 8px;
  }
  .section3 .tab .tab-content .carousel-container .arrow.arrow-right {
    right: 8px;
  }
}

.section4 {
  background-color: #E7F1E0;
}
.section4 .notice-container {
  max-width: 960px;
  width: 100%;
  margin: 32px auto;
  padding: 8px 24px;
  border-bottom: 1px solid #663F00;
}
.section4 .notice-header {
  line-height: 54px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #663F00;
  font-size: 24px;
}
.section4 .notice-arrow {
  width: 20px;
  height: 10px;
  transition: transform 0.3s ease;
}
.section4 .notice-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.section4 .notice-content .flexBox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.section4 .notice-content .flexBox img {
  max-width: 96px;
  display: block;
  position: relative;
  margin: 0 auto;
  margin: 0px 16px 0px auto;
}
.section4 .notice-content .content_info {
  font-size: 18px;
  color: #242424;
  margin: 0px auto 16px;
}
.section4 .notice-content .content_smallTitle {
  color: #663F00;
  font-weight: bold;
  font-size: 18px;
  margin: 8px auto;
}
.section4 .notice-content .info_box {
  background-color: #F5FBF2;
  border-radius: 8px;
  padding: 20px;
}
.section4 .notice-content .info_box .infoTitle {
  color: #00735A;
  font-size: 18px;
  font-weight: bold;
  margin: 4px auto;
}
@media (max-width: 800px) {
  .section4 .notice-container {
    max-width: 960px;
    width: 90%;
    margin: 24px auto;
    padding: 8px 12px;
  }
  .section4 .notice-header {
    line-height: 40px;
    font-size: 18px;
  }
  .section4 .notice-content .flexBox {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
  }
  .section4 .notice-content .flexBox img {
    margin: 0px auto;
  }
  .section4 .notice-content .content_info {
    font-size: 16px;
    color: #242424;
  }
  .section4 .notice-content .content_smallTitle {
    font-size: 16px;
    text-align: center;
  }
  .section4 .notice-content .info_box {
    padding: 16px;
  }
  .section4 .notice-content .info_box .infoTitle {
    font-size: 16px;
  }
}
.section4 .notice-header.open .notice-arrow {
  transform: rotate(180deg);
}
@media (max-width: 800px) {
  .section4 .notice-container {
    padding: 8px 12px;
    margin: 16px auto;
  }
}/*# sourceMappingURL=style.css.map */