@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;
  background: url(../images/bg_texture.jpg) repeat center;
}

.hr {
  width: calc(4.375 * var(--remBasicSize));
  height: calc(0.0625 * var(--remBasicSize));
  background: #666666;
  margin: calc(1.25 * var(--remBasicSize)) auto calc(1.375 * var(--remBasicSize));
}

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

           kv

-------------------------*/
#kv {
  position: relative;
  width: 100%;
  height: calc(86.25 * var(--remBasicSize));
}
#kv .container {
  position: relative;
  z-index: 2;
  height: calc(86.25 * var(--remBasicSize));
}
#kv .container .title {
  position: relative;
  z-index: 2;
  top: calc(1.75 * var(--remBasicSize));
  width: 100%;
  text-align: center;
}
#kv .container .title img.logo {
  display: block;
  width: calc(14.375 * var(--remBasicSize));
  height: calc(7.375 * var(--remBasicSize));
  background: url(../images/kv/logo_georgjensen.png) no-repeat top center/contain;
  margin: 0 auto calc(1.875 * var(--remBasicSize));
}
#kv .container .title h1 {
  width: calc(34 * var(--remBasicSize));
  height: calc(2.6875 * var(--remBasicSize));
  background: url(../images/kv/h1_moonlight-grapes.png) no-repeat top center/contain;
  display: block;
  text-indent: calc(-62499.9375 * var(--remBasicSize));
  margin: 0 auto calc(0.375 * var(--remBasicSize));
}
#kv .container .title h2 {
  color: #fff;
  font-size: calc(3 * var(--remBasicSize));
  line-height: 1.5em;
  font-weight: 400;
}
#kv .container .title2 {
  position: relative;
  z-index: 2;
  top: calc(47.125 * var(--remBasicSize));
  width: 100%;
  text-align: center;
}
#kv .container .title2 > span {
  display: block;
}
#kv .container .title2 .t1 {
  color: #fff;
  font-size: calc(2.125 * var(--remBasicSize));
  line-height: 1.6em;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: calc(0.625 * var(--remBasicSize));
}
#kv .container .title2 .t2 {
  color: #fff;
  font-size: calc(1.625 * var(--remBasicSize));
  letter-spacing: 0.04em;
  font-weight: 300;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
#kv .container .title2 .btn_box {
  position: relative;
  width: calc(27.8125 * var(--remBasicSize));
  height: calc(6 * var(--remBasicSize));
  margin: calc(3.4375 * var(--remBasicSize)) auto 0;
}
#kv .container .title2 .btn_box img.icon {
  position: absolute;
  z-index: 3;
  top: calc(-2.1875 * var(--remBasicSize));
  left: calc(-1.375 * var(--remBasicSize));
  width: calc(5.9375 * var(--remBasicSize));
  height: calc(5.9375 * var(--remBasicSize));
}
#kv .container .title2 .btn_box a.btn {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  width: calc(27.8125 * var(--remBasicSize));
  height: calc(6 * var(--remBasicSize));
  background: url(../images/kv/btn_bg.png) no-repeat top center/contain;
  overflow: hidden;
  -webkit-mask-image: url(../images/kv/btn_bg.png);
          mask-image: url(../images/kv/btn_bg.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
#kv .container .title2 .btn_box a.btn:before {
  z-index: 2;
  top: 0;
  position: absolute;
  content: "";
  display: block;
  width: calc(27.8125 * var(--remBasicSize));
  height: calc(6 * var(--remBasicSize));
  background: url(../images/kv/light2.png) center no-repeat;
  background-size: cover;
  animation: 5s txt_shine infinite ease-in-out;
  animation-delay: 0.8s;
  opacity: 0;
}
@keyframes txt_shine {
  0% {
    transform: translateX(-350px);
    opacity: 1;
  }
  40% {
    transform: translateX(400px);
    opacity: 1;
  }
  100% {
    transform: translateX(400px);
    opacity: 1;
  }
}
#kv .container .title2 .btn_box a.btn::after {
  z-index: 2;
  top: 39%;
  right: 16%;
  position: absolute;
  content: "";
  display: block;
  width: calc(1.625 * var(--remBasicSize));
  height: calc(1.3125 * var(--remBasicSize));
  background: url(../images/kv/btn_arrow.png) no-repeat top center/contain;
  animation: 2s btn_arrow infinite ease-in-out;
}
@keyframes btn_arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
#kv .container .title2 .btn_box a.btn span {
  position: relative;
  z-index: 5;
  width: 100%;
  display: block;
  color: #000;
  letter-spacing: 0.05em;
}
#kv .container .title2 .btn_box a.btn span:nth-child(1) {
  font-size: calc(2.25 * var(--remBasicSize));
  line-height: 1.3em;
}
#kv .container .title2 .btn_box a.btn span:nth-child(2) {
  font-size: calc(1.25 * var(--remBasicSize));
  line-height: 1.3em;
}
#kv .container .title2 .btn_box > span {
  display: block;
  color: #fff;
  font-size: calc(1.3125 * var(--remBasicSize));
  margin-top: calc(1 * var(--remBasicSize));
  letter-spacing: 0.05em;
}
#kv .container .title2 .btn_box > span.note {
  color: #e0e0e0;
  font-size: calc(0.9375 * var(--remBasicSize));
  font-weight: 300;
}

[data-aos=kv_bg] {
  position: absolute;
  z-index: 1;
  top: 0;
  opacity: 1;
  transition-property: transform, opacity;
}

[data-aos=kv_bg].aos-animate {
  opacity: 1;
  animation-delay: 1s;
  position: absolute;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(86.25 * var(--remBasicSize));
  background: url(../images/kv/kv_bg.jpg) no-repeat center/contain;
  display: block;
  animation: 1.4s kv_bg;
  animation-timing-function: ease-in-out;
}
@keyframes kv_bg {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}

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

          video

-------------------------*/
#video {
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
}
#video .container {
  position: relative;
  z-index: 2;
  padding: calc(6.25 * var(--remBasicSize)) 0 0;
}
#video .container .title {
  text-align: center;
  margin-bottom: calc(2.5 * var(--remBasicSize));
}
#video .container .title h2 {
  font-size: calc(2.625 * var(--remBasicSize));
  font-weight: 500;
}
#video .container .title span {
  font-size: calc(1.75 * var(--remBasicSize));
  line-height: 1.5em;
}
#video .container #video_gj {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(58.625 * var(--remBasicSize));
}

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

          pd

-------------------------*/
#pd {
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  height: auto;
  margin: 0 auto;
}
#pd .container {
  position: relative;
  z-index: 2;
  padding-bottom: calc(9.375 * var(--remBasicSize));
}
#pd .container .item1 {
  position: relative;
  height: calc(70 * var(--remBasicSize));
}
#pd .container .item1 .title {
  position: absolute;
  z-index: 2;
  top: calc(42 * var(--remBasicSize));
  left: calc(1.6875 * var(--remBasicSize));
  margin-bottom: calc(2.5 * var(--remBasicSize));
  width: calc(29.375 * var(--remBasicSize));
}
#pd .container .item1 .title h2 {
  font-size: calc(2.625 * var(--remBasicSize));
  font-weight: 500;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
#pd .container .item1 .title span {
  position: relative;
  display: block;
  font-size: calc(1.75 * var(--remBasicSize));
  line-height: 1.6em;
  padding-left: calc(1.25 * var(--remBasicSize));
  text-align: justify;
  font-weight: 400;
}
#pd .container .item1 .title span::before {
  position: absolute;
  top: calc(0.625 * var(--remBasicSize));
  left: 0;
  display: block;
  content: "";
  width: calc(0.25 * var(--remBasicSize));
  height: calc(13.125 * var(--remBasicSize));
  background-color: #000;
}
#pd .container .item1 a.btn {
  position: relative;
  top: calc(61.25 * var(--remBasicSize));
  z-index: 3;
  display: block;
  width: calc(28.25 * var(--remBasicSize));
  height: calc(5.5 * var(--remBasicSize));
  background-color: #000;
  color: #fff;
  font-size: calc(1.875 * var(--remBasicSize));
  text-align: center;
  line-height: calc(5.4375 * var(--remBasicSize));
  margin: 0 auto;
}
#pd .container .item1 a.btn:hover {
  background-color: #1e2125;
}
#pd .container .item1 .pic {
  position: absolute;
  top: calc(4.6875 * var(--remBasicSize));
  right: 0;
  width: calc(35.375 * var(--remBasicSize));
  height: calc(44.25 * var(--remBasicSize));
}
#pd .container .item2 {
  position: relative;
  /*--- Dots ---*/
  /*--- 左右按鍵 ---*/
}
#pd .container .item2 .slides {
  position: relative;
  z-index: 2;
  width: 100%;
}
#pd .container .item2 .slides .slider_wrap {
  display: block;
}
#pd .container .item2 .slides .slider_wrap img.pd_pic {
  display: block;
  width: 100%;
  height: calc(31.625 * var(--remBasicSize));
}
#pd .container .item2 .slides .slider_wrap img.moonlightgrapes {
  display: block;
  width: 100%;
  height: calc(3.0625 * var(--remBasicSize));
}
#pd .container .item2 .slides .slider_wrap .txt {
  width: 100%;
  height: calc(18.4375 * var(--remBasicSize));
  text-align: center;
  padding-top: calc(1.375 * var(--remBasicSize));
  color: #000;
}
#pd .container .item2 .slides .slider_wrap .txt .name {
  font-size: calc(2.25 * var(--remBasicSize));
  font-weight: 400;
}
#pd .container .item2 .slides .slider_wrap .txt span {
  display: block;
  font-size: calc(1.75 * var(--remBasicSize));
  line-height: 1.5em;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
#pd .container .item2 .slides .slider_wrap .txt span.note {
  color: #858585;
  font-size: calc(1.4375 * var(--remBasicSize));
}
#pd .container .item2 .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
#pd .container .item2 .slick-dots {
  position: absolute;
  z-index: 3;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: calc(3.125 * var(--remBasicSize));
  padding: 0;
  list-style: none;
  text-align: center;
}
#pd .container .item2 .slick-dots li {
  justify-content: center;
  position: relative;
  display: inline-block;
  margin: 0 calc(0.5 * var(--remBasicSize));
  padding: 0;
  cursor: pointer;
}
#pd .container .item2 .slick-dots li:nth-child(odd) {
  width: calc(1.8125 * var(--remBasicSize));
  height: calc(1.8125 * var(--remBasicSize));
}
#pd .container .item2 .slick-dots li:nth-child(even) {
  width: calc(1.5 * var(--remBasicSize));
  height: calc(1.5 * var(--remBasicSize));
  margin-top: calc(0.125 * var(--remBasicSize));
}
#pd .container .item2 .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
}
#pd .container .item2 .slick-dots li button:hover, #pd .container .item2 .slick-dots li button:focus {
  outline: none;
}
#pd .container .item2 .slick-dots li button:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: calc(3.125 * var(--remBasicSize));
  opacity: 1;
}
#pd .container .item2 .slick-dots li.slick-active:nth-child(1) button:before, #pd .container .item2 .slick-dots li.slick-active:nth-child(2) button:before {
  opacity: 1;
  background-color: #c5a160;
}
#pd .container .item2 .slick-dots li.slick-active:nth-child(3) button:before, #pd .container .item2 .slick-dots li.slick-active:nth-child(4) button:before, #pd .container .item2 .slick-dots li.slick-active:nth-child(5) button:before {
  opacity: 1;
  background-color: #b0b0b0;
}
#pd .container .item2 .slick-prev, #pd .container .item2 .slick-next {
  position: absolute;
  z-index: 5;
  z-index: 40;
  transform: scale(1);
  background-color: transparent;
  font-size: 0;
  cursor: pointer;
}
#pd .container .item2 .slick-prev {
  left: calc(2.375 * var(--remBasicSize));
  top: calc(14.375 * var(--remBasicSize));
  width: calc(3 * var(--remBasicSize));
  height: calc(5.125 * var(--remBasicSize));
}
#pd .container .item2 .slick-prev:before {
  display: block;
  content: "";
  width: calc(3 * var(--remBasicSize));
  height: calc(5.125 * var(--remBasicSize));
  background: url(../images/pd/arrow_left.png) no-repeat center/contain;
}
#pd .container .item2 .slick-next {
  right: calc(2.375 * var(--remBasicSize));
  top: calc(14.375 * var(--remBasicSize));
  width: calc(3 * var(--remBasicSize));
  height: calc(5.125 * var(--remBasicSize));
}
#pd .container .item2 .slick-next:before {
  display: block;
  content: "";
  width: calc(3 * var(--remBasicSize));
  height: calc(5.125 * var(--remBasicSize));
  background: url(../images/pd/arrow_right.png) no-repeat center/contain;
}
#pd .container .item3 {
  position: relative;
}
#pd .container .item3 .title {
  position: absolute;
  z-index: 2;
  top: calc(56.875 * var(--remBasicSize));
  left: calc(5.625 * var(--remBasicSize));
  width: calc(37.5 * var(--remBasicSize));
}
#pd .container .item3 .title h2 {
  color: #fff;
  font-size: calc(3 * var(--remBasicSize));
  font-weight: 500;
  margin-bottom: calc(1.875 * var(--remBasicSize));
}
#pd .container .item3 .title span {
  position: relative;
  display: block;
  font-size: calc(1.75 * var(--remBasicSize));
  line-height: 1.6em;
  text-align: justify;
  font-weight: 400;
}
#pd .container .item3 a.btn {
  position: relative;
  top: calc(76.25 * var(--remBasicSize));
  z-index: 3;
  display: block;
  width: calc(40.125 * var(--remBasicSize));
  height: calc(7.9375 * var(--remBasicSize));
  background-color: #000;
  color: #fff;
  font-size: calc(2 * var(--remBasicSize));
  text-align: center;
  line-height: 1.5em;
  margin: 0 auto;
  border-radius: calc(0.3125 * var(--remBasicSize));
  padding-top: calc(0.9375 * var(--remBasicSize));
  letter-spacing: 0.025em;
}
#pd .container .item3 a.btn:hover {
  background-color: #1e2125;
}
#pd .container .item3 a.btn span {
  position: relative;
  display: block;
  font-size: calc(1.8125 * var(--remBasicSize));
}
#pd .container .item3 a.btn span::after {
  position: absolute;
  display: block;
  content: "";
  height: 0;
  width: 0;
  top: 36%;
  right: 15%;
  border: solid transparent;
  border-left-color: #fff;
  border-width: calc(0.5 * var(--remBasicSize));
  animation: 1s btn_arrow infinite ease-in-out;
}
@keyframes btn_arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(calc(0.625 * var(--remBasicSize)));
  }
}
#pd .container .item3 .pic {
  display: block;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(72.125 * var(--remBasicSize));
}

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

         data

-------------------------*/
#data {
  position: relative;
  margin: 0 auto;
}
#data .container {
  width: calc(46.875 * var(--remBasicSize));
  padding: calc(3.125 * var(--remBasicSize)) 0 calc(6.25 * var(--remBasicSize));
}
#data .container .title {
  position: relative;
  padding: 0 calc(3.125 * var(--remBasicSize));
}
#data .container .title img.logo {
  display: block;
  width: calc(19.6875 * var(--remBasicSize));
  height: calc(10.125 * var(--remBasicSize));
  margin: 0 auto calc(1.625 * var(--remBasicSize));
}
#data .container .title h2 {
  font-size: calc(3 * var(--remBasicSize));
  font-weight: 500;
  line-height: 1.4em;
  text-align: center;
}
#data .container .title h2 strong {
  font-weight: 500;
  display: inline;
  background: linear-gradient(transparent 40%, #ebdab9 100%);
  vertical-align: baseline;
  line-height: 1.4em;
}
#data .container .title p {
  position: relative;
  color: #000;
  font-size: calc(1.75 * var(--remBasicSize));
  font-weight: 400;
  line-height: 1.5em;
  text-align: justify;
  margin: 0 auto calc(0.75 * var(--remBasicSize));
}
#data .container .title span {
  display: block;
  color: #666;
  font-size: calc(1.5 * var(--remBasicSize));
}
#data .container .content {
  margin-top: calc(1.25 * var(--remBasicSize));
  /*預約補發mail*/
}
#data .container .content .box {
  position: relative;
  width: calc(44.1875 * var(--remBasicSize));
  min-height: calc(55 * var(--remBasicSize));
  margin: 0 auto;
  padding: calc(1.25 * var(--remBasicSize)) calc(1.5 * var(--remBasicSize));
  background-color: #fff;
  border: solid calc(0.625 * var(--remBasicSize)) #ebe9e8;
}
#data .container .content .box .tetris_content {
  padding-top: calc(1.25 * var(--remBasicSize));
}
#data .container .content .reissue {
  color: #000;
  font-size: calc(1.875 * var(--remBasicSize));
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 0;
  margin: 5% auto;
  text-align: justify;
}
#data .container .content .reissue a {
  display: inline-block;
  vertical-align: baseline;
  padding: 1% 1%;
  margin: 0 1%;
  font-size: calc(1.8125 * var(--remBasicSize));
  color: #000;
  font-weight: 500;
  border: solid 1px #333;
  cursor: pointer;
}
#data .container .content .reissue a:hover {
  color: #fff;
  background-color: black;
  transition: all ease-in-out 0.2s;
}
#data .container .content .note {
  width: 100%;
  padding: calc(1.25 * var(--remBasicSize)) calc(2.5 * var(--remBasicSize)) calc(4.375 * var(--remBasicSize));
}
#data .container .content .note ul {
  line-height: 1.53em;
  color: #333;
  font-size: calc(1.75 * var(--remBasicSize));
}
#data .container .content .note ul li {
  list-style: decimal;
  margin-left: 1.5em;
  text-align: justify;
}
#data .container .content .note ul li a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  vertical-align: baseline;
  padding: 0 calc(0.375 * var(--remBasicSize));
}
#data .container .content .note ul li a:hover {
  background-color: #333;
}

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

          footer

-------------------------*/
footer {
  position: absolute;
  z-index: 5;
  bottom: 0;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(6.25 * var(--remBasicSize));
  margin: 0 auto;
  text-align: center;
}
footer > a {
  color: #333;
}/*# sourceMappingURL=main.css.map */