@charset "utf-8";
/* 기본설정 */
/* @import "default.css"; */
.tourslide{
    width: 100%;
    height: 630px;
    z-index: 1;
    background: url('/images/tour/01_01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}
.tourslide img {
    width: 100%;
    height: 100%;
    display: block;
}
.tourslide .textbox{
    font-size: 50px;
    color: #fff;
    position: absolute;top: 50%;left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9997;
}

@media (max-width:768px) {
    .tourslide {
        margin-top: 50px;
    }
}


.tourwrap {
    animation: wrap-border 1.5s forwards ease-in-out;
}
@keyframes wrap-border {
    0% { border: 2.5vw solid var(--main-brown);}
    100% { border: 0px solid var(--main-brown);}
}
@media (max-width:768px) {
    .tourwrap {
        animation: wrap-border-mo 1.5s forwards ease-in-out;
    }
    @keyframes wrap-border-mo {
        0% { border: 20px solid var(--main-brown);}
        100% { border: 0px solid var(--main-brown);}
    }
}

.tourlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1476px;
  margin: 0 auto;
  padding: 0 20px 200px;
}

.tour-item {
    border: 1px solid #ccc;
}

.tour-img {
  position: relative;
  width: 100%;
  aspect-ratio: 344 / 260;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-img .copyright {
  position: absolute;
  right: 8px;
  bottom: -28px;
  font-size: 13px;
  color: #989898;
}

.tour-info {
  text-align: center;
  padding: 25px 15px 30px;
}

.tour-num {
  font-size: 17px;
  margin-bottom: 3px;
}

.tour-title {
  font-size: 30px;
  margin-bottom: 12px;
}

.tour-desc {
  font-size: 17px;
  margin-bottom: 10px;
}

.tour-item .more-btn {
    transform: scale(0.7);
}

@media(max-width: 1300px){
   
    .tourslide{
        height: 55%;
    }
}

@media(max-width:991px){
   
    .tourslide{
        height: 55%;
    }
    .tour-num {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .tour-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .tour-desc {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media(max-width:768px){
   
    .tourslide{
        width: 100%;
        height: 83.25vw;
        background: url('/images/tour/m/01_01.jpg');   
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .tourlist {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px 100px;
    }

    .tour-num {
        font-size: 13px;
        margin-bottom: 0;
    }

    .tour-title {
        font-size: 25px;
        margin-bottom: 7px;
    }

    .tour-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .tour-img .copyright {
        bottom: -26px;
        font-size: 11px;
    }
    .tour-item .more-btn {
        transform: none;
    }
}

@media(max-width:500px){

    
}