@import url(https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700,900);@charset "UTF-8";

* {
  font-family: 'Noto Sans TC', sans-serif;
}

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

@-webkit-keyframes shot {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  65% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes shot {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  65% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes line_move {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }

  25% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }

  75% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes line_move {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }

  25% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }

  75% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes fly {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  25% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }

  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  75% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }

  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fly {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  25% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }

  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  75% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }

  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  100% {
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px);
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  100% {
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px);
  }
}

header .box {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 90px;
  position: relative;
}

header .box:after {
  content: '';
  display: block;
  clear: both;
}

header .box .ham {
  width: 110px;
  height: 100%;
  background-color: rgba(27, 68, 104, 0.95);
  border-radius: 0 0 20px 20px;
  position: relative;
  float: right;
  z-index: 99;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

header .box .ham .line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  width: 50%;
  height: 8%;
  border-radius: 4px;
  -webkit-transition: .3s;
  transition: .3s;
}

header .box .ham .line:nth-of-type(1) {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

header .box .ham .line:nth-of-type(3) {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

header .nav {
  width: 100%;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: rgba(27, 68, 104, 0.95);
  -webkit-transition: .3s;
  transition: .3s;
}

header .nav .box {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-right: 110px;
  font-size: 0px;
}

header .nav .box .logo {
  width: 245px;
  display: inline-block;
  vertical-align: middle;
}

header .nav .box .nav_list {
  width: calc(100% - 245px);
  display: inline-block;
  vertical-align: middle;
  text-align: right;
}

header .nav .box .nav_list .item {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  margin: 0 30px;
}

header .nav .box .nav_list .item p {
  font-size: 20px;
  font-weight: 500;
  line-height: 90px;
  color: #fff;
}

header .nav .box .nav_list .item .icon {
  width: 37px;
  height: 37px;
  display: inline-block;
}

header .nav .box .nav_list .item .icon:nth-of-type(1) {
  margin-right: 15px;
}

header .nav .box .nav_list .item .icon .st0 {
  fill: #fff;
}

header .nav .box .nav_list .item .icon .st1 {
  fill: #1b4468;
}

header.show .box .ham {
  background-color: rgba(27, 68, 104, 0);
}

header.show .box .ham .line:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header.show .box .ham .line:nth-of-type(2) {
  width: 0;
  opacity: 0;
}

header.show .box .ham .line:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header.show .nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media only screen and (max-width: 1280px) {
  header .box {
    height: 70px;
  }

  header .box .ham {
    width: 80px;
    border-radius: 0 0 15px 15px;
  }

  header .box .ham .line:nth-of-type(1) {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }

  header .box .ham .line:nth-of-type(3) {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }

  header .nav {
    height: 100vh;
  }

  header .nav .box {
    height: auto;
    width: 245px;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 47%;
  }

  header .nav .box .nav_list {
    width: 100%;
    text-align: center;
  }

  header .nav .box .nav_list .item .icon {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 640px) {
  header .box {
    padding: 0 10px;
    height: 50px;
  }

  header .box .ham {
    width: 60px;
    border-radius: 0 0 10px 10px;
  }

  header .box .ham .line {
    height: 4px;
    border-radius: 2px;
  }

  header .box .ham .line:nth-of-type(1) {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }

  header .box .ham .line:nth-of-type(3) {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  header .nav .box .nav_list {
    padding: 20px 0;
  }

  header .nav .box .nav_list .item p {
    line-height: 70px;
  }
}

article {
  background-image: none;
}

article .banner {
  width: 100%;
  overflow: hidden;
}

article .banner .top_title {
  width: 100%;
  padding-bottom: 50px;
  position: relative;
  background: url(/assets/images/nonioday/BG_shine.png) no-repeat center;
  background-size: auto;
}

article .banner .top_title:before {
  content: '';
  display: block;
  width: 250%;
  height: 450%;
  max-width: 4000px;
  max-height: 1800px;
  background-color: #28BFE5;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  z-index: -90;
}

article .banner .top_title div {
  margin: auto;
}

article .banner .top_title .wrapper {
  max-width: 850px;
  position: relative;
}

article .banner .top_title .wrapper .logo {
  width: 50%;
  max-width: 282px;
  padding: 45px 0;
  background: url(/assets/images/nonioday/logo_background.png) no-repeat center;
  background-size: 60%;
}

article .banner .top_title .wrapper .slogan {
  max-width: 585px;
  margin-top: -25px;
}

article .banner .top_title .wrapper .txt {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  text-shadow: 2px 0 0 #0077ad, -2px 0 0 #0077ad, 0 2px 0 #0077ad, 0 -2px 0 #0077ad, 1px 1px #0077ad, -1px -1px 0 #0077ad, 1px -1px 0 #0077ad, -1px 1px 0 #0077ad;
  letter-spacing: 1.5px;
}

article .banner .top_title .wrapper .rice {
  width: 15%;
  position: absolute;
  bottom: 20%;
  left: 0;
}

article .banner .top_title .wrapper .noodles {
  width: 15%;
  position: absolute;
  bottom: 20%;
  right: 0;
}

article .banner .top_title .people_mob {
  display: none;
}

@media only screen and (max-width: 1440px) {
  article .banner .top_title .wrapper {
    max-width: 750px;
  }

  article .banner .top_title .wrapper .logo {
    max-width: 250px;
  }

  article .banner .top_title .wrapper .slogan {
    max-width: 500px;
  }
}

@media only screen and (max-width: 1024px) {
  article .banner .top_title:before {
    height: 150%;
  }

  article .banner .top_title .wrapper {
    width: 90%;
  }

  article .banner .top_title .wrapper .rice,
  article .banner .top_title .wrapper .noodles {
    width: 22%;
    bottom: -20%;
  }

  article .banner .top_title .people_mob {
    display: block;
    width: 50%;
    margin-bottom: -20%;
  }
}

@media only screen and (max-width: 767px) {
  article .banner .top_title .wrapper .txt {
    font-size: 16px;
  }
}

@media only screen and (max-width: 420px) {
  article .banner .top_title .wrapper .txt {
    font-size: 14px;
    text-shadow: 1px 0 0 #0077ad, -1px 0 0 #0077ad, 0 1px 0 #0077ad, 0 -1px 0 #0077ad, 1px 1px #0077ad, -1px -1px 0 #0077ad, 1px -1px 0 #0077ad, -1px 1px 0 #0077ad;
  }

  article .banner .top_title .people_mob {
    margin-bottom: -25%;
  }
}

@media only screen and (max-width: 360px) {
  article .banner .top_title .wrapper .txt {
    font-size: 12px;
  }
}

article .banner .slider {
  width: 100%;
  position: relative;
  margin-top: -1%;
}

article .banner .slider:before {
  content: '';
  display: block;
  width: 250%;
  height: 450%;
  max-width: 4000px;
  max-height: 1800px;
  background-color: #28BFE5;
  position: absolute;
  top: 92%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  z-index: -10;
}

article .banner .slider:after {
  content: '';
  display: block;
  width: 250%;
  height: 450%;
  max-width: 4000px;
  max-height: 1800px;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #28bfe5), color-stop(40.5%, rgba(40, 191, 229, 0)), color-stop(59.5%, rgba(40, 191, 229, 0)), color-stop(60%, #28bfe5));
  background: linear-gradient(90deg, #28bfe5 40%, rgba(40, 191, 229, 0) 40.5%, rgba(40, 191, 229, 0) 59.5%, #28bfe5 60%);
  position: absolute;
  top: 92%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  z-index: 20;
}

article .banner .slider .wrapper {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  position: relative;
}

article .banner .slider .wrapper .box {
  width: 45%;
  height: 85%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: -4%;
  z-index: 45;
}

article .banner .slider .wrapper .box .calendar {
  width: 75px;
  display: block;
  text-align: center;
  letter-spacing: 2px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 46;
  text-decoration: none;
}

article .banner .slider .wrapper .box .calendar:before {
  content: '\FF0B';
  display: block;
  width: 19px;
  height: 19px;
  font-size: 19px;
  letter-spacing: 0.5px;
  padding: 1.5px;
  background-color: red;
  border-radius: 50%;
  border: 1.5px solid #fff;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(40%, -40%);
          transform: translate(40%, -40%);
}

article .banner .slider .wrapper .box .calendar .month {
  font-size: 15px;
  color: #fff;
  padding: 4px;
  background-color: #e75854;
}

article .banner .slider .wrapper .box .calendar .date {
  font-size: 40px;
  color: #000;
  padding: 6px;
  background-color: #fff;
}

article .banner .slider .wrapper .box .camera {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: .7;
}

article .banner .slider .wrapper .box .camera.active {
  -webkit-animation: shot 0.5s ease-out;
  animation: shot 0.5s ease-out;
}

article .banner .slider .wrapper .box .camera:before {
  content: '';
  display: block;
  width: 20%;
  padding-bottom: 20%;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 20px solid #fff;
  border-left: 20px solid #fff;
}

article .banner .slider .wrapper .box .camera:after {
  content: '';
  display: block;
  width: 20%;
  padding-bottom: 20%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 20px solid #fff;
  border-right: 20px solid #fff;
}

article .banner .slider .wrapper .box .camera .plus {
  color: #fff;
  font-size: 120px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

article .banner .slider .wrapper .sliderBanner {
  padding-bottom: 20px;
}

article .banner .slider .wrapper .sliderBanner .swiper-slide::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: .3s;
  transition: .3s;
}

article .banner .slider .wrapper .sliderBanner .swiper-slide-active::before {
  background-color: rgba(255, 255, 255, 0);
}

article .banner .slider .wrapper .sliderBanner .swiper-slide-active img {
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

article .banner .slider .wrapper .sliderBanner .swiper-slide-prev::before {
  background-color: rgba(255, 255, 255, 0.4);
}

article .banner .slider .wrapper .sliderBanner .swiper-slide-next::before {
  background-color: rgba(255, 255, 255, 0.4);
}

article .banner .slider .wrapper .man_food {
  width: 20%;
  position: absolute;
  bottom: -5%;
  left: 5%;
  z-index: 10;
}

article .banner .slider .wrapper .woman_brush {
  width: 20%;
  position: absolute;
  bottom: -5%;
  right: 5%;
  z-index: 10;
}

@media only screen and (max-width: 1440px) {
  article .banner .slider:after {
    background: -webkit-gradient(linear, left top, right top, color-stop(42%, #28bfe5), color-stop(42.5%, rgba(40, 191, 229, 0)), color-stop(57.5%, rgba(40, 191, 229, 0)), color-stop(58%, #28bfe5));
    background: linear-gradient(90deg, #28bfe5 42%, rgba(40, 191, 229, 0) 42.5%, rgba(40, 191, 229, 0) 57.5%, #28bfe5 58%);
  }

  article .banner .slider .wrapper {
    width: 75%;
  }
}

@media only screen and (max-width: 1024px) {
  article .banner .slider:before {
    height: 200%;
  }

  article .banner .slider:after {
    display: none;
  }

  article .banner .slider .wrapper {
    width: 100%;
    padding: 0;
  }

  article .banner .slider .wrapper .man_food,
  article .banner .slider .wrapper .woman_brush {
    display: none;
  }

  article .banner .slider .wrapper .box {
    width: 75%;
  }
}

@media only screen and (max-width: 767px) {
  article .banner .slider:before {
    top: 90%;
  }

  article .banner .slider .wrapper .box {
    height: 75%;
    top: -8%;
  }

  article .banner .slider .wrapper .box .calendar {
    width: 55px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  }

  article .banner .slider .wrapper .box .calendar:before {
    width: 15px;
    height: 15px;
    font-size: 15px;
    letter-spacing: 0px;
    border: 1px solid #fff;
  }

  article .banner .slider .wrapper .box .calendar .month {
    font-size: 12px;
    padding: 3px;
  }

  article .banner .slider .wrapper .box .calendar .date {
    font-size: 30px;
    padding: 4px;
  }

  article .banner .slider .wrapper .box .camera:before {
    border-top: 10px solid #fff;
    border-left: 10px solid #fff;
  }

  article .banner .slider .wrapper .box .camera:after {
    border-bottom: 10px solid #fff;
    border-right: 10px solid #fff;
  }

  article .banner .slider .wrapper .box .camera .plus {
    font-size: 60px;
  }
}

article .banner .getStart {
  margin: auto;
  width: 75%;
  max-width: 345px;
  padding: 50px 0 80px;
  position: relative;
  z-index: 30;
}

article .banner .getStart a.botton {
  display: block;
  position: relative;
  text-decoration: none;
}

article .banner .getStart a.botton::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7f732f;
  border: 2.5px solid #212121;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 39px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article .banner .getStart a.botton p {
  background-color: #fde55d;
  border: 2.5px solid #212121;
  font-size: 35px;
  color: #212121;
  text-align: center;
  font-weight: bold;
  letter-spacing: 10px;
  line-height: 74px;
  border-radius: 39px;
  -webkit-transition: .2s;
  transition: .2s;
  position: relative;
}

article .banner .getStart a.botton p::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url(/assets/images/nonioday/btn_light.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  right: 5px;
}

article .banner .getStart a.botton p::after {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url(/assets/images/nonioday/btn_light.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5px;
  left: 5px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media only screen and (min-width: 768px) {
  article .banner .getStart a.botton:hover p {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@media only screen and (max-width: 767px) {
  article .banner .getStart {
    padding: 10% 0 20%;
  }

  article .banner .getStart a.botton p {
    font-size: 30px;
    line-height: 68px;
    border-radius: 36px;
    letter-spacing: 5px;
  }

  article .banner .getStart a.botton p::before {
    width: 30px;
    height: 30px;
  }

  article .banner .getStart a.botton p::after {
    width: 30px;
    height: 30px;
  }
}

article .contect {
  position: relative;
  background-color: #d4f2fa;
  padding: 100px 0;
  overflow: hidden;
}

article .contect:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 55px 60px 0 60px;
  border-color: #28BFE5 transparent transparent transparent;
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

article .contect .wrapper {
  width: 90%;
  max-width: 850px;
  margin: auto;
}

article .contect .wrapper .nowTask {
  padding: 10% 0;
}

article .contect .wrapper .nowTask .people_img {
  position: relative;
}

article .contect .wrapper .nowTask .people_img .big {
  background-color: #82bef4;
  width: 105px;
  height: 10px;
  opacity: .3;
  position: absolute;
}

article .contect .wrapper .nowTask .people_img .small {
  background-color: #82bef4;
  width: 50px;
  height: 3px;
  position: absolute;
}

article .contect .wrapper .nowTask .people_img .line_01 {
  left: 0;
  bottom: 35%;
  -webkit-animation: line_move 4s infinite linear;
  animation: line_move 4s infinite linear;
}

article .contect .wrapper .nowTask .people_img .line_02 {
  right: 100%;
  bottom: -30%;
  -webkit-animation: line_move 3s 1s infinite linear;
  animation: line_move 3s 1s infinite linear;
}

article .contect .wrapper .nowTask .people_img .line_03 {
  right: -20%;
  bottom: 30%;
  -webkit-animation: line_move 3s infinite linear;
  animation: line_move 3s infinite linear;
}

article .contect .wrapper .nowTask .people_img .line_04 {
  right: -20%;
  bottom: -35%;
  -webkit-animation: line_move 4s 1s infinite linear;
  animation: line_move 4s 1s infinite linear;
}

article .contect .wrapper .nowTask .people_img .line_05 {
  left: 8%;
  bottom: 18%;
  -webkit-animation: line_move 4s 1s infinite linear;
  animation: line_move 4s 1s infinite linear;
}

article .contect .wrapper .nowTask .people_img .line_06 {
  left: -15%;
  bottom: -10%;
  -webkit-animation: line_move 3s 0.5s infinite linear;
  animation: line_move 3s 0.5s infinite linear;
}

article .contect .wrapper .nowTask .people_img .line_07 {
  right: -23%;
  bottom: 20%;
  -webkit-animation: line_move 3s 1s infinite linear;
  animation: line_move 3s 1s infinite linear;
}

article .contect .wrapper .nowTask .people_img .line_08 {
  right: -8%;
  bottom: -20%;
  -webkit-animation: line_move 4s infinite linear;
  animation: line_move 4s infinite linear;
}

article .contect .wrapper .nowTask .people_img .box {
  position: relative;
}

article .contect .wrapper .nowTask .people_img .box div {
  width: 20%;
}

article .contect .wrapper .nowTask .people_img .box .man {
  float: left;
  padding-left: 10%;
}

article .contect .wrapper .nowTask .people_img .box .woman {
  float: right;
  padding-right: 10%;
}

article .contect .wrapper .nowTask .people_img .box:after {
  content: '';
  display: block;
  clear: both;
}

article .contect .wrapper .nowTask .top_img {
  background-color: #fff;
  border: 7px solid #225FC3;
  border-radius: 28px;
  font-size: 46px;
  color: #225FC3;
  font-weight: 500;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

article .contect .wrapper .nowTask .top_img:before {
  content: '';
  display: block;
  width: 15%;
  padding-bottom: 27%;
  background: url(/assets/images/nonioday/fork.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 35%;
  left: -7%;
  -webkit-animation: fly 3s infinite linear;
  animation: fly 3s infinite linear;
}

article .contect .wrapper .nowTask .top_img:after {
  content: '';
  display: block;
  width: 15%;
  padding-bottom: 27%;
  background: url(/assets/images/nonioday/spoon.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 35%;
  right: -7%;
  -webkit-animation: fly 3.5s 1s infinite linear;
  animation: fly 3.5s 1s infinite linear;
}

article .contect .wrapper .nowTask .top_img .title {
  width: 45%;
  max-width: 300px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

article .contect .wrapper .nowTask .top_img .title .box {
  padding-bottom: 100%;
  position: relative;
}

article .contect .wrapper .nowTask .top_img .title .box:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-top: 7px solid #225FC3;
  border-left: 7px solid #225FC3;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

article .contect .wrapper .nowTask .top_img .title .box .item {
  width: 100%;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}

article .contect .wrapper .nowTask .top_img .title .box .item .month {
  margin-top: -20px;
}

article .contect .wrapper .nowTask .top_img .restaurant-img {
  width: 80%;
  border: 7px solid #225FC3;
  border-radius: 7px;
  margin: 5% auto;
  position: relative;
  z-index: 10;
}

article .contect .wrapper .nowTask .top_img .restaurant-img video {
  width: 100%;
  height: 100%;
  display: block;
}

article .contect .wrapper .nowTask .top_img .restaurant-name {
  margin-bottom: 9%;
  letter-spacing: 5px;
}

article .contect .wrapper .nowTask .bottom_mission {
  background-color: #fff;
  border: 7px solid #225FC3;
  border-radius: 28px;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

article .contect .wrapper .nowTask .bottom_mission:before {
  content: '';
  display: block;
  width: 34px;
  height: 124px;
  background: url(/assets/images/nonioday/buckle.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -80px;
  left: 10%;
}

article .contect .wrapper .nowTask .bottom_mission:after {
  content: '';
  display: block;
  width: 34px;
  height: 124px;
  background: url(/assets/images/nonioday/buckle.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -80px;
  right: 10%;
}

article .contect .wrapper .nowTask .bottom_mission .title {
  width: 45%;
  max-width: 330px;
  margin: auto;
  margin-top: -9%;
  position: relative;
}

article .contect .wrapper .nowTask .bottom_mission .title::before {
  content: '';
  display: block;
  width: 25%;
  padding-bottom: 15%;
  background: url(/assets/images/nonioday/arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: arrow 0.5s infinite alternate;
  animation: arrow 0.5s infinite alternate;
}

article .contect .wrapper .nowTask .bottom_mission .nowSteps {
  padding: 0 30px 50px 30px;
}

article .contect .wrapper .nowTask .challenge {
  margin: auto;
  width: 90%;
  max-width: 345px;
  padding: 5% 0;
}

article .contect .wrapper .nowTask .challenge a.botton {
  display: block;
  position: relative;
  text-decoration: none;
}

article .contect .wrapper .nowTask .challenge a.botton::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7f732f;
  border: 2.5px solid #212121;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 39px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article .contect .wrapper .nowTask .challenge a.botton p {
  background-color: #fde55d;
  border: 2.5px solid #212121;
  font-size: 35px;
  color: #212121;
  text-align: center;
  font-weight: bold;
  letter-spacing: 10px;
  line-height: 74px;
  border-radius: 39px;
  -webkit-transition: .2s;
  transition: .2s;
  position: relative;
}

article .contect .wrapper .nowTask .challenge a.botton p::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url(/assets/images/nonioday/btn_light.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  right: 5px;
}

article .contect .wrapper .nowTask .challenge a.botton p::after {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url(/assets/images/nonioday/btn_light.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5px;
  left: 5px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media only screen and (min-width: 768px) {
  article .contect .wrapper .nowTask .challenge a.botton:hover p {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

article .contect .wrapper .pastTasks {
  padding: 5% 0;
}

article .contect .wrapper .pastTasks .title {
  width: 45%;
  max-width: 330px;
  margin: auto;
}

article .contect .wrapper .pastTasks .pastItem {
  padding-top: 8%;
}

article .contect .wrapper .pastTasks .pastItem:nth-of-type(2) {
  padding-top: 3%;
}

article .contect .wrapper .pastTasks .pastItem .slideUp {
  background: #225FC3;
  border: 7px solid #fff;
  font-size: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  border-radius: 30px;
  -webkit-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 20;
  margin-bottom: -5%;
}

article .contect .wrapper .pastTasks .pastItem .slideUp div {
  display: inline-block;
  vertical-align: middle;
}

article .contect .wrapper .pastTasks .pastItem .slideUp .raiders {
  width: 102px;
}

article .contect .wrapper .pastTasks .pastItem .slideUp .pastMonth {
  width: calc( 100% - 202px);
  font-size: 60px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

article .contect .wrapper .pastTasks .pastItem .slideUp .arrow {
  width: 60px;
  height: 60px;
  margin-left: 40px;
  background: url(/assets/images/nonioday/arrow_white.png) no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article .contect .wrapper .pastTasks .pastItem .slideDown {
  background: #0747A3;
  border: 7px solid #fff;
  border-top: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px;
  border-radius: 0 0 30px 30px;
  position: relative;
  z-index: 10;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .pastRestaurantName {
  font-size: 46px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 5px;
  padding-top: 5%;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox {
  position: relative;
  padding: 5% 0;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .guestPhoto {
  width: 85%;
  border: 7px solid #4E7FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-next {
  width: 50px;
  height: 50px;
  right: -20px;
  background: url(/assets/images/nonioday/arrow_yellow.png) no-repeat;
  background-size: cover;
  background-position: 0 -50px;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-next::after {
  content: '';
}

article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-prev {
  width: 50px;
  height: 50px;
  left: -20px;
  background: url(/assets/images/nonioday/arrow_yellow.png) no-repeat;
  background-size: cover;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-prev::after {
  content: '';
}

article .contect .wrapper .pastTasks .pastItem .slideDown .experience {
  background-color: #ffffff;
  border-radius: 23px;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  padding: 30px 80px;
  position: relative;
  margin: 3% 0;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .experience::before {
  content: '';
  display: block;
  width: 44px;
  height: 68px;
  background: url(/assets/images/nonioday/buckle_dark.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -26px;
  left: 5%;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .experience::after {
  content: '';
  display: block;
  width: 44px;
  height: 68px;
  background: url(/assets/images/nonioday/buckle_dark.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -26px;
  right: 5%;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceName {
  font-size: 30px;
  font-weight: 500;
  color: #0747A3;
  letter-spacing: 5px;
  text-align: center;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt {
  height: 132px;
  font-size: 22px;
  line-height: 2;
  color: #333333;
  position: relative;
  background: url(/assets/images/nonioday/underLine.png) repeat;
  background-size: 44px;
  margin: 10px 0;
}

article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt:before {
  content: '';
  display: block;
  width: 98px;
  height: 163px;
  background: url(/assets/images/nonioday/fork.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-110%, -50%) rotate(5deg);
          transform: translate(-110%, -50%) rotate(5deg);
}

article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt:after {
  content: '';
  display: block;
  width: 98px;
  height: 163px;
  background: url(/assets/images/nonioday/spoon.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(110%, -50%) rotate(-5deg);
          transform: translate(110%, -50%) rotate(-5deg);
}

article .contect .wrapper .pastTasks .pastItem.active .slideUp {
  border-radius: 30px 30px 0 0;
}

article .contect .wrapper .pastTasks .pastItem.active .slideUp .arrow {
  background-position: 0 -60px;
}

@media only screen and (max-width: 1440px) {
  article .contect .wrapper {
    max-width: 700px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt {
    height: 176px;
  }
}

@media only screen and (max-width: 1024px) {
  article .contect .wrapper .nowTask .people_img .line_01 {
    left: 0;
    top: 35%;
  }

  article .contect .wrapper .nowTask .people_img .line_02 {
    right: 80%;
    top: -30%;
  }

  article .contect .wrapper .nowTask .people_img .line_03 {
    right: 0;
    top: 30%;
  }

  article .contect .wrapper .nowTask .people_img .line_04 {
    right: -5%;
    top: -35%;
  }

  article .contect .wrapper .nowTask .people_img .line_05 {
    left: 0;
    top: 18%;
  }

  article .contect .wrapper .nowTask .people_img .line_06 {
    left: 15%;
    top: -10%;
  }

  article .contect .wrapper .nowTask .people_img .line_07 {
    right: 10%;
    top: 20%;
  }

  article .contect .wrapper .nowTask .people_img .line_08 {
    right: -5%;
    top: -20%;
  }

  article .contect .wrapper .nowTask .top_img:before {
    top: 55%;
    left: -5%;
  }

  article .contect .wrapper .nowTask .top_img:after {
    top: 55%;
    right: -5%;
  }
}

@media only screen and (max-width: 768px) {
  article .contect:before {
    border-width: 40px 47.5px 0 47.5px;
  }

  article .contect .wrapper .nowTask .people_img .box div {
    width: 30%;
  }

  article .contect .wrapper .nowTask .people_img .box .man {
    padding-left: 5%;
  }

  article .contect .wrapper .nowTask .people_img .box .woman {
    padding-right: 5%;
  }
}

@media only screen and (max-width: 767px) {
  article .contect .wrapper .nowTask .challenge a.botton p {
    font-size: 30px;
    line-height: 68px;
    border-radius: 36px;
    letter-spacing: 5px;
  }

  article .contect .wrapper .nowTask .challenge a.botton p::before {
    width: 30px;
    height: 30px;
  }

  article .contect .wrapper .nowTask .challenge a.botton p::after {
    width: 30px;
    height: 30px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .raiders {
    width: 80px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .pastMonth {
    width: calc( 100% - 160px);
    font-size: 54px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .arrow {
    width: 50px;
    height: 50px;
    margin-left: 30px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt {
    height: auto;
  }

  article .contect .wrapper .pastTasks .pastItem.active .slideUp .arrow {
    background-position: 0 -50px;
  }
}

@media only screen and (max-width: 640px) {
  article .contect .wrapper .nowTask .people_img .big {
    width: 65px;
    height: 6px;
  }

  article .contect .wrapper .nowTask .people_img .small {
    width: 35px;
    height: 2px;
  }

  article .contect .wrapper .nowTask .top_img {
    border: 5px solid #225FC3;
    border-radius: 20px;
    font-size: 30px;
    -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  }

  article .contect .wrapper .nowTask .top_img .title .box:before {
    border-top: 5px solid #225FC3;
    border-left: 5px solid #225FC3;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: -5px;
    left: -5px;
  }

  article .contect .wrapper .nowTask .top_img .restaurant-img {
    border: 5px solid #225FC3;
    border-radius: 5px;
  }

  article .contect .wrapper .nowTask .top_img .restaurant-name {
    margin-bottom: 35px;
  }

  article .contect .wrapper .nowTask .bottom_mission {
    border: 5px solid #225FC3;
    border-radius: 20px;
    -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  }

  article .contect .wrapper .nowTask .bottom_mission:before,
  article .contect .wrapper .nowTask .bottom_mission:after {
    width: 25px;
    height: 90px;
    top: -62px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp {
    border: 5px solid #ffffff;
    border-radius: 20px;
    padding: 10px 15px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .raiders {
    width: 60px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .pastMonth {
    width: calc( 100% - 120px);
    font-size: 36px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .arrow {
    width: 40px;
    height: 40px;
    margin-left: 20px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown {
    border: 5px solid #ffffff;
    padding: 30px;
    border-radius: 0 0 20px 20px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .pastRestaurantName {
    font-size: 30px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .guestPhoto {
    border: 5px solid #4E7FFF;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-next {
    width: 40px;
    height: 40px;
    right: -20px;
    background-position: 0 -40px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-prev {
    width: 40px;
    height: 40px;
    left: -20px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience {
    padding: 30px 40px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceName {
    font-size: 24px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt {
    font-size: 16px;
    background-size: 32px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt:before {
    width: 75px;
    height: 137px;
    -webkit-transform: translate(-100%, -50%) rotate(7deg);
            transform: translate(-100%, -50%) rotate(7deg);
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt:after {
    width: 80px;
    height: 145px;
    -webkit-transform: translate(100%, -50%) rotate(-5deg);
            transform: translate(100%, -50%) rotate(-5deg);
  }

  article .contect .wrapper .pastTasks .pastItem.active .slideUp {
    border-radius: 20px 20px 0 0;
  }

  article .contect .wrapper .pastTasks .pastItem.active .slideUp .arrow {
    background-position: 0 -40px;
  }
}

@media only screen and (max-width: 420px) {
  article .contect {
    padding: 70px 0;
  }

  article .contect .wrapper .nowTask .top_img {
    font-size: 20px;
    margin-bottom: 12px;
  }

  article .contect .wrapper .nowTask .top_img .title .box .item {
    padding: 10px;
  }

  article .contect .wrapper .nowTask .top_img .title .box .item .month {
    margin-top: -10px;
  }

  article .contect .wrapper .nowTask .bottom_mission:before {
    width: 20px;
    height: 75px;
    top: -47px;
    left: 5%;
  }

  article .contect .wrapper .nowTask .bottom_mission:after {
    width: 20px;
    height: 75px;
    top: -47px;
    right: 5%;
  }

  article .contect .wrapper .nowTask .bottom_mission .title {
    margin-top: -12%;
    min-width: 180px;
  }

  article .contect .wrapper .nowTask .bottom_mission .nowSteps {
    padding: 0 15px 30px 15px;
  }

  article .contect .wrapper .nowTask .challenge {
    padding-top: 10%;
  }

  article .contect .wrapper .pastTasks .title {
    min-width: 180px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .raiders {
    width: 45px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .pastMonth {
    width: calc( 100% - 90px);
    font-size: 30px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideUp .arrow {
    width: 35px;
    height: 35px;
    margin-left: 5px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown {
    padding: 30px 20px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .pastRestaurantName {
    font-size: 20px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-next {
    width: 30px;
    height: 30px;
    right: -15px;
    background-position: 0 -30px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .sliderBox .swiper-button-prev {
    width: 30px;
    height: 30px;
    left: -15px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience {
    padding: 20px 35px;
    border-radius: 15px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience:before,
  article .contect .wrapper .pastTasks .pastItem .slideDown .experience:after {
    width: 35px;
    height: 55px;
    top: -21px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceName {
    font-size: 20px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt {
    font-size: 13px;
    background-size: 26px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt:before {
    width: 60px;
    height: 112px;
  }

  article .contect .wrapper .pastTasks .pastItem .slideDown .experience .experienceTxt:after {
    width: 65px;
    height: 118px;
  }

  article .contect .wrapper .pastTasks .pastItem.active .slideUp .arrow {
    background-position: 0 -35px;
  }
}

article .contect .step {
  font-size: 25px;
  line-height: 1.5;
  color: #666666;
  font-weight: 500;
  margin-top: 50px;
  background-color: #ffffff;
  border: 3px solid #225FC3;
  border-radius: 23px;
  -webkit-box-shadow: 5px 5px 0px #225FC3;
          box-shadow: 5px 5px 0px #225FC3;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article .contect .step .number {
  font-size: 23px;
  color: #fff;
  letter-spacing: 5px;
  background: #225FC3;
  padding: 5px 15px;
  border-radius: 8px;
  border: 3px solid #fff;
  position: absolute;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

article .contect .step .explain {
  padding: 35px 30px 30px 30px;
}

article .contect .step .product-img {
  width: 150px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(40%, -50%);
          transform: translate(40%, -50%);
}

article .contect .step_img .explain {
  padding-right: 100px;
}

@media only screen and (max-width: 640px) {
  article .contect .wrapper .step {
    font-size: 16px;
  }

  article .contect .wrapper .step .number {
    padding: 3px 10px;
    font-size: 18px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  article .contect .wrapper .step .explain {
    padding: 25px 20px 20px 20px;
  }

  article .contect .wrapper .step .product-img {
    width: 110px;
  }

  article .contect .wrapper .step_img .explain {
    padding-right: 75px;
  }
}

@media only screen and (max-width: 420px) {
  article .contect .wrapper .step {
    margin-top: 40px;
    font-size: 13px;
    border-radius: 15px;
  }

  article .contect .wrapper .step .number {
    font-size: 16px;
  }

  article .contect .wrapper .step .explain {
    padding: 20px 15px 15px 15px;
  }

  article .contect .wrapper .step .product-img {
    width: 90px;
  }

  article .contect .wrapper .step_img .explain {
    padding-right: 70px;
  }
}

.popup {
  background-color: rgba(27, 68, 104, 0.95);
}

.popup .wrapper {
  background-color: #99e0fa;
  border: 5px solid #262262;
}

.popup .wrapper::before {
  content: '';
  display: block;
  width: 82px;
  height: 129px;
  background: url(/assets/images/nonioday/buckle_big.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: 15%;
}

.popup .wrapper::after {
  content: '';
  display: block;
  width: 82px;
  height: 129px;
  background: url(/assets/images/nonioday/buckle_big.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  right: 15%;
}

.popup .wrapper .close {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 0;
}

.popup .wrapper .close::before,
.popup .wrapper .close::after {
  display: none;
}

.popup .wrapper .title {
  width: 45%;
  max-width: 327px;
  min-width: 155px;
  margin: auto;
  padding: 0 0 20px 0;
}

.popup .wrapper .content {
  height: calc(100% - 95px);
  background-color: #fff;
  border: 5px solid #262262;
  padding: 45px;
}

.popup .wrapper .content .scroll.scrollbar-inner .item {
  color: #000;
}

.popup .wrapper .content .scroll.scrollbar-inner .item:nth-of-type(1) {
  font-size: 25px;
  font-weight: 500;
}

.popup .wrapper .content .scroll-wrapper .scroll-element .scroll-element_outer .scroll-element_track {
  background-color: #e6e6e6;
}

.popup .wrapper .content .scroll-wrapper .scroll-element .scroll-element_outer .scroll-bar {
  background-color: #1b4468;
}

@media only screen and (max-width: 768px) {
  .popup .wrapper::before {
    width: 60px;
    height: 95px;
    top: -35px;
    left: 10%;
  }

  .popup .wrapper::after {
    width: 60px;
    height: 95px;
    top: -35px;
    right: 10%;
  }

  .popup .wrapper .close {
    right: 0;
  }
}

@media only screen and (max-width: 640px) {
  .popup .wrapper::before {
    width: 40px;
    height: 63px;
    top: -26px;
    left: 13%;
  }

  .popup .wrapper::after {
    width: 40px;
    height: 63px;
    top: -26px;
    right: 13%;
  }

  .popup .wrapper .close {
    right: -5px;
  }
}

@media only screen and (max-width: 640px) {
  .popup .wrapper::before {
    left: 8%;
  }

  .popup .wrapper::after {
    right: 8%;
  }

  .popup .wrapper .content {
    height: calc(100% - 80px);
    padding: 20px;
  }

  .popup .wrapper .content .scroll.scrollbar-inner .item:nth-of-type(1) {
    font-size: 18px;
  }
}

.popup#winnerPopup {
  display: none;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner {
  color: #000;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner .dear {
  margin-bottom: 20px;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner .list .list_title {
  color: #fff;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner .list .item {
  color: #fff;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner .note {
  text-align: center;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner .remark {
  margin: 30px 0;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner .remark .txtBlue {
  color: #225FC3;
}

.popup#winnerPopup .wrapper .content .scroll.scrollbar-inner .remark .txtRed {
  color: red;
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #28BFE5;
  background-image: url(/assets/images/nonioday/BG_shine.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 999;
}

.intro .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 486px;
}

.intro .wrapper .intro_logo {
  display: block;
  width: 276px;
  margin: auto;
}

.intro .wrapper .intro_slogan {
  display: block;
  margin: 40px 0 65px;
}

.intro .wrapper .sound {
  width: 255px;
  height: 107.5px;
  margin: auto;
  font-size: 0;
}

.intro .wrapper .sound_action_open,
.intro .wrapper .sound_action_close {
  display: inline-block;
  width: calc( 50% - 20px);
  height: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.intro .wrapper .sound_action_open:hover,
.intro .wrapper .sound_action_close:hover {
  background-position: bottom center;
}

.intro .wrapper .sound_action_open {
  background-image: url(/assets/images/nonioday/sound_open.svg);
}

.intro .wrapper .sound_action_close {
  margin-left: 40px;
  background-image: url(/assets/images/nonioday/sound_close.svg);
}

@media only screen and (max-width: 1440px) {
  .intro .wrapper {
    width: calc( 100% - 30px);
    max-width: 400px;
  }

  .intro .wrapper .intro_logo {
    width: 220px;
  }

  .intro .wrapper .intro_slogan {
    margin: 30px 0 45px;
  }

  .intro .wrapper .sound {
    width: 200px;
    height: 90px;
  }

  .intro .wrapper .sound_action_open,
  .intro .wrapper .sound_action_close {
    width: calc( 50% - 10px);
  }

  .intro .wrapper .sound_action_close {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 640px) {
  .intro .wrapper .intro_logo {
    width: 200px;
  }

  .intro .wrapper .intro_slogan {
    margin: 20px 0 40px;
  }

  .intro .wrapper .sound {
    width: 180px;
    height: 80px;
  }
}

@media only screen and (max-width: 320px) {
  .intro .wrapper .intro_logo {
    width: 160px;
  }

  .intro .wrapper .sound {
    width: 150px;
    height: 65px;
  }
}

.sound_toggle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 20px;
  top: 100vh;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding-bottom: 20px;
}

.sound_toggle .open,
.sound_toggle .close {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

.sound_toggle .open {
  display: none;
  background-image: url(/assets/images/nonioday/sound_toggle_open.svg);
}

.sound_toggle .close {
  display: block;
  background-image: url(/assets/images/nonioday/sound_toggle_close.svg);
}

.sound_toggle.off .open {
  display: block;
}

.sound_toggle.off .close {
  display: none;
}

@media only screen and (max-width: 640px) {
  .sound_toggle {
    right: 10px;
    top: 90vh;
  }

  .sound_toggle .open,
  .sound_toggle .close {
    width: 60px;
    height: 60px;
  }
}

