@charset "UTF-8";
@import url("reset.css");
/* 解除邊框與padding限制 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 基本設定 */
html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  position: relative;
  font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: none;
  background-size: 60%;
}

a {
  text-decoration: none;
}

.qw_wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at center, #de1c17 0%, #c80b06 80%);
  overflow: hidden;
}

#qw_bokeh_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.qw_frame {
  position: relative;
  z-index: 10;
  margin: 30px auto 0px;
  max-width: 1200px;
  min-height: 700px;
}

.banner_kvframe {
  position: relative;
  display: block;
  background: url(../images/kvimg.jpg) no-repeat #fff top center;
  background-size: 100% auto;
  border: 24px solid #fff;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.5);
  padding-top: 34%;
  margin: 15px;
}
@media all and (max-width: 991px) {
  .banner_kvframe {
    padding-top: 40%;
    border: 12px solid #fff;
  }
}

h1 {
  position: absolute;
  display: block;
  width: 121px;
  height: 126px;
  top: 40px;
  left: 40px;
  z-index: 10;
}
@media all and (max-width: 991px) {
  h1 {
    top: 15px;
    left: 15px;
    width: 60px;
    height: 63px;
  }
}
h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/logo.png) no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  margin: 0;
  transition: all 0.2s linear;
}
h1 a:hover {
  transform: scale(1.2);
}

.content_wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top_row {
  display: grid;
  grid-template-columns: 450px 1fr;
  align-items: end;
  gap: 30px;
}
@media all and (max-width: 991px) {
  .top_row {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0px;
  }
}

#Videobox {
  width: 100%;
}
@media all and (max-width: 991px) {
  #Videobox {
    width: 90%;
    margin: 0 auto;
  }
}
@media all and (max-width: 575px) {
  #Videobox {
    width: 100%;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slogan {
  text-align: right;
}
@media all and (max-width: 991px) {
  .slogan {
    text-align: center;
    order: -1;
  }
}
.slogan img {
  width: 100%;
  max-width: 800px;
}

.bottom_row {
  margin-top: 20px;
  width: 100%;
}

.slogantext01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  gap: 15px;
}
@media all and (max-width: 991px) {
  .slogantext01 {
    margin-top: 15px;
    gap: 0px;
  }
}
.slogantext01 img {
  height: auto;
}
.slogantext01 img:nth-child(1) {
  width: calc((100% - 30px) * 0.1605);
}
.slogantext01 img:nth-child(2) {
  width: calc((100% - 30px) * 0.454);
}
.slogantext01 img:nth-child(3) {
  width: calc((100% - 30px) * 0.3855);
}
@media all and (max-width: 991px) {
  .slogantext01 img:nth-child(1) {
    width: 20%;
  }
  .slogantext01 img:nth-child(2) {
    width: 80%;
  }
  .slogantext01 img:nth-child(3) {
    width: 100%;
  }
}

.slogantext02 {
  display: flex;
  justify-content: flex-end;
}
@media all and (min-width: 768px) and (max-width: 991px) {
  .slogantext02 {
    justify-content: center;
    padding-right: 0;
  }
}
.slogantext02 img {
  max-width: 100%;
  height: auto;
}

.socialsite {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  text-align: right;
  margin-top: 15px;
}
.socialsite a {
  display: inline-block;
  transition: opacity 0.3s;
}
.socialsite a:hover {
  opacity: 0.8;
}
.socialsite a img {
  display: block;
  width: 100%;
  max-width: 50px;
}
@media all and (max-width: 991px) {
  .socialsite a img {
    max-width: 30px;
  }
}

/* 選單 */
#MAIN_NAV {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 30px 0;
  box-sizing: border-box;
  padding: 0px 30px;
}

.menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  align-items: center;
}
@media all and (max-width: 991px) {
  .menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media all and (min-width: 768px) and (max-width: 991px) {
  .menu {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
    gap: 20px;
  }
}

.menu a {
  position: relative;
  text-align: center;
  padding: 15px 10px;
  font-size: 22px;
  font-weight: bold;
  color: #bd5433;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  background-color: rgb(255, 252, 242);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(200, 185, 160, 0.25) 10px, rgba(200, 185, 160, 0.25) 20px);
  clip-path: polygon(0% 0%, 100% 0%, 98% 10%, 100% 20%, 97% 30%, 100% 40%, 98% 50%, 100% 60%, 97% 70%, 100% 80%, 98% 90%, 100% 100%, 0% 100%, 2% 90%, 0% 80%, 3% 70%, 0% 60%, 2% 50%, 0% 40%, 3% 30%, 0% 20%, 2% 10%);
  transform: rotate(-3deg);
  transition: all 0.3s ease;
  filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.25));
}
.menu a:hover {
  transform: rotate(0deg) scale(1.05);
  filter: drop-shadow(3px 5px 4px rgba(0, 0, 0, 0.15));
}
.menu a:active {
  transform: rotate(0deg) scale(0.98);
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.1));
}

@keyframes heartJump {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.2);
  }
}
.menu a.shinebtn::after {
  content: "❤";
  position: absolute;
  top: 10px;
  right: 16px;
  color: #c80b06;
  font-size: 16px;
  animation: heartJump 0.8s ease-in-out infinite;
}

/* 頁尾 */
.footer {
  width: 100%;
  padding: 40px 0;
  color: #fff;
}
.footer .footer_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
@media all and (max-width: 991px) {
  .footer .footer_container {
    gap: 20px;
  }
}
.footer .footer_info {
  flex: 1 1 600px;
  font-size: 16px;
  line-height: 1.6;
}
@media all and (max-width: 575px) {
  .footer .footer_info {
    flex: 1 1 100%;
    font-size: 14px;
    line-height: 1.8;
  }
}
.footer .info_row {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer .info_row .label {
  font-weight: bold;
  white-space: nowrap;
}
.footer .divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .logoicon {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 40px;
  min-height: 30px;
}
.footer .logoicon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer .logoicon.logoicon_1::before {
  width: 33px;
  height: 33px;
  background-image: url(../images/logo_1.png);
}
.footer .logoicon.logoicon_2::before {
  width: 40px;
  height: 30px;
  background-image: url(../images/logo_2.png);
}
.footer .logoicon.logoicon_3::before {
  width: 33px;
  height: 33px;
  background-image: url(../images/logo_3.png);
}
.footer .copyright {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  opacity: 0.9;
}
.footer .copyright .v-mobile {
  display: none;
}
@media all and (max-width: 991px) {
  .footer .copyright .v-mobile {
    display: block;
  }
}
.footer .footer_img_box {
  flex: 0 1 250px;
  text-align: right;
}
@media all and (max-width: 991px) {
  .footer .footer_img_box {
    flex: 1 1 100%;
    text-align: center;
  }
}
.footer .footer_img_box img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* 清除float */
.clearfix {
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0;
}/*# sourceMappingURL=style.css.map */