.banner-wrap{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.main-banner img{
  position: relative;
  border-radius: 25px;
  width: 100%;
  height: auto;
  box-shadow: 2px 4px 12.5px rgba(0, 0, 0, 0.50);
  transition: .3s;
  position: relative;
  transform:translateY(0px);
  display: block;
  margin: 0 auto ;
}



.main-banner:hover{
    transform:translateY(-4px);
}

.main-banner .txt{
  display: inline-flex;
  flex-direction: column;
  height: 100%;
}

.main-banner .txt h4 {
  color: #ffffff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FF7A7A, #FF9A6C);
  padding: 4px 12px;
  border-radius: 10px;
}

.main-banner .txt p{
  color: #bddff9;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  z-index: 1;
  opacity: 1;
  transition: all .3s;
}

.main-banner:hover .txt p {
  color: #ffffff;
  opacity: 0.8;
    transition: all .3s;
}

.main-banner .txt p.banner-memo{
color: #eaeaea;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: auto;
}

.main-banner:hover .txt p.banner-memo{
  color: #eaeaea;
  opacity: 1;
}



.main-banner:hover .img{

}

.full-banner{
  width: 100%;
  border-radius: 30px;
  background: #F7F7F9;
  padding: var(--content-pad);
  margin-top: 30px;
}

.full-banner .top h4{
    text-align: center;
    color: #0B0D0F;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.full-banner .bottom{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}

.full-banner .bottom div{
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.full-banner .bottom div p{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.full-banner .bottom div span{
  background: linear-gradient(135deg, #FF7A7A, #FF9A6C);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}


.full-banner .bottom div p.banner-memo{
    color: #808080;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: auto;
    opacity: 0.8;
    margin-top: 15px;

}

.img-wrap{
  max-width: 90%;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}

.img-wrap .img-box{
  position: relative;
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1/1;
  background-color: #eaeaea;
}

.img-wrap .img-box img{
  width: 100%;
  aspect-ratio: 1/1;
    object-fit: cover;
}

.img-wrap .img-box p{
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.img-slide {
    cursor: grab;
}

.img-slide img{
  aspect-ratio: 4/3;
    object-fit: cover; 
}

.swiper-func{
  
}

.swiper-button-prev,
.swiper-button-next {
    width: 44px !important;
    height: 44px;
    aspect-ratio: 1/1;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    font-weight: 700;
}
.link-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.link-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.link-btn p{
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 130%;
}

.link-btn img{
  aspect-ratio: 1/1;
  transform: translateY(0);
  transition:all 0.3s;
}

.link-btn:hover img{
  transform: translateY(-10px);
    transition:all 0.3s;
}

.map-wrap ul{
    display: flex;
    align-self: center;
    justify-content: center;
    gap: 30px;
}

.map-wrap ul li{
    display: flex;
    align-items: center;
    gap: 20px;
}

.map-wrap ul li span{
    color: #999;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.map-wrap ul li p{
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 23.4px */
} 

.map-wrap ul li .border{
    width: 1px;
    height: 15px;
    background: rgba(221, 221, 221, 0.50);
}

.map-wrap .map-box{
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.map-wrap .map-box img{
  width: 50%;
  aspect-ratio: 4/3;
      border-radius: 20px;
    overflow: hidden;
}


@media screen and (max-width:1280px){
  .main-banner .txt h4{
    font-size: 28px;
  }
  .main-banner .txt p{
    font-size: 18px;
  }
  .main-banner .txt p.banner-memo{
    margin-top: 10px;
    font-size: 14px;
  }
  .full-banner .top h4{
    font-size: 32px;
  }
  .full-banner .bottom div p{
    font-size: 18px;
  }
  .full-banner .bottom div span{
    font-size: 26px;
  }
  .map-wrap ul li span{
    font-size: 16px;
  }
  .map-wrap ul li p{
    font-size: 16px;
  }

}

@media screen and (max-width:991px){



  .img-wrap{
    max-width: 80%;
    grid-template-columns: repeat(3, 1fr);
    
  }

  .img-wrap .img-box p{
    font-size: 14px;
    left: 8%;
    bottom: 8%;
  }
}

@media screen and (max-width:768px){
  .banner-wrap{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main-banner img{
    border-radius: 20px;
    max-width: 90%;
    
  }
  .full-banner{
    border-radius: 20px;
  }
  .main-banner .txt h4{
    font-size: 24px;
  }
  .main-banner .txt p{
    font-size: 16px;
  }
  .main-banner .img img{
      width: 70%;
  }
  .full-banner .bottom{
    flex-direction: column; 
    align-items: center;
    margin-top: 40px;
  }
  .full-banner .bottom div{
    width: 100%;
  }
  .full-banner .top h4{
    font-size: 28px;
  }
  .full-banner .bottom div span{
    font-size: 22px;
    margin-top: 10px;
  }
  .map-wrap ul li{
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
  .map-wrap ul li span{
    font-size: 14px;
  }
  .map-wrap ul li p{
    font-size: 14px;
  }
  .map-wrap .map-box{
    flex-direction: column;
  }
  .map-wrap .map-box img{
    width: 100%;
  }
  .map-right{
    display: none;

  }
  .img-wrap{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
}


@media screen and (max-width:500px){
  .main-banner .img img{
      width: 50%;
  }

  .img-wrap .img-box
  {
    width: 100%;
  }
  .map-wrap ul{
    flex-direction: column;
  }
    .map-wrap ul li:nth-of-type(2){
      display: none;
    }
  .map-wrap ul li p{
    text-align: center;
  }
  .map-wrap ul li .border{
    display: none;
  }

  .float-list{
    display: none;
  }

}