@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, ul, li {
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black";
  font-size: 16px;
  line-height: 25px;
  color: #333;
  letter-spacing: 1px;
  box-sizing: border-box;
}

body {
  position: relative;
}

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

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

button {
  display: none;
}

*:focus {
  outline: none;
} /*解決滾動到區塊時出現框線問題*/
h3 {
  font-size: 2.5vw;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h3 {
    font-size: 5vw;
    letter-spacing: 0;
  }
}

h4 {
  font-size: 2vw;
}
@media (max-width: 768px) {
  h4 {
    font-size: 5vw;
  }
}

p {
  font-size: 1.15vw;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  letter-spacing: 5px;
}
@media (max-width: 992px) {
  p {
    font-size: 1.75vw;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}

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

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

.pad-pc {
  display: block;
}
@media (min-width: 992px) {
  .pad-pc {
    display: none;
  }
}

.pad-h {
  display: none;
}
@media (max-width: 992px) {
  .pad-h {
    display: block;
  }
}

.btn_style {
  transform-origin: center;
  transform: scale(1);
  transition: all 0.15s ease-in-out;
}
.btn_style:hover {
  cursor: pointer;
  transform: scale(0.9);
}

.logo_box {
  width: 12.4%;
  position: absolute;
  left: 6%;
  top: 9.5%;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .logo_box {
    width: 38%;
    left: 10%;
    top: 8%;
  }
}
.logo_box .logo01 {
  width: 24.6%;
  margin: 0 5% 0 2%;
}
.logo_box .logo02 {
  width: 22.5%;
}
.logo_box .logo03 {
  width: 40.5%;
  margin-left: 5%;
}

header {
  width: 86%;
  position: absolute;
  right: 7%;
  top: 1.5%;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav {
  width: auto;
  position: relative;
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
}
nav ul {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
}
nav ul li {
  width: auto;
  line-height: 1;
  border-left: 2px solid #00abc8;
  padding: 0 1vw;
}
@media (max-width: 768px) {
  nav ul li {
    border: none;
  }
}
nav ul li:last-child {
  border-right: 2px solid #00abc8;
}
@media (max-width: 768px) {
  nav ul li:last-child {
    border: none;
  }
}
nav ul li a {
  font-size: 1.05vw;
  font-weight: 600;
  line-height: 1;
  color: #00abc8;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  nav ul li a {
    font-size: 1.5vw;
  }
}
nav ul li a:hover {
  color: #fbb03b;
}

/*---KV---*/
.kv_w {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #efeee9;
}

.kv_box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.kv_box h1 {
  width: 52%;
  position: absolute;
  left: 9.6%;
  top: 48.2%;
  z-index: 3;
  opacity: 0;
  animation: title 1s ease-in-out forwards;
}
@media (max-width: 768px) {
  .kv_box h1 {
    width: 24.1%;
    left: 64.8%;
    top: 39.9%;
  }
}
.kv_box .calendar_box {
  width: 23.5%;
  position: absolute;
  right: 9.8%;
  top: 21%;
  z-index: 5;
}
@media (max-width: 768px) {
  .kv_box .calendar_box {
    width: 46.6%;
    right: 38.5%;
    top: 53%;
  }
}
.kv_box .calendar_box .day {
  width: 90.7%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  transform-origin: left top;
  animation: day_ani 1.5s ease-in-out forwards;
}
.kv_box .calendar_box .day06 {
  position: relative;
}
.kv_box .calendar_box .day06 img.day06_prd {
  width: 90.7%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.kv_box img.kv_border {
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.kv_box .kv_photo {
  width: 91.4%;
  position: absolute;
  left: 4%;
  top: 7.7%;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .kv_box .kv_photo {
    top: 2.7%;
  }
}

.day01 {
  z-index: 7;
}

.day02 {
  z-index: 6;
}

.day03 {
  z-index: 5;
}

.day04 {
  z-index: 4;
}

.day05 {
  z-index: 3;
}

@keyframes day_ani {
  0% {
    transform: rotate(0) scale(1);
    left: 0;
    top: 0;
    opacity: 1;
  }
  25% {
    transform: rotate(15deg) scale(1);
    left: 0;
    top: 0;
    opacity: 1;
  }
  100% {
    transform: rotate(15deg) scale(1.2);
    left: -25%;
    top: 70%;
    opacity: 0;
  }
}
@keyframes day05_prd {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes title {
  0% {
    left: 18%;
    opacity: 0;
  }
  100% {
    left: 9.6%;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  @keyframes title {
    0% {
      left: 64.8%;
      top: 29.9%;
      opacity: 0;
    }
    100% {
      left: 64.8%;
      top: 39.9%;
      opacity: 1;
    }
  }
}
.swiper-slide-active > .kv_box > .airplane {
  animation: kv_airplane 1s ease-in-out 1s forwards;
}

.swiper-slide-active > .kv_box > .title_box {
  animation: title_box 0.75s ease-in-out 1.5s forwards;
}

.btn_buy_box {
  display: block;
  width: 7%;
  position: fixed;
  right: 0.5%;
  bottom: 15%;
  z-index: 8;
}
.btn_buy_box .btn_buy {
  position: relative;
}
.btn_buy_box .btn_buy img.btn_buy_bg {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transform-origin: center;
  animation: btn_buy_ani 2s ease-in-out infinite;
}
@media (max-width: 992px) {
  .btn_buy_box {
    width: 10%;
  }
}
@media (max-width: 768px) {
  .btn_buy_box {
    width: 10%;
    bottom: 10%;
  }
}

@keyframes btn_buy_ani {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(0deg);
  }
  75% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
main, section {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.box-w {
  display: block;
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  main {
    margin-top: -1%;
  }
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: -50px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: -50px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 5px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
  margin-top: 2%;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/*-----s01--------*/
#s01 {
  background: #2a7de1;
  position: relative;
}
#s01::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/s01/s01_bgp.png) no-repeat bottom center;
  background-size: 100%;
}
@media (max-width: 768px) {
  #s01::before {
    background-size: 150%;
  }
}

.wrapper {
  position: relative;
  padding: 5% 0;
  overflow: hidden;
  text-align: center;
}
.wrapper h2 {
  width: 39.5%;
  margin: 0% auto 0%;
}
@media (max-width: 992px) {
  .wrapper h2 {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .wrapper h2 {
    width: 75%;
  }
}
.wrapper .twd_box_w {
  display: inline-block;
  width: auto;
  position: relative;
  margin: 0 auto;
  font-family: "Noto Serif TC";
  font-size: 2.8vw;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 992px) {
  .wrapper .twd_box_w {
    font-size: 3.5vw;
  }
}
@media (max-width: 768px) {
  .wrapper .twd_box_w {
    font-size: 6vw;
    margin: 2.5% auto;
  }
}
.wrapper .twd_box_w::before {
  display: block;
  content: "《";
  width: 2.8vw;
  position: absolute;
  left: -3vw;
  top: 2vw;
  z-index: 2;
}
@media (max-width: 992px) {
  .wrapper .twd_box_w::before {
    font-size: 3.8vw;
    left: -4vw;
    top: 2.75vw;
  }
}
@media (max-width: 768px) {
  .wrapper .twd_box_w::before {
    display: none;
  }
}
.wrapper .twd_box_w::after {
  display: block;
  content: "》";
  width: 2.8vw;
  position: absolute;
  right: -3vw;
  top: 2vw;
  z-index: 2;
}
@media (max-width: 992px) {
  .wrapper .twd_box_w::after {
    font-size: 3.8vw;
    right: -4vw;
    top: 2.75vw;
  }
}
@media (max-width: 768px) {
  .wrapper .twd_box_w::after {
    display: none;
  }
}
.wrapper .twd_box_w .twd {
  display: inline;
  font-size: 4.5vw;
  font-weight: 600;
  color: #fcee21;
}
@media (max-width: 992px) {
  .wrapper .twd_box_w .twd {
    font-size: 6vw;
  }
}
@media (max-width: 768px) {
  .wrapper .twd_box_w .twd {
    font-size: 8vw;
    line-height: 1.2;
  }
}
.wrapper .twd_box_w .twd_ntd {
  display: inline;
  font-size: 1.15vw;
  font-weight: 600;
}
@media (max-width: 992px) {
  .wrapper .twd_box_w .twd_ntd {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  .wrapper .twd_box_w .twd_ntd {
    font-size: 4vw;
  }
}
.wrapper .view_list {
  display: block;
  width: 70.3%;
  font-size: 1.75vw;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  border-top: 2px solid #fcee21;
  border-bottom: 2px solid #fcee21;
  padding: 0.5% 0;
  margin: 1% auto 2%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .wrapper .view_list {
    width: 80%;
    font-size: 2.25vw;
  }
}
@media (max-width: 768px) {
  .wrapper .view_list {
    width: 80%;
    font-size: 4vw;
    margin: 2% auto 5%;
  }
}
.wrapper .highlights_box ul {
  list-style-type: none;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .wrapper .highlights_box ul {
    flex-flow: column wrap;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .wrapper .highlights_box ul {
    flex-flow: column wrap;
    align-items: flex-start;
  }
}
.wrapper .highlights_box ul li {
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.5;
  color: #fcee21;
  padding: 0.25vw 0.5vw 0.25vw 0;
  text-align: left;
}
@media (max-width: 992px) {
  .wrapper .highlights_box ul li {
    font-size: 1.75vw;
    padding: 0.25vw 0.5vw 0.25vw 0;
  }
}
@media (max-width: 768px) {
  .wrapper .highlights_box ul li {
    font-size: 3.5vw;
    padding: 0.25vw 0vw 0.25vw 0;
    letter-spacing: 0;
    text-align: left;
  }
}
.wrapper .highlights_box ul li img {
  display: inline;
  width: 1.85vw;
  vertical-align: middle;
  margin-right: 0.15vw;
}
@media (max-width: 992px) {
  .wrapper .highlights_box ul li img {
    width: 2.5vw;
  }
}
@media (max-width: 768px) {
  .wrapper .highlights_box ul li img {
    width: 5vw;
  }
}

.text_w {
  color: #fff;
}

.hb01 {
  width: 70.3%;
  margin: 2.5% auto;
}
@media (max-width: 992px) {
  .hb01 {
    width: 45vw;
  }
}
@media (max-width: 768px) {
  .hb01 {
    width: 80vw;
  }
}
.hb01 li img {
  margin-bottom: 2%;
}

.date_box {
  width: 54.8%;
  position: relative;
  text-align: center;
  margin: 0 auto;
  z-index: 4;
}
@media (max-width: 768px) {
  .date_box {
    width: 80%;
    margin: 5% auto;
  }
}
.date_box .date_title {
  position: relative;
}
.date_box .date_title::before {
  display: block;
  content: "";
  width: calc(50% - 6vw);
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0%;
  top: 50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .date_box .date_title::before {
    width: calc(50% - 11vw);
  }
}
.date_box .date_title::after {
  display: block;
  content: "";
  width: calc(50% - 6vw);
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0%;
  top: 50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .date_box .date_title::after {
    width: calc(50% - 11vw);
  }
}
.date_box .date_title h3 {
  display: block;
  width: 12vw;
  font-size: 2.5vw;
  font-weight: 500;
  color: #fff;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .date_box .date_title h3 {
    width: 20vw;
    font-size: 5vw;
  }
}
.date_box ul.date_list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
}
.date_box ul.date_list li {
  width: 16.1%;
  margin: 1.5% 1.5%;
}
@media (max-width: 768px) {
  .date_box ul.date_list li {
    width: 25%;
  }
}
.date_box ul.date_list02 {
  width: 80%;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
}
@media (max-width: 768px) {
  .date_box ul.date_list02 {
    width: 100%;
  }
}
.date_box ul.date_list02 li {
  width: 22%;
  margin: 1.5% 1.5%;
}
@media (max-width: 768px) {
  .date_box ul.date_list02 li {
    width: 25%;
  }
}

.tour_box {
  width: 54.8%;
  position: relative;
  text-align: center;
  margin: 10% auto 20%;
  z-index: 3;
}
@media (max-width: 768px) {
  .tour_box {
    width: 80%;
    margin: 5% auto;
  }
}
.tour_box .tour_title {
  position: relative;
}
.tour_box .tour_title::before {
  display: block;
  content: "";
  width: calc(50% - 6vw);
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0%;
  top: 50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .tour_box .tour_title::before {
    width: calc(50% - 11vw);
  }
}
.tour_box .tour_title::after {
  display: block;
  content: "";
  width: calc(50% - 6vw);
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0%;
  top: 50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .tour_box .tour_title::after {
    width: calc(50% - 11vw);
  }
}
.tour_box .tour_title h3 {
  display: block;
  width: 12vw;
  font-size: 2.5vw;
  font-weight: 500;
  color: #fff;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tour_box .tour_title h3 {
    width: 20vw;
    font-size: 5vw;
  }
}
.tour_box ul.tour_list {
  width: 77.9%;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
}
.tour_box ul.tour_list li {
  width: 18%;
  margin: 1%;
}
@media (max-width: 768px) {
  .tour_box ul.tour_list li {
    width: 40%;
    margin: 2%;
  }
}
.tour_box ul.tour_list li a {
  text-decoration: none;
}
.tour_box ul.tour_list li a span {
  display: inline-block;
  width: 90%;
  font-size: 1.5vw;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  background: #c69c6d;
  border-radius: 50px;
  margin: 0 auto;
  padding: 2% 5%;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .tour_box ul.tour_list li a span {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  .tour_box ul.tour_list li a span {
    font-size: 4vw;
  }
}
.tour_box ul.tour_list li a:hover span {
  color: #c69c6d;
  background: #fff;
}

.btn_download {
  width: 8.8%;
  margin: 5% auto;
}
@media (max-width: 992px) {
  .btn_download {
    width: 13%;
  }
}
@media (max-width: 768px) {
  .btn_download {
    width: 30%;
  }
}

.pic01_R {
  width: 40.1%;
  position: absolute;
  right: -40%;
  top: -51%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic01_R {
    top: -80%;
  }
}
@media (max-width: 768px) {
  .pic01_R {
    width: 38%;
    right: -16%;
    top: 200%;
    position: relative;
    display: flex;
    justify-self: flex-end;
    margin-bottom: -25%;
  }
}

.pic01_L {
  width: 53.9%;
  position: absolute;
  left: -42%;
  top: -20%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic01_L {
    top: -5%;
  }
}
@media (max-width: 768px) {
  .pic01_L {
    width: 48%;
    left: -20%;
    top: 90%;
  }
}

/*-----s02--------*/
#s02 {
  background: #0057ae;
  position: relative;
}
#s02::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/s02/s02_bgp.png) no-repeat bottom center;
  background-size: 100%;
}
@media (max-width: 768px) {
  #s02::before {
    background-size: 110%;
  }
}

.hb02 {
  width: 100%;
  margin: 2.5% auto;
}
@media (max-width: 992px) {
  .hb02 {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .hb02 {
    width: 90%;
    margin: 2.5% auto 2.5% 8%;
  }
}

.pic02_R {
  width: 41%;
  position: absolute;
  right: -35%;
  top: -2%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic02_R {
    top: -50%;
  }
}
@media (max-width: 768px) {
  .pic02_R {
    width: 38%;
    right: -20%;
    top: 200%;
  }
}

.pic02_L {
  width: 50.4%;
  position: absolute;
  left: -38%;
  top: 0%;
  z-index: 2;
}
@media (max-width: 768px) {
  .pic02_L {
    width: 55%;
    left: -28%;
    top: 100%;
  }
}

/*-----s03--------*/
#s03 {
  background: #00acd8;
  position: relative;
}
#s03::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/s03/s03_bgp.png) no-repeat bottom center;
  background-size: 100%;
}
@media (max-width: 768px) {
  #s03::before {
    background-size: 110%;
  }
}

.text_b {
  color: #333;
}

.hb03 {
  width: 90.3%;
  margin: 2.5% 0 2.5% 6%;
}
@media (max-width: 992px) {
  .hb03 {
    width: 45%;
    margin: 2.5% auto;
  }
}
@media (max-width: 768px) {
  .hb03 {
    width: 90%;
    margin: 2.5% 0 2.5% 9%;
  }
}
.hb03 li {
  width: calc(33% - 1vw);
}
@media (max-width: 992px) {
  .hb03 li {
    width: calc(100% - 1vw);
  }
}
@media (max-width: 768px) {
  .hb03 li {
    width: calc(100% - 1vw);
  }
}
.hb03 li img {
  margin-bottom: 2%;
}

.pic03_R {
  width: 50.4%;
  position: absolute;
  right: -38%;
  top: 0%;
  z-index: -1;
}
@media (max-width: 768px) {
  .pic03_R {
    right: -20%;
    top: 90%;
  }
}

.pic03_L {
  width: 33.7%;
  position: absolute;
  left: -28%;
  top: 10%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic03_L {
    width: 37%;
    left: -38%;
    top: -62%;
  }
}
@media (max-width: 768px) {
  .pic03_L {
    width: 40%;
    left: -15%;
    top: 210%;
  }
}

/*-----s04--------*/
#s04 {
  background: #6aaae4;
  position: relative;
}
#s04::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/s04/s04_bgp.png) no-repeat bottom center;
  background-size: 100%;
  padding-bottom: 10%;
}
@media (max-width: 768px) {
  #s04::before {
    background-size: 150%;
  }
}

.text_b {
  color: #333;
}

.hb04 {
  width: 95%;
  margin: 2.5% 0 2.5% 5%;
}
@media (max-width: 992px) {
  .hb04 {
    width: 44.75%;
    margin: 2.5% auto;
  }
}
@media (max-width: 768px) {
  .hb04 {
    width: 90%;
    margin: 2.5% 0 2.5% 9%;
  }
}
.hb04 li {
  width: calc(33% - 1vw);
}
@media (max-width: 992px) {
  .hb04 li {
    width: calc(100% - 4vw);
  }
}
@media (max-width: 768px) {
  .hb04 li {
    width: calc(100% - 4vw);
  }
}
.hb04 li img {
  width: 2vw !important;
  margin-bottom: 2%;
}
@media (max-width: 992px) {
  .hb04 li img {
    width: 3vw !important;
  }
}
@media (max-width: 768px) {
  .hb04 li img {
    width: 8vw !important;
  }
}

.pic04_R {
  width: 41.6%;
  position: absolute;
  right: -30%;
  top: -20%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic04_R {
    top: -40%;
  }
}
@media (max-width: 768px) {
  .pic04_R {
    width: 41.6%;
    right: -15%;
    top: 70%;
  }
}

.pic04_L {
  width: 48.7%;
  position: absolute;
  left: -45%;
  top: -50%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic04_L {
    top: -100%;
  }
}
@media (max-width: 768px) {
  .pic04_L {
    width: 55%;
    left: -28%;
    top: 80%;
  }
}

/*-----s05--------*/
#s05 {
  background: #009d4f;
  position: relative;
  padding-bottom: 12%;
}
#s05::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/s05/s05_bgp.png) no-repeat bottom center;
  background-size: 100%;
}

.text_b {
  color: #333;
}

.hb05 {
  width: 95%;
  margin: 2.5% 0 2.5% 2.5%;
}
@media (max-width: 992px) {
  .hb05 {
    width: 45.75%;
    margin: 2.5% auto;
  }
}
@media (max-width: 768px) {
  .hb05 {
    width: 90%;
    margin: 2.5% 0 2.5% 9%;
  }
}
.hb05 li {
  width: calc(33% - 1vw);
}
@media (max-width: 992px) {
  .hb05 li {
    width: calc(100% - 3vw);
  }
}
@media (max-width: 768px) {
  .hb05 li {
    width: calc(100% - 3vw);
  }
}
.hb05 li img {
  width: 2vw !important;
  margin-bottom: 2%;
}
@media (max-width: 992px) {
  .hb05 li img {
    width: 3vw !important;
    margin-bottom: 0%;
  }
}
@media (max-width: 768px) {
  .hb05 li img {
    width: 6vw !important;
  }
}

.pic05_R {
  width: 41%;
  position: absolute;
  right: -35%;
  top: -50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .pic05_R {
    width: 40%;
    right: -20%;
    top: 90%;
  }
}

.pic05_L {
  width: 50.5%;
  position: absolute;
  left: -45%;
  top: -15%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic05_L {
    top: -100%;
  }
}
@media (max-width: 768px) {
  .pic05_L {
    width: 55%;
    left: -28%;
    top: 85%;
  }
}

/*-----s06--------*/
#s06 {
  background: #003ca6;
  position: relative;
}
#s06::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/s06/s06_bgp.png) no-repeat bottom center;
  background-size: 100%;
}
@media (max-width: 768px) {
  #s06::before {
    background-size: 150%;
  }
}

.pic06_R {
  width: 41%;
  position: absolute;
  right: -35%;
  top: 0%;
  z-index: 2;
}
@media (max-width: 768px) {
  .pic06_R {
    width: 40%;
    right: -20%;
    top: 90%;
  }
}

.pic06_L {
  width: 57%;
  position: absolute;
  left: -47%;
  top: -50%;
  z-index: 2;
}
@media (max-width: 992px) {
  .pic06_L {
    top: -12%;
  }
}
@media (max-width: 768px) {
  .pic06_L {
    width: 55%;
    left: -28%;
    top: 110%;
  }
}

/*-------------------------------------------------------------*/
.overlay {
  width: 100%;
  background: rgba(239, 238, 233, 0.9);
}

.overlay nav {
  top: 0vh;
  height: 95vh;
}
.overlay nav ul {
  display: block;
  width: 80%;
  max-width: 700px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 5% 10%;
}
.overlay nav ul a li {
  width: 100%;
  display: flex;
}
.overlay nav ul a li span {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  color: #00abc8;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.overlay nav ul a li span::before, .overlay nav ul a li span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 6%;
  height: calc(100% - 4px);
  border: 2px solid #00abc8;
  background: none;
  border-right: 0;
  transition: all 0.25s ease-in-out;
}
.overlay nav ul a li span::before {
  left: 0;
}
.overlay nav ul a li span::after {
  right: 0;
  transform: rotateY(180deg);
}
.overlay nav ul a:hover li span {
  color: #fff;
}
.overlay nav ul a:hover li span::before, .overlay nav ul a:hover li span::after {
  width: 50%;
  background: #00abc8;
}

.overlay .overlay-close {
  top: 0;
}

.overlay .overlay-close {
  max-width: 58px;
  max-height: 58px;
}

button.menu_m {
  display: none;
  position: absolute;
  top: 8%;
  right: 10%;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 0;
  background-color: transparent;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 990;
  outline: 0;
  order: 3;
}
@media (max-width: 768px) {
  button.menu_m {
    display: block;
    width: 45px;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */