@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Montserrat:wght@100..900&display=swap");
* {
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.08em;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-thumb {
  background-color: #39a0ca;
  border-radius: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.7);
}

h1 {
  font-size: unset;
}

.focusMainBlock {
  position: absolute;
  background: #fff;
  padding: 5px;
  opacity: 0;
}

.focusMainBlock:focus {
  opacity: 1;
}

.breadcrumb-brick2 {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 999;
  color: #fff;
  opacity: 0;
}

.breadcrumb-brick2:focus {
  opacity: 1;
}

.kv {
  position: relative;
}
.kv video {
  width: 100vw;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.kv .pc {
  display: block;
}
@media (max-width: 1024px) {
  .kv .pc {
    display: none;
  }
}
.kv .mobile {
  display: none;
}
@media (max-width: 1024px) {
  .kv .mobile {
    display: block;
    height: 180vw;
  }
}
.kv .title, .kv .subTitle, .kv .text {
  position: absolute;
}
.kv .title {
  width: 69dvw;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .kv .title {
    width: 90%;
  }
}
.kv .title img {
  width: 100%;
}
.kv .subTitle {
  width: 50vw;
  top: 25%;
  left: 25vw;
  overflow: hidden;
  transform: translateY(-50%);
  padding-left: 0;
}
@media (max-width: 1024px) {
  .kv .subTitle {
    display: none;
  }
}
.kv .subTitle img {
  width: 50vw;
  max-width: unset !important;
}
.kv .subTitlePad {
  width: 30vw;
  left: 35vw;
  display: none;
}
@media (max-width: 1024px) {
  .kv .subTitlePad {
    display: block;
  }
}
@media (max-width: 767px) {
  .kv .subTitlePad {
    display: none;
  }
}
.kv .subTitlePad img {
  width: 30vw;
}
.kv .subTitleMobile {
  display: none;
  width: 42vw;
  left: 29vw;
}
@media (max-width: 767px) {
  .kv .subTitleMobile {
    display: block;
  }
}
.kv .subTitleMobile img {
  width: 42vw;
}
.kv .text {
  color: #fff;
  font-size: 1.46vw;
  line-height: 2;
  padding: 1.5vw 1.5vw;
  top: 77%;
  right: 20vw;
  transform: translateY(-50%);
  overflow: hidden;
  border-top: 1px solid #FDD108;
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 1024px) {
  .kv .text {
    right: 0;
    padding: 2vw 7vw;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
}
.kv .text:before {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  background: #FDD108;
  bottom: 0;
  animation: borderleft 4s forwards;
}
.kv .text .textContent {
  color: #fff;
  font-size: 1.46vw;
  line-height: 2;
  width: 57vw;
  text-align: justify;
}
@media (max-width: 1024px) {
  .kv .text .textContent {
    width: 86vw;
    font-size: 2.83vw;
  }
}
@media (max-width: 767px) {
  .kv .text .textContent {
    font-size: 4.62vw;
  }
}
.kv .text .textContent span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2vw;
  color: #FDD108;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .kv .text .textContent span {
    font-size: 7.7vw;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

.start-in-left {
  animation: startInLeft 2.5s forwards;
}
@media (max-width: 1024px) {
  .start-in-left {
    animation: startInLeftPad 2.5s forwards;
  }
}
@media (max-width: 767px) {
  .start-in-left {
    animation: startInLeftMobile 2.5s forwards;
  }
}

.start-in-right {
  animation: startInRight 3s forwards;
}
@media (max-width: 1024px) {
  .start-in-right {
    animation: startInRightPad 3s forwards;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes startInLeft {
  0% {
    width: 0;
  }
  100% {
    width: 50vw;
  }
}
@keyframes startInLeftPad {
  0% {
    width: 0;
  }
  100% {
    width: 30vw;
  }
}
@keyframes startInLeftMobile {
  0% {
    width: 0;
  }
  100% {
    width: 42vw;
  }
}
@keyframes startInRight {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 0;
  }
  100% {
    opacity: 1;
    width: 60vw;
  }
}
@keyframes startInRightPad {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@keyframes borderleft {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.titleBox {
  position: absolute;
  width: 80vw;
}
.titleBox .title {
  font-weight: 400;
  width: 35.2vw;
}
.titleBox .title span {
  font-weight: 900;
}
.titleBox .title2 {
  font-size: 4vw;
  margin-bottom: 2.6vw;
  color: #FDD108;
  line-height: 1;
}
@media (max-width: 1024px) {
  .titleBox .title2 {
    font-size: 7.6vw;
    width: 67vw;
    margin: 0 auto 6vw auto;
    text-align: center;
  }
}
.titleBox .tt {
  color: #fff;
  font-size: 2vw;
  font-size: clamp(16px, 2vw, 28px);
  width: 100%;
  text-align: center;
  letter-spacing: 3em;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  width: 20em;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .titleBox .tt {
    width: 12em;
  }
}
.titleBox .en {
  color: #fff;
  font-size: clamp(30px, 15.7vw, 220px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.2em;
  text-align: center;
}
.titleBox .text {
  font-size: 1.2vw;
  color: #fff;
  line-height: 1.2;
  background-color: rgba(35, 24, 21, 0.7);
  padding: 2vw;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .titleBox .text {
    font-size: clamp(16px, 2vw, 30px);
    margin: 0 auto;
    text-align: justify;
    line-height: 1.5;
  }
}
.titleBox .img {
  width: 100%;
  margin-bottom: 2vw;
}
@media (max-width: 1024px) {
  .titleBox .img {
    width: 67vw;
    margin: 0 auto 6vw auto;
  }
}
.titleBox .img img {
  width: 100%;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
}
.pc img {
  width: 100dvw;
}

.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .mobile {
    display: block;
  }
}
.mobile img {
  width: 100dvw;
}

.youTubeBox {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .youTubeBox {
    width: 100%;
    padding: 0;
  }
}
.youTubeBox #showBox {
  width: 53vw;
  height: 31.3vw;
}
@media (max-width: 1024px) {
  .youTubeBox #showBox {
    width: 100vw;
    height: 56vw;
  }
}
.youTubeBox #showBox iframe {
  width: 100%;
  height: 100%;
}

.swiperBox {
  width: 45vw;
  position: relative;
}
@media (max-width: 1024px) {
  .swiperBox {
    width: 100%;
  }
}
.swiperBox .swiper .swiper-slide {
  height: 100%;
}
.swiperBox .swiper .swiper-slide img {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiperBox .swiper .swiper-button-next {
  width: 2.9vw;
  height: 5.7vw;
}
.swiperBox .swiper .swiper-button-next:after {
  font-size: 4vw;
  color: #fff;
}
.swiperBox .swiper .swiper-button-prev {
  width: 2.9vw;
  height: 5.7vw;
}
.swiperBox .swiper .swiper-button-prev:after {
  font-size: 4vw;
  color: #fff;
}
.swiperBox .text {
  color: #fff;
  text-align: end;
  font-size: 1vw;
  margin-top: 1vw;
  margin-right: 5%;
}

.swiperBox2 .swiper {
  height: 100%;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.tit {
  font-size: clamp(30px, 3vw, 60px);
  margin-top: 1em;
  margin-bottom: 0.5em;
  letter-spacing: 0.5em;
}

.subTit {
  font-size: clamp(18px, 1.7vw, 34px);
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 300;
  letter-spacing: 0.2em;
}

.markTitle {
  background-color: #fff100;
  color: #000;
  padding: 0.5em;
  font-weight: 600;
  font-size: clamp(24px, 1.8vw, 34px);
}

p {
  font-size: clamp(16px, 1.5vw, 28px);
  text-align: justify;
}

section article {
  display: flex;
  color: #fff;
}
@media (max-width: 1024px) {
  section article {
    flex-direction: column;
  }
}
section article > * {
  padding: 20px;
}
section article + article {
  margin-top: 10vw;
}

.bgline {
  margin-top: -1px;
}

.s1 {
  width: 100%;
  background: url(../img/vision/bg.jpg) fixed no-repeat center top/100% 100%;
}
.s1:after {
  content: "";
  display: block;
  background-image: url(../img/vision/bgAhead.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  width: 100%;
  padding-bottom: 6.2%;
  position: relative;
  z-index: 1;
}
.s1 .link {
  display: flex;
  justify-content: center;
  margin-bottom: -10%;
}
.s1 .link-item {
  display: flex;
  flex-direction: row-reverse;
  color: #fff;
  margin: 4vw;
  padding: 4vw 1vw 18vw 5vw;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.s1 .link-item:nth-of-type(1) {
  background-image: url(../img/vision/titleBg1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.s1 .link-item:nth-of-type(2) {
  background-image: url(../img/vision/titleBg2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 4vw 4vw 18vw 5vw;
}
.s1 .link-item:nth-of-type(3) {
  background-image: url(../img/vision/titleBg3.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.s1 .link-item p {
  writing-mode: vertical-lr;
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.s1 .link-item p:nth-of-type(1) {
  font-size: 4vw;
  letter-spacing: 0.5em;
  line-height: 1;
}
.s1 .link-item p:nth-of-type(2) {
  font-size: 2vw;
  font-weight: 300;
  line-height: 1;
  align-self: flex-end;
}

.s2 {
  background: url(../img/vision/bgAbody.png);
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100% auto;
  padding: 40px 8%;
  margin-top: -1px;
}
@media (max-width: 1024px) {
  .s2 {
    padding: 20px 0;
    background-size: unset;
  }
}
.s2 .main {
  width: 30%;
  position: relative;
  z-index: 1;
}
.s2 .pic {
  margin-left: -1vw;
}
.s2 article:nth-of-type(1) .tit {
  white-space: nowrap;
}
.s2 article:nth-of-type(1) .subTit {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .s2 article:nth-of-type(1) .main {
    width: 100%;
  }
}
.s2 article:nth-of-type(2) {
  position: relative;
}
.s2 article:nth-of-type(2):after {
  content: "你可以改變桃園";
  writing-mode: vertical-lr;
  position: absolute;
  top: 0;
  left: -1.5vw;
  font-size: 4vw;
  transform: translate(-100%, 0%);
}
@media (max-width: 1024px) {
  .s2 article:nth-of-type(2):after {
    font-size: 7vw;
    left: 8.5vw;
  }
}
.s2 article:nth-of-type(2) .main {
  padding-left: 4vw;
}
@media (max-width: 1024px) {
  .s2 article:nth-of-type(2) .main {
    width: 80%;
    margin-left: auto;
  }
}
.s2 article:nth-of-type(2) .tit {
  letter-spacing: 0.3em;
}

.s3 {
  background: url(../img/vision/bgBbody.png);
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100% auto;
  padding: 40px 8%;
  margin-top: -1px;
}
@media (max-width: 1024px) {
  .s3 {
    padding: 20px 0;
    background-size: unset;
  }
}
.s3 article:nth-of-type(1) .main {
  width: 30%;
}
@media (max-width: 1024px) {
  .s3 article:nth-of-type(1) .main {
    width: 100%;
  }
}
.s3 article:nth-of-type(1) .side {
  padding: 10vw 4vw;
  position: relative;
}
@media (max-width: 1024px) {
  .s3 article:nth-of-type(1) .side {
    padding: 20px 0;
  }
}
.s3 article:nth-of-type(1) .pic {
  position: absolute;
  top: 2vw;
  right: 0;
  width: 50%;
}
@media (max-width: 1024px) {
  .s3 article:nth-of-type(1) .pic {
    top: 2vw;
    right: 0%;
    width: 39%;
  }
}
@media (max-width: 600px) {
  .s3 article:nth-of-type(1) .pic {
    top: 32vw;
    right: -14%;
    width: 76%;
  }
}
@media (max-width: 1024px) {
  .s3 article:nth-of-type(1) .introduction {
    margin-left: 10vw;
    width: 35%;
  }
}
.s3 article:nth-of-type(2) .main {
  width: 50%;
}
@media (max-width: 1024px) {
  .s3 article:nth-of-type(2) .main {
    width: 100%;
    padding: 0;
  }
  .s3 article:nth-of-type(2) .main p {
    padding: 0 10vw;
  }
}
.s3 article:nth-of-type(3) .main {
  width: 50%;
}
@media (max-width: 1024px) {
  .s3 article:nth-of-type(3) .main {
    width: 100%;
    padding: 0;
  }
  .s3 article:nth-of-type(3) .main p {
    padding: 0 10vw;
  }
}
.s3 .main {
  flex-shrink: 0;
}
.s3 .introduction {
  color: #fff100;
  background-color: rgba(0, 0, 0, 0.8);
  width: 65%;
  margin-top: 5em;
  position: relative;
  z-index: 1;
}
.s3 .name {
  margin-bottom: 3em;
}

.s4 {
  background: url(../img/vision/bgCbody.png);
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100% auto;
  padding: 40px 8%;
  margin-top: -1px;
}
@media (max-width: 1024px) {
  .s4 {
    padding: 20px 0;
    background-size: unset;
  }
}
.s4 article:nth-of-type(1) {
  position: relative;
  margin-top: 2vw;
}
.s4 article:nth-of-type(1) .main {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  transform: translateY(-40%);
}
@media (max-width: 1024px) {
  .s4 article:nth-of-type(1) .main {
    position: unset;
    margin-top: 1em;
    padding: 0 10vw;
  }
}
.s4 article:nth-of-type(1) .tit {
  margin: 0;
}
.s4 article:nth-of-type(1) .subTit {
  margin: 0;
}
.s4 article:nth-of-type(1) .text {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  background-color: rgba(255, 242, 0, 0.7411764706);
  color: #000;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw;
}
@media (max-width: 1024px) {
  .s4 article:nth-of-type(1) .text {
    position: unset;
    width: 100%;
    padding: 5vw;
  }
}
.s4 article:nth-of-type(1) .pic {
  width: 100%;
  padding: 0;
}
.s4 article:nth-of-type(1) .pic img {
  width: 100%;
}
.s4 .list {
  display: flex;
  background-image: url(../img/vision/7.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 50%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .s4 .list {
    flex-direction: column;
  }
}
.s4 .list-item {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 33.3333333333%;
}
@media (max-width: 1024px) {
  .s4 .list-item {
    width: 100%;
  }
}
.s4 .list-item + .list-item p {
  border-left: 2vw solid #2ea7e0;
}
@media (max-width: 1024px) {
  .s4 .list-item + .list-item p {
    border-left: unset;
  }
}
.s4 .list-item + .list-item p:nth-of-type(3) {
  border-left: 2vw solid transparent;
}
.s4 .list-item .markTitle {
  text-align: center;
}
.s4 .list-item:nth-of-type(2) p:nth-of-type(3) {
  background-color: rgba(0, 0, 0, 0.3137254902);
}
@media (max-width: 1024px) {
  .s4 .list-item:nth-of-type(2) p:nth-of-type(3) {
    background-color: unset;
  }
}
.s4 .list-item p {
  margin: 0;
}
.s4 .list-item p:nth-of-type(2) {
  background-color: #2ea7e0;
  align-self: stretch;
  text-align: center;
  padding: 2vw;
}
@media (max-width: 1024px) {
  .s4 .list-item p:nth-of-type(2) {
    background-color: unset;
  }
}
.s4 .list-item p:nth-of-type(3) {
  padding: 4vw;
  align-self: stretch;
  flex-grow: 1;
}/*# sourceMappingURL=vision.css.map */