@import url(https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700,900);* {
  font-family: 'Noto Sans TC', sans-serif;
}

img {
  width: 100%;
  vertical-align: top;
}

article {
  width: 100%;
  min-height: 100vh;
  background-image: url(/assets/images/bg_grid.png);
  position: relative;
}

@media only screen and (max-width: 768px) {
  article {
    min-height: auto;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 50;
}

header .wrapper {
  max-width: 1280px;
  height: 120px;
  padding: 0 15px;
  margin: auto;
  position: relative;
}

header .wrapper figure.logo {
  width: 165px;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 50;
}

header .wrapper .ham {
  width: 54px;
  height: 40px;
  margin: 0 30px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  z-index: 50;
}

header .wrapper .ham .line {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background-color: #225FC3;
  -webkit-transition: .25s;
  transition: .25s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

header .wrapper .ham .line:nth-child(1) {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: .3s;
  transition: .3s;
}

header .wrapper .ham .line:nth-child(3) {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: .3s;
  transition: .3s;
}

header .menu {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: .3s;
  transition: .3s;
}

header .menu .content {
  max-width: 1280px;
  padding-right: 80px;
  margin: auto;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .menu .content .box {
  display: inline-block;
  font-size: 0;
}

header .menu .content .box .item {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  margin: 0 15px;
}

header .menu .content .box .item .nonio_logo {
  width: 90px;
}

header .menu .content .box .item p {
  color: #225FC3;
  font-size: 20px;
  font-weight: bold;
  line-height: 120px;
}

header .menu .content .box .item .icon {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
}

header .menu .content .box .item .icon:nth-of-type(2) {
  margin-left: 15px;
}

header .menu .content .box .item .icon .st0 {
  fill: #225FC3;
}

header .menu .content .box .item .icon .st1 {
  fill: #fff;
}

@media only screen and (max-width: 980px) {
  header .wrapper {
    max-width: 1280px;
    height: auto;
    padding: 3.333333vw 6.666667vw;
    z-index: 50;
  }

  header .wrapper figure.logo {
    width: 25vw;
    position: static;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  header .wrapper .ham {
    width: 9.333333vw;
    height: 6.666667vw;
  }

  header .wrapper .ham .line {
    height: 1.34vw;
    border-radius: 0.67vw;
  }

  header .wrapper .ham .line:nth-child(1) {
    -webkit-transform: translateY(-2.5vw);
            transform: translateY(-2.5vw);
  }

  header .wrapper .ham .line:nth-child(3) {
    -webkit-transform: translateY(2.5vw);
            transform: translateY(2.5vw);
  }

  header .menu {
    width: 100%;
    height: 100vh;
  }

  header .menu .content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding-right: 0px;
    text-align: center;
  }

  header .menu .content .box .item {
    display: block;
    text-decoration: none;
    margin: 3vw 0;
  }

  header .menu .content .box .item .nonio_logo {
    width: 25vw;
    margin: auto;
  }

  header .menu .content .box .item p {
    font-size: 6.666667vw;
    line-height: 1.5;
  }

  header .menu .content .box .item .icon {
    width: 8.533333vw;
    height: 8.533333vw;
    margin: 5vw 0;
  }

  header .menu .content .box .item .icon:nth-of-type(2) {
    margin-left: 5vw;
  }
}

header.open .wrapper .ham .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header.open .wrapper .ham .line:nth-child(2) {
  width: 0;
  opacity: 0;
}

header.open .wrapper .ham .line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header.open .menu {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

footer {
  width: 100%;
  border-top: 2px solid #22cdfc;
  background-color: #fff;
}

footer .footer_wrapper {
  max-width: 1250px;
  padding: 20px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  font-size: 0;
}

footer .footer_wrapper:after {
  content: '';
  display: block;
  clear: both;
}

footer .footer_wrapper .left {
  width: 630px;
  float: right;
  text-align: right;
}

footer .footer_wrapper .right {
  width: calc(100% - 630px);
  float: left;
}

footer .footer_wrapper figure.logo {
  width: 140px;
  margin: 0;
}

footer .footer_wrapper figure.logo img {
  width: 100%;
}

footer .footer_wrapper .copyright {
  clear: both;
  font-size: 12px;
  line-height: 1.5;
  padding-top: 15px;
}

footer .footer_wrapper .row a {
  font-size: 12px;
  line-height: 1.5;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  padding-right: 8px;
  margin-right: 8px;
}

footer .footer_wrapper .row a.link:nth-of-type(1),
footer .footer_wrapper .row a.link:nth-of-type(2),
footer .footer_wrapper .row a.link:nth-of-type(3) {
  border-right: 1px solid #000;
}

footer .footer_wrapper .row a.addr {
  border-right: 1px solid #000;
}

footer .footer_wrapper .row a.tel {
  border-right: 1px solid #000;
}

footer .blue {
  width: 100%;
  height: 45px;
  background-color: #28BFE5;
}

@media only screen and (max-width: 860px) {
  footer .footer_wrapper .left {
    width: 370px;
  }

  footer .footer_wrapper .right {
    width: calc(100% - 370px);
  }
}

@media only screen and (max-width: 768px) {
  footer .footer_wrapper {
    width: 100%;
  }

  footer .footer_wrapper .left {
    float: none;
    width: 100%;
    background-color: #fff;
    padding-top: 15px;
    text-align: center;
  }

  footer .footer_wrapper .right {
    float: none;
    width: 100%;
  }

  footer .footer_wrapper figure.logo {
    margin: auto;
  }

  footer .footer_wrapper .copyright {
    text-align: center;
  }

  footer .footer_wrapper .row a {
    margin-right: 6px;
    padding-right: 6px;
  }
}

@media only screen and (max-width: 768px) {
  .scrollbar-inner > .scroll-element.scroll-y {
    right: 8px;
  }
}

.popup {
  display: none;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(255, 255, 255, 0.78);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.popup .wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 30px);
  max-width: 1480px;
  height: 80%;
  padding: 35px;
  border: 10px solid #225FC3;
  background-color: #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.popup .wrapper .close {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 30px;
  right: 40px;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  cursor: pointer;
}

.popup .wrapper .close:before,
.popup .wrapper .close:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: '';
  display: block;
  background-color: #225FC3;
  border-radius: 5px;
}

.popup .wrapper .close:before {
  width: 100%;
  height: 10px;
}

.popup .wrapper .close:after {
  width: 10px;
  height: 100%;
}

.popup .wrapper .title {
  font-size: 45px;
  padding: 15px 0;
  color: #225FC3;
}

.popup .wrapper .content {
  width: 100%;
  height: calc(100% - 75px);
  padding: 45px 130px;
  margin: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  background-color: #225FC3;
  border-radius: 35px;
}

.popup .wrapper .content .scroll {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding-right: 15px;
}

.popup .wrapper .content .scroll .scroll-element .scroll-element_outer {
  border-radius: 0px;
}

.popup .wrapper .content .scroll .scroll-element .scroll-element_track {
  background-color: #fff;
  opacity: 1;
  border-radius: 0px;
}

.popup .wrapper .content .scroll .scroll-element .scroll-bar {
  border-radius: 0px;
  background-color: #23CCFC;
  opacity: 1;
}

.popup .wrapper .content .scroll .item {
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
  color: #fff;
}

.popup .wrapper .cloud_01 {
  width: calc((137 / 1480)*100%);
  position: absolute;
  top: -2%;
  left: -7%;
  -webkit-animation: cloudMove 5s infinite ease-out;
  animation: cloudMove 5s infinite ease-out;
}

.popup .wrapper .cloud_02 {
  width: calc((127 / 1480)*100%);
  position: absolute;
  bottom: 30%;
  right: -6.5%;
  -webkit-animation: cloudMove 5s infinite ease-out;
  animation: cloudMove 5s infinite ease-out;
}

@media only screen and (max-width: 1280px) {
  .popup .wrapper .close {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 10px;
  }

  .popup .wrapper .title {
    font-size: 30px;
  }

  .popup .wrapper .content {
    height: calc(100% - 60px);
    padding: 45px 70px;
  }

  .popup .wrapper .content .scroll .item {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .popup .wrapper {
    height: 70%;
    padding: 15px;
    border: 5px solid #225FC3;
    border-radius: 25px;
  }

  .popup .wrapper .close {
    width: 7vw;
    height: 7vw;
    top: 1vw;
    right: 1vw;
  }

  .popup .wrapper .close:before,
  .popup .wrapper .close:after {
    border-radius: .5vw;
  }

  .popup .wrapper .close:before {
    height: 1vw;
  }

  .popup .wrapper .close:after {
    width: 1vw;
  }

  .popup .wrapper .title {
    font-size: 4vw;
    line-height: 8vw;
    display: inline-block;
    padding: 0;
  }

  .popup .wrapper .content {
    height: calc(100% - 8vw);
    padding: 15px 10px;
    margin: 0;
    border-radius: 15px;
  }

  .popup .wrapper .content .scroll .item {
    font-size: 12px;
  }

  .popup .wrapper .cloud_01,
  .popup .wrapper .cloud_02 {
    display: none;
  }
}

#winnerPopup .wrapper .content .scroll {
  color: #fff;
}

#winnerPopup .wrapper .content .scroll .dear {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 40px;
}

#winnerPopup .wrapper .content .scroll .txt {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

#winnerPopup .wrapper .content .scroll .list {
  text-align: center;
  margin-bottom: 30px;
}

#winnerPopup .wrapper .content .scroll .list .list_title {
  font-size: 45px;
  line-height: 2;
  font-weight: bold;
  border: 1px solid #0D2449;
  background-color: #0D2449;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#winnerPopup .wrapper .content .scroll .list .item {
  font-size: 0;
}

#winnerPopup .wrapper .content .scroll .list .item .name,
#winnerPopup .wrapper .content .scroll .list .item .phone {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #0D2449;
  font-size: 30px;
  font-weight: bold;
  line-height: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#winnerPopup .wrapper .content .scroll .list .item .name {
  width: 31%;
  border-left: 2px solid #0D2449;
  background-color: #1A4792;
}

#winnerPopup .wrapper .content .scroll .list .item .phone {
  width: 69%;
  border-right: 2px solid #0D2449;
  background-color: #486CA8;
}

#winnerPopup .wrapper .content .scroll .remark {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}

#winnerPopup .wrapper .content .scroll .contact {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

#winnerPopup .wrapper .content .scroll .contact_email,
#winnerPopup .wrapper .content .scroll .contact_phone {
  font-size: 18px;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  #winnerPopup .wrapper .content .scroll .dear {
    font-size: 5.2vw;
    margin-bottom: 5vw;
  }

  #winnerPopup .wrapper .content .scroll .txt {
    font-size: 3.75vw;
    margin-bottom: 2vw;
  }

  #winnerPopup .wrapper .content .scroll .list {
    margin-bottom: 3vw;
  }

  #winnerPopup .wrapper .content .scroll .list .list_title {
    font-size: 6vw;
  }

  #winnerPopup .wrapper .content .scroll .list .item .name,
  #winnerPopup .wrapper .content .scroll .list .item .phone {
    font-size: 4.25vw;
  }

  #winnerPopup .wrapper .content .scroll .remark {
    font-size: 3.75vw;
    margin-bottom: 3vw;
  }

  #winnerPopup .wrapper .content .scroll .contact {
    font-size: 4vw;
  }

  #winnerPopup .wrapper .content .scroll .contact_email,
  #winnerPopup .wrapper .content .scroll .contact_phone {
    font-size: 3.2vw;
  }
}

