﻿@charset "UTF-8";
@import url("reset.css");
/* 解除邊框與padding限制 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 基本設定 */
html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  position: relative;
  font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: none;
  background-color: #e4007b;
  background-size: 60%;
}

canvas {
  z-index: -1;
  position: absolute;
  display: block;
  width: 100%;
  height: 100vh;
  top: -30px;
}

a {
  text-decoration: none;
}

h1 {
  position: absolute;
  display: block;
  width: 190px;
  height: 210px;
  top: 0px;
  right: -20px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  h1 {
    top: 0px;
    right: 5%;
  }
}

@media all and (max-width: 991px) {
  h1 {
    top: 0px;
    right: 10px;
  }
}

@media all and (max-width: 575px) {
  h1 {
    top: 0px;
    right: -15px;
  }
}

h1 a {
  display: block;
  width: 190px;
  height: 210px;
  background: url(../images/logo.png) no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  margin: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

@media all and (max-width: 991px) {
  h1 a {
    margin: 0 auto;
    width: 152px;
    height: 168px;
  }
}

h1 a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

h1 a img {
  width: 100%;
}

#BANNER_Sui {
  position: relative;
  background: url(../images/Sui_2.png) no-repeat;
  background-position: right 50px;
  margin: 30px auto 0px;
  max-width: 905px;
  min-height: 700px;
  padding-top: 30px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  #BANNER_Sui {
    background-position: left 0px;
  }
}

@media all and (max-width: 991px) {
  #BANNER_Sui {
    background-position: left 0px;
  }
}

@media all and (max-width: 575px) {
  #BANNER_Sui {
    padding-top: 60px;
    background-size: 80%;
    background-position: left 100px;
  }
}

/* Video container */
#Videobox {
  display: block;
  float: left;
  width: 400px;
  height: 300px;
  margin-top: 15px;
}

@media all and (max-width: 991px) {
  #Videobox {
    float: none;
    margin: 0px auto 0;
    width: 90%;
    height: auto;
    padding: 0px 10px;
  }
}

@media all and (max-width: 575px) {
  #Videobox {
    width: 100%;
    height: auto;
    padding: 0px 10px;
  }
}

.video-container {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0px;
  left: 0px;
}

.slogan {
  margin: 0;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .slogan {
    margin: 150px auto 0;
    text-align: right;
    padding-right: 30px;
  }
}

@media all and (max-width: 991px) {
  .slogan {
    margin: 300px auto 0;
    text-align: right;
    padding-right: 30px;
  }
}

@media all and (max-width: 575px) {
  .slogan {
    padding-right: 10px;
  }
}

.slogan img {
  width: 100%;
  max-width: 400px;
}

.slogansubtitlebox {
  position: relative;
  display: block;
  width: 100%;
}

.slogansubtitlebox .slogansubtitle {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .slogansubtitlebox .slogansubtitle {
    position: relative;
    text-align: right;
    margin: 0px auto 15px;
    width: 90%;
  }
}

@media all and (max-width: 991px) {
  .slogansubtitlebox .slogansubtitle {
    position: relative;
    text-align: right;
    margin: 0px auto 15px;
    width: 90%;
  }
}

@media all and (max-width: 575px) {
  .slogansubtitlebox .slogansubtitle .sst_img {
    width: 100%;
    max-width: 420px;
  }
}

/* 選單 */
#MAIN_NAV {
  display: block;
  width: 100%;
  margin: 20px 0px 0px;
}

.menu a {
  position: relative;
  display: block;
  float: left;
  background-color: #eee;
  width: calc( 16.6% - 10px);
  height: 38px;
  line-height: 38px;
  color: #e40079;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
  margin: 5px 5px;
  font-weight: bold;
  letter-spacing: 2px;
  font-style: italic;
}

@media all and (max-width: 991px) {
  .menu a {
    width: calc( 33.333% - 20px);
    margin: 5px 10px;
  }
}

@media all and (max-width: 575px) {
  .menu a {
    width: calc( 50% - 20px);
    margin: 5px 10px;
  }
}

.menu a:first-child {
  margin-left: 5px;
}

@media all and (max-width: 991px) {
  .menu a:first-child {
    margin-left: 10px;
  }
}

@media all and (max-width: 575px) {
  .menu a:first-child {
    margin-left: 10px;
  }
}

.menu a:last-child {
  margin-right: 0px;
}

@media all and (max-width: 991px) {
  .menu a:last-child {
    margin-right: 10px;
  }
}

@media all and (max-width: 575px) {
  .menu a:last-child {
    margin-right: 10px;
  }
}

.menu a:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #9e004b;
  color: #fff;
}

.shinebtn {
  -webkit-animation: shineanime 1s infinite alternate;
          animation: shineanime 1s infinite alternate;
}

.shinebtn:hover {
  color: #e40079 !important;
}

@-webkit-keyframes shineanime {
  from {
    background-color: #eee;
  }
  to {
    background-color: #ffc0ee;
  }
}

@keyframes shineanime {
  from {
    background-color: #eee;
  }
  to {
    background-color: #ffc0ee;
  }
}

.socialsite {
  width: 100%;
  text-align: right;
  height: 50px;
  margin: 10px 0px 0px;
}

@media all and (max-width: 991px) {
  .socialsite {
    padding-right: 10px;
  }
}

.socialsite a {
  margin: 0px 5px;
}

.socialsite a img:hover {
  filter: alpha(opacity=50);
  /* IE */
  -moz-opacity: 0.5;
  /* Moz + FF */
  opacity: 0.5;
}

/* 頁尾 */
.footer {
  position: relative;
  max-width: 905px;
  margin: 15px auto 0px;
  color: #ffff;
  background-color: #e40079;
  border-radius: 10px;
  font-size: 15px;
  line-height: 25px;
  padding: 40px 15px 30px 15px;
}

@media all and (max-width: 575px) {
  .footer {
    padding: 15px 10px 0px 10px;
    line-height: 40px;
  }
}

.footer .logoicon_1 {
  position: relative;
  padding-left: 34px;
}

.footer .logoicon_1:before {
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 29px;
  height: 50px;
  content: url(../images/logo_1.png);
}

.footer .logoicon_2 {
  position: relative;
  padding-left: 55px;
}

.footer .logoicon_2:before {
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 50px;
  height: 43px;
  content: url(../images/logo_2.png);
}

.footerimgr {
  text-align: right;
  max-width: 905px;
  margin: 10px auto 0px;
}

/* 清除float */
.clearfix {
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0;
}
/*# sourceMappingURL=style.css.map */