@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: #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: 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.025);
}

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

.hover-opacity:hover {
  opacity: 0.8;
}

.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-box {
  position: absolute;
  z-index: 99;
  width: 100%;
}
@media (max-width: 991px) {
  .menu-box {
    align-items: center;
    justify-content: space-between;
  }
}
.menu-box > div {
  position: absolute;
}
.menu-box.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: #3b3b85;
}
.nav-item a:hover {
  color: #3b3b85;
  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: 13vw;
  height: auto;
  margin-left: 1vw;
}
@media (max-width: 991px) {
  .logos img {
    width: auto;
    height: 10vw;
  }
}
@media (max-width: 575px) {
  .logos img {
    height: 16vw;
  }
}

.menu-box-nav {
  background-color: rgba(59, 59, 133, 0.8666666667);
}
@media (max-width: 991px) {
  .menu-box-nav > ul {
    border-radius: 0;
    padding-bottom: 4vw;
  }
}
@media (max-width: 575px) {
  .menu-box-nav > ul {
    padding-bottom: 3vw;
  }
}

.menu-box-btn img {
  display: block;
  padding: 0.5vw;
  width: 5vw;
  height: auto;
}
@media (max-width: 767px) {
  .menu-box-btn img {
    width: 7.5vw;
  }
}
@media (max-width: 575px) {
  .menu-box-btn img {
    width: 11vw;
  }
}

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

/* TODO: MENU RWD */
.menu-box.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: 64px;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  transform: translateX(100%);
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
  .menu-link {
    width: 35vw;
  }
}
@media (max-width: 575px) {
  .menu-link {
    width: 100%;
  }
}

.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: 1600px) {
  .swiper-add-arrows {
    width: 80%;
  }
}
@media (max-width: 1199px) {
  .swiper-add-arrows {
    width: 85%;
  }
  .arr-left, .arr-right {
    background-size: 50%;
  }
}
@media (max-width: 1024px) {
  .swiper-add-arrows {
    width: 90%;
  }
  .arr-left, .arr-right {
    background-size: 50%;
  }
}
@media (max-width: 990px) {
  .hide-3-items .arr-left, .hide-3-items .arr-right {
    display: block;
  }
}
@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%;
  }
}
.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 56vw;
  z-index: -1; /* 確保背景不遮擋其他內容 */
  overflow: hidden;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101vw; /* 確保影片覆蓋整個背景 */
  height: 57vw;
  transform: translate(-50%, -50%);
  pointer-events: none; /* 防止用戶點擊影片 */
}

@media (max-width: 767px) {
  .video-background {
    height: 180vw;
  }
  .video-background iframe {
    height: 180vw;
  }
}
/*
HTML 結構

  <section id="kv" class="position-relative kv">
    <!-- btn -->
    <div id="mute-button" style="background-size: cover;position: absolute; z-index: 3;background-image: url('./images/music-op.png');opacity: 0.75; left: 48.75vw; bottom: 5vw; cursor: pointer;"></div>
    <!-- yt -->
    <div class="video-background">
      <div id="video-player"></div>
      <div id="video-player-m"></div>
  </div>

*/
: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;
}

@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;
  }
}
.img-title {
  width: 70.6770833333vw;
}
@media (max-width: 767px) {
  .img-title {
    width: 100%;
  }
}

.story-sw-box {
  position: absolute;
}
@media (max-width: 767px) {
  .story-sw-box {
    position: relative;
  }
}

.story-sw {
  width: 100%;
}
.story-sw .swiper-slide {
  padding: 5vw calc((100% - 84.5833333333vw) / 2);
}
@media (max-width: 767px) {
  .story-sw .swiper-slide {
    padding: 2vw;
  }
}

.table-block {
  background-size: 100% auto, 100% auto, 100vw auto;
  background-position: center top, center bottom, center top;
  background-repeat: no-repeat, no-repeat, no-repeat;
  padding-top: 3.5vw;
  background-image: url("../images/points/point-ab-top.png"), url("../images/points/point-ab-bottom.png"), url("../images/deskbg/bg_table.jpg?1211");
  background-color: #e087a3;
  min-height: 195.3125vw;
}
@media (max-width: 991px) {
  .table-block {
    background-size: 100% auto, 100% auto, 110vw auto;
    min-height: 214.84375vw;
  }
}
@media (max-width: 767px) {
  .table-block {
    background-size: 100% auto;
    background-position: center top;
    background-repeat: repeat;
    padding-top: 8vw;
    background-image: url("../images/bg-paper.jpg");
    min-height: unset;
  }
}

@media (max-width: 767px) {
  .points-block {
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url("../images/points/point-bg-top-m.png");
    background-position: left top;
  }
}

.table-box-absolute {
  top: 14.4791666667vw;
  position: absolute;
}
@media (max-width: 767px) {
  .table-box-absolute {
    top: unset;
    position: relative;
  }
}

.table-box {
  width: 69.0104166667vw;
  position: relative;
}
@media (max-width: 1399px) {
  .table-box {
    width: 79.3619791667vw;
  }
}
@media (max-width: 767px) {
  .table-box {
    width: 93.8722294654vw;
  }
}
@media (max-width: 575px) {
  .table-box {
    width: 100%;
  }
}

.table-tabs {
  width: 98%;
  margin-left: 0.5%;
  opacity: 0;
  position: absolute;
}
.table-tabs li {
  width: 16.6666666667%;
  border-bottom: none;
  height: 3.6458333333vw;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  background-color: #9697ca;
  color: #fff;
  line-height: 1.35rem;
  padding: 8px 0;
}
.table-tabs li.table-active {
  background-color: #c6729b;
}
@media (max-width: 767px) {
  .table-tabs {
    position: relative;
    margin-left: unset;
    opacity: 1;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2vw;
    margin-bottom: 2vw;
  }
  .table-tabs li {
    height: auto;
    width: 30%;
    font-size: 3.5vw;
  }
}
@media (max-width: 575px) {
  .table-tabs li {
    font-size: 4vw;
  }
}

.table-ps {
  font-size: 1.1vw;
}
@media (max-width: 767px) {
  .table-ps {
    margin-top: 1vw;
    font-size: 3vw;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .table-ps {
    font-size: 3.75vw;
  }
}

.table {
  vertical-align: middle;
}
.table > :not(caption) > * > * {
  padding: 0.5vw 1vw;
}
.table th,
.table td {
  text-align: center;
  vertical-align: middle;
}
.table th {
  background-color: #bec3e3;
  font-size: 2.75vw;
  font-weight: 500;
  white-space: nowrap;
}
.table td {
  background-color: #e6e0f0;
  font-size: 3vw;
  font-weight: 500;
  line-height: 5vw;
}
@media (max-width: 575px) {
  .table th {
    background-color: #bec3e3;
    font-size: 3.75vw;
    font-weight: 500;
    white-space: nowrap;
  }
  .table td {
    background-color: #e6e0f0;
    font-size: 4vw;
    font-weight: 500;
    line-height: 5vw;
  }
}

.table-m-outerbox h3 {
  margin-bottom: 0.75vw;
  padding: 0.75vw 0;
  color: #fff;
  font-size: 4.5vw;
  font-weight: 400;
}
@media (max-width: 575px) {
  .table-m-outerbox {
    font-size: 5.6vw;
  }
}

.table-m-box {
  width: 100%;
  overflow-x: auto;
}

.table-bordered > :not(caption) > * {
  border-width: 2px 0;
}

.title-points {
  width: 50%;
  left: 5%;
  top: 43vw;
  position: absolute;
}
@media (max-width: 767px) {
  .title-points {
    position: relative;
    width: 75%;
    left: unset;
    top: unset;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0px 0px 2px rgb(255, 255, 255));
  }
}

.points-ul {
  position: absolute;
  top: 64.6vw;
  gap: 3.0208333333vw;
  display: flex;
  flex-direction: column;
}
.points-ul li {
  height: 15.8854166667vw;
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.points-ul li:nth-child(1), .points-ul li:nth-child(3), .points-ul li:nth-child(5) {
  margin-left: 25vw;
}
.points-ul li:nth-child(2), .points-ul li:nth-child(4) {
  margin-left: 50vw;
}
.points-ul h3 {
  color: #7f63a9;
  font-size: 2.1354166667vw;
}
.points-ul p {
  font-size: 1.3541666667vw;
  letter-spacing: -1px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .points-ul {
    gap: 2.8645833333vw;
  }
  .points-ul li {
    height: 16vw;
  }
}
@media (max-width: 991px) {
  .points-ul {
    gap: 3.1510416667vw;
    top: 71vw;
  }
  .points-ul li {
    height: 17.6vw;
    width: 27.5vw;
  }
  .points-ul li:nth-child(1), .points-ul li:nth-child(3), .points-ul li:nth-child(5) {
    margin-left: 23vw;
  }
  .points-ul li:nth-child(2), .points-ul li:nth-child(4) {
    margin-left: 50vw;
  }
  .points-ul h3 {
    font-size: 2.3489583333vw;
  }
  .points-ul p {
    font-size: 1.4895833333vw;
  }
}
@media (max-width: 767px) {
  .points-ul {
    background: linear-gradient(to bottom, rgba(132, 189, 231, 0) 0%, #84bde7 10%, #84bde7 100%);
    position: relative;
    margin-top: 48vw;
    top: unset;
  }
  .points-ul li {
    height: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .points-ul li:nth-child(1), .points-ul li:nth-child(3), .points-ul li:nth-child(5) {
    margin-left: unset;
  }
  .points-ul li:nth-child(1) h3,
  .points-ul li:nth-child(1) p, .points-ul li:nth-child(3) h3,
  .points-ul li:nth-child(3) p, .points-ul li:nth-child(5) h3,
  .points-ul li:nth-child(5) p {
    margin-left: 18vw;
  }
  .points-ul li:nth-child(2), .points-ul li:nth-child(4) {
    margin-left: unset;
  }
  .points-ul li:nth-child(2) h3,
  .points-ul li:nth-child(2) p, .points-ul li:nth-child(4) h3,
  .points-ul li:nth-child(4) p {
    margin-left: 4vw;
  }
  .points-ul li img {
    position: relative;
    z-index: 5;
  }
  .points-ul li > div {
    background-color: #d6eefb;
    padding: 7.5vw 7.5vw 5vw 7.5vw;
    margin-top: -4.5vw;
    margin-bottom: 3.5vw;
    z-index: 3;
  }
  .points-ul h3 {
    font-size: 4.5vw;
    width: 64vw;
  }
  .points-ul p {
    font-size: 3.2vw;
    margin-bottom: 0;
    width: 64vw;
  }
}
@media (max-width: 767px) and (max-width: 575px) {
  .points-ul h3 {
    font-size: 5vw;
  }
  .points-ul p {
    font-size: 4vw;
  }
}

.f-point-05 {
  position: absolute;
  width: 41.6666666667vw;
  top: 165.5vw;
  color: #fff;
  text-align: end;
  right: 7.5%;
  padding-bottom: 5vw;
}
.f-point-05 h3 {
  font-size: 3.5416666667vw;
  font-style: italic;
}
.f-point-05 p {
  font-size: 1.4583333333vw;
  text-align: justify;
}
@media (max-width: 991px) {
  .f-point-05 {
    top: 184vw;
    right: 3%;
    width: 45.8333333333vw;
  }
  .f-point-05 h3 {
    font-size: 3.8958333333vw;
  }
  .f-point-05 p {
    font-size: 1.6041666667vw;
  }
}
@media (max-width: 767px) {
  .f-point-05 {
    width: 100%;
    top: unset;
    position: relative;
    right: unset;
    background-color: #df87a2;
  }
  .f-point-05 h3 {
    font-size: 5vw;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .f-point-05 p {
    font-size: 3.2vw;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .f-point-05 h3 {
    font-size: 5.6vw;
  }
  .f-point-05 p {
    font-size: 4vw;
  }
}

.btn-more {
  display: block;
  width: 18.3854166667vw;
}
@media (max-width: 767px) {
  .btn-more {
    width: 41.7209908735vw;
  }
}

.btn-point {
  margin-left: auto;
  transform: translateX(5%);
}
@media (max-width: 767px) {
  .btn-point {
    transform: unset;
    margin-left: auto;
    margin-right: auto;
  }
}

.story-block {
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 3.5vw;
  background-image: url("../images/deskbg/bg_02.jpg");
  min-height: 53.90625vw;
}
@media (max-width: 767px) {
  .story-block {
    padding-top: 8vw;
    padding-bottom: 8vw;
    background-image: url("../images/story/bg-m.jpg");
    min-height: unset;
    background-repeat: repeat;
  }
}

.food-block {
  background-size: 100% auto, 100% auto;
  background-position: center top, center bottom;
  background-repeat: no-repeat, repeat;
  padding-top: 1.5vw;
  background-image: url("../images/deskbg/bg_03-1230.jpg"), url("../images/bg-paper.jpg");
  min-height: 59.8958333333vw;
}
@media (max-width: 767px) {
  .food-block {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
}

.food-ul {
  gap: 1.6666666667vw 0.3125vw;
  justify-content: center;
  margin-top: 1vw;
}
@media (max-width: 1199px) {
  .food-ul {
    padding-bottom: 5vw;
  }
}
.food-ul li {
  width: 28.125vw;
}
@media (max-width: 1199px) {
  .food-ul li {
    width: 30vw;
  }
}
@media (max-width: 767px) {
  .food-ul li {
    width: 48vw;
  }
}

.food-text {
  margin: 2vw 0 4vw 0;
  font-size: 3.2vw;
  text-align: center;
  color: #153562;
}
@media (max-width: 575px) {
  .food-text {
    font-size: 4vw;
  }
}

.wifi-block {
  padding: 3.5vw 0;
  background-image: url("../images/deskbg/bg_04.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wifi-ul {
  margin-top: 2vw;
  font-weight: 300;
  font-size: 1.875vw;
  list-style: url("../images/wifi/SVG/wifi-li.svg");
}
.wifi-ul li {
  color: #fff;
}
@media (max-width: 767px) {
  .wifi-ul {
    width: 80%;
    font-size: 3.2vw;
    list-style: url("../images/wifi/SVG/wifi-li-m.svg");
  }
  .wifi-ul li {
    margin-bottom: 1vw;
  }
}
@media (max-width: 575px) {
  .wifi-ul {
    font-size: 4vw;
  }
  .wifi-ul li {
    margin-bottom: 1.25vw;
  }
}

.btn-wifi-box {
  margin-left: auto;
}
@media (max-width: 767px) {
  .btn-wifi-box {
    margin-right: auto;
  }
}

.coop-block {
  padding: 5vw 0;
  background-image: url("../images/coop/coop-bg.jpg");
  background-size: cover;
}

.coop-ul {
  width: 62.5vw;
}
.coop-ul > li {
  background-image: url("../images/bg-paper.jpg");
  border-radius: 24px;
  padding: 24px;
  margin: 1.5625vw 0;
  display: flex;
  box-shadow: 1px 1px 10px #041731;
}
.coop-ul > li > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.coop-ul > li .coop-logo {
  width: 75%;
}
@media (max-width: 767px) {
  .coop-ul > li {
    flex-direction: column;
    margin: 3.9113428944vw 0;
    border-radius: 12px;
  }
  .coop-ul > li .coop-logo {
    width: 50%;
  }
  .coop-ul > li > div {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .coop-ul > li {
    padding: 12px;
  }
}
@media (max-width: 575px) {
  .coop-ul {
    width: 76vw;
  }
}

.font-coop {
  font-size: 1.3020833333vw;
  text-align: justify;
}
.font-coop .ps {
  display: block;
  font-size: 1.1458333333vw;
  opacity: 0.75;
  line-height: 1.3020833333vw;
}
@media (max-width: 991px) {
  .font-coop {
    font-size: 1.4322916667vw;
  }
  .font-coop .ps {
    display: block;
    font-size: 1.2604166667vw;
    opacity: 0.75;
    line-height: 1.3020833333vw;
  }
}
@media (max-width: 767px) {
  .font-coop {
    font-size: 3.2vw;
  }
  .font-coop .ps {
    display: block;
    font-size: 3vw;
    line-height: 3.75vw;
  }
}
@media (max-width: 575px) {
  .font-coop {
    font-size: 4vw;
  }
  .font-coop .ps {
    display: block;
    font-size: 3.5vw;
    line-height: 3.75vw;
  }
}

.btn-coop {
  font-size: 1.25vw;
  padding: 0.1vw 1.5vw;
}
@media (max-width: 991px) {
  .btn-coop {
    font-size: 1.375vw;
  }
}
@media (max-width: 767px) {
  .btn-coop {
    font-size: 3vw;
  }
}
@media (max-width: 575px) {
  .btn-coop {
    font-size: 3.5vw;
    padding: 0.75vw 2.5vw;
  }
}

.kol-block {
  background-image: url("../images/kol/bg.jpg");
  background-size: cover;
  padding: 5vw 0;
}

.mySwiper {
  width: 80vw;
}
@media (max-width: 1199px) {
  .mySwiper {
    width: 88vw;
  }
}
@media (max-width: 767px) {
  .mySwiper {
    width: 94vw;
  }
}

.kol-sw-flex {
  align-items: center;
  padding: 1vw 0;
}
.kol-sw-flex a {
  display: block;
  width: 32.6041666667vw;
}
.kol-sw-flex a:hover {
  transform: scale(1.025);
}
.kol-sw-flex img {
  width: 100%;
  display: block;
  height: auto;
  filter: drop-shadow(1px 1px 5px rgba(155, 114, 38, 0.4));
}
@media (max-width: 1199px) {
  .kol-sw-flex a {
    width: 39.5833333333vw;
  }
}
@media (max-width: 767px) {
  .kol-sw-flex {
    flex-direction: column;
  }
  .kol-sw-flex a {
    width: 73.0117340287vw;
  }
}

.sw-kol-av {
  position: absolute;
  display: block;
  width: 8.9583333333vw;
  height: auto;
  top: 2.6041666667vw;
  left: calc(50% - 4.4791666667vw);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .sw-kol-av {
    width: 10.4166666667vw;
    left: calc(50% - 5.2083333333vw);
  }
}
@media (max-width: 767px) {
  .sw-kol-av {
    display: none;
  }
}

.kol-name-m {
  font-size: 4vw;
  right: 10%;
  transform: skewX(-5deg);
}/*# sourceMappingURL=all.css.map */