@charset "UTF-8";
html, body, div, span, 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, ar, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 100;
  src: url(../vendor/fonts/NotoSansTC-Light.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  src: url(../vendor/fonts/NotoSansTC-Regular.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 500;
  src: url(../vendor/fonts/NotoSansTC-Medium.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 700;
  src: url(../vendor/fonts/NotoSansTC-Bold.otf) format("opentype");
}

@font-face {
  font-family: 'PoltawskiNowy';
  font-style: normal;
  font-weight: 400;
  src: url(../vendor/fonts/PoltawskiNowy-Regular.ttf) format("opentype");
}

@font-face {
  font-family: 'PoltawskiNowy';
  font-style: normal;
  font-weight: 500;
  src: url(../vendor/fonts/PoltawskiNowy-Medium.ttf) format("opentype");
}

@font-face {
  font-family: 'PoltawskiNowy';
  font-style: normal;
  font-weight: 700;
  src: url(../vendor/fonts/PoltawskiNowy-Bold.ttf) format("opentype");
}

/*-- var --*/
/*-- mixins --*/
/*-- animation --*/
@-webkit-keyframes middle-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes middle-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes arw_r {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
  50.1% {
    opacity: 0;
    -webkit-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
  }
}

@keyframes arw_r {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
  50.1% {
    opacity: 0;
    -webkit-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*-- button --*/
/*-- common --*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 400;
  color: black;
  line-height: 1.5;
  position: relative;
}

select, button, textarea, input {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  outline: none;
}

table {
  border-collapse: collapse;
}

a {
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

a:focus {
  cursor: pointer;
  text-decoration: none;
}

a:active {
  outline: none;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

ul, ol {
  list-style-type: none;
}

@media (max-width: 767px) {
  .hide--sm {
    display: none;
  }
}

.show--sm {
  display: none;
}

@media (max-width: 767px) {
  .show--sm {
    display: block !important;
  }
}

.container {
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

@media (min-width: 1401px) {
  .container {
    width: 1350px;
  }
}

.container--xl {
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container--xl {
    width: 750px;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .container--xl {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container--xl {
    width: 1140px;
  }
}

@media (min-width: 1401px) {
  .container--xl {
    width: 1350px;
  }
}

@media (min-width: 1600px) {
  .container--xl {
    width: 1550px;
  }
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.document {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

@media (max-width: 991px) {
  .document {
    padding-top: 58px;
  }
}

/*-- header --*/
.header {
  background: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}

.navbar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 18px;
  height: 70px;
}

@media (max-width: 991px) {
  .navbar {
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-right: -1px;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 0 14px;
    height: 57px;
  }
}

@media (max-width: 991px) {
  .navbar.active .navbar__toggle-item:first-child {
    width: 28px;
    -webkit-transform: rotate(45deg) translate(5px, 4px);
            transform: rotate(45deg) translate(5px, 4px);
  }
  .navbar.active .navbar__toggle-item:nth-child(2) {
    opacity: 0;
  }
  .navbar.active .navbar__toggle-item:nth-child(3) {
    width: 28px;
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
  }
  .navbar.active .navbar__body {
    top: 70px;
    border-top: 1px solid #eee;
  }
}

@media (max-width: 991px) and (max-width: 767px) {
  .navbar.active .navbar__body {
    top: 57px;
  }
}

.navbar__title {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
}

.navbar__head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  position: relative;
}

@media (max-width: 767px) {
  .navbar__head {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .navbar__head::before {
    content: "";
    display: block;
    width: calc(100% + 36px);
    height: 72px;
    background: white;
    position: absolute;
    top: -14px;
    left: -18px;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .navbar__head::before {
    height: 62px;
  }
}

@media (max-width: 374px) {
  .navbar__head::before {
    height: 57px;
  }
}

.navbar__logo {
  display: inline-block;
  width: 278px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .navbar__logo {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .navbar__logo {
    width: 200px;
  }
}

.navbar__logo img {
  display: block;
}

.navbar__logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #4b4f54;
  letter-spacing: 0.2em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1em;
}

@media (max-width: 1199px) {
  .navbar__logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .navbar__logo-text {
    font-size: 1.375rem;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .navbar__logo-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 374px) {
  .navbar__logo-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 315px) {
  .navbar__logo-text {
    font-size: 0.75rem;
  }
}

.navbar__logo-text::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 25px;
  background: red;
  margin-left: 20px;
  margin-right: 22px;
}

@media (max-width: 991px) {
  .navbar__logo-text::before {
    margin-left: 10px;
    margin-right: 10px;
    height: 20px;
  }
}

@media (max-width: 374px) {
  .navbar__logo-text::before {
    height: 15px;
  }
}

.navbar__toggle {
  display: none;
}

@media (max-width: 767px) {
  .navbar__toggle {
    display: block;
    width: 24px;
    height: 16px;
    position: relative;
    z-index: 3;
  }
}

.navbar__toggle-item {
  width: 24px;
  height: 2px;
  background: #000000;
  margin-top: 5px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: width,-webkit-transform;
  transition-property: width,-webkit-transform;
  transition-property: transform,width;
  transition-property: transform,width,-webkit-transform;
}

.navbar__toggle-item:first-child {
  margin-top: 0;
}

.navbar__body {
  opacity: 1;
  width: calc(100% - 220px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .navbar__body {
    position: absolute;
    top: -999px;
    left: 0;
    z-index: 1;
    width: 100%;
    background: #ffffff;
    max-height: calc( 100vh -  57px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 30px 15px;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: top;
    transition-property: top;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

@media (max-width: 767px) {
  .menu {
    display: block;
  }
}

.menu li {
  list-style: none;
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .menu li {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .menu li {
    margin-left: 0;
    text-align: center;
    margin-top: 30px;
  }
}

.menu li:first-child {
  margin-left: 0;
}

@media (max-width: 767px) {
  .menu li:first-child {
    margin-top: 0;
  }
}

.menu li a {
  display: block;
}

.menu__item {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 40px;
  text-indent: -9999px;
  border: 1px solid #000000;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .menu__item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #000000;
  }
}

.menu__item img {
  display: block;
}

.menu__item span {
  display: block;
  width: 34px;
  height: 38px;
  background: #000000;
  position: absolute;
  right: 0;
  top: 0;
}

.menu__item span::before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 38px 12px;
  border-color: transparent transparent #000000 transparent;
  position: absolute;
  right: 34px;
  top: 0;
}

.menu__item span::after {
  content: " ";
  display: inline-block;
  position: absolute;
  background-image: url("../images/surprise/arrow-yellow.svg");
  background-size: cover;
  background-position: center;
  width: 22px;
  height: 9px;
  top: 40%;
  right: 8px;
}

.menu__item:hover {
  -webkit-transition: all .6s;
  transition: all .6s;
}

.menu__item:hover span {
  background: #fcee21;
}

.menu__item:hover span::before {
  border-color: transparent transparent #fcee21 transparent;
}

.menu__item:hover span::after {
  background-image: url("../images/surprise/arrow-black.svg");
  -webkit-animation: arw_r 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
          animation: arw_r 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

/*-- footer --*/
.footer {
  position: relative;
  z-index: 3;
  padding: 22px 0;
  background: #202020;
}

.footer__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #8f8784;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 767px) {
  .footer__text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .footer__text {
    font-size: 0.8125rem;
  }
}

@media (max-width: 767px) {
  .footer__text--info {
    display: block;
  }
}

@media (max-width: 767px) {
  .footer__text--mobilehide {
    display: none;
  }
}

.gotop {
  display: block;
  background-image: url("../images/top.svg");
  width: 15px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .gotop {
    width: 12px;
    height: 110px;
  }
}

.gotop-block {
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 100;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.6);
}

/*-- index --*/
/* kv */
.kv {
  width: 100%;
  background-image: url("../images/kv/bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 107px;
  padding-bottom: 100px;
  position: relative;
}

@media (max-width: 767px) {
  .kv {
    padding-top: 0px;
    padding-bottom: 0px;
    background-image: url("../images/kv/m-bg.jpg");
    background-size: cover;
  }
}

.kv::before {
  content: " ";
  display: block;
  position: absolute;
  background-image: url("../images/kv/bg-deco.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 908px;
  left: 0;
  top: 0;
  z-index: 4;
}

@media (max-width: 1199px) {
  .kv::before {
    height: 66vw;
  }
}

@media (max-width: 767px) {
  .kv::before {
    height: 27vw;
    background-image: url("../images/kv/m-bg-deco.png");
  }
}

.kv__main {
  position: relative;
  width: 1350px;
  height: 700px;
  background-image: url("../images/kv/main.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 1400px) {
  .kv__main {
    width: 100%;
    height: 0;
    padding-bottom: 52%;
  }
}

@media (max-width: 1199px) {
  .kv__main {
    padding-bottom: 58%;
  }
}

@media (max-width: 991px) {
  .kv__main {
    padding-bottom: 62%;
  }
}

@media (max-width: 767px) {
  .kv__main {
    padding-bottom: 180%;
    background-image: url("../images/kv/m-main.png");
  }
}

.kv__layer1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../images/kv/layer1.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .kv__layer1 {
    background-image: url("../images/kv/m-layer1.png");
  }
}

.kv__layer2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../images/kv/layer2.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .kv__layer2 {
    background-image: url("../images/kv/m-layer2.png");
  }
}

.kv__layer3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url("../images/kv/layer3.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .kv__layer3 {
    background-image: url("../images/kv/m-layer3.png");
  }
}

.kv__layer4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-image: url("../images/kv/layer4.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .kv__layer4 {
    background-image: url("../images/kv/m-layer4.png");
  }
}

.kv__layer4-gift {
  right: 1%;
  top: 22%;
  position: absolute;
}

@media (max-width: 1400px) {
  .kv__layer4-gift {
    width: 24%;
  }
  .kv__layer4-gift img {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .kv__layer4-gift {
    right: -3%;
  }
}

@media (max-width: 767px) {
  .kv__layer4-gift {
    display: none;
  }
}

.kv__layer5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-image: url("../images/kv/layer5.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .kv__layer5 {
    background-image: url("../images/kv/m-layer5.png");
  }
}

.kv__layer5-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.kv__layer6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-image: url("../images/kv/layer6.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .kv__layer6 {
    background-image: url("../images/kv/m-layer6.png");
  }
}

.middle {
  background: #e2ddd9;
  position: relative;
  padding-top: 87px;
}

@media (max-width: 1400px) {
  .middle {
    padding-top: 132px;
  }
}

@media (max-width: 1199px) {
  .middle {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .middle {
    padding-top: 60px;
  }
}

.middle__text {
  position: absolute;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: middle-text;
          animation-name: middle-text;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.middle__text-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1360px;
  overflow: hidden;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: -57px;
  right: 0;
  z-index: 3;
  height: 208px;
}

@media (max-width: 1400px) {
  .middle__text-flex {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .middle__text-flex {
    top: -18px;
  }
}

.surprise__main {
  position: relative;
  width: 1350px;
  height: 765px;
  background-image: url("../images/surprise/bg.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 1400px) {
  .surprise__main {
    width: 100%;
    height: 0;
    padding-bottom: 52%;
  }
}

@media (max-width: 767px) {
  .surprise__main {
    height: auto;
    padding-bottom: 0;
  }
}

.surprise__layer1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url("../images/surprise/layer1.png");
  background-size: cover;
  background-position: top;
}

@media (max-width: 1199px) {
  .surprise__layer1 {
    top: 34px;
  }
}

@media (max-width: 991px) {
  .surprise__layer1 {
    top: 60px;
    left: -12px;
  }
}

@media (max-width: 767px) {
  .surprise__layer1 {
    background-image: url("../images/surprise/m-layer1.png");
    position: static;
    background-size: cover;
    width: 92%;
    height: 69vw;
  }
}

.surprise__layer1 > span {
  position: absolute;
  left: 11.5%;
  display: block;
}

@media (max-width: 767px) {
  .surprise__layer1 > span {
    display: none;
  }
}

.surprise__layer1-num1 {
  top: 36.5%;
  z-index: 3;
}

@media (max-width: 1199px) {
  .surprise__layer1-num1 {
    width: 68px;
  }
}

@media (max-width: 991px) {
  .surprise__layer1-num1 {
    top: 40.5%;
  }
}

.surprise__layer1-num2 {
  top: 25%;
  z-index: 2;
}

@media (max-width: 1199px) {
  .surprise__layer1-num2 {
    width: 68px;
  }
}

@media (max-width: 991px) {
  .surprise__layer1-num2 {
    top: 27%;
  }
}

.surprise__layer1-num3 {
  top: 13.8%;
  z-index: 1;
}

@media (max-width: 1199px) {
  .surprise__layer1-num3 {
    width: 68px;
  }
}

.surprise__layer1-text {
  top: 27%;
  left: 17.5% !important;
}

@media (max-width: 991px) {
  .surprise__layer1-text {
    width: 29%;
  }
}

.surprise__layer1-btnarea {
  width: 473px;
  height: 320px;
  position: absolute;
  top: 53.8%;
  left: 9.5%;
}

@media (max-width: 1400px) {
  .surprise__layer1-btnarea {
    top: 56.8%;
  }
}

@media (max-width: 1199px) {
  .surprise__layer1-btnarea {
    width: 394px;
    top: 63%;
  }
}

@media (max-width: 991px) {
  .surprise__layer1-btnarea {
    width: 332px;
    top: 65%;
  }
}

@media (max-width: 767px) {
  .surprise__layer1-btnarea {
    display: none;
  }
}

@media (max-width: 767px) {
  .surprise__layer1-btnarea.show--sm {
    position: relative;
    height: auto;
    left: auto;
    top: auto;
    margin: 0 auto;
    margin-top: 42px;
    text-align: center;
    width: 100%;
  }
}

.surprise__layer1-btn {
  display: block;
  position: relative;
}

.surprise__layer1-btn:last-child {
  border-top: 1px solid #7d7572;
}

@media (max-width: 1199px) {
  .surprise__layer1-btn {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .surprise__layer1-btn {
    width: 76%;
    display: inline-block;
  }
}

.surprise__layer1-btn img {
  display: block;
}

@media (max-width: 767px) {
  .surprise__layer1-btn img {
    width: 80%;
  }
}

.surprise__layer1-btn .link {
  position: absolute;
  display: inline-block;
  background: #000;
  width: 124px;
  height: 32px;
  right: 0;
  top: 40%;
  -webkit-transition: all .6s;
  transition: all .6s;
}

@media (max-width: 1199px) {
  .surprise__layer1-btn .link {
    width: 90px;
  }
}

@media (max-width: 991px) {
  .surprise__layer1-btn .link {
    width: 75px;
  }
}

.surprise__layer1-btn .link::before {
  content: " ";
  display: inline-block;
  position: absolute;
  background-image: url("../images/surprise/go-white.svg");
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 16px;
  top: 30%;
  left: 8px;
}

.surprise__layer1-btn .link::after {
  content: " ";
  display: inline-block;
  position: absolute;
  background-image: url("../images/surprise/arrow-yellow.svg");
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 10px;
  top: 40%;
  right: 8px;
}

.surprise__layer1-btn .link:hover {
  background: #fcee22;
  -webkit-transition: all .6s;
  transition: all .6s;
}

.surprise__layer1-btn .link:hover::before {
  background-image: url("../images/surprise/go-black.svg");
}

.surprise__layer1-btn .link:hover::after {
  background-image: url("../images/surprise/arrow-black.svg");
  -webkit-animation: arw_r 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
          animation: arw_r 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.surprise__layer1-btn .link-mask {
  position: absolute;
  background-image: url("../images/surprise/btn-mask.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.surprise__layer2 {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .surprise__layer2 {
    display: block;
    text-align: center;
  }
}

.surprise__layer2-title {
  display: inline-block;
  width: 338px;
  height: 70px;
}

@media (max-width: 991px) {
  .surprise__layer2-title {
    width: 300px;
    height: 63px;
  }
}

.surprise__layer2-people {
  font-size: 2.25rem;
  font-weight: 100;
  letter-spacing: 2px;
}

@media (max-width: 991px) {
  .surprise__layer2-people {
    font-size: 1.625rem;
  }
}

@media (max-width: 767px) {
  .surprise__layer2-people {
    font-size: 1.25rem;
  }
}

.surprise__layer2-people .num {
  font-size: 4.5rem;
  font-family: "PoltawskiNowy", "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 700;
}

@media (max-width: 991px) {
  .surprise__layer2-people .num {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .surprise__layer2-people .num {
    font-size: 2.625rem;
  }
}

.surprise__layer3 {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767px) {
  .surprise__layer3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.surprise__layer3-img {
  width: 538px;
  height: 538px;
  margin-right: 134px;
  position: relative;
}

@media (max-width: 1400px) {
  .surprise__layer3-img {
    width: 432px;
    height: 432px;
    margin-right: 3%;
  }
}

@media (max-width: 1199px) {
  .surprise__layer3-img {
    width: 390px;
    height: 390px;
  }
}

@media (max-width: 991px) {
  .surprise__layer3-img {
    width: 323px;
    height: 323px;
    margin-right: 5%;
  }
}

@media (max-width: 767px) {
  .surprise__layer3-img {
    margin-right: 0;
    width: 268px;
    height: 268px;
  }
}

.surprise__layer3-img::before, .surprise__layer3-img::after {
  content: " ";
  display: inline-block;
  position: absolute;
}

.surprise__layer3-img::before {
  background-image: url("../images/surprise/deco1.png");
  background-size: cover;
  background-position: center;
  width: 206px;
  height: 219px;
  top: -11%;
  left: -22%;
  z-index: 3;
}

@media (max-width: 1400px) {
  .surprise__layer3-img::before {
    width: 182px;
    height: 170px;
  }
}

@media (max-width: 1199px) {
  .surprise__layer3-img::before {
    width: 164px;
    height: 152px;
  }
}

@media (max-width: 991px) {
  .surprise__layer3-img::before {
    width: 117px;
    height: 111px;
    left: -10%;
  }
}

.surprise__layer3-img::after {
  background-image: url("../images/surprise/deco2.png");
  background-size: cover;
  background-position: center;
  width: 368px;
  height: 368px;
  bottom: -12%;
  right: -11%;
  z-index: 3;
}

@media (max-width: 1400px) {
  .surprise__layer3-img::after {
    width: 302px;
    height: 301px;
  }
}

@media (max-width: 1199px) {
  .surprise__layer3-img::after {
    width: 254px;
    height: 254px;
  }
}

@media (max-width: 991px) {
  .surprise__layer3-img::after {
    width: 222px;
    height: 222px;
  }
}

@media (max-width: 767px) {
  .surprise__layer3-img::after {
    width: 190px;
    height: 190px;
  }
}

.surprise__layer3-mask {
  -webkit-mask-image: url("../images/surprise/photo-mask.svg");
          mask-image: url("../images/surprise/photo-mask.svg");
}

.surprise__layer3-mask span {
  display: block;
  width: 100%;
  height: 100%;
}

.surprise__layer3-textarea {
  position: absolute;
  bottom: 0;
  left: -16px;
  z-index: 4;
}

@media (max-width: 991px) {
  .surprise__layer3-textarea {
    bottom: -20px;
  }
}

@media (max-width: 767px) {
  .surprise__layer3-textarea {
    bottom: -35px;
  }
}

.surprise__layer3-text {
  font-size: 1.25rem;
  font-weight: 100;
  background: #f4f0ec;
  margin-bottom: 12px;
  padding: 2px 20px;
  max-width: 260px;
}

@media (max-width: 991px) {
  .surprise__layer3-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .surprise__layer3-text {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}

.surprise__layer3-text:last-child {
  margin-bottom: 0;
}

.surprise__layer3-text span {
  font-size: 4.5rem;
  font-family: "PoltawskiNowy", "Noto Sans TC", "微軟正黑體", sans-serif;
  line-height: 0;
}

@media (max-width: 991px) {
  .surprise__layer3-text span {
    font-size: 3.75rem;
  }
}

@media (max-width: 767px) {
  .surprise__layer3-text span {
    font-size: 3.25rem;
  }
}

.info {
  background-image: url("../images/info/bg-top.png");
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 60px;
}

@media (max-width: 1400px) {
  .info {
    padding-top: 132px;
  }
}

@media (max-width: 1199px) {
  .info {
    padding-top: 175px;
  }
}

@media (max-width: 767px) {
  .info {
    padding-top: 84px;
  }
}

.info__main {
  background-image: url("../images/info/bg.png");
  background-position: left top;
  background-repeat: repeat;
  padding-top: 74px;
  text-align: center;
  padding-bottom: 128px;
  position: relative;
}

@media (max-width: 991px) {
  .info__main {
    padding-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .info__main {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.info__main::after {
  content: " ";
  display: block;
  background-image: url("../images/info/deco3.png");
  background-position: right top;
  background-repeat: no-repeat;
  width: 100%;
  height: 600px;
  position: absolute;
  bottom: 0;
  right: -10%;
  z-index: 0;
}

.info__title {
  display: inline-block;
  position: relative;
}

@media (max-width: 991px) {
  .info__title {
    width: 79%;
  }
}

@media (max-width: 767px) {
  .info__title {
    width: 80%;
  }
}

.info__title::before {
  content: " ";
  display: block;
  background-image: url("../images/info/deco1.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 243px;
  height: 178px;
  position: absolute;
  top: -127%;
  left: -32%;
}

@media (max-width: 991px) {
  .info__title::before {
    width: 199px;
    height: 146px;
    left: -11%;
  }
}

@media (max-width: 767px) {
  .info__title::before {
    width: 135px;
    height: 106px;
    top: -208%;
    left: -28%;
  }
}

.info__block {
  background: #ffffff;
  border-radius: 188px;
  margin-top: -4px;
  padding: 60px 155px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1400px) {
  .info__block {
    border-radius: 120px;
  }
}

@media (max-width: 1199px) {
  .info__block {
    border-radius: 94px;
    padding: 60px 68px;
  }
}

@media (max-width: 991px) {
  .info__block {
    margin: -4px 20px 0;
    border-radius: 50px;
    padding: 60px 40px;
  }
}

@media (max-width: 767px) {
  .info__block {
    margin: -6px 10px 0;
    border-radius: 20px;
    padding: 40px 20px;
  }
}

.info__block-layer1 {
  position: absolute;
  right: 11%;
  top: -148px;
}

@media (max-width: 991px) {
  .info__block-layer1 {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    right: 6%;
  }
}

@media (max-width: 767px) {
  .info__block-layer1 {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    right: -13%;
  }
}

.info__block-layer1-deco {
  position: relative;
  z-index: 3;
}

.info__block-layer1-deco2 {
  display: block;
  background-image: url("../images/info/just.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 188px;
  height: 188px;
  -webkit-animation: rotation 25s linear infinite;
          animation: rotation 25s linear infinite;
  position: absolute;
  top: -45px;
  left: 14px;
  z-index: 0;
}

.info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
  font-weight: 100;
  color: #000000;
  margin-bottom: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .info__item {
    font-size: 1rem;
    display: block;
  }
}

.info__item:nth-child(odd) .info__item-title::before {
  content: " ";
  display: inline-block;
  background-image: url("../images/info/item-deco1-left.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 5px;
  height: 29px;
  position: absolute;
  top: 0;
  left: -5px;
}

@media (max-width: 767px) {
  .info__item:nth-child(odd) .info__item-title::before {
    height: 24px;
  }
}

.info__item:nth-child(odd) .info__item-title::after {
  content: " ";
  display: inline-block;
  background-image: url("../images/info/item-deco1-right.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 29px;
  position: absolute;
  top: 0;
  right: -10px;
}

@media (max-width: 767px) {
  .info__item:nth-child(odd) .info__item-title::after {
    height: 24px;
  }
}

.info__item:nth-child(even) .info__item-title::before {
  content: " ";
  display: inline-block;
  background-image: url("../images/info/item-deco2-left.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 29px;
  position: absolute;
  top: 0;
  left: -10px;
}

@media (max-width: 767px) {
  .info__item:nth-child(even) .info__item-title::before {
    height: 24px;
  }
}

.info__item:nth-child(even) .info__item-title::after {
  content: " ";
  display: inline-block;
  background-image: url("../images/info/item-deco2-right.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 5px;
  height: 29px;
  position: absolute;
  top: 0;
  right: -5px;
}

@media (max-width: 767px) {
  .info__item:nth-child(even) .info__item-title::after {
    height: 24px;
  }
}

.info__item-title {
  position: relative;
  background: #eae5e1;
  margin-right: 18px;
  width: 132px;
}

@media (max-width: 767px) {
  .info__item-title {
    margin-right: 0;
    margin: 0 auto 15px;
  }
}

.info__item-text {
  text-align: left;
  line-height: 1.6;
  width: calc( 100% - 150px);
}

@media (max-width: 1400px) {
  .info__item-text br {
    display: none;
  }
}

@media (max-width: 767px) {
  .info__item-text {
    width: 100%;
  }
}

/* notice */
.notice {
  background-image: url("../images/notice/bg.jpg");
  background-position: top center;
  background-repeat: repeat;
  position: relative;
  padding-top: 70px;
  padding-bottom: 88px;
}

@media (max-width: 767px) {
  .notice {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  .notice-block {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .notice-block {
    padding: 0;
  }
}

.notice__title {
  text-align: center;
}

.notice__disc {
  list-style-type: disc;
  margin-left: 30px;
}

.notice__lists {
  position: relative;
  list-style-type: decimal;
  padding-top: 25px;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .notice__lists {
    padding-top: 15px;
  }
}

.notice__list {
  font-size: 1.125rem;
  font-weight: 300;
  color: white;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .notice__list {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .notice__list {
    font-size: 0.9375rem;
  }
}

.pop {
  position: relative;
}

.pop .lity-close {
  display: block !important;
  position: absolute;
  cursor: pointer;
  background: none;
  border: 0;
  background-image: url("../images/pop/close.svg");
  background-size: cover;
  background-position: center;
  width: 36px;
  height: 36px;
  z-index: 999;
  right: 0;
  top: -50px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media (max-width: 1400px) {
  .pop .lity-close {
    top: 0;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .pop .lity-close {
    background-image: url("../images/pop/close-black.svg");
    top: 12px;
    right: 36px;
  }
}

.pop .lity-close:hover {
  -webkit-transition: all .5s;
  transition: all .5s;
  scale: 0.8;
}

.pop::before {
  content: " ";
  display: block;
  background-image: url("../images/pop/deco.png");
  background-size: cover;
  background-position: center;
  width: 1498px;
  height: 48vw;
  position: absolute;
  top: -14%;
  left: -8%;
  z-index: 0;
}

@media (max-width: 1560px) {
  .pop::before {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .pop::before {
    display: none;
  }
}

.pop__wrap {
  background-image: url("../images/pop/bg.jpg");
  width: 1258px;
  margin: 0 auto;
  padding: 60px 40px;
}

@media (max-width: 1400px) {
  .pop__wrap {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .pop__wrap {
    padding: 25px 20px;
  }
}

.pop__head {
  text-align: center;
  margin-bottom: 35px;
}

@media (max-width: 1199px) {
  .pop__head {
    width: 24%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .pop__head {
    width: 34%;
  }
}

@media (max-width: 767px) {
  .pop__head {
    width: 56%;
    margin-bottom: 12px;
  }
}

.pop__body {
  position: relative;
}

.pop__bottom {
  background-image: url("../images/pop/bg-bottom.png");
  background-size: cover;
  background-position: center;
  width: 1258px;
  margin: 0 auto;
  height: 26px;
}

@media (max-width: 1400px) {
  .pop__bottom {
    width: 90%;
  }
}

.pop .gift {
  width: 340px;
  height: 410px;
  background: #ffffff;
  padding: 22px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px 5px 8px #cebd9d;
          box-shadow: 0px 5px 8px #cebd9d;
}

@media (max-width: 1199px) {
  .pop .gift {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .pop .gift {
    width: 100%;
    height: 285px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .pop .gift {
    display: block;
    height: auto;
  }
}

.pop .gift > span {
  position: absolute;
  display: inline-block;
}

.pop .gift__deco1 {
  background-image: url("../images/pop/gift-deco1.png");
  background-size: cover;
  background-position: center;
  width: 140px;
  height: 65px;
  top: -26px;
  left: 30%;
}

.pop .gift__deco2 {
  background-image: url("../images/pop/gift-deco2.png");
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 70px;
  top: -26px;
  right: 2%;
}

.pop .gift__block {
  width: 340px;
  height: 410px;
  position: relative;
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  .pop .gift__block {
    width: 100%;
    height: 285px;
  }
}

@media (max-width: 767px) {
  .pop .gift__block {
    height: auto;
  }
}

.pop .gift__float {
  position: absolute;
  top: 40px;
}

@media (max-width: 991px) {
  .pop .gift__float {
    position: static;
    margin-top: 50px;
  }
}

.pop .gift__pic {
  display: block;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .pop .gift__pic {
    margin-bottom: 0;
    margin-right: 24px;
  }
}

@media (max-width: 767px) {
  .pop .gift__pic {
    margin-bottom: 12px;
    margin-right: 0;
  }
}

.pop .gift__text {
  font-size: 1rem;
  color: #000;
  font-weight: 100;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .pop .gift__text {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .pop .gift__text {
    font-size: 1rem;
  }
}

.pop .gift__text.blue {
  color: #215afc;
}

.pop .gift__bottom {
  background-image: url("../images/pop/gift-deco3.png");
  background-size: cover;
  background-position: center;
  width: 315px;
  height: 182px;
  bottom: -68px;
  right: -9%;
  z-index: 0;
  position: absolute;
}

@media (max-width: 1199px) {
  .pop .gift__bottom {
    width: 228px;
    height: 132px;
    bottom: -46px;
    right: 13%;
  }
}

@media (max-width: 991px) {
  .pop .gift__bottom {
    right: -30px;
  }
}

@media (max-width: 767px) {
  .pop .gift__bottom {
    right: -10px;
  }
}

.pop .winner {
  margin-left: 300px;
}

@media (max-width: 991px) {
  .pop .winner {
    margin-left: 0;
    margin-top: 50px;
  }
}

.pop .winner__items {
  background-image: url("../images/pop/grid.png");
  background-repeat: repeat;
  background-position: left top;
  padding: 25px 80px 25px 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 841px;
  height: 450px;
}

@media (max-width: 1400px) {
  .pop .winner__items {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1360px) {
  .pop .winner__items {
    padding: 25px 30px 25px 80px;
  }
}

@media (max-width: 1280px) {
  .pop .winner__items {
    padding: 25px 10px 25px 70px;
  }
}

@media (max-width: 1199px) {
  .pop .winner__items {
    padding: 25px 10px;
  }
}

@media (max-width: 1150px) {
  .pop .winner__items {
    padding: 25px 18px;
  }
}

@media (max-width: 991px) {
  .pop .winner__items {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .pop .winner__items {
    display: block;
  }
}

.pop .winner__item {
  font-size: 1.125rem;
  color: #221f1f;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 1150px) {
  .pop .winner__item {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .pop .winner__item {
    width: 33.334%;
  }
}

@media (max-width: 767px) {
  .pop .winner__item {
    width: 100%;
    border-bottom: 1px dashed #000;
    padding-bottom: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .pop .winner__item span {
    display: block;
  }
}

@media (max-width: 767px) {
  .pop .winner__item span {
    display: inline;
  }
}

.pop .winner__item::after {
  content: " / ";
  display: inline-block;
  font-size: 1.125rem;
  color: #221f1f;
  position: absolute;
  right: -20px;
}

@media (max-width: 1150px) {
  .pop .winner__item::after {
    position: static;
    margin-left: 18px;
  }
}

@media (max-width: 991px) {
  .pop .winner__item::after {
    position: absolute;
    margin-left: 0;
    right: -1%;
    top: 25%;
  }
}

@media (max-width: 767px) {
  .pop .winner__item::after {
    display: none;
  }
}

@media (min-width: 1151px) {
  .pop .winner__item:nth-child(3n)::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .pop .winner__item:nth-child(3n)::after {
    display: none;
  }
}

.pop .search-bar {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  z-index: 2;
  top: 56px;
}

@media (max-width: 767px) {
  .pop .search-bar {
    position: static;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.pop .search-bar__text {
  font-size: 1.5rem;
  color: #000;
  font-weight: 300;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .pop .search-bar__text {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .pop .search-bar__text {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.pop .search-bar select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: white 95% center no-repeat url("../images/pop/select-arrow.gif");
  color: #000000;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 300;
  width: 252px;
  height: 42px;
  line-height: 42px;
  padding-left: 20px;
  padding-right: 14px;
  text-indent: 0.01px;
  text-overflow: "";
  vertical-align: middle;
}

@media (max-width: 991px) {
  .pop .search-bar select {
    font-size: 1.25rem;
    width: 214px;
  }
}

@media (max-width: 767px) {
  .pop .search-bar select {
    font-size: 1rem;
    width: 180px;
  }
}

.pop .search-bar select::after {
  content: " ";
  display: block;
  width: 1px;
  height: 42px;
  background: #000;
  position: absolute;
  right: 0;
  z-index: 3;
}

.pop .pagination {
  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;
  width: 100%;
  margin-top: 30px;
}

.pop .pagination__item {
  margin: 0 5px;
}

.pop .pagination__item a {
  color: #000;
  font-size: 1.25rem;
  font-weight: 100;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid #000;
  text-align: center;
  line-height: 26px;
}

.pop .pagination__item:hover a, .pop .pagination__item.disabled a {
  background-color: #000;
  color: #f3e6d2;
}

.pop .pagination__item:first-child a, .pop .pagination__item:last-child a {
  background: none;
  border: 0;
}

.pop--success {
  width: 450px;
}

@media (max-width: 480px) {
  .pop--success {
    width: 350px;
  }
}

@media (max-width: 374px) {
  .pop--success {
    width: 280px;
  }
}

.pop--success::before {
  display: none;
}

.pop--success .pop__wrap {
  width: 100%;
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 60px;
}

@media (max-width: 480px) {
  .pop--success .pop__wrap {
    padding: 25px 20px;
  }
}

.pop--success .pop__body {
  position: relative;
  width: 100%;
  text-align: center;
}

.pop--success .pop__body .pic {
  position: absolute;
  top: -75px;
  width: 100%;
}

@media (max-width: 374px) {
  .pop--success .pop__body .pic {
    top: -60px;
  }
}

.pop--success .pop__body .pic img {
  display: inline-block;
}

@media (max-width: 991px) {
  .pop--success .pop__body .pic img {
    width: 35%;
  }
}

.pop--success .pop__body .text {
  font-size: 1.5rem;
  color: #6d6d6d;
  padding-top: 70px;
}

@media (max-width: 991px) {
  .pop--success .pop__body .text {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .pop--success .pop__body .text {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .pop--success .pop__body .text {
    padding-top: 56px;
  }
}

@media (max-width: 374px) {
  .pop--success .pop__body .text {
    padding-top: 36px;
  }
}

.pop--success .pop__body .btn {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  display: block;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  margin: 25px auto 0;
  height: 52px;
  line-height: 52px;
  font-size: 1.125rem;
  width: 60%;
  position: relative;
  top: auto;
  right: auto;
}

@media (max-width: 767px) {
  .pop--success .pop__body .btn {
    width: calc(50% - 5px);
    font-size: 1rem;
    height: 46px;
    line-height: 46px;
  }
}

.pop--success .pop__body .btn--red {
  background: -webkit-gradient(linear, left top, right top, from(#eb5a3c), to(#ee2737));
  background: linear-gradient(to right, #eb5a3c 0%, #ee2737 100%);
}

.pop--success .pop__body .btn--red:hover {
  scale: 1;
  background: -webkit-gradient(linear, right top, left top, from(#eb5a3c), to(#ee2737));
  background: linear-gradient(to left, #eb5a3c 0%, #ee2737 100%);
}
