@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
html {
  font-size: 16px;
}

html * {
  font-size: 1rem;
  font-weight: 400;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: Arial, "Arial Black","Noto Sans TC", sans-serif,"微軟正黑體", "微軟正黑體", "新細明體", "細明體";
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  letter-spacing: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #e7ecf0;
}

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

div, span {
  display: block;
  width: 100%;
}

button {
  display: none;
}

*:focus {
  outline: none;
}

/*解決滾動到區塊時出現框線問題*/
p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 600;
}

.pc {
  display: block;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.mob {
  display: none;
}

@media (max-width: 767px) {
  .mob {
    display: block;
  }
}

/*---kv---*/
.kv_box {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #75c1e3;
}

.kv_box header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.kv_box header .logo {
  width: 7.6%;
  margin: 1% 2%;
}

@media (max-width: 767px) {
  .kv_box header .logo {
    width: 25%;
    margin: 2.5% 2%;
  }
}

.kv_box header nav {
  margin: 1% 2% 0;
}

@media (max-width: 767px) {
  .kv_box header nav {
    display: none;
  }
}

.kv_box header nav ul {
  list-style-type: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kv_box header nav ul a {
  text-decoration: none;
}

.kv_box header nav ul a:hover {
  text-decoration: none;
}

.kv_box header nav ul a li {
  font-size: 1rem;
  font-weight: bold;
  color: #008dbc;
  background: #fff;
  border: 2px solid #008dbc;
  border-radius: 200px;
  padding: 5px 10px;
  margin: 0 0.25rem;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media (min-width: 768px) and (max-width: 991px) {
  .kv_box header nav ul a li {
    padding: 0px 10px;
  }
}

.kv_box header nav ul a li:hover {
  background: #ffe100;
  padding: 5px 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .kv_box header nav ul a li:hover {
    padding: 0px 20px;
  }
}

.kv_box .snow_floor03 {
  width: 62.9%;
  position: absolute;
  left: 21.5%;
  bottom: 0;
  z-index: 6;
}

@media (max-width: 767px) {
  .kv_box .snow_floor03 {
    width: 100%;
    left: 0;
  }
}

.kv_box .snow_ski {
  width: 34.8%;
  position: absolute;
  left: 32.9%;
  bottom: 1%;
  z-index: 5;
}

@media (max-width: 767px) {
  .kv_box .snow_ski {
    width: 100%;
    left: 0;
    bottom: 0;
  }
}

.kv_box .kv_team {
  width: 99.5%;
  position: absolute;
  left: -100%;
  bottom: 15%;
  z-index: 3;
  pointer-events: none;
  -webkit-animation: kv_team 16s linear 0s infinite;
          animation: kv_team 16s linear 0s infinite;
}

@media (max-width: 767px) {
  .kv_box .kv_team {
    width: 200%;
  }
}

.kv_box .snow_floor02 {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 4;
}

.kv_box .snow_floor01 {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.kv_box .kv_stand {
  width: 10.7%;
  position: absolute;
  left: 2.2%;
  bottom: 27.4%;
}

@media (max-width: 767px) {
  .kv_box .kv_stand {
    width: 25%;
    bottom: 13%;
  }
}

@-webkit-keyframes kv_team {
  0% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}

@keyframes kv_team {
  0% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}

@media (max-width: 767px) {
  @-webkit-keyframes kv_team {
    0% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
  @keyframes kv_team {
    0% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
}

.view_box {
  width: 71.6%;
  position: relative;
  margin: 2% auto 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .view_box {
    margin: 5% auto 0;
  }
}

@media (max-width: 767px) {
  .view_box {
    width: 100%;
    margin: 0% auto 0;
  }
}

.view_box h1 {
  width: 64.5%;
  position: absolute;
  right: 8.6%;
  top: 6.5%;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 767px) {
  .view_box h1 {
    width: 90%;
    right: 5%;
    top: 10%;
  }
}

.view_box h1 span {
  width: 100%;
  position: relative;
}

img.h1_title01 {
  width: 100%;
  z-index: 2;
  opacity: 0;
}

@media (max-width: 767px) {
  img.h1_title01 {
    width: 110%;
  }
}

img.h1_title02 {
  width: 42.3%;
  position: absolute;
  left: 20.8%;
  top: 34.4%;
  z-index: 3;
  opacity: 0;
}

@media (max-width: 767px) {
  img.h1_title02 {
    width: 50%;
    left: 10.8%;
  }
}

img.h1_title03 {
  width: 43.1%;
  position: absolute;
  left: 56.8%;
  top: 54.4%;
  z-index: 4;
  opacity: 0;
}

@media (max-width: 767px) {
  img.h1_title03 {
    width: 50%;
    left: 53%;
  }
}

.zoom_ani {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: zoom_ani 0.5s ease-in-out forwards;
          animation: zoom_ani 0.5s ease-in-out forwards;
}

@-webkit-keyframes zoom_ani {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom_ani {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.swiper-container {
  overflow: hidden;
}

/*下雪*/
#snow {
  z-index: 50;
  pointer-events: none;
  position: fixed;
}

.airplane {
  width: 10.9%;
  position: absolute;
  left: -20%;
  top: 15%;
  z-index: -1;
  -webkit-animation: airplane 5s linear 0.5s infinite;
          animation: airplane 5s linear 0.5s infinite;
}

@-webkit-keyframes airplane {
  0% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  95% {
    -webkit-transform: translateX(1100%);
            transform: translateX(1100%);
  }
  100% {
    -webkit-transform: translateX(1100%);
            transform: translateX(1100%);
  }
}

@keyframes airplane {
  0% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  95% {
    -webkit-transform: translateX(1100%);
            transform: translateX(1100%);
  }
  100% {
    -webkit-transform: translateX(1100%);
            transform: translateX(1100%);
  }
}

section {
  width: 100%;
  position: relative;
  margin-bottom: 5%;
}

@media (max-width: 767px) {
  section {
    margin-bottom: 15%;
  }
}

.box-w {
  width: 71.6%;
  max-width: 1375px;
  margin: 5% auto;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .box-w {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .box-w {
    width: 85%;
  }
}

.btn-box {
  text-align: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.btn_style {
  display: inline-block;
  width: auto;
  font-size: 1.5rem;
  font-weight: bold;
  color: #727171;
  line-height: 2;
  text-align: center;
  padding: 0 20px;
  margin: 0 1%;
  border-radius: 100px;
  border: 2px solid #333;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn_style:hover {
  padding: 0 35px;
}

@media (max-width: 767px) {
  .btn_style {
    font-size: 1.15rem;
    margin: 1.5% 1%;
  }
}

.btn_w {
  background: #fff;
  border-color: #f29200;
}

.btn_o {
  background: #f29200;
  border-color: #008dbc;
  color: #fff;
}

/*---01.航班資訊---*/
.flight-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flight-box h2 {
  width: 73.5%;
  margin: 0% auto 5%;
}

@media (max-width: 767px) {
  .flight-box h2 {
    width: 100%;
  }
}

.flight-box .time_table {
  width: 73.4%;
  max-width: 1010px;
  margin: 0 auto 2%;
}

@media (max-width: 767px) {
  .flight-box .time_table {
    width: 100%;
  }
}

.flight-box .time_table .time_table_tips {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #333;
}

.flight-box .time_table .time_table_tips span {
  display: inline;
  text-decoration: none;
}

.flight-box .time_table .time_table_tips span a {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.5;
  color: #008dbc;
}

.flight-box .tips {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  text-align: center;
  margin: 2% auto 5%;
}

@media (max-width: 767px) {
  .flight-box .tips {
    font-size: 1rem;
  }
}

.food-doll {
  position: absolute;
  z-index: 2;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: food-doll 2s ease-in-out infinite;
          animation: food-doll 2s ease-in-out infinite;
}

@-webkit-keyframes food-doll {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes food-doll {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.food-doll01 {
  width: 6.3%;
  max-width: 121px;
  left: 10.8%;
  top: 60%;
}

@media (max-width: 767px) {
  .food-doll01 {
    width: 12%;
    left: 2%;
    top: 90%;
  }
}

.food-doll02 {
  width: 4.6%;
  max-width: 90px;
  left: 19.3%;
  top: 83%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@media (max-width: 767px) {
  .food-doll02 {
    width: 10%;
    left: 85%;
    top: 90%;
  }
  .food-doll02 img {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}

/*---02.虎迷卡優惠---*/
.card-banner {
  width: 100%;
  margin: 12% auto 2%;
}

.card-15kg {
  width: 100%;
  margin: 0 auto 5%;
}

.card-15kg h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #008dbc;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .card-15kg h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card-15kg h3 {
    font-size: 1.5rem;
  }
}

.card-15kg p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .card-15kg p {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .card-15kg p {
    font-size: 1.15rem;
  }
}

.card-15kg p span {
  display: inline;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #f29200;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .card-15kg p span {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .card-15kg p span {
    font-size: 1.15rem;
  }
}

.hokkaido_offers {
  width: 75.4%;
  margin: 0 auto 2%;
}

@media (max-width: 767px) {
  .hokkaido_offers {
    width: 100%;
    margin: 10% auto 5%;
  }
}

.food-doll03 {
  width: 3.8%;
  max-width: 73px;
  left: 10.3%;
  top: 80%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@media (max-width: 767px) {
  .food-doll03 {
    width: 9.8%;
    top: 81%;
    left: 2%;
  }
}

.food-doll04 {
  width: 5%;
  max-width: 97px;
  left: 16.2%;
  top: 91.6%;
}

@media (max-width: 767px) {
  .food-doll04 {
    width: 11%;
    top: 80%;
    left: 80%;
  }
}

@media (max-width: 767px) {
  .food-doll04 img {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}

/*---03.玩翻北海道 當然選台灣虎航---*/
.airport-box h2 {
  width: 100%;
  margin: 2% auto 5%;
}

.airport-box .airport-info-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.airport-box .airport-info-box .airplane-q {
  width: 18%;
  max-width: 248px;
  margin-right: -5%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .airport-box .airport-info-box .airplane-q {
    width: 35%;
  }
}

@media (max-width: 767px) {
  .airport-box .airport-info-box .airplane-q {
    width: 35%;
    margin-right: -10%;
  }
}

.airport-box .airport-info-box .map-box {
  width: 36.2%;
  max-width: 498px;
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  .airport-box .airport-info-box .map-box {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .airport-box .airport-info-box .map-box {
    width: 75%;
  }
}

.airport-box .airport-info-box .map-box img.new {
  width: 9.2%;
  position: absolute;
  right: 31.5%;
  top: 53.9%;
  z-index: 2;
}

.airport-box .airport-info-box .airport-info-g {
  width: 29.8%;
  position: relative;
  margin: 2%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .airport-box .airport-info-box .airport-info-g {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .airport-box .airport-info-box .airport-info-g {
    width: 100%;
  }
}

.airport-box .airport-info-box .airport-info-g h3 {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  .airport-box .airport-info-box .airport-info-g h3 {
    width: 35%;
    margin: 5% auto 0;
  }
}

@media (max-width: 767px) {
  .airport-box .airport-info-box .airport-info-g h3 {
    width: 62%;
    margin: 5% auto 2%;
  }
}

.airport-box .airport-info-box .airport-info-g h3 .new {
  width: 20.2%;
  position: absolute;
  right: -5%;
  top: -38%;
  z-index: 2;
}

.airport-box .airport-info-box .airport-info-g p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: justify;
  margin: 2% auto;
}

@media (max-width: 767px) {
  .airport-box .airport-info-box .airport-info-g p {
    font-size: 1.05rem;
    line-height: 1.8rem;
  }
}

.new-jump {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-animation: new_jump 1s ease-in-out infinite;
          animation: new_jump 1s ease-in-out infinite;
}

@-webkit-keyframes new_jump {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes new_jump {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.food-doll05 {
  width: 10.1%;
  max-width: 195px;
  right: 11.9%;
  bottom: 0%;
}

@media (max-width: 767px) {
  .food-doll05 {
    width: 24%;
    bottom: -8%;
  }
}

/*---04.虎迷獨家---*/
.fans-box h2 {
  width: 73.4%;
  max-width: 1010px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .fans-box h2 {
    width: 100%;
  }
}

.fans-box .fans-offers {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 5%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .fans-box .fans-offers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}

@media (max-width: 767px) {
  .fans-box .fans-offers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}

.fans-box .fans-offers .code-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 31.4%;
  background: #fff;
  border: 2px solid #008dbc;
  border-radius: 50px;
  margin: 5% 2%;
  padding: 2% 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 991px) {
  .fans-box .fans-offers .code-box {
    width: 60%;
    margin: 5% auto;
  }
}

@media (max-width: 767px) {
  .fans-box .fans-offers .code-box {
    width: 100%;
  }
}

.fans-box .fans-offers .code-box .code-logo {
  width: 53.2%;
  margin: 2% auto;
}

.fans-box .fans-offers .code-box p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #008dbc;
  text-align: center;
}

@media (max-width: 767px) {
  .fans-box .fans-offers .code-box p {
    font-size: 1.25rem;
  }
}

.fans-box .fans-offers .code-box p span {
  display: inline;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #f29200;
}

@media (max-width: 767px) {
  .fans-box .fans-offers .code-box p span {
    font-size: 1.25rem;
  }
}

.fans-box .fans-offers .code-box p .tips {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  color: #008dbc;
}

.fans-box .fans-offers .code-box .code-g {
  margin-top: 5%;
}

.fans-box .fans-offers .code-box .code-g .code {
  display: block;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #727171;
  background: #fff;
  border: 2px solid #008dbc;
  border-radius: 50px;
  margin: 5% auto;
}

.fans-box .fans-offers .code-box .code-g a {
  text-decoration: none;
}

.fans-box .fans-offers .code-box .code-g .btn_rules {
  display: block;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #fff;
  background: #f29200;
  border: 2px solid #008dbc;
  border-radius: 50px;
  margin: 2% auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.fans-box .fans-offers .code-box .code-g .btn_rules:hover {
  background: #008dbc;
}

.food-doll06 {
  width: 14.5%;
  max-width: 280px;
  right: 10%;
  bottom: 0%;
}

@media (max-width: 767px) {
  .food-doll06 {
    width: 24.5%;
    right: 20%;
    bottom: -5%;
  }
}

footer {
  width: 100%;
  position: relative;
}

footer img {
  width: 13%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  footer img {
    width: 30%;
  }
}

footer::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../images/footer/footer-snow01.png");
  position: absolute;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

footer::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../images/footer/footer-snow02.png");
  position: absolute;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  z-index: -1;
}

.btn_buy {
  width: 6%;
  position: fixed;
  right: 2%;
  bottom: 2.5%;
  z-index: 6;
}

@media (min-width: 768px) and (max-width: 991px) {
  .btn_buy {
    width: 10%;
  }
}

@media (max-width: 767px) {
  .btn_buy {
    width: 16%;
  }
}

.btn_buy02 {
  width: 6%;
  position: fixed;
  right: 2%;
  top: 45%;
  z-index: 6;
}

@media (min-width: 768px) and (max-width: 991px) {
  .btn_buy02 {
    width: 8%;
  }
}

@media (max-width: 767px) {
  .btn_buy02 {
    width: 15%;
    top: 85%;
  }
}

/* ---優惠相關規範--- */
header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

header .logo {
  width: 7.6%;
  margin: 1% 2%;
}

@media (min-width: 768px) and (max-width: 991px) {
  header .logo {
    width: 15%;
  }
}

@media (max-width: 767px) {
  header .logo {
    width: 25%;
    margin: 2.5% 2%;
  }
}

header .btn_home {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 2;
  font-weight: bold;
  color: #008dbc;
  border: 2px solid #008dbc;
  border-radius: 50px;
  background: #fff;
  margin: 1.5%;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  padding: 0 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 767px) {
  header .btn_home {
    width: 16%;
  }
}

header .btn_home:hover {
  padding: 0 20px;
  background: #ffe100;
}

.rules_box {
  width: 80%;
  margin: 5% auto;
  position: relative;
  text-align: center;
}

.rules_box h2 {
  display: inline-block;
  margin: 5% auto;
  width: 34.8%;
  max-width: 535px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .rules_box h2 {
    width: 58%;
  }
}

@media (max-width: 767px) {
  .rules_box h2 {
    width: 90%;
    margin-top: 15%;
  }
}

.rules_box h3 {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: #008dbc;
  margin: 2% auto 2%;
  background: #fff;
  border-bottom: 5px solid #008dbc;
  border-radius: 50px;
  padding: 10px;
}

@media (max-width: 767px) {
  .rules_box h3 {
    font-size: 1.25rem;
  }
}

.rules_box h3 span {
  display: inline;
  font-size: 1.75rem;
  font-weight: bold;
  color: #f29200;
}

.rules_box ul {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #333;
}

@media (max-width: 767px) {
  .rules_box ul {
    font-size: 1.25rem;
  }
}

.rules_box ul li {
  list-style-type: disc;
  font-size: 1.15rem;
  line-height: 2;
  font-weight: bold;
  color: #333;
  text-align: justify;
}

@media (max-width: 767px) {
  .rules_box ul li {
    font-size: 1rem;
  }
}

.rules_box ul li a {
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 767px) {
  .rules_box ul li a {
    font-size: 1rem;
  }
}

.rules_box ul .tips {
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.5;
}

/* ---------------------------------------------手機版---------------------------------------- */
@media (max-width: 767px) {
  button.menu_m {
    position: fixed;
    top: 0.5%;
    right: 0.5%;
    width: 50px;
    height: 50px;
    border: none;
    background-image: url(../images/menu_mobile22.png);
    background-size: cover;
    background-color: transparent;
    text-indent: -9999px;
    cursor: pointer;
    z-index: 990;
    outline: 0;
  }
  button {
    font-size: 1.5rem;
  }
  .overlay ul a li {
    font-size: 1.5rem;
    border: 0;
  }
  .overlay ul a li:last-child {
    border: 0;
  }
  ul.menu_box_m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60vh;
  }
  ul.menu_box_m .nav_pic {
    width: 10vw;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  ul.menu_box_m .nav_pic:last-child {
    display: none;
  }
  ul.menu_box_m li {
    width: 55vw;
  }
  .overlay nav img.logo {
    width: 28%;
  }
}
/*# sourceMappingURL=style.css.map */