@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Dancing+Script:wght@700&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: #ec236d;
  --rwd-60px: 60px;
  --rwd-75px: 75px;
}

@media (max-width: 1399px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
  }
}
@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 {
    --swiper-navigation-size: 24px;
  }
}
/*
@media (max-width: 480px) {
    :root{

    }
} */
@media (max-width: 320px) {
  :root {
    --rwd-75px: 11.12vw;
    --rwd-60px: 5.6vw;
  }
}
/* 通用 */
a {
  text-decoration: none;
}

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

.img {
  max-width: 100%;
}

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

.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: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

#go-top {
  border: 0;
  background: none;
  bottom: 3vw;
  right: 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;
  right: 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: 80px;
    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;
  }
}
/* menu */
#menu {
  position: absolute;
  z-index: 99;
  width: 100%;
}
@media (max-width: 991px) {
  #menu {
    align-items: center;
    justify-content: space-between;
  }
}
#menu > div {
  position: absolute;
}
#menu.show-menu {
  position: fixed;
}

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

.nav-item {
  margin-bottom: 8px;
}
.nav-item a {
  color: #fff;
  font-weight: normal;
  font-size: 22px;
  text-align: center;
  margin: 0 8px;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
  background-color: #f1919d;
}
.nav-item a:hover {
  color: #f1919d;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .nav-item a {
    font-size: 18px;
    margin: 4px 8px;
    padding: 2px 16px;
  }
}

.logos > a {
  display: inline-block;
  vertical-align: top;
}

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

#menu-nav {
  background-color: rgba(235, 158, 162, 0.7803921569);
}
@media (max-width: 991px) {
  #menu-nav > ul {
    border-radius: 0;
    padding-bottom: 4vw;
  }
}
@media (max-width: 575px) {
  #menu-nav > ul {
    padding-bottom: 3vw;
  }
}

#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-link ul {
  display: flex;
  align-items: center;
  flex-direction: row;
}

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

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

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

.menu-link {
  position: fixed;
  top: 0px;
  right: 0;
  width: 30vw;
  padding-top: 120px;
  height: 100vh;
  overflow: hidden;
  z-index: 9;
  transform: translateX(100%);
}
.menu-link.left-side {
  right: unset;
  left: 0;
  transform: translateX(-100%);
}
@media (max-width: 991px) {
  .menu-link {
    width: 35vw;
  }
}
@media (max-width: 575px) {
  .menu-link {
    width: 100%;
    z-index: -1;
  }
}

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

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

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  border: 2px solid var(--swiper-theme-color);
  background: unset;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--swiper-theme-color);
  opacity: 1;
}

.swiper-add-arrows {
  position: relative;
  width: 68%;
  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: 40%;
  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: rotate(180deg);
}

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

@media (max-width: 990px) {
  .hide-3-items .arr-left,
  .hide-3-items .arr-right {
    display: block;
  }
}
@media (max-width: 767px) {
  .swiper-add-arrows {
    width: 72%;
  }
}
@media (max-width: 575px) {
  .arr-left {
    left: -4vw;
  }
  .swiper-add-arrows {
    width: 85%;
  }
  .arr-right {
    right: -4vw;
    transform: rotate(180deg);
  }
  .arr-left,
  .arr-right {
    background-size: 100%;
  }
}
.kv {
  height: 56vw;
  position: relative;
}
@media (max-width: 575px) {
  .kv {
    height: 163vw;
  }
}

.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 56vw;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 575px) {
  .video-background {
    height: 163vw;
  }
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101vw;
  height: 57vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 575px) {
  .video-background iframe {
    height: 165vw;
  }
}

.op-page,
.end-box {
  background-image: url("../images/game/1x/op-ab-bottom.png");
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.btn-game-op {
  width: 19vw;
  cursor: pointer;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -7vw;
}
@media (max-width: 767px) {
  .btn-game-op {
    width: 28%;
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .btn-game-op {
    width: 36%;
  }
}

.game-logos {
  width: 30%;
  right: 3%;
  top: 3%;
  position: absolute;
}
@media (max-width: 767px) {
  .game-logos {
    width: 42%;
  }
}
@media (max-width: 575px) {
  .game-logos {
    position: relative;
    right: 1%;
    top: 0;
    width: 60%;
    margin-bottom: 10%;
  }
}

.q-asking {
  color: #6770b4;
  font-size: 2.4vw;
}
@media (max-width: 1399px) {
  .q-asking {
    font-size: 2.85vw;
  }
}
@media (max-width: 991px) {
  .q-asking {
    font-size: 3.25vw;
  }
}
@media (max-width: 767px) {
  .q-asking {
    font-size: 3.75vw;
  }
}
@media (max-width: 575px) {
  .q-asking {
    font-size: 5vw;
  }
}

.q-items {
  background-color: #fff;
  color: #6770b4;
  font-size: 1.24vw;
}
@media (max-width: 1399px) {
  .q-items {
    font-size: 1.75vw;
  }
}
@media (max-width: 991px) {
  .q-items {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .q-items {
    font-size: 2.5vw;
  }
}
@media (max-width: 575px) {
  .q-items {
    font-size: 4vw;
  }
}

.game-btns {
  margin-top: -4vw;
  left: 26%;
}
@media (max-width: 767px) {
  .game-btns {
    left: unset;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}

.btn-buy,
.btn-share {
  width: 12.8vw;
  height: auto;
}
@media (max-width: 767px) {
  .btn-buy,
  .btn-share {
    width: 17vw;
  }
}
@media (max-width: 575px) {
  .btn-buy,
  .btn-share {
    width: 32vw;
  }
}

.end-note {
  width: 19%;
  display: block;
  height: auto;
}
@media (max-width: 575px) {
  .end-note {
    width: 30%;
  }
}

.end-info {
  width: 65%;
}
.end-info .end-info-box {
  width: 41%;
}
.end-info .end-photos-box {
  width: 58%;
}
@media (max-width: 575px) {
  .end-info {
    width: 85%;
  }
  .end-info .end-info-box,
  .end-info .end-photos-box {
    width: 100%;
    display: none;
  }
}

@media (max-width: 575px) {
  .end-box .game-logos {
    right: unset;
    top: unset;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
  }
}

.btn-close-game {
  border: none;
  background: transparent;
}
.btn-close-game img {
  width: 32px;
  height: 32px;
}
@media (max-width: 575px) {
  .btn-close-game img {
    width: 16px;
    height: 16px;
  }
}

body {
  background-color: #8ad2ea;
}
:root {
  --bs-box-shadow: rgba(144, 137, 126, 0.87);
  --bs-primary-rgb: 13, 100, 202;
  --index-primary: #5a93ca;
  --index-secondry: #f789ab;
  --fz-normal: 1.1vw;
}

.img-title {
  width: 50%;
}
@media (max-width: 575px) {
  .img-title {
    width: 75%;
  }
}

.title-map {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.6vw;
}
@media (max-width: 575px) {
  .title-map {
    margin-left: 0%;
    padding-top: 0vw;
  }
}

.game-op-box > [data-gop] {
  width: 59.8vw;
  height: auto;
}

.game-block {
  background-color: #c5e0df;
  background-image: url(../images/event/ab-game-bottom.png);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .game-block {
    padding-bottom: 8vw;
    background-size: 200% auto;
  }
}

.btn-game {
  width: 32vw;
  top: 7vw;
  left: 10vw;
  z-index: 5;
  position: absolute;
}
@media (max-width: 767px) {
  .btn-game {
    left: 8vw;
  }
}
@media (max-width: 575px) {
  .btn-game {
    position: relative;
    top: unset;
    left: unset;
    margin: auto;
    width: 50%;
    margin-top: -14vw;
  }
}

.sw-game-box {
  width: 78vw;
  padding: 8vw 0;
}
@media (max-width: 767px) {
  .sw-game-box {
    width: 84vw;
  }
}

.game-slide-m-img {
  width: 80%;
  height: auto;
}

.game-slide-m-font {
  height: 7vw;
  right: 5%;
  bottom: 20%;
  border-radius: 2vw;
  background-color: #d7edec;
}

.kagoshima-event-block {
  background-image: url("../images/event/bg-Kagoshima-event.png");
  background-size: auto 100%;
  background-repeat: repeat-x;
}

.kagoshima-event-img-box {
  width: 46%;
  position: relative;
}
.kagoshima-event-img-box img {
  position: relative;
  top: 17%;
}
@media (max-width: 991px) {
  .kagoshima-event-img-box img {
    top: 25%;
  }
}
@media (max-width: 767px) {
  .kagoshima-event-img-box {
    width: 40%;
  }
  .kagoshima-event-img-box img {
    top: 33%;
  }
}
@media (max-width: 575px) {
  .kagoshima-event-img-box {
    width: 85%;
  }
}

.from-title-img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .from-title-img {
    width: auto;
    height: 115px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .from-title-img {
    width: auto;
    height: 125px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .from-title-img {
    height: 25.5vw;
  }
}

.event-link-Questionnaire-01 {
  width: 10%;
  height: 8%;
  left: 49%;
  top: 45%;
  opacity: 0;
}
@media (max-width: 1199px) {
  .event-link-Questionnaire-01 {
    width: 12%;
    height: 7%;
    left: 55%;
    top: 57%;
  }
}
@media (max-width: 575px) {
  .event-link-Questionnaire-01 {
    width: 19%;
    height: 5%;
    left: 4%;
    top: 49%;
  }
}

.event-link-Questionnaire-02 {
  width: 11%;
  height: 8%;
  left: 67%;
  top: 78%;
  opacity: 0;
}
@media (max-width: 1199px) {
  .event-link-Questionnaire-02 {
    width: 13%;
    height: 7%;
    left: 46%;
    top: 84%;
  }
}
@media (max-width: 575px) {
  .event-link-Questionnaire-02 {
    width: 20%;
    height: 4%;
    left: 47%;
    top: 81%;
  }
}

@media (max-width: 575px) {
  .table-ps-fonts {
    font-size: 10px;
  }
}

.kagoshima-event-title {
  position: relative;
}
.kagoshima-event-title .event-title-light {
  width: 41.5%;
  height: auto;
  mix-blend-mode: plus-lighter;
  position: absolute;
  top: 15%;
  right: 55%;
}
@media (max-width: 991px) {
  .kagoshima-event-title .event-title-light {
    right: 50%;
  }
}
.kagoshima-event-title .event-title {
  width: 60%;
  height: auto;
  position: relative;
  right: -32%;
  transform: translateY(10%);
}
@media (max-width: 991px) {
  .kagoshima-event-title .event-title {
    right: -38%;
  }
}
@media (max-width: 575px) {
  .kagoshima-event-title .event-title {
    transform: translateY(0%);
    width: 50%;
    right: -53%;
  }
}
@media (max-width: 575px) {
  .kagoshima-event-title {
    overflow-x: hidden;
  }
}

.btn-ka-join {
  width: 16%;
  height: 10%;
  top: 58%;
  left: 79%;
}
@media (max-width: 1199px) {
  .btn-ka-join {
    width: 16%;
    height: 6%;
    top: 67.5%;
    left: 64%;
  }
}
@media (max-width: 575px) {
  .btn-ka-join {
    width: 33%;
    height: 6%;
    top: 57%;
    left: 62%;
  }
}

.event-block {
  background-image: url("../images/event/bg-light-event02.png");
  background-size: cover;
  background-position: center center;
  padding-top: 15vw;
}
.event-block .event-title {
  width: 31.25vw;
  z-index: 9;
  top: 7%;
  left: 8.5%;
}
@media (max-width: 991px) {
  .event-block .event-title {
    left: 7%;
  }
}
@media (max-width: 575px) {
  .event-block {
    padding-top: 20vw;
  }
  .event-block .event-title {
    width: 46vw;
    top: 2vw;
    left: 0%;
  }
}

.btn-event-join {
  width: 15%;
  height: 6%;
  top: 43.5%;
  left: 60%;
  z-index: 9;
}
@media (max-width: 991px) {
  .btn-event-join {
    width: 18%;
    top: 41.5%;
    left: 62%;
  }
}
@media (max-width: 575px) {
  .btn-event-join {
    width: 32%;
    top: 31%;
    left: 58%;
  }
}

.event-info {
  margin: auto;
  width: 63vw;
  background-color: #fff;
  position: relative;
  padding-bottom: 7.5vw;
}
.event-info::before {
  content: "";
  width: 100%;
  display: block;
  height: 0;
  position: absolute;
  left: 0;
  padding-top: 5%;
  background-image: url("../images/event/event-block-top.png");
  background-size: 100% auto;
  background-position: top center;
  transform: translateY(-99%);
}
@media (max-width: 575px) {
  .event-info::before {
    background-image: url("../images/event/event-block-top-m.png");
    padding-top: 7%;
    transform: translateY(-95%);
  }
}
.event-info .btn-notice {
  width: 36%;
}
@media (max-width: 991px) {
  .event-info {
    width: 75vw;
  }
  .event-info .btn-notice {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .event-info {
    width: 90vw;
  }
  .event-info .btn-notice {
    width: 58%;
  }
}

@media (max-width: 1199px) {
  :root {
    --fz-normal: 1.4vw;
  }
}
@media (max-width: 991px) {
  :root {
    --fz-normal: 1.75vw;
  }
}
@media (max-width: 575px) {
  :root {
    --fz-normal: 3.5vw;
  }
}
.gift-list li {
  width: 20%;
  padding: 1% 2%;
}
.gift-list li a:hover {
  opacity: 0.85;
}

.map-block {
  background-image: url("../images/map/bg-map.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: -4vw;
  padding-top: 3vw;
}
@media (max-width: 575px) {
  .map-block {
    overflow-x: hidden;
  }
}

.map-box {
  width: 88vw;
  margin-bottom: 4vw;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .map-box {
    width: 95vw;
  }
}
@media (max-width: 767px) {
  .map-box {
    width: 98vw;
  }
}
@media (max-width: 575px) {
  .map-box {
    width: 120vw;
    margin-left: -20vw;
    margin-bottom: 9vw;
  }
}

.map-ul li {
  position: absolute;
  width: 10.5%;
  cursor: pointer;
}
@media (max-width: 575px) {
  .map-ul li {
    width: 15%;
  }
}
.map-ul li:hover {
  scale: 0.925;
}
.map-ul li img {
  display: block;
  width: 100%;
}
.map-ul li:nth-child(1) {
  left: 6%;
  bottom: 1%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(1) {
    left: 17%;
    bottom: -10%;
  }
}
.map-ul li:nth-child(2) {
  left: 20%;
  bottom: 9%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(2) {
    bottom: 3%;
  }
}
.map-ul li:nth-child(3) {
  left: 13%;
  bottom: 25%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(3) {
    left: 17%;
  }
}
.map-ul li:nth-child(4) {
  left: 19%;
  bottom: 34%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(4) {
    bottom: 37%;
  }
}
.map-ul li:nth-child(5) {
  left: 30%;
  bottom: 32%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(5) {
    left: 33%;
    bottom: 34%;
  }
}
.map-ul li:nth-child(6) {
  left: 32%;
  bottom: 19%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(6) {
    left: 34%;
    bottom: 17%;
  }
}
.map-ul li:nth-child(7) {
  left: 52%;
  bottom: 26%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(7) {
    bottom: 29%;
  }
}
.map-ul li:nth-child(8) {
  left: 85%;
  bottom: 72%;
}
.map-ul li:nth-child(9) {
  left: 50%;
  bottom: 16%;
}
@media (max-width: 575px) {
  .map-ul li:nth-child(9) {
    left: 52%;
  }
}

.map-info-block {
  width: 79vw;
  padding-bottom: 14.5vw;
  position: relative;
}
@media (max-width: 575px) {
  .map-info-block {
    width: 86vw;
  }
}

.swiperMap {
  border-radius: 3.1vw;
  box-shadow: 10px 10px 10px rgba(90, 147, 202, 0.4);
}
@media (max-width: 575px) {
  .swiperMap {
    box-shadow: none;
  }
}

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

.card-sw {
  position: relative;
  background-color: #b8e0f2;
  background-image: url(../images/map/1x/bg-sw-pink.png);
  background-position: right bottom;
  background-size: 45% auto;
  background-repeat: no-repeat;
  border: solid 3px #d7edec;
  border-radius: 3.1vw;
  padding: 2.8vw;
  width: 100%;
}
.card-sw .sw-map-img {
  width: 50%;
  height: auto;
  display: block;
}
.card-sw .sw-map-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-sw .sw-map-info img {
  display: block;
}
.card-sw .sw-map-info img:nth-child(1) {
  width: 85%;
  height: auto;
  margin-bottom: 3%;
}
.card-sw .sw-map-info img:nth-child(2) {
  width: 90%;
  height: auto;
}
@media (max-width: 991px) {
  .card-sw {
    padding: 2vw;
  }
}
@media (max-width: 575px) {
  .card-sw > div {
    flex-direction: column;
  }
  .card-sw .sw-map-img {
    width: 100%;
    height: 50vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-sw .sw-map-info {
    padding: 3vw;
  }
}

.btn-map-info {
  z-index: 5;
  padding-top: 4.2vw;
  padding-right: 4.2vw;
  width: 20%;
  top: 0;
}
@media (max-width: 575px) {
  .btn-map-info {
    padding-top: 4.2vw;
    padding-right: 0vw;
    margin-right: 9vw;
    width: 31.5%;
    top: 55vw;
  }
}

.btn-back-map {
  z-index: 5;
  padding-top: 4.2vw;
  padding-right: 3.2vw;
  width: 20%;
  top: 60%;
}
@media (max-width: 575px) {
  .btn-back-map {
    padding-top: 4.2vw;
    padding-right: 2vw;
    width: 35%;
    top: 66vw;
  }
}

.kol-block {
  background-image: url(../images/kol/bg-kol-top.png);
  background-color: #fff;
  background-repeat: no-repeat;
  padding-top: 24px;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .kol-block {
    padding-bottom: 40px;
  }
}

.kol-footer {
  height: 3vw;
}
@media (max-width: 575px) {
  .kol-footer {
    height: 5vw;
  }
}

.gift-ul {
  width: 80%;
  position: relative;
  gap: 3%;
  margin-top: -7%;
  margin-bottom: 3%;
}
.gift-ul li {
  width: 17%;
  margin-bottom: 12px;
}
.gift-ul li:hover {
  transform: scale(0.95);
}
.gift-ul li img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 575px) {
  .gift-ul {
    width: 100%;
    gap: 4%;
    margin-top: 4%;
  }
  .gift-ul li {
    width: 30%;
  }
}

@media (max-width: 575px) {
  .kol-block .swiper-add-arrows {
    width: 70%;
  }
}

.captchaStr {
  font-family: "Dancing Script";
  letter-spacing: 2px;
}/*# sourceMappingURL=all.css.map */