@charset "UTF-8";
@-webkit-keyframes floater {
  0% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes floater {
  0% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes lightening {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
  }
}

@keyframes lightening {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
  }
}

@-webkit-keyframes speak {
  0% {
    opacity: 0;
  }
  10%, 20%, 30%, 40%, 50% {
    opacity: 1;
  }
  60%, 70%, 80%, 90%, 100% {
    opacity: 0;
  }
}

@keyframes speak {
  0% {
    opacity: 0;
  }
  10%, 20%, 30%, 40%, 50% {
    opacity: 1;
  }
  60%, 70%, 80%, 90%, 100% {
    opacity: 0;
  }
}

@-webkit-keyframes speak2 {
  0%, 10%, 20% {
    opacity: 0;
  }
  30%, 40%, 50%, 60%, 70% {
    opacity: 1;
  }
  80%, 90%, 100% {
    opacity: 0;
  }
}

@keyframes speak2 {
  0%, 10%, 20% {
    opacity: 0;
  }
  30%, 40%, 50%, 60%, 70% {
    opacity: 1;
  }
  80%, 90%, 100% {
    opacity: 0;
  }
}

body {
  background-color: #393F4A;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

html {
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

.name-list {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(253, 215, 69, 0.97);
  color: #181818;
  font-weight: 300;
  height: 100vh;
  overflow-y: scroll;
}

.name-list .title {
  font-size: 32px;
  font-weight: 700;
}

.name-list h3 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-top: 30px;
  position: relative;
  margin-bottom: 76px;
}

@media screen and (max-width: 1045px) {
  .name-list h3 {
    font-size: 36px;
  }
}

@media screen and (max-width: 578px) {
  .name-list h3 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 510px) {
  .name-list h3 {
    font-size: 26px;
  }
}

.name-list h3:after {
  content: "";
  width: 150px;
  height: 6px;
  display: block;
  background-color: #FFF6D0;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 30px;
}

.name-list h3 {
  font-size: 23px;
  margin-bottom: 36px;
}

.name-list h3:after {
  width: 108px;
  margin-top: 15px;
}

.name-list .close {
  width: 42px;
  height: 42px;
  position: fixed;
  top: 16px;
  right: 26px;
  background-image: url(../images/cross.png);
  cursor: pointer;
  -webkit-background-size: 56% 56%;
  -o-background-size: 56% 56%;
  background-size: 56% 56%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-color: #8CB9D9;
}

.name-list .close:hover {
  background-color: #2B0E84;
}

@media screen and (max-width: 480px) {
  .name-list .close {
    width: 32px;
    height: 32px;
    background-color: #2B0E84;
    -webkit-background-size: 56% 56%;
    -o-background-size: 56% 56%;
    background-size: 56% 56%;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    top: 10px;
    right: 10px;
  }
}

.name-list p {
  text-align: center;
  font-size: 23px;
  line-height: 1.3;
}

@media screen and (max-width: 480px) {
  .name-list p {
    font-size: 20px;
  }
}

.name-list .subtitle {
  width: 90%;
  margin: 0 auto;
}

.name-list .emp {
  display: inline-block;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}

.name-list .emp:after {
  content: "";
  width: 102%;
  height: 8px;
  background-color: #FB9437;
  position: absolute;
  bottom: -1px;
  left: -1%;
  z-index: -1;
}

.name-list .info {
  background-color: #fff8cc;
  border: #eedcb4 solid 5px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  margin-top: 24px;
  padding: 16px 23px;
  background-image: url(../images/quote.png);
  -webkit-background-size: 52px 38px;
  -o-background-size: 52px 38px;
  background-size: 52px 38px;
  background-position: 97% 94%;
  background-repeat: no-repeat;
}

.name-list .info p {
  font-size: 20px;
  font-weight: normal;
  text-align: left;
  line-height: 1.5;
}

.name-list .info p strong {
  font-weight: 700;
  display: block;
}

@media screen and (max-width: 480px) {
  .name-list .info p {
    font-size: 18px;
  }
}

.name-list .info .tips {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  color: #FB9437;
  margin-top: 4px;
}

.name-list .main-content .title {
  margin-top: 70px;
  margin-bottom: 36px;
}

.name-list .main-content .title img {
  width: 90%;
  margin: 0 auto;
  max-width: 638px;
}

.name-list .main-content h3 {
  font-size: 23px;
  margin-bottom: 36px;
}

.name-list .main-content h3:after {
  width: 108px;
  margin-top: 15px;
}

.name-list .main-content .win-table-wrapper .table {
  display: table;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 16px;
  float: none;
  border: solid 3px #FB9437;
  border-left: 2px solid #FB9437;
  border-bottom: 2px solid #FB9437;
  border-collapse: collapse;
  -webkit-box-shadow: rgba(191, 124, 59, 0.2) 0px 0px 15px;
  box-shadow: rgba(191, 124, 59, 0.2) 0px 0px 15px;
}

.name-list .main-content .win-table-wrapper .table .th {
  text-align: center;
  color: #ff6900;
  font-size: 18px;
  font-weight: 400;
  background-color: #F9CA42;
  border-left: 1px solid #FB9437;
  padding: 15px;
}

@media screen and (max-width: 480px) {
  .name-list .main-content .win-table-wrapper .table .th {
    font-size: 16px;
    padding: 10px;
  }
}

.name-list .main-content .win-table-wrapper .table .td {
  text-align: center;
  font-weight: normal;
  background-color: #FDD370;
  font-size: 15px;
  padding: 10px;
  border-left: 1px solid #FB9437;
  border-bottom: 1px solid #FB9437;
  vertical-align: top;
}

.name-list .main-content .win-table-wrapper .table .tr {
  font-size: 0;
}

.name-list .main-content .win-table-wrapper .table.col-2 .td {
  width: 50%;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .name-list .main-content .win-table-wrapper .table.col-2 .td {
    width: 100%;
  }
}

.name-list .main-content .win-table-wrapper .table.col-3 .td {
  width: 33%;
  display: inline-block;
}

@media screen and (max-width: 680px) {
  .name-list .main-content .win-table-wrapper .table.col-3 .td {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .name-list .main-content .win-table-wrapper .table.col-3 .td {
    width: 100%;
  }
}

.name-list .main-content .win-table-wrapper .table.col-5 .td {
  width: 20%;
  display: inline-block;
}

@media screen and (max-width: 1100px) {
  .name-list .main-content .win-table-wrapper .table.col-5 .td {
    width: 25%;
  }
}

@media screen and (max-width: 910px) {
  .name-list .main-content .win-table-wrapper .table.col-5 .td {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .name-list .main-content .win-table-wrapper .table.col-5 .td {
    width: 100%;
  }
}

.name-list .main-content .win-table-wrapper table {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 16px;
  float: none;
  border: solid 3px #FB9437;
  border-collapse: collapse;
  -webkit-box-shadow: rgba(108, 148, 178, 0.2) 0px 0px 15px;
  box-shadow: rgba(108, 148, 178, 0.2) 0px 0px 15px;
}

.name-list .main-content .win-table-wrapper table th {
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  background-color: #8BB8DA;
  padding: 15px;
  border: solid 2px #FB9437;
}

.name-list .main-content .win-table-wrapper table td {
  border: solid 2px #FB9437;
  text-align: center;
  font-weight: normal;
  background-color: #FDD370;
  font-size: 15px;
  padding: 10px;
}

.name-list .notice {
  list-style-type: decimal;
  background-color: transparent;
  color: #181818;
  font-weight: normal;
  padding-top: 8px;
  padding-left: 20px;
  width: 90%;
  margin: 0 auto;
}

.name-list .notice li {
  margin-bottom: 8px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .main .lg {
    display: none;
  }
}

.main .lg .main-title {
  position: absolute;
  width: 30.6944%;
  top: 34.238%;
  left: 38.75%;
}

.main .lg .bg {
  width: 100%;
}

.main .lg .subtitle {
  position: absolute;
  width: 31.8055%;
  top: 50.9063%;
  left: 34.4444%;
}

.main .lg .film-roll {
  position: absolute;
  width: 9.5138%;
  top: 29.7583%;
  left: 29.375%;
}

.main .lg .film {
  position: absolute;
  width: 36.8055%;
  top: 47.4320%;
  left: 33.3333%;
}

@media screen and (max-width: 1250px) {
  .main .lg .film {
    top: 46%;
  }
}

.main .lg .lightning-01 {
  position: absolute;
  width: 1.3888%;
  top: 25.2265%;
  left: 35%;
  -webkit-animation-name: lightening;
  animation-name: lightening;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.main .lg .lightning-02 {
  position: absolute;
  width: 2.6041%;
  top: 22.0543%;
  left: 37.2916%;
  -webkit-animation-name: lightening;
  animation-name: lightening;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.main .lg .float-bubble {
  position: absolute;
  width: 22.2222%;
  top: 64.5015%;
  left: 38.9583%;
  -webkit-animation-name: floater;
  animation-name: floater;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.main .lg .doante-dollar {
  position: absolute;
  width: 14.9305%;
  top: 72.8096%;
  left: 47.5%;
}

.main .lg .bb01 {
  position: absolute;
  width: 13.1944%;
  top: 31.2688%;
  left: 9.9305%;
  -webkit-animation-name: speak2;
  animation-name: speak2;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.main .lg .bb02 {
  position: absolute;
  width: 9.7222%;
  top: 78.2477%;
  left: 23.125%;
  -webkit-animation-name: speak2;
  animation-name: speak2;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: -8s;
  animation-delay: -8s;
}

.main .lg .bb03 {
  position: absolute;
  width: 13.1944%;
  top: 18.58%;
  left: 78.6805%;
  -webkit-animation-name: speak;
  animation-name: speak;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: -15s;
  animation-delay: -15s;
}

.main .lg .bb04 {
  position: absolute;
  width: 13.1944%;
  top: 67.0694%;
  left: 66.875%;
  -webkit-animation-name: speak;
  animation-name: speak;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
}

.main .sm {
  display: none;
}

@media screen and (max-width: 768px) {
  .main .sm {
    display: block;
  }
}

.main .sm .main-title {
  position: absolute;
  width: 57.5520%;
  top: 34.3891%;
  left: 28.9062%;
}

.main .sm .bg {
  width: 100%;
}

.main .sm .subtitle {
  position: absolute;
  width: 59.6354%;
  top: 51.2820%;
  left: 21.0937%;
}

.main .sm .film-roll {
  position: absolute;
  width: 17.8385%;
  top: 30.1659%;
  left: 11.9791%;
}

.main .sm .film {
  position: absolute;
  width: 69.0104%;
  top: 47.5%;
  left: 18.8802%;
}

@media screen and (max-width: 569px) {
  .main .sm .film {
    top: 47%;
  }
}

@media screen and (max-width: 470px) {
  .main .sm .film {
    top: 47%;
  }
}

@media screen and (max-width: 425px) {
  .main .sm .film {
    top: 46.5%;
  }
}

.main .sm .lightning-01 {
  position: absolute;
  width: 2.6041%;
  top: 25.4901%;
  left: 22.0052%;
  -webkit-animation-name: lightening;
  animation-name: lightening;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.main .sm .lightning-02 {
  position: absolute;
  width: 4.8828%;
  top: 22.1719%;
  left: 26.0416%;
  -webkit-animation-name: lightening;
  animation-name: lightening;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.main .sm .float-bubble {
  position: absolute;
  width: 41.6666%;
  top: 64.2533%;
  left: 29.1666%;
  -webkit-animation-name: floater;
  animation-name: floater;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.main .sm .doante-dollar {
  position: absolute;
  width: 27.9296%;
  top: 72.6998%;
  left: 45.3125%;
}

.main .sm .bb02 {
  position: absolute;
  width: 18.2291%;
  top: 79.4871%;
  left: 2.9947%;
  -webkit-animation-name: speak2;
  animation-name: speak2;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: -8s;
  animation-delay: -8s;
}

.main .sm .bb03 {
  position: absolute;
  width: 24.7395%;
  top: 60.0301%;
  left: 72.5260%;
  -webkit-animation-name: speak;
  animation-name: speak;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: -15s;
  animation-delay: -15s;
}

.small-button {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
  width: 98%;
  max-width: 112px;
  background-color: transparent;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 8px;
  -webkit-border-radius: 90px;
  border-radius: 90px;
  color: #fff;
}

.small-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.small-button:hover:after {
  right: -4px;
  bottom: -14px;
}

.small-button:active {
  background-color: rgba(255, 255, 255, 0.1);
  top: 2px;
  left: 2px;
}

.loading-mask {
  background-color: #f57d00;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

.loading-mask .img-wrapper {
  width: 250px;
  height: 62.8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
}

@media screen and (max-width: 560px) {
  .loading-mask .img-wrapper {
    width: 200px;
  }
}

@media screen and (max-width: 375px) {
  .loading-mask .img-wrapper {
    width: 160px;
  }
}

.rotate-wrapper {
  position: absolute;
  top: -3px;
  right: -1px;
  bottom: 0;
  margin: auto auto;
  width: 36px;
  height: 36px;
}

.main-button {
  -webkit-border-radius: 900px;
  border-radius: 900px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #404040;
  color: #404040;
  font-size: 30px;
  font-weight: 700;
  padding: 11px 42px;
  display: inline-block;
  -webkit-box-shadow: #FFF 2px 5px 0px;
  box-shadow: #FFF 2px 5px 0px;
  position: relative;
  top: 0;
  right: 0;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  line-height: 1;
}

@media screen and (max-width: 620px) {
  .main-button {
    font-size: 24px;
    padding: 8px 24px;
  }
}

@media screen and (max-width: 430px) {
  .main-button {
    font-size: 20px;
    padding: 10px 24px;
  }
}

.main-button:hover {
  top: 2px;
  left: 5px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: white;
  color: #ff7d00;
}

#top {
  width: 48px;
  height: 48px;
  padding: 5px;
  text-align: center;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  background-color: #ff7d00;
  cursor: pointer;
  z-index: 9999;
}

.donation {
  text-align: center;
}

.donation #charity_project {
  text-decoration: underline;
  cursor: pointer;
}

.donation .main-ticket {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 13px;
}

.donation .main-ticket .note {
  font-size: 17px;
  font-weight: 300;
  display: block;
  color: #897029;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 620px) {
  .donation .main-ticket .note {
    font-size: 15px;
  }
}

@media screen and (max-width: 410px) {
  .donation .main-ticket .note {
    font-size: 12px;
  }
}

.donation .main-ticket .left-pop {
  right: 107%;
  top: -15%;
}

.donation .main-ticket .right-pop {
  left: 107%;
  top: -4%;
}

.donation .main-ticket.phase1 {
  width: 497px;
  padding: 25px 0 25px;
  position: relative;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase1 {
    max-width: 100%;
    padding: 0;
    padding-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase1 .wording {
    display: none;
  }
}

.donation .main-ticket.phase1 .ticket {
  max-width: 537px;
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase1 .ticket {
    position: relative;
    margin-top: -25px;
  }
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase1 .ticket .lg {
    display: none;
  }
}

.donation .main-ticket.phase1 .ticket .md {
  display: none;
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase1 .ticket .md {
    display: block;
  }
}

.donation .main-ticket.phase2 {
  padding: 25px 0 25px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase2 {
    padding-bottom: 0;
  }
}

.donation .main-ticket.phase2 .left-pop {
  right: 107%;
  top: 2%;
}

.donation .main-ticket.phase2 .right-pop {
  left: 107%;
  top: 10%;
}

.donation .main-ticket.phase2 h4 {
  line-height: 70px;
}

@media screen and (max-width: 460px) {
  .donation .main-ticket.phase2 h4 {
    line-height: 60px;
  }
}

.donation .main-ticket.phase2 .title {
  text-shadow: none;
  font-size: 20px;
  font-weight: 500;
  color: #4F4F4F;
  text-align: left;
  margin: 0 auto;
  padding-left: 90px;
  margin-bottom: 8px;
  margin-top: 8px;
  position: relative;
  max-width: 537px;
}

@media screen and (max-width: 510px) {
  .donation .main-ticket.phase2 .title {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase2 .wording {
    display: none;
  }
}

.donation .main-ticket.phase2 .ticket {
  width: 100%;
  max-width: 537px;
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase2 .ticket {
    position: relative;
    margin-top: -25px;
  }
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase2 .ticket .lg {
    display: none;
  }
}

.donation .main-ticket.phase2 .ticket .md {
  display: none;
}

@media screen and (max-width: 767px) {
  .donation .main-ticket.phase2 .ticket .md {
    display: block;
  }
}

.donation .main-ticket.phase3 .left-pop {
  right: 107%;
  top: 2%;
}

.donation .main-ticket.phase3 .right-pop {
  left: 107%;
  top: 10%;
}

.donation .main-ticket.phase3 .ticket {
  position: relative;
  max-width: 537px;
}

.donation .main-ticket.phase3 .ticket .lg-hover {
  display: none;
}

.donation .main-ticket.phase3 .ticket:hover .lg {
  display: none;
}

.donation .main-ticket.phase3 .ticket:hover .lg-hover {
  display: block;
}

.donation .main-ticket .ps {
  text-align: right;
  margin-bottom: -10px;
  margin-top: 30px;
}

.donation .main-ticket .ticket {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  right: 0;
}

.donation .ps {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 20px;
}

.donation h4 {
  font-size: 50px;
  color: #4F4F4F;
  font-weight: 900;
  text-align: center;
  position: relative;
  text-shadow: -2px -2px 0 #FFF,   2px -2px 0 #FFF, -2px  2px 0 #FFF, 2px  2px 0 #FFF;
  margin-bottom: 15px;
}

@media screen and (max-width: 620px) {
  .donation h4 {
    font-size: 38px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 440px) {
  .donation h4 {
    font-size: 30px;
    margin-top: -8px;
  }
}

@media screen and (max-width: 340px) {
  .donation h4 {
    font-size: 26px;
  }
}

.donation .note {
  font-size: 22px;
  color: #F4E9D3;
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 620px) {
  .donation .note {
    font-size: 18px;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 410px) {
  .donation .note {
    font-size: 16px;
  }
}

.donation .main-button {
  -webkit-box-shadow: #e2bb4c 2px 5px 0px;
  box-shadow: #e2bb4c 2px 5px 0px;
  margin-bottom: 12px;
}

@media screen and (max-width: 410px) {
  .donation .main-button {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 360px) {
  .donation .main-button {
    width: 180px;
    font-size: 15px;
  }
}

.donation .left-pop {
  width: 69.81%;
  position: absolute;
}

.donation .right-pop {
  width: 60.36%;
  position: absolute;
}

.donation .chair {
  text-align: center;
}

.donation .chair img {
  max-width: 1246px;
  margin: 0 auto;
}

.donation .numbers {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: -14px;
}

@media screen and (max-width: 510px) {
  .donation .numbers {
    margin-bottom: -20px;
  }
}

.donation .numbers img {
  width: 46px;
  display: inline-block;
  margin: -3px;
}

@media screen and (max-width: 510px) {
  .donation .numbers img {
    width: 38px;
  }
}

@media screen and (max-width: 460px) {
  .donation .numbers img {
    width: 30px;
  }
}

.bubble {
  font-size: 0;
}

h2 {
  font-size: 50px;
  color: #4F4F4F;
  font-weight: 900;
  text-align: center;
  text-shadow: -2px -2px 0 #FFF,   2px -2px 0 #FFF, -2px  2px 0 #FFF, 2px  2px 0 #FFF;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  z-index: 9;
}

@media screen and (max-width: 620px) {
  h2 {
    font-size: 38px;
  }
}

h2:before {
  content: "";
  position: absolute;
  display: block;
  right: 107%;
  top: 18%;
  width: 75px;
  height: 38px;
  background-image: url(../images/title_corn_left.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

h2:after {
  content: "";
  position: absolute;
  display: block;
  left: 105%;
  top: 5%;
  width: 70px;
  height: 45px;
  background-image: url(../images/title_corn_right.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.title {
  text-align: center;
}

section {
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px;
}

section:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 45px;
  background-image: url(../images/side_tag.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 570px) {
  section:after {
    display: none;
  }
}

section.main {
  padding-bottom: 0;
  padding-top: 0;
}

@media screen and (max-width: 1250px) {
  section.main {
    padding-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  section.main {
    padding-top: 0;
  }
}

@media screen and (max-width: 568px) {
  section.main {
    padding-top: 20px;
  }
}

@media screen and (max-width: 385px) {
  section.main {
    padding-top: 30px;
  }
}

section.donation {
  padding-bottom: 0;
  padding-top: 0;
}

section.donation:after {
  display: none;
}

section.donation .main-ticket {
  display: none;
}

section.prize {
  background-color: #ddf1ee;
  background-image: url(../images/bg_01.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

section.prize .title {
  position: relative;
}

section.prize h3 {
  color: #53b7aa;
  position: relative;
}

section.prize .decoration {
  position: absolute;
  left: 16px;
  top: 50px;
  width: 181px;
  height: 182px;
  background-image: url(../images/section_deco_01.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 845px) {
  section.prize .decoration {
    display: none;
  }
}

section.prize .content-wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1300px) {
  section.prize .content-wrapper {
    width: 90%;
  }
}

section.prize .row-01 {
  margin-top: 30px;
  text-align: center;
}

section.prize .row-01 .prize-content {
  width: 40%;
  max-width: 370px;
  min-height: 304px;
  display: inline-block;
  color: #393F4A;
  font-size: 20px;
  line-height: 1.5;
  border: #fff solid 6px;
  padding: 23px;
  position: relative;
  margin-right: 40px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

@media screen and (max-width: 1040px) {
  section.prize .row-01 .prize-content {
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 520px;
    min-height: 0;
  }
}

@media screen and (max-width: 620px) {
  section.prize .row-01 .prize-content {
    font-size: 16px;
  }
}

section.prize .row-01 .prize-content p {
  position: relative;
  margin-bottom: 16px;
  text-align: left;
}

section.prize .row-01 .prize-content .main-button {
  max-width: 300px;
  width: 90%;
  -webkit-box-shadow: #a0c3be 2px 5px 0px;
  box-shadow: #a0c3be 2px 5px 0px;
}

section.prize .row-01 .prize-content .main-button:hover {
  color: #53b7aa;
}

section.prize .row-01 .prize-content:before {
  width: 102%;
  height: 102%;
  content: " ";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.35);
  display: block;
  top: 10px;
  left: 10px;
  z-index: 0;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

section.prize .row-01 .prize-item {
  vertical-align: top;
  width: 30%;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 1300px) {
  section.prize .row-01 .prize-item {
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  section.prize .row-01 .prize-item {
    width: 150px;
  }
}

@media screen and (max-width: 340px) {
  section.prize .row-01 .prize-item {
    width: 130px;
  }
}

section.prize .row-01 .prize-item .image {
  text-align: center;
}

section.prize .row-01 .prize-item .bubble {
  position: relative;
  margin-bottom: 10px;
}

section.prize .row-01 .prize-item img {
  display: inline-block;
}

section.prize .row-01 .prize-item.p01 {
  top: 20px;
}

@media screen and (max-width: 575px) {
  section.prize .row-01 .prize-item.p01 {
    top: 0px;
  }
}

section.prize .row-01 .prize-item.p01 img {
  width: 240px;
}

@media screen and (max-width: 1300px) {
  section.prize .row-01 .prize-item.p01 img {
    width: 200px;
  }
}

@media screen and (max-width: 480px) {
  section.prize .row-01 .prize-item.p01 img {
    width: 150px;
  }
}

@media screen and (max-width: 350px) {
  section.prize .row-01 .prize-item.p01 img {
    width: 140px;
  }
}

section.prize .row-01 .prize-item.p01 .bubble img {
  width: 302px;
}

@media screen and (max-width: 620px) {
  section.prize .row-01 .prize-item.p01 .bubble img {
    width: 260px;
  }
}

@media screen and (max-width: 480px) {
  section.prize .row-01 .prize-item.p01 .bubble img {
    width: 220px;
  }
}

section.prize .row-01 .prize-item.p02 {
  top: -5px;
}

@media screen and (max-width: 575px) {
  section.prize .row-01 .prize-item.p02 {
    top: 40px;
  }
}

@media screen and (max-width: 480px) {
  section.prize .row-01 .prize-item.p02 {
    top: 50px;
  }
}

section.prize .row-01 .prize-item.p02 img {
  width: 136px;
}

@media screen and (max-width: 1300px) {
  section.prize .row-01 .prize-item.p02 img {
    width: 100px;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  section.prize .row-01 .prize-item.p02 img {
    width: 80px;
  }
}

@media screen and (max-width: 350px) {
  section.prize .row-01 .prize-item.p02 img {
    width: 65px;
  }
}

section.prize .row-01 .prize-item.p02 .bubble img {
  width: 210px;
}

@media screen and (max-width: 620px) {
  section.prize .row-01 .prize-item.p02 .bubble img {
    width: 170px;
  }
}

section.prize .row-02 {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 850px) {
  section.prize .row-02 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 550px) {
  section.prize .row-02 {
    margin-bottom: -10px;
  }
}

section.prize .row-02 .prize-item {
  width: 23%;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

@media screen and (max-width: 1040px) {
  section.prize .row-02 .prize-item {
    width: 24%;
  }
}

@media screen and (max-width: 850px) {
  section.prize .row-02 .prize-item {
    width: 45%;
  }
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item {
    margin-bottom: 20px;
  }
}

section.prize .row-02 .prize-item .image {
  text-align: center;
}

section.prize .row-02 .prize-item .bubble {
  position: relative;
}

section.prize .row-02 .prize-item img {
  display: inline-block;
}

@media screen and (max-width: 850px) {
  section.prize .row-02 .prize-item.p03 {
    top: 20px;
    left: 50px;
  }
}

@media screen and (max-width: 750px) {
  section.prize .row-02 .prize-item.p03 {
    left: 0;
  }
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p03 {
    right: 0px;
    top: 25px;
  }
}

section.prize .row-02 .prize-item.p03 img {
  width: 196px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p03 img {
    width: 150px;
  }
}

section.prize .row-02 .prize-item.p03 .bubble {
  margin-bottom: -30px;
}

section.prize .row-02 .prize-item.p03 .bubble img {
  width: 229px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p03 .bubble img {
    width: 200px;
  }
}

section.prize .row-02 .prize-item.p04 {
  top: 20px;
}

@media screen and (max-width: 1040px) {
  section.prize .row-02 .prize-item.p04 {
    top: 40px;
  }
}

@media screen and (max-width: 850px) {
  section.prize .row-02 .prize-item.p04 {
    right: 20px;
  }
}

@media screen and (max-width: 750px) {
  section.prize .row-02 .prize-item.p04 {
    right: 0;
  }
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p04 {
    top: 60px;
    left: 20px;
  }
}

@media screen and (max-width: 390px) {
  section.prize .row-02 .prize-item.p04 {
    left: 4px;
    top: 70px;
  }
}

section.prize .row-02 .prize-item.p04 img {
  width: 127px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p04 img {
    width: 110px;
  }
}

section.prize .row-02 .prize-item.p04 .bubble {
  margin-bottom: -10px;
}

section.prize .row-02 .prize-item.p04 .bubble img {
  width: 189px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p04 .bubble img {
    width: 160px;
  }
}

@media screen and (max-width: 850px) {
  section.prize .row-02 .prize-item.p05 {
    top: 20px;
    left: 30px;
  }
}

@media screen and (max-width: 750px) {
  section.prize .row-02 .prize-item.p05 {
    left: 0;
  }
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p05 {
    top: -10px;
    right: 40px;
  }
}

@media screen and (max-width: 350px) {
  section.prize .row-02 .prize-item.p05 {
    left: -20px;
  }
}

section.prize .row-02 .prize-item.p05 img {
  width: 186px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p05 img {
    width: 140px;
  }
}

section.prize .row-02 .prize-item.p05 .bubble {
  margin-bottom: -5px;
}

section.prize .row-02 .prize-item.p05 .bubble img {
  width: 229px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p05 .bubble img {
    width: 186px;
  }
}

section.prize .row-02 .prize-item.p06 {
  top: 20px;
}

@media screen and (max-width: 1040px) {
  section.prize .row-02 .prize-item.p06 {
    top: 40px;
  }
}

@media screen and (max-width: 850px) {
  section.prize .row-02 .prize-item.p06 {
    right: 20px;
  }
}

@media screen and (max-width: 750px) {
  section.prize .row-02 .prize-item.p06 {
    right: -20px;
  }
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p06 {
    top: 40px;
    left: 3px;
  }
}

@media screen and (max-width: 390px) {
  section.prize .row-02 .prize-item.p06 {
    left: -7px;
  }
}

@media screen and (max-width: 350px) {
  section.prize .row-02 .prize-item.p06 {
    left: -20px;
  }
}

section.prize .row-02 .prize-item.p06 img {
  width: 186px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p06 img {
    width: 140px;
  }
}

section.prize .row-02 .prize-item.p06 .bubble {
  margin-bottom: -5px;
}

section.prize .row-02 .prize-item.p06 .bubble img {
  width: 229px;
}

@media screen and (max-width: 550px) {
  section.prize .row-02 .prize-item.p06 .bubble img {
    width: 186px;
  }
}

section.film-list {
  background-color: #FFF8CC;
  background-image: url(../images/bg_02.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

section.film-list h3 {
  color: #ff9600;
}

section.film-list .title {
  position: relative;
}

section.film-list .decoration {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 200px;
  height: 197px;
  background-image: url(../images/section_deco_02.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 720px) {
  section.film-list .decoration {
    width: 160px;
  }
}

@media screen and (max-width: 660px) {
  section.film-list .decoration {
    display: none;
  }
}

section.film-list .content-wrapper {
  width: 86%;
  margin: 0 auto;
  margin-top: 30px;
}

section.film-list .films-wrapper {
  background-image: url(../images/dot_bg.png);
  background-repeat: repeat;
  position: relative;
  padding: 23px 16px;
  padding-bottom: 10px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

@media screen and (max-width: 500px) {
  section.film-list .films-wrapper {
    padding: 18px 12px;
  }
}

section.film-list .films-wrapper .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  section.film-list .films-wrapper .owl-nav {
    top: 35%;
  }
}

section.film-list .films-wrapper .owl-nav:hover {
  background: none;
}

section.film-list .films-wrapper .owl-nav .owl-prev {
  position: absolute;
  left: -50px;
  width: 82px;
  height: 82px;
  background-image: url(../images/arrow_left.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1080px) {
  section.film-list .films-wrapper .owl-nav .owl-prev {
    width: 66px;
  }
}

@media screen and (max-width: 450px) {
  section.film-list .films-wrapper .owl-nav .owl-prev {
    width: 50px;
    left: -40px;
  }
}

section.film-list .films-wrapper .owl-nav .owl-prev:hover {
  background: none;
  background-image: url(../images/arrow_left.png);
  background-repeat: no-repeat;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
}

section.film-list .films-wrapper .owl-nav .owl-next {
  position: absolute;
  right: -50px;
  width: 82px;
  height: 82px;
  background-image: url(../images/arrow_right.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1080px) {
  section.film-list .films-wrapper .owl-nav .owl-next {
    width: 66px;
  }
}

@media screen and (max-width: 450px) {
  section.film-list .films-wrapper .owl-nav .owl-next {
    width: 50px;
    right: -40px;
  }
}

section.film-list .films-wrapper .owl-nav .owl-next:hover {
  background: none;
  background-image: url(../images/arrow_right.png);
  background-repeat: no-repeat;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
}

section.film-list .films-wrapper .film-slider {
  display: none;
}

section.film-list .item {
  background-color: #FFF;
  padding: 13px 9px;
  margin: 10px 5px;
  margin-top: 0;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 7px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 7px;
}

section.film-list .item .poster {
  margin-bottom: 14px;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

section.film-list .item .poster:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .3;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

section.film-list .item .poster:before {
  height: 32px;
  background-color: #ff7d00;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
  line-height: 31px;
  padding: 0 14px;
  text-align: center;
  -webkit-border-radius: 0px 0px 15px 0px;
  border-radius: 0px 0px 15px 0px;
}

@media screen and (max-width: 500px) {
  section.film-list .item .poster:before {
    font-size: 12px;
    padding: 0 8px;
    padding-right: 10px;
    height: 28px;
    line-height: 26px;
  }
}

section.film-list .item .poster.type01:before {
  content: "獨家";
}

section.film-list .item .poster.type02:before {
  content: "全台首發";
}

section.film-list .item .poster.type03:before {
  content: "熱播中";
}

section.film-list .item .poster.type04:before {
  content: "跟播中";
}

section.film-list .item .poster.type05:before {
  content: "獨家全集";
}

section.film-list .item .poster.type06:before {
  content: "推薦";
}

section.film-list .item .poster img {
  visibility: hidden;
}

section.film-list .item .name {
  color: #ff9600;
  margin-bottom: 4px;
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 590px) {
  section.film-list .item .name {
    font-size: 15px;
  }
}

section.film-list .item:hover .poster {
  -webkit-background-size: 110% auto;
  -o-background-size: 110% auto;
  background-size: 110% auto;
}

section.film-list .item:hover .poster:after {
  opacity: 0;
}

section.film-list .item:hover .name {
  color: #ff7d00;
}

section.film-list .tabs {
  position: relative;
  left: 40px;
}

@media screen and (max-width: 685px) {
  section.film-list .tabs {
    left: 20px;
  }
}

@media screen and (max-width: 375px) {
  section.film-list .tabs {
    left: 15px;
  }
}

section.film-list .tabs li {
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 20px 20px 0 0;
  border-radius: 20px 20px 0 0;
  background-color: #FFF;
  min-width: 147px;
  text-align: center;
  color: #393F4A;
  font-size: 18px;
  font-weight: 500;
  padding: 14px;
  margin-right: 4px;
  vertical-align: bottom;
  position: relative;
}

@media screen and (max-width: 840px) {
  section.film-list .tabs li {
    min-width: 120px;
  }
}

@media screen and (max-width: 685px) {
  section.film-list .tabs li {
    min-width: 100px;
  }
}

@media screen and (max-width: 540px) {
  section.film-list .tabs li {
    max-width: 80px;
    min-width: 2px;
  }
}

@media screen and (max-width: 375px) {
  section.film-list .tabs li {
    font-size: 16px;
    margin-right: 2px;
    padding: 12px;
  }
}

section.film-list .tabs li.on {
  font-size: 22px;
  padding: 20px;
  background-image: url(../images/dot_bg.png);
  text-shadow: -1px -1px 0 #FFF,   1px -1px 0 #FFF, -1px  1px 0 #FFF, 1px  1px 0 #FFF;
}

@media screen and (max-width: 540px) {
  section.film-list .tabs li.on {
    padding: 14px;
  }
}

@media screen and (max-width: 375px) {
  section.film-list .tabs li.on {
    font-size: 18px;
    padding: 12px;
  }
}

section.film-list .tabs li.on:after {
  position: absolute;
  content: "";
  width: 68px;
  height: 43px;
  background-image: url(../images/tab_on_deco.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  top: -10px;
  left: -16px;
}

@media screen and (max-width: 685px) {
  section.film-list .tabs li.on:after {
    top: -18px;
    width: 60px;
  }
}

@media screen and (max-width: 540px) {
  section.film-list .tabs li.on:after {
    top: -20px;
    width: 50px;
  }
}

section.film-list .note {
  display: inline-block;
  width: 100%;
  color: #ff9600;
  text-align: right;
  margin-top: 6px;
}

section.free-film {
  background-color: #ddf1ee;
  background-image: url(../images/logo_bg.png);
  background-position: center center;
  background-repeat: repeat;
}

section.free-film h3 {
  color: #53b7aa;
}

section.free-film .title {
  position: relative;
}

section.free-film .decoration {
  position: absolute;
  left: 20px;
  bottom: 40px;
  width: 235px;
  height: 215px;
  background-image: url(../images/section_deco_03.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  section.free-film .decoration {
    display: none;
  }
}

section.free-film .content-wrapper {
  text-align: center;
  width: 60%;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
}

@media screen and (max-width: 1120px) {
  section.free-film .content-wrapper {
    width: 80%;
  }
}

@media screen and (max-width: 840px) {
  section.free-film .content-wrapper {
    width: 96%;
  }
}

section.free-film .film-wrapper {
  position: relative;
  background-image: url(../images/dot_bg_gr.png);
  background-repeat: repeat;
  display: inline-block;
  max-width: 300px;
  background-color: #53b7aa;
  padding: 23px 16px;
  padding-bottom: 10px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

section.free-film .item {
  background-color: #FFF;
  padding: 13px 9px;
  margin: 10px 5px;
  margin-top: 0;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 7px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 7px;
}

section.free-film .item .poster {
  margin-bottom: 14px;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

section.free-film .item .poster:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .3;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

section.free-film .item .poster img {
  visibility: hidden;
}

section.free-film .item .name {
  color: #53b7aa;
  margin-bottom: 4px;
  font-size: 18px;
  text-align: center;
}

section.free-film .item:hover .poster {
  -webkit-background-size: 110% auto;
  -o-background-size: 110% auto;
  background-size: 110% auto;
}

section.free-film .item:hover .poster:after {
  opacity: 0;
}

section.free-film .item:hover .name {
  color: #ff7d00;
}

section.free-film .action-wrapper {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin-top: 57px;
  margin-left: 67px;
}

@media screen and (max-width: 840px) {
  section.free-film .action-wrapper {
    margin-left: 20px;
  }
}

@media screen and (max-width: 645px) {
  section.free-film .action-wrapper {
    margin-left: 0;
    display: block;
    text-align: center;
    margin-top: 36px;
  }
}

section.free-film .action-wrapper .main-button {
  cursor: pointer;
  min-width: 300px;
  margin-bottom: 37px;
  position: relative;
  text-align: center;
  -webkit-box-shadow: #a0c3be 2px 5px 0px;
  box-shadow: #a0c3be 2px 5px 0px;
}

@media screen and (max-width: 645px) {
  section.free-film .action-wrapper .main-button {
    margin-bottom: 26px;
  }
}

section.free-film .action-wrapper .main-button:hover {
  color: #53b7aa;
}

section.free-film .action-wrapper .main-button:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
}

section.free-film .action-wrapper .main-button.b01:after {
  width: 53px;
  height: 64px;
  left: -1px;
  bottom: 10px;
  background-image: url(../images/item_b01.png);
}

section.free-film .action-wrapper .main-button.b02:after {
  width: 51px;
  height: 28px;
  left: 8px;
  bottom: 13px;
  background-image: url(../images/item_b02.png);
}

section.free-film .action-wrapper .main-button.b03 {
  text-align: right;
}

@media screen and (max-width: 645px) {
  section.free-film .action-wrapper .main-button.b03 {
    text-align: center;
    padding-left: 40px;
  }
}

section.free-film .action-wrapper .main-button.b03:after {
  width: 56px;
  height: 54px;
  left: -2px;
  bottom: 6px;
  background-image: url(../images/item_b03.png);
}

section.tff {
  background-color: #B5B9DE;
  background-image: url(../images/bg_03.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1330px) {
  section.tff {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 900px) {
  section.tff {
    padding-bottom: 60px;
  }
}

section.tff:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../images/TFF_bg.png);
  -webkit-background-size: auto 113%;
  -o-background-size: auto 113%;
  background-size: auto 113%;
  background-position: left center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1330px) {
  section.tff:before {
    -webkit-background-size: auto 110%;
    -o-background-size: auto 110%;
    background-size: auto 110%;
    background-position: left 10%;
  }
}

@media screen and (max-width: 900px) {
  section.tff:before {
    background-image: url(../images/TFF_bg_nologo.png);
  }
}

section.tff .title {
  position: relative;
}

section.tff p {
  position: relative;
  font-size: 30px;
  line-height: 1.3;
  color: #FFF;
  text-shadow: rgba(0, 0, 0, 0.65) 0px 0px 4px;
}

@media screen and (max-width: 1180px) {
  section.tff p {
    color: #4F4F4F;
    text-shadow: none;
  }
}

@media screen and (max-width: 620px) {
  section.tff p {
    font-size: 26px;
  }
}

@media screen and (max-width: 430px) {
  section.tff p {
    font-size: 20px;
  }
}

section.tff p .emp {
  color: #6c00a5;
  font-weight: 700;
  background-color: #c9e3f6;
  display: inline-block;
  -webkit-border-radius: 90px;
  border-radius: 90px;
  padding: 6px 26px;
  text-shadow: none;
  margin-top: 3px;
  margin-bottom: 3px;
  position: relative;
}

@media screen and (max-width: 395px) {
  section.tff p .emp {
    margin-top: 40px;
  }
}

section.tff p .emp:before {
  content: "";
  position: absolute;
  width: 132px;
  height: 43px;
  top: -40px;
  left: -27px;
  background-image: url(../images/bubble/bubble_exclusive.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  -webkit-animation-name: floater;
  animation-name: floater;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  z-index: 20;
}

@media screen and (max-width: 395px) {
  section.tff p .emp:before {
    left: 10px;
  }
}

section.tff .action-wrapper {
  margin-top: 20px;
  display: inline-block;
}

section.tff .action-wrapper > span {
  color: #FFF;
  font-size: 20px;
  line-height: 1.25;
  text-align: left;
  display: block;
  width: 280px;
  margin-top: 16px;
  margin-left: 5px;
  text-shadow: rgba(0, 0, 0, 0.65) 0px 0px 4px;
}

@media screen and (max-width: 645px) {
  section.tff .action-wrapper > span {
    margin-top: -8px;
    margin-top: -86px;
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
    color: #6c00a5;
    text-shadow: white 0px 0px 5px;
    font-weight: 700;
  }
}

@media screen and (max-width: 430px) {
  section.tff .action-wrapper > span {
    font-size: 18px;
  }
}

section.tff .action-wrapper .main-button {
  min-width: 290px;
  -webkit-box-shadow: #8b70ad 2px 5px 0px;
  box-shadow: #8b70ad 2px 5px 0px;
}

@media screen and (max-width: 645px) {
  section.tff .action-wrapper .main-button {
    display: block;
    margin-bottom: 26px;
  }
}

section.tff .action-wrapper .main-button:hover {
  color: #6c00a5;
}

section.tff .action-wrapper .main-button:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
}

section.tff .action-wrapper .main-button.b01 {
  text-align: right;
  margin-right: 15px;
}

@media screen and (max-width: 645px) {
  section.tff .action-wrapper .main-button.b01 {
    margin-right: 0;
  }
}

@media screen and (max-width: 620px) {
  section.tff .action-wrapper .main-button.b01 {
    text-align: center;
  }
}

section.tff .action-wrapper .main-button.b01:after {
  width: 53px;
  height: 60px;
  left: -2px;
  bottom: 6px;
  background-image: url(../images/item_b04.png);
}

section.tff .action-wrapper .main-button.b02 {
  width: 320px;
  text-align: right;
  margin-left: 15px;
}

@media screen and (max-width: 645px) {
  section.tff .action-wrapper .main-button.b02 {
    margin-left: 0;
  }
}

@media screen and (max-width: 620px) {
  section.tff .action-wrapper .main-button.b02 {
    text-align: center;
  }
}

@media screen and (max-width: 430px) {
  section.tff .action-wrapper .main-button.b02 {
    margin-bottom: 0;
  }
}

section.tff .action-wrapper .main-button.b02:after {
  width: 58px;
  height: 44px;
  left: -2px;
  bottom: 10px;
  background-image: url(../images/item_b05.png);
}

section.charity {
  background-color: #FFF8CC;
  background-image: url(../images/bg_04.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

section.charity .title {
  position: relative;
}

section.charity .decoration {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 169px;
  height: 147px;
  background-image: url(../images/section_deco_04.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 640px) {
  section.charity .decoration {
    display: none;
  }
}

section.charity .content-wrapper {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
}

section.charity .content-wrapper .picture {
  float: left;
  width: 50%;
  display: block;
  color: #393F4A;
  font-size: 20px;
  line-height: 1.5;
  border: #fff solid 6px;
  padding: 18px;
  position: relative;
  margin-right: 40px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

@media screen and (max-width: 1240px) {
  section.charity .content-wrapper .picture {
    max-width: 450px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  section.charity .content-wrapper .picture {
    float: none;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

section.charity .content-wrapper .picture img {
  position: relative;
}

section.charity .content-wrapper .picture:before {
  width: 102%;
  height: 102%;
  content: " ";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.35);
  display: block;
  top: 8px;
  left: 8px;
  z-index: 0;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

section.charity .content-wrapper article {
  float: left;
  display: block;
  width: 45%;
  margin-top: 15px;
  position: relative;
}

@media screen and (max-width: 1110px) {
  section.charity .content-wrapper article {
    float: none;
    width: 100%;
  }
}

section.charity .content-wrapper article p {
  color: #393F4A;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media screen and (max-width: 1110px) {
  section.charity .content-wrapper article p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 620px) {
  section.charity .content-wrapper article p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

section.charity .content-wrapper article .side-info {
  color: #393F4A;
  margin-top: 6px;
  margin-left: 3px;
  font-size: 14px;
  display: inline-block;
  text-align: right;
}

@media screen and (max-width: 1110px) {
  section.charity .content-wrapper article .side-info {
    display: block;
    text-align: left;
  }
}

section.charity .content-wrapper article .donate {
  background-image: url(../images/dot_bg.png);
  display: inline-block;
  background-repeat: repeat;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  padding: 10px 8px;
}

section.charity .content-wrapper article .inner-content {
  background-color: #FFFCEA;
  background-image: url(../images/hands.png);
  -webkit-background-size: 103px 136px;
  -o-background-size: 103px 136px;
  background-size: 103px 136px;
  background-position: 3% bottom;
  background-repeat: no-repeat;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  padding: 13px;
  padding-left: 125px;
  padding-right: 30px;
  color: #393F4A;
  font-size: 18px;
  line-height: 1.389;
}

@media screen and (max-width: 620px) {
  section.charity .content-wrapper article .inner-content {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  section.charity .content-wrapper article .inner-content {
    padding-left: 13px;
    background-position: right bottom;
    -webkit-background-size: 80px auto;
    -o-background-size: 80px auto;
    background-size: 80px auto;
    text-shadow: -1px -1px 0 #FFF,   1px -1px 0 #FFF, -1px  1px 0 #FFF, 1px  1px 0 #FFF;
  }
}

section.charity .content-wrapper article .inner-content a {
  margin-top: 10px;
  display: inline-block;
}

section.charity .content-wrapper article .inner-content h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

section.awtg {
  background-color: #000;
  padding: 0;
  font-size: 0;
}

section.awtg .banner {
  width: 70%;
  display: inline-block;
}

@media screen and (max-width: 928px) {
  section.awtg .banner {
    width: 100%;
  }
}

section.awtg .banner .md {
  display: none;
}

@media screen and (max-width: 928px) {
  section.awtg .banner .md {
    display: block;
  }
}

@media screen and (max-width: 928px) {
  section.awtg .banner .lg {
    display: none;
  }
}

section.awtg .ticket-content {
  padding: 2%;
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  display: inline-block;
  text-align: right;
  background-color: #000;
}

@media screen and (max-width: 928px) {
  section.awtg .ticket-content {
    width: 80%;
    margin: 0 auto;
    position: relative;
    display: block;
    height: auto;
  }
}

section.awtg .wording {
  margin: 0 auto;
  margin-bottom: 15px;
}

@media screen and (max-width: 1165px) {
  section.awtg .wording {
    width: 86%;
  }
}

@media screen and (max-width: 928px) {
  section.awtg .wording {
    width: 70%;
    margin-bottom: 5%;
  }
}

section.awtg .side-info {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
}

@media screen and (max-width: 928px) {
  section.awtg .side-info {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 5%;
  }
}

section.awtg a {
  display: block;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 928px) {
  section.awtg a {
    width: 46%;
    display: inline-block;
    vertical-align: top;
    margin: 0 2%;
  }
}

section.awtg a.btn1 {
  margin-bottom: 10px;
}

section.awtg a.btn2 {
  margin-bottom: 20px;
}

section.awtg .ps {
  display: inline-block;
  color: #FFF;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

section.apff {
  padding: 0;
  background-color: #1F1E1D;
  background-image: url(../images/apff_bg.png);
  -webkit-background-size: auto 92%;
  -o-background-size: auto 92%;
  background-size: auto 92%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

@media screen and (max-width: 900px) {
  section.apff {
    -webkit-background-size: auto 80%;
    -o-background-size: auto 80%;
    background-size: auto 80%;
  }
}

section.apff:after {
  display: none;
}

section.apff .buffer {
  height: 60px;
  background-color: #000;
  background: #393f4a;
  /* Old browsers */
  background: -moz-linear-gradient(top, #393f4a 0%, #1f1e1d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #393f4a 0%, #1f1e1d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#393f4a), to(#1f1e1d));
  background: -o-linear-gradient(top, #393f4a 0%, #1f1e1d 100%);
  background: linear-gradient(to bottom, #393f4a 0%, #1f1e1d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#393f4a', endColorstr='#1f1e1d',GradientType=0 );
  /* IE6-9 */
}

section.apff .container {
  font-size: 0;
  padding-bottom: 60px;
}

section.apff .logo {
  font-size: 40px;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0px;
  position: relative;
}

section.apff .logo img {
  width: 90%;
  margin: 0 auto;
  max-width: 300px;
}

@media screen and (max-width: 450px) {
  section.apff .logo img {
    width: 70%;
  }
}

section.apff .exclusive {
  margin-bottom: 24px;
}

section.apff .exclusive .color {
  font-size: 38px;
  text-align: center;
}

@media screen and (max-width: 450px) {
  section.apff .exclusive .color {
    font-size: 30px;
  }
}

section.apff .color {
  color: #B9976C;
}

section.apff .left-col {
  display: inline-block;
  width: 68%;
  font-size: 15px;
  vertical-align: top;
}

@media screen and (max-width: 900px) {
  section.apff .left-col {
    display: block;
    margin: 0 auto;
    width: 90%;
    margin-bottom: 20px;
  }
}

section.apff .left-col h4 {
  font-size: 30px;
  color: #B9976C;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

@media screen and (max-width: 450px) {
  section.apff .left-col h4 {
    font-size: 25px;
  }
}

section.apff .left-col .sub-info {
  font-size: 20px;
  letter-spacing: 2px;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  section.apff .left-col .sub-info {
    font-size: 18px;
  }
}

section.apff .left-col .video {
  margin-bottom: 24px;
  position: relative;
}

section.apff .left-col .video iframe {
  width: 100%;
  margin: 0;
  z-index: 90;
}

section.apff .left-col .block-img {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 95;
}

section.apff .left-col .block-img img {
  width: 45%;
  margin: 0 auto;
  top: 35%;
  position: relative;
}

section.apff .right-col {
  display: inline-block;
  width: 30%;
  font-size: 15px;
  vertical-align: top;
  margin-left: 2%;
  margin-top: 30px;
}

@media screen and (max-width: 900px) {
  section.apff .right-col {
    display: block;
    margin: 0 auto;
    width: 90%;
    margin-top: 32px;
  }
}

section.apff .right-col .button-wrap {
  text-align: center;
  margin-bottom: 10px;
}

section.apff .right-col .apff-btn {
  cursor: pointer;
  display: inline-block;
  height: 50px;
  width: 100%;
  max-width: 290px;
  background-color: rgba(31, 30, 29, 0.6);
  border: rgba(110, 110, 109, 0.6) 2px solid;
  color: #fff;
  line-height: 46px;
  text-align: center;
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 2px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

section.apff .right-col .apff-btn:hover {
  background-color: #1f1e1d;
}

section.apff .right-col .note {
  display: block;
  text-align: left;
  color: #FFF;
  max-width: 290px;
  margin: 0 auto;
  margin-bottom: 24px;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
}

section.totc {
  padding: 0;
  padding-top: 50px;
  background-color: #1F1E1D;
  background-image: url(../images/totc_bg.png);
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

section.totc:after {
  display: none;
}

section.totc:before {
  content: "";
  position: absolute;
  width: 628px;
  height: 418px;
  display: block;
  background-image: url(../images/totc_actor.png);
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  right: 3%;
  bottom: 0;
}

@media screen and (max-width: 1330px) {
  section.totc:before {
    width: 550px;
    right: 1%;
  }
}

@media screen and (max-width: 900px) {
  section.totc:before {
    width: 90%;
    height: 500px;
  }
}

section.totc .buffer {
  height: 60px;
  background-color: #000;
  background: #393f4a;
  /* Old browsers */
  background: -moz-linear-gradient(top, #393f4a 0%, #1f1e1d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #393f4a 0%, #1f1e1d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#393f4a), to(#1f1e1d));
  background: -o-linear-gradient(top, #393f4a 0%, #1f1e1d 100%);
  background: linear-gradient(to bottom, #393f4a 0%, #1f1e1d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#393f4a', endColorstr='#1f1e1d',GradientType=0 );
  /* IE6-9 */
}

section.totc .container {
  font-size: 0;
  padding-bottom: 60px;
  max-width: 1260px;
}

@media screen and (max-width: 900px) {
  section.totc .container {
    padding-bottom: 50%;
  }
}

section.totc .logo {
  font-size: 40px;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0px;
  position: relative;
}

section.totc .logo img {
  width: 90%;
  margin: 0 auto;
  max-width: 300px;
}

@media screen and (max-width: 450px) {
  section.totc .logo img {
    width: 70%;
  }
}

section.totc .exclusive {
  margin-top: 30px;
  margin-bottom: 24px;
}

@media screen and (max-width: 900px) {
  section.totc .exclusive {
    margin-top: 10px;
  }
}

section.totc .exclusive .color {
  font-size: 38px;
  text-align: center;
}

@media screen and (max-width: 450px) {
  section.totc .exclusive .color {
    font-size: 30px;
  }
}

section.totc .color {
  color: #d99a26;
}

section.totc .container {
  position: relative;
}

section.totc .button-outer {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 30%;
  margin-right: 5%;
}

@media screen and (max-width: 900px) {
  section.totc .button-outer {
    width: 90%;
  }
}

section.totc .button-outer .button-wrap {
  text-align: center;
  margin-bottom: 10px;
  display: inline-block;
  width: 48%;
  margin: 0 1%;
}

section.totc .button-outer .apff-btn {
  cursor: pointer;
  display: inline-block;
  height: 50px;
  width: 100%;
  max-width: 290px;
  background-color: rgba(31, 30, 29, 0.6);
  border: rgba(110, 110, 109, 0.6) 2px solid;
  color: #fff;
  line-height: 46px;
  text-align: center;
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 2px;
  vertical-align: top;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

section.totc .button-outer .apff-btn:hover {
  background-color: #1f1e1d;
}

section.totc .left-col {
  display: inline-block;
  width: 60%;
  font-size: 15px;
  vertical-align: top;
}

@media screen and (max-width: 900px) {
  section.totc .left-col {
    display: block;
    margin: 0 auto;
    width: 90%;
    margin-bottom: 20px;
  }
}

section.totc .left-col h4 {
  font-size: 30px;
  color: #d99a26;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

@media screen and (max-width: 450px) {
  section.totc .left-col h4 {
    font-size: 25px;
  }
}

section.totc .left-col .sub-info {
  font-size: 20px;
  letter-spacing: 2px;
  color: #122a88;
}

@media screen and (max-width: 450px) {
  section.totc .left-col .sub-info {
    font-size: 18px;
  }
}

section.totc .left-col .video {
  margin-bottom: 24px;
  position: relative;
}

section.totc .left-col .video iframe {
  width: 100%;
  margin: 0;
  z-index: 90;
}

section.totc .left-col .block-img {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 95;
}

section.totc .left-col .block-img img {
  width: 45%;
  margin: 0 auto;
  top: 35%;
  position: relative;
}

section.totc .right-col {
  display: inline-block;
  width: 30%;
  font-size: 15px;
  vertical-align: top;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 30px;
  position: relative;
}

@media screen and (max-width: 900px) {
  section.totc .right-col {
    display: block;
    margin: 0 auto;
    width: 90%;
    margin-top: 32px;
  }
}

section.totc .right-col .note {
  display: block;
  text-align: left;
  color: #FFF;
  max-width: 290px;
  margin: 0 auto;
  margin-bottom: 24px;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
}

a.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

.chromecast {
  padding: 0;
  background-color: #DCDCDC;
  text-align: center;
}

.chromecast img {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}
