@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "Noto Sans TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black", sans-serif;
  text-align: justify;
}

* {
  max-height: 99999px;
}

/* header */
.navbar-nav {
  flex-grow: 1;
  justify-content: end;
}

/* root */
:root {
  --swiper-theme-color: #754c24;
  --rwd-60px: 60px;
  --rwd-75px: 75px;
  --img-200: 200px;
}

@media (max-width: 1399px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
    --img-200: 75%;
  }
}
@media (max-width: 1024px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
  }
}
@media (max-width: 768px) {
  :root {
    --rwd-60px: 36px;
    --rwd-75px: 48px;
  }
}
@media (max-width: 575px) {
  :root {
    --rwd-75px: 40px;
    --rwd-60px: 32px;
  }
}
/*
@media (max-width: 480px) {
    :root{

    }
} */
@media (max-width: 320px) {
  :root {
    --rwd-75px: 11.12vw;
    --rwd-60px: 5.6vw;
  }
}
/* 通用 */
.hover-img {
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul.ul-reset {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.img {
  max-width: 100%;
}

.hover-bigger:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.hover-bigger-s:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.hover-smaller:hover {
  transform: scale(0.95);
}

.tr-1 {
  transition: all 1s ease;
}

.tr-5 {
  transition: all 0.5s ease;
}

/* fixed */
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #f1f2f3;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

#go-top {
  border: 0;
  background: none;
  bottom: 3vw;
  left: 30px;
  z-index: 999;
}

#go-top img {
  width: 5vw;
  height: auto;
}
@media (max-width: 1440px) {
  #go-top img {
    width: 5vw;
  }
}
@media (max-width: 991px) {
  #go-top img {
    width: 7vw;
  }
}
@media (max-width: 767px) {
  #go-top img {
    width: 12vw;
  }
}
@media (max-width: 576px) {
  #go-top img {
    width: 15vw;
  }
}

.buy-now {
  width: 7.5vw;
  position: fixed;
  z-index: 999;
  bottom: 120px;
  left: 30px;
  transition: all 0.5s ease-in-out;
  animation: buy-now 2s infinite;
}
@media (max-width: 1440px) {
  .buy-now {
    width: 9vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 991px) {
  .buy-now {
    width: 12vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .buy-now {
    width: 15vw;
    bottom: 90px;
    right: 30px;
  }
}
@media (max-width: 576px) {
  .buy-now {
    width: 21vw;
    bottom: 60px;
    right: 30px;
  }
}

@keyframes buy-now {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}
/*
@media (max-width: 320px) {

    #menu{

    }
}
*/
/* 內容區塊通用 */
.section-block {
  padding: var(--rwd-75px) 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1440px) {
  .section-block {
    padding: var(--rwd-60px) 0;
  }
}
.table-tab {
  cursor: pointer;
}

/* menu */
#menu {
  position: absolute;
  z-index: 99;
  width: 100%;
  margin-top: 1.5vw;
}
@media (max-width: 991px) {
  #menu {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  #menu.show-menu {
    position: fixed;
  }
}
@media (max-width: 575px) {
  #menu > div {
    padding-top: 2.5vw;
  }
}

.nav-link {
  font-weight: bold;
  font-size: 20px;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item a {
  color: #fff;
  font-size: 1.5vw;
  text-align: center;
  margin: 0 8px;
  padding: 0px 12px;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5vw;
  border-radius: 16px;
}
.nav-item a:hover {
  color: #fff01b;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .nav-item a {
    font-size: 20px;
    margin: 0 8px;
    padding: 0 2px;
  }
}
@media (max-width: 991px) {
  .nav-item a {
    font-size: 16px;
    margin: 0 8px;
    padding: 0 2px;
  }
}
@media (max-width: 767px) {
  .nav-item a {
    font-size: 18px;
    margin: 0 8px;
    padding: 0 2px;
  }
}

.nav-item:not(:last-child) {
  position: relative;
}

.logos {
  display: flex;
  align-items: flex-start;
}
.logos a {
  display: block;
}

.logos img {
  width: auto;
  height: 4vw;
  margin-left: 0vw;
}
@media (max-width: 991px) {
  .logos img {
    width: auto;
    height: 4.5vw;
    margin-left: 0vw;
  }
}
@media (max-width: 575px) {
  .logos img {
    height: 10vw;
    margin-left: 1vw;
  }
}

@media (max-width: 767px) {
  #menu-nav > ul {
    border-radius: 36px;
    padding: 7vw 0.35vw;
  }
}

@media (max-width: 991px) {
  .nav-item:not(:last-child) {
    border-bottom: none;
  }
}

#menu-btn img {
  display: block;
  padding: 0.5vw;
  width: 5vw;
  height: auto;
}
@media (max-width: 767px) {
  #menu-btn img {
    width: 7.5vw;
  }
}
@media (max-width: 575px) {
  #menu-btn img {
    width: 11vw;
  }
}
#menu-btn div {
  background-image: url("../images/menu-icon.png?070902");
  background-size: cover;
  width: 3.5vw;
  height: 3.5vw;
  margin-right: 1.5vw;
}
@media (max-width: 575px) {
  #menu-btn div {
    width: 8vw;
    height: 8vw;
    margin-right: 1vw;
  }
}

.show-menu #menu-btn div {
  background-image: url("../images/menu-close.png?070902");
}

.menu-link ul {
  display: flex;
  align-items: center;
}

/* TODO: MENU RWD */
#menu.menu-add-bg {
  top: 0px;
}

.nav-item {
  width: 100%;
  text-align: center;
}

.nav-item {
  width: 100%;
  text-align: center;
}

.nav-item a {
  padding: 8px;
}

.menu-link {
  position: fixed;
  top: 0px;
  left: 0;
  width: 27%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  background: rgba(13, 110, 253, 0.5607843137);
  transform: translateX(-100%);
}
@media (max-width: 991px) {
  .menu-link {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .menu-link {
    width: 100%;
    padding-top: 12vw;
  }
}

.show-menu .menu-link {
  transform: translateX(0%);
}

.show-menu #menu-btn > div {
  position: fixed;
}

.menu-link ul {
  flex-direction: column;
  padding-top: 54px;
  padding-bottom: 16px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.sw-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.swiper-add-arrows {
  position: relative;
  width: 88%;
  margin: auto;
}

.swiper-add-arrows .swiper-button-next, .swiper-add-arrows .swiper-button-prev {
  opacity: 0;
  z-index: -99;
}

.arr-left, .arr-right {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  width: 4vw;
  height: 4vw;
  top: 45%;
  background: url(../images/arr.png) center center no-repeat;
  background-size: 100% auto;
}

.arr-left:hover, .arr-right:hover {
  opacity: 0.5;
}

.arr-left {
  left: -4vw;
}

.arr-right {
  right: -4vw;
  transform: scaleX(-1);
}

.hide-3-items .arr-left, .hide-3-items .arr-right {
  display: none;
}

@media (max-width: 575px) {
  .arr-left {
    left: -10vw;
  }
  .arr-right {
    right: -10vw;
    transform: rotate(180deg);
  }
  .arr-left, .arr-right {
    background-size: 100%;
    width: 10vw;
    height: 10vw;
  }
}
.kv-msg {
  width: 21.3vw;
}
@media (max-width: 575px) {
  .kv-msg {
    width: 35vw;
  }
}
.kv-msg.kv-msg-l1 {
  opacity: 0;
  animation: kv-msg-l 8s ease-in-out infinite;
  animation-delay: 3s;
  top: 23.5vw;
  right: 61%;
  z-index: 3;
}
@media (max-width: 575px) {
  .kv-msg.kv-msg-l1 {
    top: 76vw;
    right: 61%;
  }
}
.kv-msg.kv-msg-l2 {
  opacity: 0;
  animation: kv-msg-l 8s ease-in-out infinite;
  animation-delay: 4s;
  top: 29vw;
  right: 63%;
  z-index: 3;
}
@media (max-width: 575px) {
  .kv-msg.kv-msg-l2 {
    top: 99vw;
    right: 63%;
  }
}
.kv-msg.kv-msg-r {
  opacity: 0;
  animation: kv-msg-r 8s ease-in-out infinite;
  animation-delay: 5s;
  top: 29vw;
  left: 63%;
  z-index: 3;
}
@media (max-width: 575px) {
  .kv-msg.kv-msg-r {
    top: 87.5vw;
    left: 63%;
  }
}

@keyframes kv-msg-l {
  0% {
    opacity: 0;
    transform: translateX(3%);
  }
  10%, 60% {
    opacity: 1;
    transform: translateX(0%);
  }
  70%, 100% {
    opacity: 0;
    transform: translateX(-3%);
  }
}
@keyframes kv-msg-r {
  0% {
    opacity: 0;
    transform: translateX(-3%);
  }
  10%, 60% {
    opacity: 1;
    transform: translateX(0%);
  }
  70%, 100% {
    opacity: 0;
    transform: translateX(3%);
  }
}
body {
  margin: 0;
  /* overflow: hidden;  隱藏滾動條 */
  background-color: #3aa6fc;
  background-image: url("../images/body-bg.png");
  background-position: left top;
  background-size: 100% auto;
}

.img-title {
  width: 30%;
  margin-bottom: 1vw;
}
@media (max-width: 1399px) {
  .img-title {
    width: 36%;
  }
}
@media (max-width: 991px) {
  .img-title {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .img-title {
    width: 65%;
  }
}

.title-teach {
  width: 54vw;
  margin-bottom: 2.5vw;
}
@media (max-width: 1399px) {
  .title-teach {
    width: 60vw;
  }
}
@media (max-width: 991px) {
  .title-teach {
    width: 72vw;
  }
}
@media (max-width: 575px) {
  .title-teach {
    width: 84vw;
  }
}

.teachbox-app {
  width: 60%;
}

.btn-teachbox-app {
  top: 69%;
  width: 40%;
  right: 13%;
}
@media (max-width: 575px) {
  .btn-teachbox-app {
    top: 65%;
    width: 45%;
    right: 9%;
  }
}

.teachbox-web {
  width: 39%;
}

.btn-teachbox-web {
  top: 70%;
  width: 90%;
  left: 5%;
}
@media (max-width: 575px) {
  .btn-teachbox-web {
    top: 63%;
    width: 62%;
    left: 19%;
  }
}

@media (max-width: 575px) {
  .teachbox-app,
  .teachbox-web {
    width: 100%;
  }
}
.mySwiperApp .step-img {
  height: 16.5%;
  width: auto;
  margin-bottom: 4.5%;
}
@media (max-width: 575px) {
  .mySwiperApp .step-img {
    height: 12.5%;
  }
}

.mySwiperApp .step-short {
  width: 100%;
  height: 78%;
}
@media (max-width: 575px) {
  .mySwiperApp .step-short {
    height: 83%;
  }
}

.app-sign-shining {
  width: 9.5vw;
  height: 9.5vw;
  z-index: 9;
  left: -1.5vw;
  top: -0.5vw;
}
@media (max-width: 575px) {
  .app-sign-shining {
    width: 17vw;
  }
}

.teach-steps-app {
  top: 14%;
  padding: 0 3vw;
  height: 75%;
}
@media (max-width: 575px) {
  .teach-steps-app {
    top: 9%;
    padding: 0 3vw;
    height: 89%;
  }
}

.teach-steps-web-yt-box {
  top: 33%;
}
@media (max-width: 575px) {
  .teach-steps-web-yt-box {
    top: 54%;
  }
}

.teach-go-box {
  width: 60vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
}
@media (max-width: 1399px) {
  .teach-go-box {
    width: 66vw;
  }
}
@media (max-width: 991px) {
  .teach-go-box {
    width: 80vw;
  }
}

.teach-steps-box {
  width: 62%;
}
@media (max-width: 1399px) {
  .teach-steps-box {
    width: 68%;
  }
}
@media (max-width: 991px) {
  .teach-steps-box {
    width: 80%;
  }
}

.teach-web-yt-box {
  width: 80%;
  height: 27vw;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1399px) {
  .teach-web-yt-box {
    height: 29vw;
  }
}
@media (max-width: 991px) {
  .teach-web-yt-box {
    height: 34vw;
  }
}

.block-tiger {
  width: 62.5%;
}
@media (max-width: 1399px) {
  .block-tiger {
    width: 68%;
  }
}
@media (max-width: 991px) {
  .block-tiger {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .block-tiger {
    width: 75%;
  }
}

.btn-block-tiger-table {
  width: 14.7%;
  left: 27%;
  top: 71%;
  position: absolute;
}
@media (max-width: 1399px) {
  .btn-block-tiger-table {
    width: 16%;
    left: 25%;
  }
}
@media (max-width: 991px) {
  .btn-block-tiger-table {
    width: 19%;
    left: 20%;
  }
}
@media (max-width: 575px) {
  .btn-block-tiger-table {
    position: relative;
    width: 30%;
    margin: auto;
    left: unset;
    padding-bottom: 5vw;
  }
}

.img-box img {
  width: 63.9vw;
}
@media (max-width: 991px) {
  .img-box img {
    width: 72vw;
  }
}
@media (max-width: 575px) {
  .img-box img {
    width: 84vw;
  }
}

.table-tabs-box {
  top: 25%;
  width: 100%;
  z-index: 9;
}
.table-tabs-box .table-tab {
  height: 4.5vw;
  width: 14.5%;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .table-tabs-box {
    top: 26%;
  }
  .table-tabs-box .table-tab {
    width: 16%;
  }
}
@media (max-width: 575px) {
  .table-tabs-box {
    top: 28%;
  }
  .table-tabs-box .table-tab {
    width: 22%;
  }
}

.btn-offical-tables {
  width: 8%;
  left: 69%;
  bottom: 7%;
  height: 7%;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .btn-offical-tables {
    width: 13%;
    left: 73%;
  }
}

.hover-border:hover {
  border: 3px dashed #fff;
}

.map-tab {
  height: 12%;
  position: absolute;
  width: 90%;
  left: 5%;
  display: flex;
}
@media (max-width: 575px) {
  .map-tab {
    display: none;
  }
}

.map-tab-m {
  display: none;
  position: absolute;
  width: 100%;
}
@media (max-width: 575px) {
  .map-tab-m {
    display: flex;
    height: 9vw;
    justify-content: center;
  }
  .map-tab-m > div {
    height: 100%;
    width: 21%;
  }
}

.map-place-ul li {
  position: relative;
  margin-bottom: 0.625vw;
  color: #754c24;
}
.map-place-ul li:not(.no-icon) {
  padding-left: 2.94vw;
}
.map-place-ul li:not(.no-icon)::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 2.44vw;
  height: 1.97vw;
  background-image: url("../images/1x/info-icon-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0vw;
  top: 0.6vw;
}
.map-place-ul li > span {
  display: inline-block;
  border: 2px solid #754c24;
  font-size: 1.77vw;
  padding: 3px 5px;
  position: relative;
}
.map-place-ul li > span:not(.no-icon) {
  padding-left: 1.75vw;
}
.map-place-ul li > span:not(.no-icon)::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 1.35vw;
  height: 100%;
  background-image: url("../images/1x/info-mapmark-b.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  left: 0.25vw;
}
.map-place-ul li:nth-child(even) > span {
  background-color: #754c24;
  color: #f7931e;
}
.map-place-ul li:nth-child(even) > span:not(.no-icon)::before {
  background-image: url("../images/1x/info-mapmark-o.png");
}

.info-p {
  font-size: 1.25vw;
}

.game-block > * {
  transition: all 1.5s ease;
}
.game-block .go-top-leave {
  transform: translateY(-50%);
  opacity: 0;
}
.game-block .hiden-bottom {
  transform: translateY(50%);
  opacity: 0;
}
.game-block .hiden-bottom-up {
  transform: translateY(0%);
  opacity: 1;
}

.ask-btn-ul li {
  font-size: 1vw;
  margin-bottom: 1vw;
  width: 16vw;
  padding: 0.75vw 1vw;
  position: relative;
}
.ask-btn-ul li.user {
  background-color: #00bdff;
  border-radius: 24px 24px 0 24px;
  color: #fff;
}
.ask-btn-ul.first-ask li {
  align-self: center;
}
.ask-btn-ul.av-ask {
  width: 100%;
}
.ask-btn-ul.av-ask li {
  width: auto;
  max-width: 20vw;
}
.ask-btn-ul.av-ask li:not(.no-before)::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 3.125vw;
  height: 3.125vw;
  background-size: contain;
  background-repeat: no-repeat;
  left: -2vw;
  top: -0.5vw;
}
.ask-btn-ul.av-ask li.user {
  align-self: end;
  margin-right: 5%;
}
.ask-btn-ul.av-ask li.user::before {
  background-image: url("../images/1x/chat-av-user.png");
}
.ask-btn-ul.av-ask li.chatbot {
  margin-left: 10%;
  align-self: start;
  background-color: #fff;
  border-radius: 24px 24px 24px 0;
  color: #333;
  border: 2px solid #00bdff;
  box-shadow: 0.2vw 0.25vw 0px #00bdff;
  padding-left: 1.5vw;
}
.ask-btn-ul.av-ask li.chatbot::before {
  background-image: url("../images/1x/chat-av-ai.png");
}
.ask-btn-ul .ul-ask-types li {
  padding: 0.5vw 1.25vw;
  background-color: #00bdff;
  border-radius: 24px;
  color: #fff;
}

.kv {
  overflow: hidden;
}

.video-background iframe {
  position: absolute;
  top: 7vw;
  left: 30vw;
  width: 100vw;
  /* 確保影片覆蓋整個背景 */
  height: 56vw;
  pointer-events: none;
  /* 防止用戶點擊影片 */
}

.kv-bg-light-l {
  opacity: 0.25;
  animation: kv-bg-light 3s ease-in-out infinite;
}

@keyframes kv-bg-light {
  0%, 100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}
.kv-chat {
  opacity: 0;
  animation: kv-chat 1s ease-in-out infinite;
}

@keyframes kv-chat {
  0%, 100% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(2%);
  }
}
.swiper-info {
  width: 45.76%;
  margin-top: -4vw;
}
@media (max-width: 575px) {
  .swiper-info {
    width: 64%;
    margin-top: 0;
  }
}

.slide-places::before {
  content: "";
  position: absolute;
  width: 7.8vw;
  height: 4.8vw;
  left: 8vw;
  bottom: -1vw;
  background-image: url("../images/1x/map-ab-place.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform-origin: 100% 50%;
  animation: swiper-info-before 1.2s ease-in-out infinite;
}
@media (max-width: 1399px) {
  .slide-places::before {
    left: 8.5vw;
  }
}
@media (max-width: 991px) {
  .slide-places::before {
    left: 12vw;
  }
}
@media (max-width: 768px) {
  .slide-places::before {
    left: 16vw;
  }
}
@media (max-width: 575px) {
  .slide-places::before {
    z-index: 9;
    width: 12vw;
    height: 6.8vw;
    left: 4vw;
    bottom: 4vw;
  }
}
@media (max-width: 575px) {
  .slide-places .map-box-m {
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 8vw;
  }
}

@keyframes swiper-info-before {
  0%, 100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
}
.swiper-info .swiper-slide {
  position: relative;
}
@media (max-width: 575px) {
  .swiper-info .swiper-slide {
    padding-bottom: 5vw;
  }
}

.btn-tag {
  position: absolute;
  cursor: pointer;
  width: 48%;
  min-height: 12px;
  bottom: 0;
}
.btn-tag > .position-absolute {
  top: 120%;
}
.btn-tag > .position-absolute:hover {
  display: block;
}
.btn-tag > .position-absolute::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.75vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -0.7vw;
  background-image: url("../images/SVG/chat-box.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.info-map-box {
  width: 62.5vw;
}
@media (max-width: 1399px) {
  .info-map-box {
    width: 64vw;
  }
}
@media (max-width: 991px) {
  .info-map-box {
    width: 80vw;
  }
}
@media (max-width: 768px) {
  .info-map-box {
    width: 95vw;
    z-index: 9;
  }
}
@media (max-width: 575px) {
  .info-map-box {
    width: 100%;
  }
}

div[data-showInfo] {
  cursor: pointer;
  position: relative;
}
div[data-showInfo]::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 56%;
  background-color: #3aa6fc;
  opacity: 0.75;
  top: 31%;
  left: 14%;
}
@media (max-width: 575px) {
  div[data-showInfo]::before {
    opacity: 0;
  }
}
div[data-showInfo]:hover::before {
  opacity: 0;
}

.trafic-block {
  position: relative;
  background-image: url("../images/bg-teach-top.png");
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 10vw auto;
  z-index: 8;
}
@media (max-width: 575px) {
  .trafic-block {
    padding-top: 10vw;
  }
}

.BG-tottori-RL {
  position: relative;
  overflow: hidden;
}

.BG-tottori-RL::before,
.BG-tottori-RL::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  background-size: 100% auto;
  pointer-events: none;
}

.BG-tottori-RL::before {
  z-index: 3;
  height: 100%;
  background-image: url("../images/BG-tottori-RL.png");
  animation: BG-tottori-RL 2s ease-in-out infinite;
}

.BG-tottori-RL::after {
  z-index: 4;
  height: 100%;
  background-image: url("../images/BG-tottori-RL-add.png");
}
@media (max-width: 575px) {
  .BG-tottori-RL::after {
    content: unset;
  }
}

@keyframes BG-tottori-RL {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
@keyframes BG-tottori-RL-add {
  0% {
    opacity: 0;
    transform: translateY(0%);
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-50%);
  }
}
.ul-steps {
  width: 63vw;
}
.ul-steps li {
  position: absolute;
  top: 0;
  width: 63vw;
}

.ul-processes {
  margin-top: 2.5vw;
}
.ul-processes li {
  position: relative;
  z-index: 9;
}
.ul-processes img {
  height: 5.7vw;
  width: auto;
}
.ul-processes img.active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.ul-processes img.active:not(.now-step) {
  cursor: pointer;
}
.ul-processes img.active.now-step,
.ul-processes img.active:hover {
  opacity: 1;
}

.slide-places {
  position: absolute;
  top: 6vw;
}
@media (max-width: 1399px) {
  .slide-places {
    top: 6.2vw;
  }
}
@media (max-width: 991px) {
  .slide-places {
    top: 8vw;
  }
}
@media (max-width: 768px) {
  .slide-places {
    top: 9.5vw;
  }
}
@media (max-width: 575px) {
  .slide-places {
    top: 0vw;
    position: relative;
    background-color: #b7e5f2;
  }
}

.btn-tag .mirror-button-wrapper {
  width: 100%;
}

.btn-tag button[id*=mirror-add-poi],
button[id*=tripBtn-] {
  border-radius: 8px;
  width: calc(100% - 16px);
  padding: 0.1vw 1vw;
  font-size: 1vw;
  font-weight: 500;
  display: flex;
  justify-content: center;
  border: 2px rgba(255, 255, 255, 0.9058823529) solid;
  margin-bottom: -8px;
}
.btn-tag button[id*=mirror-add-poi]:hover,
button[id*=tripBtn-]:hover {
  border: 2px #ffffff solid;
}
@media (max-width: 575px) {
  .btn-tag button[id*=mirror-add-poi],
  button[id*=tripBtn-] {
    font-size: 3vw;
  }
}

.btn-tag button[id*=mirror-add-poi] {
  border-radius: 99rem;
}

.btn-tag button[id*=mirror-save-poi] {
  display: none;
}

div[data-funliday-copy-trip] {
  display: flex;
  justify-content: center;
}
div[data-funliday-copy-trip] button[id*=tripBtn-] {
  background-color: #3aa6fc;
}
div[data-funliday-copy-trip] button[id*=tripBtn-]:hover {
  background-color: #308edb;
}

.copy-trip {
  margin-top: 1vw;
  position: relative;
  width: 20vw;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575px) {
  .copy-trip {
    width: 50vw;
  }
}
.copy-trip::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 6.8vw;
  height: 3.4vw;
  background-image: url("../images/1x/map-ab-trip.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: -1vw;
  transform-origin: 100% 50%;
  animation: copy-trip-before 1.2s ease-in-out infinite;
}
@media (max-width: 575px) {
  .copy-trip::before {
    width: 14vw;
    height: 10.4vw;
  }
}
.copy-trip::before {
  left: -7vw;
}
@media (max-width: 575px) {
  .copy-trip::before {
    left: -15vw;
  }
}
@media (max-width: 575px) {
  .copy-trip {
    margin-top: 0;
  }
}

@keyframes copy-trip-before {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 0.95;
  }
}
.map-bg {
  width: 80%;
  height: 24.3vw;
  background-image: url("../images/1.5x/map-box-bg@1.5x.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .map-bg {
    height: 24.9vw;
  }
}
@media (max-width: 991px) {
  .map-bg {
    height: 32vw;
  }
}
@media (max-width: 768px) {
  .map-bg {
    height: 38vw;
  }
}
@media (max-width: 575px) {
  .map-bg {
    width: 160%;
    height: 76vw;
  }
}

.ul-map-mark li:not(.ma-hide) {
  position: absolute;
  width: 7.4%;
}
.ul-map-mark li:not(.ma-hide)::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -10%;
  background-image: url("../images/info/1.5x/map-tag-light.png");
  background-size: cover;
  z-index: 9;
  mix-blend-mode: plus-lighter;
  opacity: 0.4;
  animation: lighting 2s infinite ease-in-out;
  pointer-events: none;
}

@media (max-width: 575px) {
  .swiper-info-box {
    margin-top: -31vw;
    background-color: rgba(183, 229, 242, 0.8509803922);
    position: relative;
    padding: 4vw 0;
  }
}

.shining {
  animation: shining 2.5s infinite ease-in-out;
}

@keyframes lighting {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes shining {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.25;
  }
}
.map-mark {
  display: block;
  width: auto;
  cursor: pointer;
  width: 100%;
}
.map-mark:hover {
  transform: scale(1.07);
}
.map-mark.name1line {
  height: 4.2vw;
}
.map-mark.name2line {
  height: 5vw;
}

.ul-map-mark-gogo li:nth-child(1) {
  left: 75%;
  top: 0%;
}
.ul-map-mark-gogo li:nth-child(2) {
  top: 19%;
  left: 26%;
}
.ul-map-mark-gogo li:nth-child(3) {
  top: 10%;
  left: 21%;
}
.ul-map-mark-gogo li:nth-child(4) {
  left: 85%;
  top: -7%;
}
.ul-map-mark-gogo li:nth-child(5) {
  top: 3%;
  left: 70%;
}
.ul-map-mark-gogo li:nth-child(6) {
  top: 8%;
  left: 80%;
}
.ul-map-mark-gogo li:nth-child(7) {
  left: 47%;
  top: 24%;
}
.ul-map-mark-gogo li:nth-child(8) {
  top: 3%;
  left: 3%;
}

.ul-map-mark-love li:nth-child(1) {
  left: 65%;
  top: 5%;
}
.ul-map-mark-love li:nth-child(2) {
  top: 5%;
  left: 4%;
}
.ul-map-mark-love li:nth-child(3) {
  top: 29%;
  left: 18%;
}
.ul-map-mark-love li:nth-child(4) {
  left: 70%;
  top: 2%;
}
.ul-map-mark-love li:nth-child(5) {
  top: 9%;
  left: 51%;
}
.ul-map-mark-love li:nth-child(7) {
  top: 16%;
  left: 75%;
}
.ul-map-mark-love li:nth-child(6) {
  left: 56%;
  top: 28%;
}
.ul-map-mark-love li:nth-child(8) {
  top: -2%;
  left: 76%;
}

.ul-map-mark-food li:nth-child(1) {
  left: 12%;
  top: 14%;
}
.ul-map-mark-food li:nth-child(2) {
  top: -5%;
  left: 79%;
}
.ul-map-mark-food li:nth-child(3) {
  top: 0%;
  left: 1%;
}
.ul-map-mark-food li:nth-child(4) {
  left: 6%;
  top: 2%;
}
.ul-map-mark-food li:nth-child(5) {
  top: 0%;
  left: 69.5%;
}
.ul-map-mark-food li:nth-child(6) {
  top: 20%;
  left: 24%;
}
.ul-map-mark-food li:nth-child(7) {
  left: 74%;
  top: 15%;
}
.ul-map-mark-food li:nth-child(8) {
  top: 17%;
  left: 47.6%;
}
.ul-map-mark-food li:nth-child(9) {
  top: 28%;
  left: 80%;
}

.ul-map-mark-okok li:nth-child(1) {
  left: 83.5%;
  top: 15%;
}
.ul-map-mark-okok li:nth-child(2) {
  top: 17%;
  left: 47%;
}
.ul-map-mark-okok li:nth-child(3) {
  top: 1%;
  left: 4%;
}
.ul-map-mark-okok li:nth-child(4) {
  top: 8%;
  left: 42.5%;
}
.ul-map-mark-okok li:nth-child(5) {
  left: 73.5%;
  top: -1%;
}
.ul-map-mark-okok li:nth-child(6) {
  top: 8%;
  left: 77.5%;
}
.ul-map-mark-okok li:nth-child(7) {
  top: 24%;
  left: 26%;
}
.ul-map-mark-okok li:nth-child(8) {
  top: 6%;
  left: 69.5%;
}

.map-tiger {
  position: absolute;
  width: 20%;
  bottom: 3vw;
  right: 3%;
}
.map-tiger img {
  width: 100%;
  height: auto;
}
@media (max-width: 575px) {
  .map-tiger {
    position: relative;
    width: 100%;
    bottom: unset;
    right: unset;
    background-color: #b7e5f2;
  }
  .map-tiger img {
    width: 40%;
    margin: auto;
  }
}

button[id*=tripBtn-] {
  position: relative;
  animation: opopop 2s infinite ease-in-out;
}

@keyframes opopop {
  0%, 60%, 100% {
    opacity: 1;
  }
  30% {
    opacity: 0.7;
  }
}
.foods-copy button[id*=tripBtn-]::after {
  content: ": 吃貨虎的舌頭帶路";
}

.car-copy button[id*=tripBtn-]::after {
  content: ": 衝鋒虎的自駕冒險";
}

.love-copy button[id*=tripBtn-]::after {
  content: ": 戀愛虎的羅曼蒂克";
}

.okok-copy button[id*=tripBtn-]::after {
  content: ": 隨性虎的輕鬆漫遊";
}/*# sourceMappingURL=all.css.map */