@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*-------------------------------------------*\
	_common.scss

  Index
  - 1.title
  - 2.more
  - 3.img-slide
  - 4.anmiate
\*-------------------------------------------*/
.idx-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5rem 0 1rem;
  color: #adb1d5;
  font-family: "Josefin Sans", "Noto Sans TC", sans-serif;
  font-size: 8.5vw;
  letter-spacing: 5px;
}
@media (min-width: 1200px) {
  .idx-title {
    font-size: 3vw;
  }
}

.more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "opensans", -apple-system, sans-serif;
}
.more-btn a {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#f6b98d), to(#df6864));
  background: linear-gradient(90deg, #f6b98d 0%, #df6864 100%);
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 10px;
  overflow: hidden;
}
.more-btn a:before, .more-btn a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
}
.more-btn a:before {
  background: #f6b98d;
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}
.more-btn a:after {
  background: #df6864;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.more-btn a span {
  position: relative;
  z-index: 1;
  min-width: 280px;
  padding: 1.5rem 0;
  text-align: center;
}
.more-btn a span:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f6b98d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.more-btn a span:before {
  top: calc(50% - 2px);
  left: calc(50% + 3rem);
}
.more-btn a span:after {
  content: "";
  position: absolute;
  left: calc(50% + 3rem);
  top: calc(50% + 0px);
  width: 30px;
  height: 1px;
  background: #f6b98d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .more-btn a span {
    min-width: 280px;
    padding: 1.5rem 0;
    font-size: 1rem;
  }
}
.more-btn a:hover span {
  color: #fff;
}
.more-btn a:hover:before {
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:after {
  clip-path: inset(0 0 0 0);
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}

.slide-img {
  position: relative;
}
.slide-img:before, .slide-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.slide-img:before {
  background: #f09057;
  z-index: 1;
}
.slide-img:after {
  background: #da4935;
  z-index: 2;
}
.slide-img.active:before {
  -webkit-animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.6s;
          animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.slide-img.active:after {
  -webkit-animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards;
          animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes img-slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes img-slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes clipInLeft {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes clipInLeft {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
  }
}
.clipInLeft {
  -webkit-animation-name: clipInLeft;
          animation-name: clipInLeft;
}

@-webkit-keyframes clipInTop {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
  }
}

@keyframes clipInTop {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
  }
}
.before-clip:before, .before-clip:after {
  -webkit-animation: clipInTop 1s ease-in-out 0.5s forwards;
          animation: clipInTop 1s ease-in-out 0.5s forwards;
}

/*-------------------------------------------*\
	_banner
\*-------------------------------------------*/
.banner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 3rem;
  overflow: hidden;
}
.banner-wrap .cus-container {
  margin: 0 -10vw;
}
@media (min-width: 992px) {
  .banner-wrap .cus-container {
    width: calc(100% + 20rem);
  }
  .banner-wrap .cus-container img {
    width: calc(100% + 20rem);
  }
}

/*-------------------------------------------*\
	_about.scss
\*-------------------------------------------*/
.about-wrap {
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .about-wrap {
    padding: 0 0 5rem;
  }
}
.about-img {
  position: relative;
  margin-bottom: 2rem;
}
.about-img:after {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 6%;
  background: url(../../images/img_shadow.png) no-repeat center top;
  background-size: 100%;
  mix-blend-mode: multiply;
}
.about-img figure {
  position: relative;
  border: 3px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  will-change: transform; /* 通知瀏覽器優化渲染 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
@media (min-width: 576px) {
  .about-img figure {
    border-radius: 20px;
  }
}
.about-img figure:before {
  display: block;
  content: "";
  padding-top: 68.75%;
}
.about-img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 防止 iOS 重繪 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  max-width: 300px;
}
@media (min-width: 576px) {
  .about-title {
    max-width: 500px;
    padding: 1rem 0;
  }
}
.about-title a {
  margin-left: 1rem;
  -webkit-filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.15));
          filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.15));
}
.about-inner {
  font-family: -apple-system, Arial, "Noto Sans TC", sans-serif;
  line-height: 2;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .about-inner {
    padding-bottom: 0.5rem;
  }
}
.about-inner i {
  color: #cb156e;
}

/*-------------------------------------------*\
	_views.scss
\*-------------------------------------------*/
.views-wrap {
  padding: 3rem 0;
  background: #c5b6b0;
}
.views-item {
  margin: 2rem 0;
}
.views-title {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.5rem 1rem;
  margin: 0 0 -25px -0.75rem;
  min-width: 12em;
  font-family: -apple-system, Arial, "Noto Sans TC", sans-serif;
  color: #fff;
  font-size: 1.2rem;
  -webkit-filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.15));
          filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.15));
}
.views-title p, .views-title small {
  position: relative;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}
.views-title small {
  margin-top: 0.5rem;
}
.views-title:before {
  content: "";
  position: absolute;
  border-radius: 8px;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#df6864), to(#f6b98d));
  background: linear-gradient(90deg, #df6864 0%, #f6b98d 100%);
}
.views-title:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 7px;
  right: -18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 45px;
  height: 45px;
  background: #f6b98d;
  border-radius: 0.5rem;
}
.views-img {
  position: relative;
  margin-bottom: 2rem;
  -webkit-filter: drop-shadow(7px 7px 0 rgba(0, 0, 0, 0.15));
          filter: drop-shadow(7px 7px 0 rgba(0, 0, 0, 0.15));
}
.views-img figure {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  will-change: transform; /* 通知瀏覽器優化渲染 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
@media (min-width: 576px) {
  .views-img figure {
    border-radius: 20px;
  }
}
.views-img figure:before {
  display: block;
  content: "";
  padding-top: 68.75%;
}
.views-img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 防止 iOS 重繪 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.views-inner {
  font-family: -apple-system, Arial, "Noto Sans TC", sans-serif;
  line-height: 2;
  font-size: 1.1rem;
}

/*-------------------------------------------*\
	_route.scss
\*-------------------------------------------*/
.route-wrap {
  margin-top: -2rem;
  margin-bottom: 1rem;
}
.route-wrap img {
  width: 100%;
}

/*-------------------------------------------*\
	_foods
\*-------------------------------------------*/
.foods-desc {
  display: block;
  padding-top: 1rem !important;
  padding-bottom: 3rem !important;
  background: #8c6b5f;
  color: #fff;
  line-height: 2;
}
@media (min-width: 992px) {
  .foods-desc {
    padding-top: 0 !important;
    padding-bottom: 4rem !important;
  }
}
.foods-box {
  position: relative;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  background: #8c6b5f;
}
.foods-box:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -20px;
  left: calc(2rem + 10px);
  width: 150px;
  height: 65px;
  border-radius: 10px;
  background: url(../../images/foods-title01.svg) no-repeat center top/contain #da4935;
}
@media (min-width: 992px) {
  .foods-box:before {
    left: calc(8rem + 10px);
    top: -25px;
    width: 180px;
    height: 120px;
  }
}
.foods-box:after {
  content: "※點擊立即導航";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem 0;
  color: #fff;
}
.foods-box .item {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 20px);
  margin: 15px 10px;
  background: #fff;
  -webkit-box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .foods-box .item {
    width: calc(50% - 30px);
    margin: 15px;
  }
}
.foods-box .item:before {
  content: attr(data-num);
  position: absolute;
  left: -12px;
  top: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
  width: 28px;
  background: #fff;
  border-radius: 50%;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  border: 3px solid #da4935;
}
.foods-box .item:after {
  content: "";
  position: absolute;
  right: 1rem;
  top: calc(50% - 17px);
  width: 25px;
  height: 35px;
  background: url(../../images/googlemap-icon.svg) no-repeat center center/contain;
}
.foods-box .hits, .foods-box .store {
  padding: 0.75rem 1rem;
}
.foods-box .hits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #c9caca;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
.foods-box .hits span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: skewX(-7deg);
          transform: skewX(-7deg);
  font-size: 1.275rem;
  font-weight: bold;
}
.foods-box .hits:after {
  content: "點閱率";
  margin-top: 5px;
  color: #fff;
  font-size: 0.7rem;
}
.foods-box .store {
  font-size: 1.25rem;
}
.foods-box.fds1 .item {
  border-radius: 10px;
}
.foods-box.fds1 .item:before {
  color: #da4935;
  border-color: #da4935;
}
.foods-box.fds1 .item .hits {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #da4935;
}
.foods-box.fds1 .foods-content {
  border-color: #da4935;
}
.foods-box.fds2:before {
  background: url(../../images/foods-title02.svg) no-repeat center top/contain #f09057 !important;
}
.foods-box.fds2 .item {
  border-radius: 10px;
}
.foods-box.fds2 .item:before {
  color: #f09057;
  border-color: #f09057;
}
.foods-box.fds2 .item .hits {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #f09057;
}
.foods-box.fds2 .foods-content {
  border-color: #f09057;
}
.foods-content {
  position: relative;
  padding: 1rem;
  background: #fff;
  border-radius: 15px;
  border: 3px solid #f4f4f4;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (min-width: 768px) {
  .foods-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}