* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

img {
    border: none;
    width: 100%;
    height: auto;
    display: block;
}

video {
    width: 100%;
    height: auto;
    vertical-align: top;
}

button {
    outline: none;
    border: none;
    background: none;
}

.content {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    overflow: hidden;
}

.content img {
    max-width: 1200px;
    width: 100%;
}

.bg {
    background-size: cover;
    margin: 0 auto;
}

.array {
    position: absolute;
}

.blend_mode_screen {
    mix-blend-mode: screen;
}

.FV_light {
    width: 20%;
    top: 1.2%;
    left: 18%;
    animation: shine 0.5s ease-in-out alternate infinite;
}

@keyframes shine {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 1;
    }
}

.light {
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
}

.light:after {
    content: "";
    display: block;
    position: absolute;
    left: -150%;
    top: 0;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    animation: light 3s infinite ease-in-out;
}

@keyframes light {
    0% {
        left: -150%;
    }

    70% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.FV_pd {
    width: 28%;
    top: 35%;
    left: 34%;
    mask: url(../images/FV_pd.png) no-repeat center center;
    mask-size: contain;
}

/* 語言按鈕 */
.btn_language {
  position: absolute;
  top: 5%;
  left: 5%;
}

.btn_language a {
  display: block;
  font-size: 0.9em;
  text-decoration: none;
  border: 1px solid #32faf8;
  color: #32faf8;
  background: #1F1F1F;
  padding: 3px 8px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn_language a:hover {
  background: #32faf8;
  color: #1F1F1F;
}

@media screen and (max-width: 800px) {
  .btn_language {
    top: 2%;
    left: 2%;
  }
  .btn_languagen a {
    letter-spacing: 0;
    font-size: 0.75em;
    padding: 3px 5px;
  }
}

@media screen and (max-width: 450px) {
  .btn_language a {
    padding: 1px 5px;
    transform: scale(0.9);
  }
}
/* 語言按鈕 END */

.sale_light01 {
    width: 91%;
    top: 4.5%;
    left: -4%;
    animation: slow-shine 1s ease-in-out alternate infinite;
}

@keyframes slow-shine {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.sale_light02 {
    width: 80%;
    top: 10.6%;
    left: 3%;
    animation: shine 0.5s ease-in-out alternate infinite;
}

.effect01 {
    width: 48%;
    top: 30%;
    left: 18%;
    animation: scale 1.5s ease-in-out alternate infinite;
    animation-delay: 1s;
}

.effect02 {
    width: 48%;
    bottom: 0%;
    left: -1%;
    animation: scale 1.5s ease-in-out alternate infinite;
    animation-delay: 2s;
}

.effect03 {
    width: 48%;
    bottom: 15%;
    right: -4%;
    animation: scale 1.5s ease-in-out alternate infinite;
    animation-delay: 2s;
}

@keyframes scale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.mv01 {
    width: 66%;
    top: 36%;
    right: 6%;
}

.mc_ps01 {
    width: 36%;
    top: 41%;
    left: 0%;
}

.mv02 {
    width: 86%;
    bottom: 18%;
    left: 7%;
}

.mc_ps02 {
    width: 85%;
    bottom: 40%;
    left: 8%;
}

.mv03 {
    width: 85%;
    top: 30%;
    left: 8%;
}

.KO_ps {
    width: 85%;
    bottom: 26%;
    left: 8%;
}

/* slide */
.slider {
    width: 100%;
    margin: 0 auto 10% auto;
}

.slick-slide {
    margin: 0;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: #fff;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}
/* slide */

/* offer */

.btn01 {
    width: 43%;
    left: 4%;
    bottom: 7%;
}

.btn02 {
    width: 43%;
    right: 4%;
    bottom: 7%;
}

.btn03 {
    width: 45%;
    right: 2%;
    bottom: 9%;
}

.btn04 {
    width: 45%;
    right: 2%;
    bottom: 4%;
}

.shiny-btn {
    display: block;
    position: relative;
    overflow: hidden;
}

.shiny-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn 3s ease-in-out infinite;
}

@keyframes shiny-btn {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

@media screen and (min-width: 1921px) {
    body {
        background: #fff;
    }

    section {
        max-width: 1920px;
    }
}

@media screen and (max-width: 1000px) {
    .content {
        margin: 0;
        width: 100%;
    }
}

