@charset "UTF-8";
/*750rem*/
:root {
  --remBasicSize: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: calc(1 * var(--remBasicSize));
  width: 100%;
  height: 100%;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg.jpg) repeat center;
  background-size: cover;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 9;
  display: block;
  height: calc(7.1875 * var(--remBasicSize));
  width: calc(3.625 * var(--remBasicSize));
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: calc(40.625 * var(--remBasicSize));
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 0.6;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  width: calc(3.625 * var(--remBasicSize));
  height: calc(7.1875 * var(--remBasicSize));
  background: url(../images/arrow_left.png) no-repeat center;
  background-size: 100%;
  display: block;
  left: calc(1.625 * var(--remBasicSize));
}

.slick-next {
  width: calc(3.625 * var(--remBasicSize));
  height: calc(7.1875 * var(--remBasicSize));
  background: url(../images/arrow_right.png) no-repeat center;
  background-size: 100%;
  display: block;
  right: calc(1.625 * var(--remBasicSize));
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

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

body {
  line-height: 1;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote {
  display: block;
}

nav ul {
  list-style: none;
}

ol {
  list-style: none;
}

ul {
  list-style: none;
}

ul ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

mark {
  background: none;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input[type=submit], input[type=button], button {
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: middle;
}

input, select, a img {
  vertical-align: middle;
}

/*-------------------------

         a

-------------------------*/
a,
button {
  cursor: pointer;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}

a:focus, a:active,
button:focus, button:active {
  outline: none;
  text-decoration: none;
}

.container {
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
}

/*-------------------------

           kv

-------------------------*/
#kv {
  position: relative;
  width: 100%;
  height: calc(75 * var(--remBasicSize));
  background: url(../images/kv/kv_bg.jpg) no-repeat top center/contain;
}
#kv .container {
  position: relative;
  z-index: 2;
}
#kv .container .title {
  position: relative;
  top: calc(13.6875 * var(--remBasicSize));
  width: 100%;
}
#kv .container .title h1 {
  width: calc(29.3125 * var(--remBasicSize));
  height: calc(7.9375 * var(--remBasicSize));
  background: url(../images/kv/title_h1.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto calc(0.625 * var(--remBasicSize));
}
#kv .container .title h1::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(3.125 * var(--remBasicSize));
  left: calc(15.3125 * var(--remBasicSize));
  width: calc(1.875 * var(--remBasicSize));
  height: calc(1.9375 * var(--remBasicSize));
  background: url(../images/kv/icon_love.png) no-repeat top center/contain;
  animation: icon_love 1s ease-in-out infinite;
}
@keyframes icon_love {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 750px) {
  #kv .container .title h1::after {
    top: calc(3.125 * var(--remBasicSize));
    left: calc(17.1875 * var(--remBasicSize));
  }
}
#kv .container .title h2 {
  width: calc(17 * var(--remBasicSize));
  height: calc(1.75 * var(--remBasicSize));
  background: url(../images/kv/title_h2.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto;
}
#kv .container p {
  position: absolute;
  top: calc(57.875 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(11.6875 * var(--remBasicSize));
  background: url(../images/kv/title_p.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
}

/*-------------------------

        gallery

-------------------------*/
#gallery {
  position: relative;
}
#gallery .container .title {
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(58 * var(--remBasicSize));
  background: url(../images/gallery/gallery_bg1.jpg) no-repeat top center/contain #eabeb0;
  padding-top: calc(10.0625 * var(--remBasicSize));
}
#gallery .container .title span {
  width: calc(9.125 * var(--remBasicSize));
  height: calc(8.625 * var(--remBasicSize));
  background: url(../images/gallery/TheFirstStep.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto calc(3.4375 * var(--remBasicSize));
}
#gallery .container .title p {
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
}
#gallery .container .title p.gallery_p1 {
  width: calc(38.5625 * var(--remBasicSize));
  height: calc(12.0625 * var(--remBasicSize));
  background: url(../images/gallery/gallery_p1.png) no-repeat top center/contain;
  margin: 0 auto calc(3.75 * var(--remBasicSize));
}
#gallery .container .title p.gallery_p2 {
  width: calc(40.1875 * var(--remBasicSize));
  height: calc(20 * var(--remBasicSize));
  background: url(../images/gallery/gallery_p2.png) no-repeat top center/contain;
  margin: 0 auto;
}
#gallery .container .content {
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(25 * var(--remBasicSize));
  background: url(../images/gallery/gallery_bg2.jpg) no-repeat top center/contain #eabeb0;
}
#gallery .container .content .artist {
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(62.5 * var(--remBasicSize));
  background: url(../images/gallery/gallery_frame.png) no-repeat top center/contain;
  display: block;
}
#gallery .container .content .artist .artworks_b1 {
  position: relative;
  width: calc(32.625 * var(--remBasicSize));
  padding-top: calc(10.375 * var(--remBasicSize));
  margin: 0 auto calc(1.25 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .artistname {
  width: calc(32.625 * var(--remBasicSize));
  height: calc(3.4375 * var(--remBasicSize));
  margin: 0 auto calc(0.625 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .link_ig {
  position: absolute;
  top: calc(11 * var(--remBasicSize));
  right: calc(8.125 * var(--remBasicSize));
  display: block;
  width: calc(2.375 * var(--remBasicSize));
  height: calc(2.375 * var(--remBasicSize));
  background: url(../images/gallery/icon_ig.png) no-repeat top center/contain;
}
#gallery .container .content .artist .artworks_b1 .link_ig:hover {
  opacity: 0.8;
}
#gallery .container .content .artist .artworks_b1 .frame {
  position: relative;
  width: calc(25.8125 * var(--remBasicSize));
  height: calc(25.8125 * var(--remBasicSize));
  background: url(../images/gallery/pictureframe.jpg) no-repeat top center/contain;
  margin: 0 auto;
  box-shadow: 0 0 calc(1 * var(--remBasicSize)) hsla(0, 0%, 0%, 0.2);
}
#gallery .container .content .artist .artworks_b1 .frame img.picture {
  position: absolute;
  top: calc(3.125 * var(--remBasicSize));
  left: calc(3.1875 * var(--remBasicSize));
  width: calc(19.5 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .frame .slides {
  position: relative;
  top: calc(3.125 * var(--remBasicSize));
  left: calc(3.1875 * var(--remBasicSize));
  width: calc(19.5 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
  background-color: #000;
  /*--- 左右按鍵 ---*/
}
#gallery .container .content .artist .artworks_b1 .frame .slides .slider_wrap {
  position: relative;
  width: calc(19.5 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .frame .slides .slider_wrap img {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: calc(19.5 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .frame .slides .slick-prev, #gallery .container .content .artist .artworks_b1 .frame .slides .slick-next {
  position: absolute;
  z-index: 40;
  transform: scale(1);
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
}
#gallery .container .content .artist .artworks_b1 .frame .slides .slick-prev {
  left: calc(-8.125 * var(--remBasicSize));
  top: calc(6.875 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .frame .slides .slick-prev:before {
  display: block;
  content: "";
  color: transparent;
  border: solid transparent;
  border-right-color: #ceae87;
  border-width: calc(0.9375 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .frame .slides .slick-next {
  right: calc(-8.125 * var(--remBasicSize));
  top: calc(6.875 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b1 .frame .slides .slick-next:before {
  display: block;
  content: "";
  color: transparent;
  border: solid transparent;
  border-left-color: #ceae87;
  border-width: calc(0.9375 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b2 {
  width: calc(37.5 * var(--remBasicSize));
  margin: 0 auto;
}
#gallery .container .content .artist .artworks_b2 h3 {
  color: #ee668c;
  font-size: calc(1.875 * var(--remBasicSize));
  line-height: 1.5em;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: calc(0.5 * var(--remBasicSize));
}
#gallery .container .content .artist .artworks_b2 span {
  display: block;
  color: #786e66;
  font-size: calc(1.5625 * var(--remBasicSize));
  line-height: 1.4em;
  letter-spacing: 0.03em;
  text-align: center;
}
#gallery .container .content .artist:nth-child(3) .link_ig {
  right: calc(9.375 * var(--remBasicSize));
}
#gallery .container .content .artist:hover .artworks_b1 .frame {
  cursor: url(../images/gallery/icon_hand.png) 16 16, auto;
}

/*-------------------------

        產品介紹

-------------------------*/
#pd {
  width: calc(46.875 * var(--remBasicSize));
  height: auto;
  background: url(../images/pd/triangles_pattern.png) repeat top center #fff;
  background-size: 20%;
  margin: 0 auto;
}
#pd .container {
  position: relative;
  padding-top: calc(15.625 * var(--remBasicSize));
  padding-bottom: calc(18.75 * var(--remBasicSize));
  height: auto;
}
#pd .container::before, #pd .container::after {
  position: absolute;
  content: "";
  display: block;
}
#pd .container::before {
  top: 0;
  left: 0;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(20.9375 * var(--remBasicSize));
  background: url(../images/pd/bg1.png) no-repeat top center/contain;
}
#pd .container::after {
  bottom: 0;
  left: 0;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(21 * var(--remBasicSize));
  background: url(../images/pd/bg2.png) no-repeat top center/contain;
}
#pd .container .title {
  position: relative;
  z-index: 2;
}
#pd .container .title span {
  width: calc(9.125 * var(--remBasicSize));
  height: calc(8.625 * var(--remBasicSize));
  background: url(../images/gallery/TheFirstStep.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto calc(3.4375 * var(--remBasicSize));
}
#pd .container .title h2 {
  width: calc(26.125 * var(--remBasicSize));
  height: calc(2.375 * var(--remBasicSize));
  background: url(../images/pd/title_h2.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto calc(1.5 * var(--remBasicSize));
}
#pd .container .title h3 {
  width: calc(27.0625 * var(--remBasicSize));
  height: calc(4 * var(--remBasicSize));
  background: url(../images/pd/title_h3.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto calc(1.6875 * var(--remBasicSize));
}
#pd .container .title p {
  width: calc(40.625 * var(--remBasicSize));
  height: calc(13 * var(--remBasicSize));
  background: url(../images/pd/title_p.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto calc(1.875 * var(--remBasicSize));
}
#pd .container .content {
  position: relative;
  z-index: 2;
}
#pd .container .content .item {
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(55.3125 * var(--remBasicSize));
  padding-top: calc(3.5 * var(--remBasicSize));
}
#pd .container .content .item.i1 {
  background: url(../images/pd/item1_bg.png) no-repeat top center/contain;
}
#pd .container .content .item.i2 {
  background: url(../images/pd/item2_bg.png) no-repeat top center/contain;
}
#pd .container .content .item.i3 {
  background: url(../images/pd/item3_bg.png) no-repeat top center/contain;
}
#pd .container .content .item.i4 {
  background: url(../images/pd/item4_bg.png) no-repeat top center/contain;
}
#pd .container .content .item.i5 {
  background: url(../images/pd/item5_bg.png) no-repeat top center/contain;
}
#pd .container .content .item .pd_name {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(5.25 * var(--remBasicSize));
}
#pd .container .content .item .pd_pic {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(28.3125 * var(--remBasicSize));
}
#pd .container .content .item .box {
  position: absolute;
  top: calc(16.25 * var(--remBasicSize));
  width: calc(10.5625 * var(--remBasicSize));
}
#pd .container .content .item .box::before {
  position: absolute;
  top: calc(-1 * var(--remBasicSize));
  left: calc(-0.5 * var(--remBasicSize));
  display: block;
  content: "";
  width: calc(1.5625 * var(--remBasicSize));
  height: calc(1.625 * var(--remBasicSize));
  background: url(../images/pd/icon_shine.png) no-repeat top center/contain;
}
#pd .container .content .item .box span {
  display: block;
  color: #b9a88f;
  font-size: calc(1.3125 * var(--remBasicSize));
  line-height: 1.3em;
  text-align: center;
  margin-bottom: calc(0.625 * var(--remBasicSize));
}
#pd .container .content .item .box .frame {
  position: absolute;
  width: calc(10.5625 * var(--remBasicSize));
  height: calc(10.625 * var(--remBasicSize));
  background: url(../images/gallery/pictureframe.jpg) no-repeat top center/contain;
  margin: 0 auto;
}
#pd .container .content .item .box .frame img {
  position: absolute;
  top: calc(1.3125 * var(--remBasicSize));
  left: calc(1.375 * var(--remBasicSize));
  width: calc(7.625 * var(--remBasicSize));
  height: calc(7.625 * var(--remBasicSize));
}
#pd .container .content .item:nth-child(odd) .box {
  left: calc(30 * var(--remBasicSize));
}
#pd .container .content .item:nth-child(even) .box {
  left: calc(6.25 * var(--remBasicSize));
}
#pd .container .content .item .txt {
  flex-wrap: wrap;
  padding: 0 calc(4.75 * var(--remBasicSize));
}
#pd .container .content .item .txt span {
  display: block;
  color: #786e66;
  font-size: calc(1.625 * var(--remBasicSize));
  line-height: 1.4em;
  text-align: justify;
}
#pd .container .content .item .txt a.btn_more {
  position: relative;
  display: block;
  width: calc(24.125 * var(--remBasicSize));
  height: calc(4.3125 * var(--remBasicSize));
  background: url(../images/pd/btn_more.png) no-repeat top center/contain #786e66;
  border-radius: calc(3.125 * var(--remBasicSize));
  margin-top: calc(0.875 * var(--remBasicSize));
}
#pd .container .content .item .txt a.btn_more:hover {
  background-color: #eabeb0;
}
#pd .container .content .item .txt a.btn_more::after {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  height: 0;
  width: 0;
  top: 38%;
  right: 6%;
  border: solid transparent;
  border-left-color: #fff;
  border-width: calc(0.5 * var(--remBasicSize));
  animation: 1s arrow infinite ease-in-out;
}
@keyframes arrow {
  0% {
    right: 6%;
  }
  50% {
    right: 4%;
  }
  100% {
    right: 6%;
  }
}
#pd .container .content .item:nth-child(even) .txt {
  display: flex;
  justify-content: flex-end;
}
#pd .container .content .item:nth-child(even) .txt span {
  text-align: end;
}

/*-------------------------

        video

-------------------------*/
#video {
  position: relative;
  z-index: 2;
  width: calc(46.875 * var(--remBasicSize));
  padding-bottom: calc(11.25 * var(--remBasicSize));
  background: url(../images/video/bg1.jpg) no-repeat center bottom/contain;
  background-color: #b1a7a2;
  margin: 0 auto;
}
#video .container .title {
  margin: 0 0 calc(3.125 * var(--remBasicSize));
  /*光*/
}
#video .container .title [data-aos=light] {
  opacity: 1;
  transition-property: transform, opacity;
  position: absolute;
  top: calc(-6.875 * var(--remBasicSize));
  left: calc(11.5 * var(--remBasicSize));
  background: url(../images/video/light1.png) no-repeat top center/contain;
}
#video .container .title [data-aos=light].aos-animate {
  opacity: 1;
  width: calc(23.75 * var(--remBasicSize));
  height: calc(6.875 * var(--remBasicSize));
  background: url(../images/video/light2.png) no-repeat top center/contain;
  animation: light 1.2s ease-in-out;
}
@keyframes light {
  0% {
    background: url(../images/video/light2.png) no-repeat top center/contain;
  }
  20% {
    background: url(../images/video/light2.png) no-repeat top center/contain;
  }
  35% {
    background: url(../images/video/light1.png) no-repeat top center/contain;
  }
  45% {
    background: url(../images/video/light2.png) no-repeat top center/contain;
  }
  55% {
    background: url(../images/video/light1.png) no-repeat top center/contain;
  }
  65% {
    background: url(../images/video/light2.png) no-repeat top center/contain;
  }
  100% {
    background: url(../images/video/light2.png) no-repeat top center/contain;
  }
}
#video .container .title h2 {
  position: relative;
  z-index: 2;
  width: calc(25.1875 * var(--remBasicSize));
  height: calc(10.25 * var(--remBasicSize));
  background: url(../images/video/title_h2.png) no-repeat center/contain;
  margin: 0 auto calc(1.875 * var(--remBasicSize));
  text-indent: calc(-6249.9375 * var(--remBasicSize));
}
#video .container .title p {
  position: relative;
  z-index: 2;
  width: calc(29.5625 * var(--remBasicSize));
  height: calc(9.75 * var(--remBasicSize));
  background: url(../images/video/title_p.png) no-repeat center/contain;
  margin: 0 auto;
  text-indent: calc(-6249.9375 * var(--remBasicSize));
}
#video .container .content {
  height: calc(70 * var(--remBasicSize));
}
#video .container .content .slides {
  position: relative;
  margin-bottom: calc(15.625 * var(--remBasicSize));
  /*--- Dots ---*/
  /*--- 左右按鍵 ---*/
}
#video .container .content .slides .slider_wrap {
  display: block;
  width: calc(46.875 * var(--remBasicSize));
}
#video .container .content .slides .slider_wrap .video_h3 {
  display: block;
  width: calc(18.75 * var(--remBasicSize));
  height: calc(6.9375 * var(--remBasicSize));
  margin: 0 auto calc(1.875 * var(--remBasicSize));
}
#video .container .content .slides .slider_wrap .videobox {
  position: relative;
  display: block;
  width: calc(41.75 * var(--remBasicSize));
  height: calc(24.0625 * var(--remBasicSize));
  margin: 0 auto;
}
#video .container .content .slides .slider_wrap .videobox:before {
  position: absolute;
  z-index: 4;
  top: calc(-0.625 * var(--remBasicSize));
  left: calc(-0.625 * var(--remBasicSize));
  content: "";
  display: block;
  width: calc(41.75 * var(--remBasicSize));
  height: calc(23.4375 * var(--remBasicSize));
  border: solid calc(0.625 * var(--remBasicSize)) #ffffff;
  pointer-events: none;
}
#video .container .content .slides .slider_wrap .videobox:hover {
  cursor: pointer;
}
#video .container .content .slides .slider_wrap .videobox .video-poster {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: calc(41.75 * var(--remBasicSize));
  height: calc(23.4375 * var(--remBasicSize));
  /*箭頭*/
}
#video .container .content .slides .slider_wrap .videobox .video-poster .play-btn {
  position: absolute;
  top: 38%;
  left: 40%;
  z-index: 5;
  width: calc(7.375 * var(--remBasicSize));
  height: calc(7.375 * var(--remBasicSize));
  transition: all ease-in-out 0.3s;
}
#video .container .content .slides .slider_wrap .videobox .video-poster .play-btn .play {
  width: calc(7.375 * var(--remBasicSize));
  height: calc(7.375 * var(--remBasicSize));
  background: url(../images/video/btn_play.png) no-repeat center/contain;
}
#video .container .content .slides .slider_wrap .videobox .video-poster .video-poster-pic {
  position: relative;
  width: calc(41.75 * var(--remBasicSize));
  height: calc(23.4375 * var(--remBasicSize));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all ease-in-out 0.8s;
}
#video .container .content .slides .slider_wrap .videobox .video-poster .video-poster-pic.pic01 {
  background-image: url(../images/video/item1_videoposter.jpg);
}
#video .container .content .slides .slider_wrap .videobox .video-poster .video-poster-pic.pic02 {
  background-image: url(../images/video/item2_videoposter.jpg);
}
#video .container .content .slides .slider_wrap .videobox .video-poster .video-poster-pic.pic03 {
  background-image: url(../images/video/item3_videoposter.jpg);
}
#video .container .content .slides .slider_wrap .videobox .video-poster .video-poster-pic.pic04 {
  background-image: url(../images/video/item4_videoposter.jpg);
}
#video .container .content .slides .slider_wrap .videobox:hover .video-poster .video-poster-pic {
  transform: scale(1.04);
  transition: all ease-in-out 0.8s;
  cursor: pointer;
}
#video .container .content .slides .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
#video .container .content .slides .slick-dots {
  position: absolute;
  z-index: 3;
  top: calc(35 * var(--remBasicSize));
  display: flex;
  justify-content: center;
  width: 100%;
  height: calc(3.125 * var(--remBasicSize));
  padding: 0;
  list-style: none;
  text-align: center;
}
#video .container .content .slides .slick-dots li {
  justify-content: center;
  position: relative;
  display: inline-block;
  width: calc(0.9375 * var(--remBasicSize));
  height: calc(0.9375 * var(--remBasicSize));
  margin: 0 calc(0.25 * var(--remBasicSize));
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #video .container .content .slides .slick-dots li {
    width: calc(1.5625 * var(--remBasicSize));
    height: calc(1.5625 * var(--remBasicSize));
    margin: 0 calc(0.5 * var(--remBasicSize));
  }
}
#video .container .content .slides .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
}
#video .container .content .slides .slick-dots li button:hover, #video .container .content .slides .slick-dots li button:focus {
  outline: none;
}
#video .container .content .slides .slick-dots li button:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: calc(0.9375 * var(--remBasicSize));
  height: calc(0.9375 * var(--remBasicSize));
  background-color: #fff;
  opacity: 1;
  border-radius: calc(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  #video .container .content .slides .slick-dots li button:before {
    width: calc(1.5625 * var(--remBasicSize));
    height: calc(1.5625 * var(--remBasicSize));
  }
}
#video .container .content .slides .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #e5bbae;
}
#video .container .content .slides .slick-prev, #video .container .content .slides .slick-next {
  position: absolute;
  z-index: 40;
  transform: scale(1);
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
}
#video .container .content .slides .slick-prev {
  left: calc(11.875 * var(--remBasicSize));
  top: calc(33.3125 * var(--remBasicSize));
  width: calc(2.5625 * var(--remBasicSize));
  height: calc(4.4375 * var(--remBasicSize));
}
#video .container .content .slides .slick-prev:before {
  display: block;
  content: "";
  color: transparent;
  width: calc(2.5625 * var(--remBasicSize));
  height: calc(4.4375 * var(--remBasicSize));
  background: url(../images/video/arrow.png) no-repeat center/contain;
  transform: scaleX(-1);
}
#video .container .content .slides .slick-next {
  right: calc(11.875 * var(--remBasicSize));
  top: calc(33.3125 * var(--remBasicSize));
  width: calc(2.5625 * var(--remBasicSize));
  height: calc(4.4375 * var(--remBasicSize));
}
#video .container .content .slides .slick-next:before {
  display: block;
  content: "";
  color: transparent;
  width: calc(2.5625 * var(--remBasicSize));
  height: calc(4.4375 * var(--remBasicSize));
  background: url(../images/video/arrow.png) no-repeat center/contain;
}
#video .container .content .btn_more {
  position: relative;
  display: block;
  width: calc(30.5 * var(--remBasicSize));
  margin: 0 auto;
}
#video .container .content .btn_more .txt1 {
  position: absolute;
  z-index: 2;
  top: calc(-4.6875 * var(--remBasicSize));
  width: calc(30.5 * var(--remBasicSize));
  height: calc(6.5 * var(--remBasicSize));
  background: url(../images/video/btn_p1.png) no-repeat center/contain;
}
#video .container .content .btn_more .txt2 {
  width: calc(30.5 * var(--remBasicSize));
  height: calc(5.875 * var(--remBasicSize));
  background: url(../images/video/btn_p2.png) no-repeat center/contain #e5bbae;
  transition: all ease-in-out 0.2s;
  border-radius: calc(3.125 * var(--remBasicSize));
  border: solid calc(0.1875 * var(--remBasicSize)) #edccc1;
  filter: drop-shadow(0 calc(0.1875 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize)) hsla(0, 0%, 0%, 0.15));
}
#video .container .content .btn_more .txt2:hover {
  transition: all ease-in-out 0.3s;
  background-color: #d9a798;
}
#video .container .content .btn_more .txt2::before {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  height: 0;
  width: 0;
  top: 39%;
  right: 16%;
  border: solid transparent;
  border-left-color: #fff;
  border-width: calc(0.625 * var(--remBasicSize));
}
#video .container .content .btn_more .txt2::after {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  height: 0;
  width: 0;
  top: 39%;
  right: 12%;
  border: solid transparent;
  border-left-color: #fff;
  border-width: calc(0.625 * var(--remBasicSize));
  animation: 1s arrow2 infinite ease-in-out;
}
@keyframes arrow2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/*-------------------------

         lightbox

-------------------------*/
/* ---------------------
           共用
---------------------- */
.modal {
  background-color: transparent;
  min-height: calc(37.5 * var(--remBasicSize));
}

/*背景底色*/
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: hsla(27, 8%, 44%, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 1;
  filter: alpha(opacity=100);
}

.modal-open .modal {
  overflow-x: auto;
  overflow-y: auto;
}

.modal .modal-content {
  position: relative;
  background-color: transparent;
  border-radius: 0px;
  outline: 0;
}

.modal-dialog {
  margin: 0 !important;
}

/* 關閉按鈕-X */
.style-box .close {
  position: fixed;
  z-index: 10;
  top: calc(1.25 * var(--remBasicSize));
  right: calc(1.25 * var(--remBasicSize));
  width: calc(3.125 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
  background: url(../images/video/close_w.png) center/contain no-repeat;
  text-shadow: none;
  background-color: transparent;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  filter: drop-shadow(0 0 10px #000);
}
@media screen and (max-width: 750px) {
  .style-box .close {
    right: calc(0.625 * var(--remBasicSize));
    top: calc(0.625 * var(--remBasicSize));
    width: calc(4.375 * var(--remBasicSize));
    height: calc(4.375 * var(--remBasicSize));
  }
}
.style-box .close:hover {
  transform: rotate(90deg);
  transition: all ease-in-out 0.5s;
}

#videoModel .modal-body {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  #videoModel .modal-body {
    width: calc(46.875 * var(--remBasicSize));
  }
}
#videoModel .modal-body iframe {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #videoModel .modal-body iframe {
    width: calc(41.75 * var(--remBasicSize));
    height: calc(23.4375 * var(--remBasicSize));
  }
}

#gallery_pic .modal-body {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gallery_pic .modal-body .picture2 {
  width: auto;
  height: 80vh;
}
@media screen and (max-width: 750px) {
  #gallery_pic .modal-body .picture2 {
    width: 90vw;
    height: auto;
  }
}

/*-------------------------

          footer

-------------------------*/
footer {
  position: absolute;
  z-index: 5;
  bottom: 0;
  width: 100%;
  background-color: transparent;
  margin-bottom: calc(1.25 * var(--remBasicSize));
  text-align: center;
}
footer > a {
  color: #fff;
}/*# sourceMappingURL=main.css.map */