@charset "UTF-8";
/* RESET
--------------------------------------------------------------------------------------*/
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, rem, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-spacing: 0;
}

address {
  display: inline;
  font-style: normal;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/* form tag */
input,
button,
select,
select option {
  -webkit-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  font-family: Arial, Helvetica, "微軟正黑體", Microsoft JhengHei, Apple LiGothic, "蘋果儷中黑";
}

/*webkit瀏覽器專用*/
::-webkit-input-placeholder {
  color: #634840;
}

/*Firefox 4-18瀏覽器專用*/
input::-moz-placeholder {
  color: #634840;
}

/*Firefox 19+瀏覽器專用*/
input::-moz-placeholder {
  color: #634840;
}

/*IE10瀏覽器專用*/
:-ms-input-placeholder {
  color: #634840;
}

/* 版型設定 */
.mobile {
  display: none;
}

.pad {
  display: none;
}

/* 共用設定 */
img {
  width: 100%;
  height: auto;
  display: block;
  font-size: 0.24rem;
  color: #000000;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}

.clear:before, .clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.c {
  clear: both;
}

.wrapper .hide {
  display: none;
}

.absolute, .inner-absolute > * {
  position: absolute;
}

.absoluteTL, .inner-absoluteTL > * {
  position: absolute;
  top: 0;
  left: 0;
}

.absoluteTR, .inner-absoluteTR > * {
  position: absolute;
  top: 0;
  right: 0;
}

.absoluteBL, .inner-absoluteBL > * {
  position: absolute;
  bottom: 0;
  left: 0;
}

.absoluteBR, .inner-absoluteBR > * {
  position: absolute;
  bottom: 0;
  right: 0;
}

.relative, .inner-relative > * {
  position: relative;
}

.overHide {
  overflow: hidden;
}

/* flex */
.flexBox {
  display: flex;
  align-content: center;
}

/* table */
table, tbody {
  width: 100%;
}

th, td {
  vertical-align: middle;
}

.table {
  width: 100%;
  display: table;
}

.tr {
  display: table-row;
}

.th, .td {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.table.pc {
  display: table;
}

.table.pad {
  display: none;
}

.table.mobile {
  display: none;
}

/* inline-block */
.inner-inblock {
  font-size: 0;
}

.inner-inblock > * {
  display: inline-block;
  vertical-align: middle;
}

.inner-inblock .block {
  display: block;
}

.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.inline {
  display: inline;
}

/* float設定 */
.float-l {
  float: left;
}

.float-r {
  float: right;
}

/* 字型樣式及置中設定 */
.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

/* loading */
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background-color: #e3d2b7;
  z-index: 999;
  background-image: url(../images/bg_loading.png);
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 100%;
}

.loading .box {
  color: #c5a86f;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.loadingLogo {
  width: 32.3vw;
  max-width: 260px;
  margin-bottom: 0.3em;
  margin-left: auto;
  margin-right: auto;
}

.loadingMeat {
  width: 26.9vw;
  max-width: 210px;
  margin: auto;
}

.loadingTxt {
  text-align: center;
  color: #3f220e;
  margin-top: 1em;
  font-size: 0.8em;
  font-weight: 500;
}
.loadingTxt span:nth-child(1) {
  animation: dot 1s ease-in infinite;
  animation-delay: 0.25s;
}
.loadingTxt span:nth-child(2) {
  animation: dot 1s ease-in infinite;
  animation-delay: 0.5s;
}
.loadingTxt span:nth-child(3) {
  animation: dot 1s ease-in infinite;
  animation-delay: 0.75s;
}

@keyframes dot {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* basestyle 
----------------------------------------------------------------------------*/
body,
html {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, "微軟正黑體", Microsoft JhengHei, Apple LiGothic, "蘋果儷中黑";
  font-size: 100px;
  line-height: 1.5;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-y: scroll;
  background-color: #e3d2b7;
  background-image: url(../images/bg01.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 2.5em auto;
}

#wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  font-size: 0.2rem;
}

* {
  letter-spacing: 0.05em;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

#main {
  font-size: 1em;
  background-color: #e3d2b7;
  background-image: url(../images/bg01.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 2.5em auto;
  position: relative;
  min-height: 177.5vw;
  box-sizing: border-box;
  padding-top: 1.2em;
  padding-bottom: 1em;
  text-align: center;
}

p {
  color: #231815;
  font-size: 0.7em;
}
p.big {
  font-weight: bold;
  font-size: 0.85em;
}
p.bibig {
  font-weight: bold;
  font-size: 1em;
}

.redBtnBox {
  width: 100%;
  align-items: center;
  margin-top: 1em;
}

a.redBtn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875em;
  color: #ffffff;
  text-align: center;
  line-height: 1.78;
  background-color: #e31d2d;
  padding: 0 1em;
  border-radius: 4px;
  box-sizing: border-box;
}
a.redBtn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -4px;
  left: -4px;
  border: 4px solid #b50917;
  border-radius: 8px;
}
a.redBtn:after {
  content: "";
  display: block;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}
a.redBtn.enbleBtn {
  pointer-events: none;
  filter: grayscale(1);
}

.tipsTxt {
  font-size: 0.6em;
  text-align: center;
  margin-top: 1em;
  font-weight: bold;
}

.red {
  color: #ca0817;
}

.choice_team {
  padding-bottom: 1em;
}
.choice_team .swiper-container.swiper-container-initialized {
  width: 73.5vw;
  margin: auto;
  height: 86vw;
  margin-top: 0.7em;
  padding-top: 0.3em;
  padding-bottom: 1.5em;
}
.choice_team .swiper-container.swiper-container-initialized a {
  position: relative;
  max-width: 100%;
  margin: auto;
  transform: scale(0.6);
  transition: 0s 0s;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.choice_team .swiper-container.swiper-container-initialized a > div {
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: 0.5em;
  background-color: #e3d2b7;
  background-image: url(../images/bg01.png);
}
.choice_team .swiper-container.swiper-container-initialized a img {
  opacity: 0;
}
.choice_team .swiper-container.swiper-container-initialized a.noClass > div {
  border: 2px solid rgba(0, 0, 0, 0.5) !important;
}
.choice_team .swiper-container.swiper-container-initialized a.noClass img {
  opacity: 0.6;
}
.choice_team .swiper-container.swiper-container-initialized a.center, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-active {
  transform: none;
  z-index: 99 !important;
  transition: 0.2s 0s;
}
.choice_team .swiper-container.swiper-container-initialized a.center > div, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-active > div {
  border: 2px solid #ca0817;
  box-shadow: 0 0 0.3em rgba(255, 255, 255, 0.5), 0 0 0.3em rgba(255, 255, 255, 0.5);
}
.choice_team .swiper-container.swiper-container-initialized a.center img, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-active img {
  opacity: 1;
}
.choice_team .swiper-container.swiper-container-initialized a.center.noClass, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-active.noClass {
  transform: scale(0.8);
}
.choice_team .swiper-container.swiper-container-initialized a.secd, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-prev, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-next {
  transform: scale(0.8);
  z-index: 90;
  transition: 0.1s 0.05s;
}
.choice_team .swiper-container.swiper-container-initialized a.secd > div, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-prev > div, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-next > div {
  border: 2px solid #282828;
}
.choice_team .swiper-container.swiper-container-initialized a.secd img, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-prev img, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-next img {
  opacity: 0.8;
}
.choice_team .swiper-container.swiper-container-initialized a.secd.noClass, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-prev.noClass, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-next.noClass {
  transform: scale(0.6);
}
.choice_team .swiper-container.swiper-container-initialized a.thrd, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-next + .swiper-slide {
  transform: scale(0.6);
  z-index: 80;
  transition: 0.1s 0.05s;
}
.choice_team .swiper-container.swiper-container-initialized a.thrd > div, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-next + .swiper-slide > div {
  border: 2px solid #282828;
}
.choice_team .swiper-container.swiper-container-initialized a.thrd img, .choice_team .swiper-container.swiper-container-initialized a.swiper-slide-next + .swiper-slide img {
  opacity: 0.6;
}
.choice_team .swiper-container.swiper-container-initialized.swPrev .noClass.swiper-slide-prev {
  transform: scale(1) !important;
  z-index: 999;
  transition-delay: 0.05s;
}
.choice_team .swiper-container.swiper-container-initialized.swPrev .noClass.prevV {
  transform: scale(0.8) !important;
  transition-delay: 0.1s;
}
.choice_team .swiper-container.swiper-container-initialized.swNext .noClass.swiper-slide-next {
  transform: scale(1) !important;
  z-index: 999;
  transition-delay: 0.05s;
}
.choice_team .swiper-container.swiper-container-initialized.swNext .noClass.prevV {
  transform: scale(0.8) !important;
  transition-delay: 0.1s;
}
.choice_team .swiper-container .slick-slider {
  width: 73.5vw;
  height: 86vw;
  margin: auto;
  margin-top: 0.7em;
  padding-top: 0.3em;
  padding-bottom: 1.5em;
}
.choice_team .swiper-container .slick-slider a {
  position: relative;
  max-width: 100%;
  height: 19vw !important;
  margin: auto;
  transition: 0s 0s;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.choice_team .swiper-container .slick-slider a > div {
  position: absolute;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: 0.5em;
  background-color: #e3d2b7;
  background-image: url(../images/bg01.png);
}
.choice_team .swiper-container .slick-slider a.noClass > div {
  border: 2px solid rgba(0, 0, 0, 0.5) !important;
}
.choice_team .swiper-container .slick-slider a.noClass img {
  opacity: 0.6;
}
.choice_team .swiper-container .slick-slider a.center, .choice_team .swiper-container .slick-slider a.swiper-slide-active {
  transform: none;
  z-index: 99 !important;
  transition: 0.2s 0s;
}
.choice_team .swiper-container .slick-slider a.center > div, .choice_team .swiper-container .slick-slider a.swiper-slide-active > div {
  border: 2px solid #ca0817;
  box-shadow: 0 0 0.3em rgba(255, 255, 255, 0.5), 0 0 0.3em rgba(255, 255, 255, 0.5);
}
.choice_team .swiper-container .slick-slider a.center img, .choice_team .swiper-container .slick-slider a.swiper-slide-active img {
  opacity: 1;
}
.choice_team .swiper-container .slick-slider a.secd, .choice_team .swiper-container .slick-slider a.swiper-slide-prev, .choice_team .swiper-container .slick-slider a.swiper-slide-next {
  z-index: 90;
  transition: 0.1s 0.05s;
}
.choice_team .swiper-container .slick-slider a.secd > div, .choice_team .swiper-container .slick-slider a.swiper-slide-prev > div, .choice_team .swiper-container .slick-slider a.swiper-slide-next > div {
  border: 2px solid #282828;
}
.choice_team .swiper-container .slick-slider a.secd img, .choice_team .swiper-container .slick-slider a.swiper-slide-prev img, .choice_team .swiper-container .slick-slider a.swiper-slide-next img {
  opacity: 0.8;
}
.choice_team .swiper-container .slick-slider a.thrd, .choice_team .swiper-container .slick-slider a.swiper-slide-next + .swiper-slide {
  z-index: 80;
  transition: 0.1s 0.05s;
}
.choice_team .swiper-container .slick-slider a.thrd > div, .choice_team .swiper-container .slick-slider a.swiper-slide-next + .swiper-slide > div {
  border: 2px solid #282828;
}
.choice_team .swiper-container .slick-slider a.thrd img, .choice_team .swiper-container .slick-slider a.swiper-slide-next + .swiper-slide img {
  opacity: 0.6;
}

.swp_arrBox .swpBtn {
  position: absolute;
  width: 1.625em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.swp_arrBox .swpBtn.swpB_up {
  top: 0;
}
.swp_arrBox .swpBtn.swpB_down {
  bottom: 0;
}

.makeFlag {
  display: none;
}
.makeFlag .container > div {
  width: 65vw;
  margin: auto;
}
.makeFlag input {
  font-size: 0.6em;
  text-align: center;
  border: 1px solid #3f220e;
  border-radius: 0.5em;
  margin-top: 0.5em;
  line-height: 2.2;
  background-color: #e3d2b7;
  background-image: url(../images/bg_input.png);
  padding: 0 0.5em;
  box-sizing: border-box;
}
.makeFlag .flagPic {
  border: 1px solid #3f220e;
  border-radius: 0.5em;
  overflow: hidden;
  margin-top: 0.2em;
  position: relative;
  margin-bottom: -0.3em;
}
.makeFlag .flagName {
  position: absolute;
  font-size: 0.8em;
  font-weight: 900;
  text-align: center;
  writing-mode: vertical-lr;
  left: calc(15.5% - 0.5em);
  top: 26%;
  line-height: 1;
  letter-spacing: -0.05em;
}

.noTouch {
  pointer-events: none;
  opacity: 0;
}

.Finished {
  display: none;
}
.Finished p {
  font-size: 0.6em;
  line-height: 1;
  margin-top: 1.3em;
}
.Finished .redBtnBox {
  margin-bottom: 0.2em;
}

.gameBox {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e3d2b7;
  background-image: url(../images/bg01.png);
  z-index: 99;
  box-sizing: border-box;
  padding-top: 1px;
  margin-top: -45.32vw;
}
.gameBox p.big {
  font-size: 1em;
}

.cowBoss {
  margin-top: 0.3em;
}

.moraBox {
  position: relative;
  border-top: 2px solid #1c3235;
  margin-top: -2.3em;
  padding-top: 0.7em;
}
.moraBox:before {
  content: "";
  display: block;
  width: 100%;
  height: 200vh;
  background-color: #e3d2b7;
  background-image: url(../images/bg02.png);
  background-size: 3em auto;
  position: absolute;
  top: 0;
  left: 0;
}
.moraBox .moraLogo {
  width: 2.775em;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -65%);
}
.moraBox .moraFlex {
  position: relative;
  justify-content: space-around;
}
.moraBox .moraFlex .mora {
  width: 31%;
  max-width: 5.5em;
  flex-shrink: 1;
  transform: scale(0.7);
  filter: grayscale(1);
}
.moraBox .moraFlex .mora.active {
  transform: none;
  filter: none;
}
.moraBox p.moraP {
  position: relative;
  margin-bottom: -1em;
  margin-top: 0.8em;
  font-weight: bold;
}

.cowCow {
  padding-top: 1.2em;
}

.hihi {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.waveBox {
  display: none;
  position: relative;
  background-color: #e3d2b7;
  z-index: 999;
  background-image: url(../images/bg_loading.png);
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 100%;
  margin-top: -2px;
}
.waveBox:before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #2E5375;
  position: absolute;
  left: 0;
  top: 90%;
}

.wave {
  position: absolute;
}
.wave.wave_back {
  width: 243.125vw;
  top: 12em;
  left: 0;
  transform: translateX(-10%);
}
.wave.wave_back div {
  animation: waveW_div 2s ease-in -1s infinite alternate-reverse;
}
.wave.wave_back img {
  animation: waveW_img 1s ease-in -0.5s infinite alternate-reverse;
}
.wave.wave_front {
  width: 161.875vw;
  top: 20.4em;
  left: 0;
  transform: translateX(-14%);
}
.wave.wave_front div {
  animation: waveW_div 2s ease-in -0.5s infinite alternate-reverse;
}
.wave.wave_front img {
  animation: waveW_img 1s ease-in 0s infinite alternate-reverse;
}

@keyframes waveW_div {
  0% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(2%);
  }
}
@keyframes waveW_img {
  0% {
    transform: translateY(0%);
  }
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
.wvflag {
  position: absolute;
  width: 84.6875vw;
  top: 2em;
}
.wvflag.wvflag_l {
  left: -2.5em;
  transform-origin: right bottom;
  animation: wave_flag_l 0.8s ease-in-out 0s infinite alternate-reverse;
}
.wvflag.wvflag_l img {
  animation: wave_flag_ud 1s ease-in-out -0.4s infinite alternate-reverse;
}
.wvflag.wvflag_r {
  right: -2.5em;
  transform-origin: left bottom;
  animation: wave_flag_r 0.8s ease-in-out 0s infinite alternate-reverse;
}
.wvflag.wvflag_r img {
  animation: wave_flag_ud 0.5s ease-in-out -0.4s infinite alternate-reverse;
}

@keyframes wave_flag_l {
  0% {
    transform: translateX(-4%) rotate(0deg);
  }
  100% {
    transform: translateX(4%) rotate(15deg);
  }
}
@keyframes wave_flag_r {
  0% {
    transform: translateX(4%) rotate(0deg);
  }
  100% {
    transform: translateX(-4%) rotate(-20deg);
  }
}
@keyframes wave_flag_ud {
  0% {
    transform: translateY(-0.5%);
  }
  100% {
    transform: translateY(3%);
  }
}
.resultBox {
  opacity: 0;
}
.resultBox .resBoss {
  position: relative;
  padding-top: 1px;
}
.resultBox .resBossImg {
  width: 88vw;
  margin-top: -2.2em;
  margin-left: -2em;
  transform: translateX(-150%);
}
.resultBox .resUser {
  position: relative;
  padding-top: 1px;
  background-image: url(../images/bg_user.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-top: -5.2em;
}
.resultBox .resUser .teamRedName {
  top: 2.5em;
  right: auto;
  left: 1.5em;
}
.resultBox .resUserImg {
  width: 95vw;
  margin-top: -0.6em;
  margin-right: -3em;
  margin-left: auto;
  transform: translateX(150%);
}
.resultBox .redBtnBox {
  margin-top: 1.2em;
}
.resultBox .redBtnBox.twoBtn {
  justify-content: center;
}
.resultBox .redBtnBox.twoBtn a.redBtn {
  transform: none;
  left: auto;
  margin: 0 0.5em;
}
.resultBox.showRes {
  opacity: 1;
  position: relative;
  animation: shake 0.05s ease-in-out 0.5s 5 alternate-reverse;
}
.resultBox.showRes .resBossImg,
.resultBox.showRes .resUserImg {
  transform: translateX(0%);
  transition: 0.3s 0.3s;
}
.resultBox.showRes .lwBox {
  transform: translateY(0%);
  transition: 0.2s 1s;
}

@keyframes shake {
  0% {
    left: -1%;
  }
  100% {
    left: 1%;
  }
}
.teamRedName {
  font-size: 0.8em;
  writing-mode: vertical-lr;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  padding: 1em 0.5em 0.5em 0.5em;
  border: 1px solid #282828;
  background-image: url(../images/bg_red.png);
  position: absolute;
  top: 2em;
  right: 1.5em;
  box-sizing: border-box;
  min-height: 8.6em;
}
.teamRedName .teamLogo {
  position: absolute;
  width: 3em;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
}

.loseWinBox {
  position: relative;
  margin-top: -4.6em;
}
.loseWinBox:before {
  content: "";
  display: block;
  width: 100%;
  height: 200vh;
  position: absolute;
  left: 0;
  top: 80%;
  background-color: #e3d2b7;
  background-image: url(../images/bg02.png);
  background-size: 1em auto;
}
.loseWinBox .lwBox {
  position: absolute;
  width: 100%;
  top: 1.4em;
  left: 0;
  transform: translateY(150%);
}
.loseWinBox .lwBox .wlImg {
  margin: auto;
}
.loseWinBox .lwBox .wlImg.ls {
  width: 76.2vw;
}
.loseWinBox .lwBox .wlImg.wn {
  width: 62.5vw;
}

/* 獲得的獎項頁 ********************************/
.awardBox {
  position: relative;
  height: 112vw;
  margin-bottom: 16vw;
  display: none;
}
.awardBox p {
  font-weight: bold;
}
.awardBox p.awdP {
  font-size: 0.85em;
  margin-bottom: 1em;
}
.awardBox .awdImg {
  position: relative;
  max-width: 890px;
  width: 113%;
  left: 50%;
  transform: translateX(-50%);
}
.awardBox .redBtnBox {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  margin-top: 0.5em;
}

/** alertBox ************************************/
.alertMsk {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 34, 14, 0.6);
  text-align: center;
  display: none;
}
.alertMsk > .flexBox {
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.alertMsk .innerTent {
  width: 75vw;
  box-sizing: border-box;
  padding: 0.3em;
  border-radius: 0.3em;
  background-image: linear-gradient(to top, #cd9450, #bb813c, #d4a165, #dca86b, #cd8e44);
  display: flex;
  align-items: center;
  justify-content: center;
}
.alertMsk .innerBox {
  width: 100%;
  background-color: #fff7e9;
  padding: 1.35em;
  border-radius: 0.2em;
}
.alertMsk .alTlt {
  font-weight: bold;
  line-height: 1.25;
  border-bottom: 1px solid #ca0817;
  padding-bottom: 0.3em;
}
.alertMsk .alTxt {
  font-size: 0.85em;
  color: #231815;
  font-weight: bold;
  margin-top: 0.4em;
}
.alertMsk .alBtnBox {
  justify-content: space-between;
  margin-top: 0.6em;
  margin-right: auto;
  margin-left: auto;
  width: 50vw;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.alertMsk .alBtnBox.altt {
  justify-content: center;
}
.alertMsk .alBtnBox a.altBtn {
  font-size: 0.8em;
  color: #ffffff;
  line-height: 2;
  text-align: center;
  padding: 0 0.5em;
  box-sizing: border-box;
  width: 3.8em;
  background-image: linear-gradient(-30deg, #cd9450, #bb813c, #d4a165, #dca86b, #cd8e44);
  border: 1px solid #3f220e;
  border-radius: 0.3em;
}
.alertMsk.forNoLiff {
  background-color: rgba(63, 34, 14, 0.9);
}

/** 合圖設定 ************************************/
#canvas {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

/** 抽獎中 ************************************/
.lotteryBox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #ca0817;
  text-align: center;
  display: none;
}
.lotteryBox > .flexBox {
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.lotteryBox .innerTent {
  color: #ffffff;
}
.lotteryBox .meatBox {
  width: 26.875vw;
  max-width: 172px;
}
.lotteryBox .lotteryTxt {
  margin-top: 0.6em;
}
.lotteryBox .lotteryTxt span:nth-child(1) {
  animation: dot 1s ease-in infinite;
  animation-delay: 0.25s;
}
.lotteryBox .lotteryTxt span:nth-child(2) {
  animation: dot 1s ease-in infinite;
  animation-delay: 0.5s;
}
.lotteryBox .lotteryTxt span:nth-child(3) {
  animation: dot 1s ease-in infinite;
  animation-delay: 0.75s;
}

.sobu_logo {
  margin: auto;
  width: 8.5em;
  margin-bottom: 0.7em;
}

.redBorder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.redBorder * {
  background-repeat: repeat-y;
  background-size: 1.6em auto;
}
.redBorder *.rb_l {
  background-image: url(../images/border_l.png);
  background-position: top left;
}
.redBorder *.rb_r {
  background-image: url(../images/border_r.png);
  background-position: top right;
}

.lampBtn {
  width: 2.75em;
  position: absolute;
  top: 3em;
  right: 0.05em;
}
.lampBtn .lampTxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 0.6em;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

/** 清單頁 ***************************************/
.bonusListBox {
  display: none;
}
.bonusListBox p.bibig + p {
  color: #e31d2d;
}

.eventEnding {
  margin-top: 2.5em;
}

.noBonusBox {
  padding-top: 1.5em;
}
.noBonusBox .awardIntroBox {
  text-align: left;
  width: 71.875vw;
  margin: auto;
  box-sizing: border-box;
  padding: 0.5em 0.8em;
  border: 2px solid #ca0817;
  border-radius: 0.3em;
  margin-top: 1.5em;
}

.bonusList {
  position: relative;
  margin-top: 0.5em;
}

.couponTent {
  overflow-y: scroll;
  height: 100vw;
  width: 80vw;
  margin: auto;
}

.coupon {
  width: 74vw;
  margin-left: auto;
  margin-right: auto;
}
.coupon:last-child {
  margin-bottom: 20vw;
}
.coupon > .flexBox {
  align-items: center;
}
.coupon .coupImg {
  width: 31vw;
  position: relative;
  flex-shrink: 0;
  transform: translateX(-2vw);
}
.coupon .coupTk {
  flex-shrink: 0;
  border: 1px solid #282828;
  background-image: linear-gradient(-35deg, #cd9450, #db9849, #f9d3a6, #e6c194, #de9f54);
  width: calc(100% - 8vw);
  margin-left: -24vw;
  border-top-right-radius: 1.4em;
  border-bottom-right-radius: 1.4em;
  border-top-left-radius: 10em;
  border-bottom-left-radius: 10em;
  box-sizing: border-box;
  height: 25.625vw;
}
.coupon .coupTk > div {
  padding: 0.2em 0;
  margin-left: 23vw;
  position: relative;
  width: 100%;
}
.coupon .coupName {
  font-size: 0.6em;
  text-align: left;
  font-weight: bold;
  height: 3em;
  display: flex;
  align-items: center;
  width: 100%;
}
.coupon .useCoupon {
  position: absolute;
  left: 0;
  transform-origin: left bottom;
  transform: scale(0.74);
  bottom: 0.5em;
}

.transPng {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.scrollDWbtn {
  position: absolute;
  width: 1.64em;
  left: calc(50% - 0.82em);
  bottom: -0.3em;
  animation: arr_dp 0.4s linear 0s infinite alternate-reverse;
}
.scrollDWbtn.noTouch {
  pointer-events: none;
}

@keyframes arr_dp {
  0% {
    transform: translateY(40%);
  }
  100% {
    transform: translateY(-3%);
  }
}
/** 使用兌換券 ***************************************/
.useCouponBox {
  display: none;
}
.useCouponBox .couponItem {
  margin-top: 0.6em;
}
.useCouponBox .cupImg {
  width: 90%;
  margin: auto;
}
.useCouponBox .cupTlt {
  font-size: 0.8em;
  font-weight: bold;
  margin: 0.5em auto 0 auto;
  max-width: 10.2em;
  height: 3em;
  line-height: 1.3;
}
.useCouponBox .redBtnBox {
  margin-top: 0.4em;
}
.useCouponBox .redBtnBox .stp02 {
  font-size: 0.8em;
  line-height: 1.2;
  background-color: #d4a165;
  background-image: linear-gradient(140deg, #cd9450, #bb813c, #d4a165, #dca86b, #cd8e44, #cd9450, #bb813c, #d4a165, #dca86b, #cd8e44);
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.useCouponBox .redBtnBox .stp02:before {
  border-color: #906026;
}
.useCouponBox .redBtnBox .stp02 span {
  font-size: 0.8em;
}

.couponTips {
  font-size: 0.6em;
  color: #3f220e;
  line-height: 1.46;
  width: 68vw;
  margin: 1em auto 0 auto;
  text-align: left;
}
.couponTips ul {
  list-style: decimal;
  margin-left: 1.5em;
  margin-top: 1em;
}
.couponTips ul li {
  margin-bottom: 0.3em;
}
.couponTips ul:last-child {
  list-style: disc;
  margin-left: 1.5em;
  margin-top: 0.5em;
}

/* media
----------------------------------------------------------------------------*/
@media screen and (max-width: 1920px) {
  body, html {
    font-size: 100px;
  }

  .pc {
    display: none;
  }

  .mobile {
    display: block;
  }

  #wrapper {
    font-size: 6.25vw;
  }

  .container {
    width: calc(100% - 3.2em);
    padding-left: 1.6em;
    padding-right: 1.6em;
  }
}
/*# sourceMappingURL=main.css.map */