<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Londrina+Solid&amp;family=Noto+Sans+TC:wght@100&amp;family=Raleway:wght@100&amp;display=swap");
.font-noto {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 100;
}

.font-raleway {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
}

.font-londrina {
  font-family: 'Londrina Solid', cursive;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

body {
  font-family: roboto,"Helvetica Neue",Helvetica,Arial,"微軟正黑體",Microsoft JhengHei,sans-serif;
}

a {
  text-decoration: none;
}

img {
  width: auto;
  height: auto;
  vertical-align: top;
}

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-size: 16px;
}

*, *::before, *::after {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/* default */
/* navbar */
.menu {
  font-size: 21px;
  z-index: 20;
}

.menu .nav {
  position: fixed;
  top: -100px;
  display: block;
  background-color: #ffffffdd;
  width: 100%;
  text-align: center;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.menu .nav.active {
  top: 53px;
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
}

.menu .nav .nav-li {
  display: inline-block;
}

.menu .nav .nav-li:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: '';
  display: block;
  height: 1em;
  border-right: 1px solid #b3b3b3;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.menu .nav .nav-li:last-child:after {
  content: unset;
}

.menu .nav .nav-li a {
  display: inline-block;
  min-width: 5.4em;
  padding: 12px 1em;
  color: #1a1a1a;
  font-weight: bold;
  font-size: 1em;
  text-align-last: justify;
}

.menu .float-link {
  position: fixed;
  right: 8px;
  bottom: -40vh;
  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-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  z-index: 50;
}

.menu .float-link.active {
  bottom: 40px;
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
}

.menu .float-link li {
  margin: 8px 4px;
  list-style: none;
}

.menu .float-link li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffffdd;
  width: 4em;
  height: 4em;
  padding: 1em;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: bold;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 8px #00000033;
          box-shadow: 0 4px 8px #00000033;
}

.menu .float-link li a:hover {
  color: #ffffff;
  background-color: #35a6a2;
}

/* navbar burger */
#m_nav {
  position: absolute;
  visibility: hidden;
  z-index: -1000;
}

#m_nav:checked ~ .menu-burger span {
  opacity: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  box-shadow: unset;
  -webkit-transition: 0.2s linear 0.2s;
  transition: 0.2s linear 0.2s;
}

#m_nav:checked ~ .menu-burger:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#m_nav:checked ~ .menu-burger:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#m_nav:checked ~ .menu-burger:before, #m_nav:checked ~ .menu-burger:after {
  top: 50%;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s linear 0.2s;
  transition: top 0.2s linear, transform 0.2s linear 0.2s;
  transition: top 0.2s linear, transform 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
}

.menu-burger {
  position: fixed;
  top: 72px;
  right: 16px;
  display: none;
  width: 36px;
  height: 24px;
  z-index: 150;
}

.menu-burger span, .menu-burger:before, .menu-burger:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  -webkit-box-shadow: 0 2px 0 #ffffff99;
          box-shadow: 0 2px 0 #ffffff99;
  -webkit-transition: 0.4s linear, opacity 0.2s linear, top 0.2s linear 0.2s, -webkit-transform 0.2s linear;
  transition: 0.4s linear, opacity 0.2s linear, top 0.2s linear 0.2s, -webkit-transform 0.2s linear;
  transition: 0.4s linear, opacity 0.2s linear, top 0.2s linear 0.2s, transform 0.2s linear;
  transition: 0.4s linear, opacity 0.2s linear, top 0.2s linear 0.2s, transform 0.2s linear, -webkit-transform 0.2s linear;
}

.menu-burger span {
  top: 50%;
  -webkit-transition: 0.2s linear 0.1s;
  transition: 0.2s linear 0.1s;
}

.menu-burger:before {
  top: 0;
}

.menu-burger:after {
  top: 100%;
}

/* header */
.header {
  width: 100%;
  margin: 53px 0 0;
  overflow: hidden;
}

.header:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: url(../images/white_block.svg);
  display: block;
  width: 1920px;
  height: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header .header-bg {
  width: 100vw;
  height: calc(100vh - 60px);
  max-height: 50vw;
}

.header .header-bg .img-bg {
  position: absolute;
  /* top: 50%; */
  left: 50%;
  bottom: 10px;
  display: block;
  width: 100vw;
  opacity: 0;
  -webkit-animation: slide 56s linear infinite;
          animation: slide 56s linear infinite;
  -webkit-transform: translateX(-50%) scale(1.08);
          transform: translateX(-50%) scale(1.08);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.header .header-bg .img-bg:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.header .header-bg .img-bg:nth-of-type(2) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.header .header-bg .img-bg:nth-of-type(3) {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}

.header .header-bg .img-bg:nth-of-type(4) {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}

.header .header-bg .img-bg:nth-of-type(5) {
  -webkit-animation-delay: 32s;
          animation-delay: 32s;
}

.header .header-bg .img-bg:nth-of-type(6) {
  -webkit-animation-delay: 40s;
          animation-delay: 40s;
}

.header .header-bg .img-bg:nth-of-type(7) {
  -webkit-animation-delay: 48s;
          animation-delay: 48s;
}

.header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  max-width: 600px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header .logo img {
  width: 100%;
}

.header .scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: blcok;
  width: 48px;
  height: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
  z-index: 10;
}

.header .scroll:before {
  position: absolute;
  top: -10px;
  left: -6px;
  content: '';
  display: block;
  width: 60px;
  height: 28px;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(1.08);
            transform: translateX(-50%) scale(1.08);
  }
  3.57143% {
    opacity: 1;
  }
  14.28571% {
    opacity: 1;
  }
  17.85714% {
    opacity: 0;
  }
  19.64286% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(1.08);
            transform: translateX(-50%) scale(1.08);
  }
  3.57143% {
    opacity: 1;
  }
  14.28571% {
    opacity: 1;
  }
  17.85714% {
    opacity: 0;
  }
  19.64286% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

.anchor {
  position: absolute;
  top: -107px;
}

#top, #ks-map {
  top: -53px;
}

.ks-map {
  width: 80%;
  max-width: 960px;
  height: calc(100vh - 53px);
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
}

.ks-map .main-map {
  position: absolute;
  top: 50%;
  right: 0;
  width: 72%;
  max-width: 640px;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.ks-map .main-map img {
  display: block;
}

.ks-map .main-map .map-back {
  width: 100%;
}

.ks-map .main-map .map-part {
  fill: #e0efee;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  stroke-width: 3px;
  cursor: pointer;
}

.ks-map .main-map .map-name {
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  color: #666666;
  pointer-events: none;
}

.ks-map .main-map .map-name.active {
  color: #ffffff;
}

.ks-map .main-map .map-name.name01 {
  top: 27%;
  left: 16%;
}

.ks-map .main-map .map-name.name02 {
  top: 21%;
  left: 28%;
}

.ks-map .main-map .map-name.name03 {
  top: 28%;
  right: 22%;
}

.ks-map .main-map .map-name.name04 {
  top: 14%;
  left: 49%;
}

.ks-map .main-map .map-name.name05 {
  top: 43%;
  left: 52%;
}

.ks-map .main-map .map-name.name06 {
  right: 24%;
  bottom: 40%;
}

.ks-map .main-map .map-name.name07 {
  left: 41%;
  bottom: 27%;
}

.ks-map .city-intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 60vw;
  height: 100%;
}

.ks-map .city-intro .city-name {
  position: absolute;
  top: calc(50% + 4vw);
  left: -100vw;
  font-size: 16px;
  opacity: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0s linear 0s, opacity 0.4s linear;
  transition: left 0s linear 0s, opacity 0.4s linear;
}

.ks-map .city-intro .city-name.active {
  opacity: 1;
  left: 0;
  -webkit-transition: left 0s linear, opacity 0.4s linear;
  transition: left 0s linear, opacity 0.4s linear;
}

.ks-map .city-intro .city-name .maintitle {
  margin: 12px 0;
  font-weight: bold;
  font-size: 3em;
}

.ks-map .city-intro .city-name .entitle {
  margin: 8px 0;
  font-size: 1.5em;
}

.ks-map .city-intro .city-name .summary {
  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;
}

.ks-map .city-intro .city-name .summary span {
  display: inline-block;
  padding: 4px;
}

.ks-map .city-intro .city-name .city-link {
  display: inline-block;
  margin: 20px 0;
  padding: 8px 40px;
  color: #ffffff;
  font-weight: bold;
}

@-webkit-keyframes scroll-down {
  0% {
    bottom: 20px;
  }
  40% {
    bottom: 12px;
  }
  100% {
    bottom: 20px;
  }
}

@keyframes scroll-down {
  0% {
    bottom: 20px;
  }
  40% {
    bottom: 12px;
  }
  100% {
    bottom: 20px;
  }
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

/* zone */
.content {
  width: 100%;
  overflow: hidden;
}

.content .zone {
  width: 100vw;
}

.content .zone .title {
  position: absolute;
  top: 80px;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: row;
      -ms-flex: row wrap;
          flex: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ef85ad;
  font-size: 1vw;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  z-index: 10;
}

.content .zone .title .maintitle {
  display: inline-block;
  margin: 40px 0 1em;
  font-weight: bold;
  font-size: 3em;
}

.content .zone .title .maintitle:after {
  position: absolute;
  left: 50%;
  bottom: -0.5em;
  content: '';
  background-color: #ef85ad;
  display: block;
  width: 1.25em;
  height: 1px;
  -webkit-transform: translateX(-50%) rotate(35deg);
          transform: translateX(-50%) rotate(35deg);
}

.content .zone .title .subtitle {
  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;
  font-size: 1.2em;
}

.content .zone .title .subtitle span:nth-child(2) {
  margin: 1.2em 0 0 0;
}

.content .zone .item-cont {
  margin: 1px 0;
}

.content .zone .item-cont .swiper-slide .text {
  opacity: 0;
}

.content .zone .item-cont .swiper-slide-active .text {
  opacity: 1;
}

.content .zone .item-cont .item {
  width: 100%;
  height: 56vw;
  max-height: calc(100vh - 110px);
  overflow: hidden;
}

.content .zone .item-cont .item .pic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.content .zone .item-cont .item .pic:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 8vw 0 24vw #000000 inset;
          box-shadow: 8vw 0 24vw #000000 inset;
}

.content .zone .item-cont .item .pic img {
  width: 100%;
}

.content .zone .item-cont .item .text {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  background-color: #00000099;
  width: 40%;
  max-width: 360px;
  padding: 40px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.75em;
  text-align: justify;
  text-shadow: 0 2px 4px #000000aa;
}

.content .zone .item-cont .item .text .subject {
  font-size: 1.6em;
  margin: 0 0 20px;
}

.content .zone .item-cont .item .text .explain {
  font-size: 1em;
}

.stroke-plan {
  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;
  width: 92%;
  max-width: 960px;
  margin: 120px auto;
  font-size: 16px;
}

.stroke-plan .plan-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
}

.stroke-plan .row {
  margin: 20px;
}

.stroke-plan .row .title {
  margin: 12px 0;
  font-size: 1.75em;
}

.stroke-plan .row .step .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin: 8px 0;
}

.stroke-plan .row .step .col .day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #35a6a2;
  width: 4em;
  margin: 8px 12px 8px 0;
  padding: 4px 8px;
  color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 0 1px #309793;
          box-shadow: 1px 1px 0 1px #309793;
}

.stroke-plan .row .step .col .process {
  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;
  width: calc(100% - 4em);
}

.stroke-plan .row .step .col .process span {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8px 1.5em 8px 0;
  padding: 4px 8px;
  color: #000000;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 0 1px #cccccc;
          box-shadow: 1px 1px 0 1px #cccccc;
  cursor: default;
}

.stroke-plan .row .step .col .process span:after {
  position: absolute;
  top: 50%;
  right: -2em;
  content: '➤';
  display: inline;
  margin: 0 4px;
  color: #999999;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.stroke-plan .row .step .col .process span:last-child {
  margin: 8px 1em 8px 0;
}

.stroke-plan .row .step .col .process span:last-child:after {
  content: unset;
}

.stroke-plan .row .step .col .process span i {
  display: block;
  font-size: 0.8em;
  color: #dd1d65;
}

.stroke-plan .row .step .col .process span b {
  position: absolute;
  top: -1.25em;
  right: -1.5em;
  display: block;
  background-color: #ff7c3e;
  padding: 2px 4px;
  color: #ffffff;
  font-size: 0.5em;
  border-radius: 50%;
}

.stroke-plan.blog .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.stroke-plan.blog .row .item {
  display: block;
  padding: 20px;
  color: #000000;
  text-align: center;
}

.stroke-plan.blog .row .item .blog-img {
  border-radius: 4px;
  overflow: hidden;
}

.stroke-plan.blog .row .item .blog-img img {
  width: 100%;
}

.stroke-plan.blog .row .item .blog-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 8px 0;
  text-align: left;
}

.stroke-plan.blog .row .item .blog-info .name {
  display: inline-block;
  background-color: #000000;
  min-width: 64px;
  padding: 2px 0;
  margin: 4px 8px 0 0;
  color: #ffffff;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
}

.stroke-plan.blog .row .item .blog-info .title {
  max-width: calc(100% - 64px);
  margin: 0;
  font-size: 1.4em;
}

.stroke-plan.blog .row .item:hover {
  color: #35a6a2;
}

.stroke-plan.blog .row .item:hover .blog-img {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.stroke-plan.blog .row .item:hover .name {
  background-color: #35a6a2;
}

.direct {
  display: block;
  width: 100%;
  background-color: #141414;
  padding: 20px;
  color: #ffffff;
  font-size: 15px;
}

.direct .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  max-width: 960px;
  margin: 16px auto;
}

.direct .info span {
  display: inline-block;
  margin: 2px 0;
  text-align: justify;
}

.direct .info .title {
  border: 1px solid #ffffff99;
  padding: 2px 8px;
  font-weight: bold;
  border-radius: 4px;
}

.direct .info .subject {
  color: #ebebeb;
}

.hide {
  display: none;
}

/* overwrite */
.zone .component {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 20px auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

.zone .component .swiper-pagination {
  position: relative;
}

.zone .component .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  width: 60px;
  height: 5px;
  margin: 8px;
  opacity: 0.4;
  border-radius: unset;
  -webkit-box-shadow: 0 4px 12px #00000099;
          box-shadow: 0 4px 12px #00000099;
}

.zone .component .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}

.zone .component .swiper-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: -28px;
  left: -8px;
  content: '';
  display: block;
  width: 72px;
  height: 40px;
}

.zone .component .swiper-pagination .swiper-pagination-bullet:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 0%;
  height: 100%;
}

.zone .component .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.zone .component .swiper-pagination .swiper-pagination-bullet-active:after {
  -webkit-animation: load-run 12s linear 1;
          animation: load-run 12s linear 1;
}

.zone .component .swiper-button-prev, .zone .component .swiper-button-next {
  display: none;
}

@-webkit-keyframes load-run {
  0% {
    width: 0;
  }
  83.34% {
    width: 100%;
    opacity: 1;
  }
  91.67% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

@keyframes load-run {
  0% {
    width: 0;
  }
  83.34% {
    width: 100%;
    opacity: 1;
  }
  91.67% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

/* 主題配色 */
.nav .nav-li a[href*='zone01']:hover, .nav .nav-li a[href*='zone01'].active {
  color: #dd1d65;
}

.ks-map .main-map .map-part.map01:hover {
  fill: #ef85ad;
}

.ks-map .main-map .map-part.map01.active {
  fill: #dd1d65;
  stroke-width: 1px;
}

.ks-map .city-intro .city-name.city01 .maintitle {
  color: #cb1b5d;
}

.ks-map .city-intro .city-name.city01 .entitle {
  color: #ed73a1;
}

.ks-map .city-intro .city-name.city01 .city-link {
  background-color: #cb1b5d;
}

.ks-map .city-intro .city-name.city01 .city-link:hover {
  background-color: #e63d7c;
}

.content .zone01 .title {
  color: #ef85ad;
}

.content .zone01 .title .maintitle:after {
  background-color: #ef85ad;
}

.content .zone01 .component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef85ad;
}

.content .zone01 .component .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #dd1d65;
}

.content .zone01 .component .swiper-button-prev, .content .zone01 .component .swiper-button-next {
  color: #dd1d65;
}

.content .zone01 .component .swiper-button-prev:active, .content .zone01 .component .swiper-button-next:active {
  color: #ef85ad;
}

.nav .nav-li a[href*='zone02']:hover, .nav .nav-li a[href*='zone02'].active {
  color: #9456d4;
}

.ks-map .main-map .map-part.map02:hover {
  fill: #d2b8ed;
}

.ks-map .main-map .map-part.map02.active {
  fill: #9456d4;
  stroke-width: 1px;
}

.ks-map .city-intro .city-name.city02 .maintitle {
  color: #8a46d0;
}

.ks-map .city-intro .city-name.city02 .entitle {
  color: #c7a7e9;
}

.ks-map .city-intro .city-name.city02 .city-link {
  background-color: #8a46d0;
}

.ks-map .city-intro .city-name.city02 .city-link:hover {
  background-color: #a977dc;
}

.content .zone02 .title {
  color: #d2b8ed;
}

.content .zone02 .title .maintitle:after {
  background-color: #d2b8ed;
}

.content .zone02 .component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d2b8ed;
}

.content .zone02 .component .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #9456d4;
}

.content .zone02 .component .swiper-button-prev, .content .zone02 .component .swiper-button-next {
  color: #9456d4;
}

.content .zone02 .component .swiper-button-prev:active, .content .zone02 .component .swiper-button-next:active {
  color: #d2b8ed;
}

.nav .nav-li a[href*='zone03']:hover, .nav .nav-li a[href*='zone03'].active {
  color: #38c5ed;
}

.ks-map .main-map .map-part.map03:hover {
  fill: #a8e6f7;
}

.ks-map .main-map .map-part.map03.active {
  fill: #38c5ed;
  stroke-width: 1px;
}

.ks-map .city-intro .city-name.city03 .maintitle {
  color: #25c0eb;
}

.ks-map .city-intro .city-name.city03 .entitle {
  color: #96e0f5;
}

.ks-map .city-intro .city-name.city03 .city-link {
  background-color: #25c0eb;
}

.ks-map .city-intro .city-name.city03 .city-link:hover {
  background-color: #5dd0f0;
}

.content .zone03 .title {
  color: #a8e6f7;
}

.content .zone03 .title .maintitle:after {
  background-color: #a8e6f7;
}

.content .zone03 .component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #a8e6f7;
}

.content .zone03 .component .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #38c5ed;
}

.content .zone03 .component .swiper-button-prev, .content .zone03 .component .swiper-button-next {
  color: #38c5ed;
}

.content .zone03 .component .swiper-button-prev:active, .content .zone03 .component .swiper-button-next:active {
  color: #a8e6f7;
}

.nav .nav-li a[href*='zone04']:hover, .nav .nav-li a[href*='zone04'].active {
  color: #ff7c3e;
}

.ks-map .main-map .map-part.map04:hover {
  fill: #ffcfb8;
}

.ks-map .main-map .map-part.map04.active {
  fill: #ff7c3e;
  stroke-width: 1px;
}

.ks-map .city-intro .city-name.city04 .maintitle {
  color: #ff6e2a;
}

.ks-map .city-intro .city-name.city04 .entitle {
  color: #ffc1a4;
}

.ks-map .city-intro .city-name.city04 .city-link {
  background-color: #ff6e2a;
}

.ks-map .city-intro .city-name.city04 .city-link:hover {
  background-color: #ff9867;
}

.content .zone04 .title {
  color: #ffcfb8;
}

.content .zone04 .title .maintitle:after {
  background-color: #ffcfb8;
}

.content .zone04 .component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffcfb8;
}

.content .zone04 .component .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #ff7c3e;
}

.content .zone04 .component .swiper-button-prev, .content .zone04 .component .swiper-button-next {
  color: #ff7c3e;
}

.content .zone04 .component .swiper-button-prev:active, .content .zone04 .component .swiper-button-next:active {
  color: #ffcfb8;
}

.nav .nav-li a[href*='zone05']:hover, .nav .nav-li a[href*='zone05'].active {
  color: #35a6a2;
}

.ks-map .main-map .map-part.map05:hover {
  fill: #7fd6d3;
}

.ks-map .main-map .map-part.map05.active {
  fill: #35a6a2;
  stroke-width: 1px;
}

.ks-map .city-intro .city-name.city05 .maintitle {
  color: #309793;
}

.ks-map .city-intro .city-name.city05 .entitle {
  color: #70d1ce;
}

.ks-map .city-intro .city-name.city05 .city-link {
  background-color: #309793;
}

.ks-map .city-intro .city-name.city05 .city-link:hover {
  background-color: #41c2be;
}

.content .zone05 .title {
  color: #7fd6d3;
}

.content .zone05 .title .maintitle:after {
  background-color: #7fd6d3;
}

.content .zone05 .component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7fd6d3;
}

.content .zone05 .component .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #35a6a2;
}

.content .zone05 .component .swiper-button-prev, .content .zone05 .component .swiper-button-next {
  color: #35a6a2;
}

.content .zone05 .component .swiper-button-prev:active, .content .zone05 .component .swiper-button-next:active {
  color: #7fd6d3;
}

.nav .nav-li a[href*='zone06']:hover, .nav .nav-li a[href*='zone06'].active {
  color: #ffbf56;
}

.ks-map .main-map .map-part.map06:hover {
  fill: #ffedd0;
}

.ks-map .main-map .map-part.map06.active {
  fill: #ffbf56;
  stroke-width: 1px;
}

.ks-map .city-intro .city-name.city06 .maintitle {
  color: #ffb742;
}

.ks-map .city-intro .city-name.city06 .entitle {
  color: #ffe6bc;
}

.ks-map .city-intro .city-name.city06 .city-link {
  background-color: #ffb742;
}

.ks-map .city-intro .city-name.city06 .city-link:hover {
  background-color: #ffce7f;
}

.content .zone06 .title {
  color: #ffedd0;
}

.content .zone06 .title .maintitle:after {
  background-color: #ffedd0;
}

.content .zone06 .component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffedd0;
}

.content .zone06 .component .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #ffbf56;
}

.content .zone06 .component .swiper-button-prev, .content .zone06 .component .swiper-button-next {
  color: #ffbf56;
}

.content .zone06 .component .swiper-button-prev:active, .content .zone06 .component .swiper-button-next:active {
  color: #ffedd0;
}

.nav .nav-li a[href*='zone07']:hover, .nav .nav-li a[href*='zone07'].active {
  color: #2961b6;
}

.ks-map .main-map .map-part.map07:hover {
  fill: #79a2e1;
}

.ks-map .main-map .map-part.map07.active {
  fill: #2961b6;
  stroke-width: 1px;
}

.ks-map .city-intro .city-name.city07 .maintitle {
  color: #2558a5;
}

.ks-map .city-intro .city-name.city07 .entitle {
  color: #6896dd;
}

.ks-map .city-intro .city-name.city07 .city-link {
  background-color: #2558a5;
}

.ks-map .city-intro .city-name.city07 .city-link:hover {
  background-color: #3674d2;
}

.content .zone07 .title {
  color: #79a2e1;
}

.content .zone07 .title .maintitle:after {
  background-color: #79a2e1;
}

.content .zone07 .component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #79a2e1;
}

.content .zone07 .component .swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #2961b6;
}

.content .zone07 .component .swiper-button-prev, .content .zone07 .component .swiper-button-next {
  color: #2961b6;
}

.content .zone07 .component .swiper-button-prev:active, .content .zone07 .component .swiper-button-next:active {
  color: #79a2e1;
}

/* rwd */
@media screen and (max-width: 1024px) {
  .ks-map {
    width: calc(100% - 8vw);
    height: 100vw;
    margin: 20px 4vw;
  }
  .ks-map .city-intro .city-name {
    font-size: 13px;
  }
  .content .zone .item-cont .item .text {
    width: 36%;
    font-size: 13px;
  }
}

@media screen and (max-width: 800px) {
  .menu .nav .nav-li a {
    font-size: 0.7em;
  }
  .ks-map {
    width: calc(100% - 24px);
    margin: 20px 4px 20px 20px;
  }
  .ks-map .main-map .map-name {
    font-size: 13px;
  }
  .ks-map .city-intro .city-name {
    font-size: 12px;
  }
  .content .zone .title {
    top: 0;
  }
  .content .zone .item-cont .item .text {
    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;
    right: 0;
    bottom: unset;
    max-width: 240px;
    height: 100%;
    padding: 20px;
    font-size: 10px;
  }
  .content .zone .component {
    left: calc(50% - 12vw);
  }
}

@media screen and (max-width: 640px) {
  .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #m_nav:checked ~ .menu {
    top: 53px;
    opacity: 1;
    -webkit-transition: top 0s linear, opacity 0.4s linear;
    transition: top 0s linear, opacity 0.4s linear;
  }
  .menu {
    position: fixed;
    top: -120vh;
    left: 0;
    border: unset;
    opacity: 0;
    -webkit-transition: top 0s linear 0.4s, opacity 0.4s linear;
    transition: top 0s linear 0.4s, opacity 0.4s linear;
  }
  .menu .nav {
    position: relative;
    top: unset;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    height: calc(100vh - 53px);
    padding: 0 0 80px;
  }
  .menu .nav.active {
    top: unset;
  }
  .menu .nav .nav-li:after {
    content: unset;
  }
  .menu .nav .nav-li a {
    padding: 8px 1em;
    font-size: 18px;
  }
  .menu .float-link {
    position: absolute;
    right: unset;
    bottom: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .menu .float-link.active {
    bottom: 80px;
  }
  .menu .float-link li {
    margin: 8px;
  }
  .header .header-bg {
    max-height: 100vw;
  }
  .header .header-bg .img-bg {
    width: 200vw;
  }
  .anchor {
    top: -53px;
  }
  .ks-map {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    margin: 8px;
  }
  .ks-map .main-map {
    position: relative;
    width: 80%;
    -webkit-transform: unset;
            transform: unset;
  }
  .ks-map .main-map .map-name {
    font-size: 12px;
  }
  .ks-map .city-intro {
    position: relative;
    width: 90%;
    max-width: unset;
  }
  .ks-map .city-intro .city-name {
    text-align: center;
  }
  .ks-map .city-intro .city-name.active {
    position: relative;
    -webkit-transform: unset;
            transform: unset;
  }
  .ks-map .city-intro .city-name .maintitle {
    font-size: 2.4em;
  }
  .content {
    overflow: unset;
  }
  .content .zone .title {
    position: relative;
    top: unset;
    left: unset;
    padding: 12px;
    font-size: 12px;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    background-color: #ffffff;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
  .content .zone .title .maintitle {
    margin: 0 1.2em 0 0;
    font-size: 2.8em;
  }
  .content .zone .title .maintitle:after {
    top: 50%;
    left: unset;
    right: -1.2em;
    bottom: unset;
    -webkit-transform: translateY(-50%) rotate(60deg);
            transform: translateY(-50%) rotate(60deg);
  }
  .content .zone .title .subtitle span:nth-child(2) {
    margin: 0;
  }
  .content .zone .item-cont .item {
    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;
    height: auto;
    max-height: unset;
  }
  .content .zone .item-cont .item .pic {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
  .content .zone .item-cont .item .text {
    position: relative;
    top: unset;
    left: unset;
    background-color: #ffffff;
    width: 100%;
    max-width: unset;
    padding: 40px 60px;
    color: #000000;
    font-size: 16px;
    text-shadow: unset;
  }
  .content .zone .component {
    position: static;
    margin: 0;
    -webkit-transform: unset;
            transform: unset;
  }
  .content .zone .component .swiper-pagination {
    position: absolute;
    top: 56vw;
  }
  .content .zone .component .swiper-pagination .swiper-pagination-bullet {
    display: none;
    width: 100vw;
    margin: 0;
    height: 4px;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
  .content .zone .component .swiper-pagination .swiper-pagination-bullet-active {
    display: block;
  }
  .content .zone .component .swiper-button-prev, .content .zone .component .swiper-button-next {
    position: absolute;
    top: 72vw;
    display: block;
    width: auto;
    height: auto;
    padding: 4px;
    z-index: 20;
  }
  .content .zone .component .swiper-button-prev:after, .content .zone .component .swiper-button-next:after {
    font-size: 32px;
  }
  .content .zone .component .swiper-button-prev {
    left: 0;
  }
  .content .zone .component .swiper-button-next {
    right: 0;
  }
  .content .zone01 .title {
    background-color: #dd1d65;
    color: #ffffff;
  }
  .content .zone01 .title .maintitle:after {
    background-color: #ffffff;
  }
  .content .zone02 .title {
    background-color: #9456d4;
    color: #ffffff;
  }
  .content .zone02 .title .maintitle:after {
    background-color: #ffffff;
  }
  .content .zone03 .title {
    background-color: #38c5ed;
    color: #ffffff;
  }
  .content .zone03 .title .maintitle:after {
    background-color: #ffffff;
  }
  .content .zone04 .title {
    background-color: #ff7c3e;
    color: #ffffff;
  }
  .content .zone04 .title .maintitle:after {
    background-color: #ffffff;
  }
  .content .zone05 .title {
    background-color: #35a6a2;
    color: #ffffff;
  }
  .content .zone05 .title .maintitle:after {
    background-color: #ffffff;
  }
  .content .zone06 .title {
    background-color: #ffbf56;
    color: #ffffff;
  }
  .content .zone06 .title .maintitle:after {
    background-color: #ffffff;
  }
  .content .zone07 .title {
    background-color: #2961b6;
    color: #ffffff;
  }
  .content .zone07 .title .maintitle:after {
    background-color: #ffffff;
  }
  .stroke-plan {
    margin: 40px auto;
  }
  .stroke-plan .plan-title {
    font-size: 2em;
  }
  .stroke-plan .row .step .col {
    margin: 16px 0;
  }
  .stroke-plan.blog .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    margin: 20px 12px;
  }
  .stroke-plan.blog .row .item {
    padding: 20px 0;
  }
  .stroke-plan.blog .row .item .blog-info .name {
    margin: 0 8px 0 0;
  }
  .stroke-plan.blog .row .item .blog-info .title {
    font-size: 1.1em;
  }
  .direct {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .content .zone .item-cont .text {
    font-size: 15px;
    padding: 40px;
  }
  .content .zone .component .swiper-button-prev, .content .zone .component .swiper-button-next {
    top: 84vw;
  }
}
/*# sourceMappingURL=style.css.map */</pre></body></html>