@charset "utf-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
.block1200 {
  display: none !important;
}
@media (max-width: 1200px) {
  .block1200 {
    display: block !important;
  }
  .none1200 {
    display: none !important;
  }
}



.spelist-wrap {
  position: relative;
  background-color: #fff;
}

.spelist-swiper {
  padding: 0 3vw;
  max-height: 39vw;
}

.special-box {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 60px;
}
.special-box img.spelist {
  max-width: 609px;
  width: 31.72vw;
}

.spelist-wrap .mainbtn-box {
    position: absolute;
    z-index: 1;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-left: 15px;
    max-width: 600px;
}

.spelist-wrap .mainbtn {
    position: relative;
    left: auto;
    right: auto;
    overflow: hidden;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #44372B;
    font-family: 'gowun';
    width: 46px;
    height: 46px;
    border: 1px solid #44372B;
    border-radius: 6px;
    margin-top: 0;
    margin-bottom: 10px;
}

.spelist-wrap .mainbtn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 20%;
  height: 20%;
  background-color: #44372B;
  opacity: 0;
  z-index: -1;
  
  border-radius: 6px;
  transition: all 0.7s ease;
}
@media (min-width:1200px){
  .spelist-wrap .mainbtn:hover {
    color: #fff;
  }
  .spelist-wrap .mainbtn:hover::before {
    width: 105%;
    height: 105%;
    background-color: #44372B;
    opacity: 1;
    border: 1px solid #44372B;
    transition: all 1s;
  }

}

/* ===========================
   반응형
=========================== */

@media (max-width:1200px) {
  .spelist-wrap .mainbtn-box {
    left: 50%;
    top: auto;
    bottom: 15px;
    transform: translate(-50%, 0);
    flex-direction: row;
    gap: 10px;
    margin-left: 0;
  }
  .spelist-wrap .mainbtn {
    background-color: #fff !important;
    border: none;
  }
}


@media (max-width: 1024px) {

  .spelist-swiper { 
    padding: 0;
    max-height: 700px;
  }

  .special-box img.spelist {
    width: 80vw;
  }
 
}
@media (max-width:768px) {
  .spelist-swiper {
    max-height: 88vw;
  }
  .spelist-wrap .mainbtn-box {
    bottom: -11%;
  }
  .spelist-wrap .mainbtn {
      font-size: 16px;
      width: 28px;
      height: 28px;
  }
}
@media (max-width: 500px) {

  .spelist-swiper {
    max-height: 96vw;
  }
  .special-box img.spelist {
    width: 90vw;
  }
 
}

