/* 아이콘 링크 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* 기본설정 */
@font-face {
    font-family: 'NotoSansKR';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/NotoSansKR-Regular.ttf') format('truetype');
    letter-spacing: -0.003em;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #333;
    font-family: 'NotoSansKR', sans-serif;
    letter-spacing: -0.5px;
}
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    color: #333;
    text-decoration: none;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.5;
}
h4 {
    font-size: 14px;
}


.body {
    margin: 60px 0;
}

.main {
    overflow: hidden;
}

.arrow-btn {
    display: flex;
    margin-top: 60px;
}
.l-btn {
    background-image: url('../images/mainpage/visual-arrow-left.svg');
    width: 60px;
    height: 60px;
}
.r-btn {
    background-image: url('../images/mainpage/visual-arrow-right.svg');
    width: 60px;
    height: 60px;
}

/* 이미지 설정 */
.image-container {
    width: 100%; /* 원하는 너비 */
    overflow: hidden; /* 부모 요소를 벗어난 부분을 숨김 */
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container .img-tag {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; /* 이미지 비율을 유지하면서 부모 요소를 덮도록 설정 */
}

.t-item .image-container{
    /* 원하는 가로 세로 비율 설정 (예: 16:9 비율) */
    aspect-ratio: 16 / 9; 
    /* aspect-ratio: 4 / 3; */
}

.g-imgBox .imgBox {
    overflow: hidden;
}
.g-imgBox .imgBox img {width: 100%;background: #000;height: 100%;}
/* 지금 부산에 가면 */

.slider-container {
position: relative;
overflow: hidden;
}

.festivalList {
    width: 100%; height: 100%;
    display: flex;
}
.f-leftBox {
    flex: 35%;
    padding-left: 200px;
    font-size: 45px;
}
.main .mainSildeBox {
    display: flex;
    gap: 100px;
    margin: 130px 0 100px;
}
.main .mainSildeBox .carousel-title {
    margin: 175px 0 0 300px;
    flex: 1 1 0;
}
.main .mainSildeBox .carousel-title h1 {
    font-size: 52px;
    letter-spacing: -6px;
    line-height: 1.4;
    font-weight: 400;
}
.main .mainSildeBox .carousel-title h1 span {
    font-weight: 400;
    color: #38aed6;
}

/* .f-rightImgBox {
    flex: 65%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
.f-sliderList {
    width: 2750px;
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    left: 180px;
    flex: none;
}

.f-sliderList .f-sliderBox {
    width: 612px;
    height: 662px;
    border-top-left-radius: 300px;
    overflow: hidden;
    margin: 0;
    padding: 60px;
}
/* .f-sliderList .f-sliderBox::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #00000040;
} */
.f-sliderList .f-sliderBox {
    background-size: cover;
    background-position: center;
}
.f-sliderList .f-sliderBox:nth-child(1) {
    /* background-image: url('../images/mainpage/main-1.jpg'); */
}
.f-sliderList .f-sliderBox:nth-child(2) {
    /* background-image: url('../images/mainpage/main-2.jpg'); */
}
.f-sliderList .f-sliderBox:nth-child(3) {
    /* background-image: url('../images/mainpage/main-3.jpg'); */
}
.f-sliderList .f-sliderBox .f-slider-title {position: absolute;bottom: 55px;z-index: 1;}
.f-sliderList .f-sliderBox .f-slider-title h2 {
    color: #ffff;
    font-size: 38px;
}
.f-sliderList .f-sliderBox .f-slider-title .date {
    color: #ffff;
    font-size: 18px;
}
.f-post {
    overflow: hidden;
    width: 600px; height: 700px;
}
.f-imgBox{
    width: 110%; height: 110%;
}


/* 찾아가는 명소 */
.goodPlaces {
    background-color: #E2F2FF;
    padding: 80px 0;
}
.titleBox {text-align: center;margin-bottom: 60px;}
.titleBox .title {font-size: 38px;font-weight: 600;margin: 15px 0;}
.titleBox .link {color: #38AED6;font-size: 18px;position: relative;display: inline-block;}
.titleBox .link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 11px;
    left: 75px;
    top: 9px;
    background-color: #38AED6;
}
.btn-more {
    display: inline-block;
    padding: 5px 20px;
    color: #fff;
    background-color: #8b8b8b;
    border-radius: 20px;
}
.btn-more.active {
    background-color: #111;
}
.titleBox .link::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 1px;
    left: 70px;
    top: 14px;
    background-color: #38AED6;
}
.g-imgBox {
    display: grid;
    grid-template-rows: repeat(2, 100px);
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
    grid-gap: 10px 15px;
    height: 1000px;
}
.innerbox {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1500px;
    width: 80%;
}
.goodPlaces .innerbox {
    /* 스크롤바 없애기 */
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
    margin-bottom: 80px;
    border-radius: 10px;
    overflow: auto;
    height: 600px;
}
/* 스크롤바 없애기 */
.goodPlaces .innerbox::-webkit-scrollbar {
    display: none;
}

.g-imgBox div {
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.g-imgBox .g-item:nth-child(1) {
    /* background-image: url('../images/mainpage/gooPlacesimg1.jpg'); */
    grid-column: 1 / 5;
    grid-row: span 3;
}
.g-imgBox .g-item:nth-child(2) {
    /* background-image: url('../images/mainpage/gooPlacesimg2.jpg'); */
    grid-column: span 4;
    grid-row: span 2;
}
.g-imgBox .g-item:nth-child(3) {
    /* background-image: url('../images/mainpage/gooPlacesimg3.jpg'); */
    grid-column: span 4;
    grid-row: span 2;
}
.g-imgBox .g-item:nth-child(4) {
    /* background-image: url('../images/mainpage/gooPlacesimg4.jpg'); */
    grid-column: span 4;
    grid-row: span 2;
}
.g-imgBox .g-item:nth-child(5) {
    /* background-image: url('../images/mainpage/gooPlacesimg5.jpg'); */
    grid-column: span 4;
    grid-row: span 2;
}
.g-imgBox .g-item:nth-child(6) {
    /* background-image: url('../images/mainpage/gooPlacesimg6.jpg'); */
    grid-column: span 4;
    grid-row: span 2;
}
.g-imgBox .g-item:nth-child(7) {
    /* background-image: url('../images/mainpage/gooPlacesimg7.jpg'); */
    grid-column: span 4;
    grid-row: span 2;
}
.g-imgBox .g-item:nth-child(8) {
    /* background-image: url('../images/mainpage/gooPlacesimg8.jpg'); */
    grid-column: span 4;
    grid-row: span 2;
}

.g-wrap {
    display: flex;
    gap: 20px;
    flex: 1 1 0;
    flex-wrap: wrap;
}
.g-wrap div {
    background: #000;
    height: 400px;
    width: 100%;
}
.line1 {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
}
.line2 {
    display: flex;
    flex-wrap: nowrap;
}


/* 가이드 메뉴 */
.guideMenu {
    width: 100%; height: 100%;
}
.guide-imgBox {
    position: relative;
    height: 900px;
    overflow: hidden;
}
.guide-imgBox img {
    height: 900px;
}
.guide-text {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.553);
    left: 50%;
    height: 100%;
    font-size: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 150px;
}
.guide-text img {
    height: 100%;
}
.guide-text div {
    color: #fff;
    font-size: 100px;
    font-weight: 600;
    line-height: 145px;
}
/* 부산 여행 사진집 */
.travelPictures {
    padding: 80px 0;
}
.travelPictures .t-titleBox {text-align: center;}
.travelPictures .t-tag {color: #38AED6;font-size: 16px;margin: 20px 0 4px;}
.travelPictures .t-title {font-size: 18px;font-weight: 500;height: 30px;overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
.travelPictures .t-date {
    color: #999;
    font-size: 14px;
}
.travelPictures .t-link { color: #54A3C4}
.travelPictures .t-imgBox {
    display: flex;
    gap: 40px;
    /* flex-wrap: wrap; */
}
.travelPictures .t-item {
    width:100%;
    img {
        width:100%;
    }
}

/* 색다른 테마여행 */
.outOfOrdinary {
    width: 100%; height: 100%;
    padding: 80px 0;
}
.ord-imgBox {
    width: 100%;
}

.ord-imgSlide {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    /* 스크롤바 없애기 */
    /* 인터넷 익스플로러 */
    -ms-overflow-style: none; 
    /* 파이어폭스 */
    scrollbar-width: none; 
    overflow: scroll;
}
/* 스크롤바 없애기 */
.ord-imgSlide::-webkit-scrollbar {
    display: none;
}

.ord-imgSlide li {
    width : 290px;
    height: 335px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    flex-shrink: 0;
}
.ord-imgSlide li:nth-child(1) {
    /* background-image: url('../images/mainpage/ord-img1.jpg'); */
}
.ord-imgSlide li:nth-child(2) {
    /* background-image: url('../images/mainpage/ord-img2.jpg'); */
}
.ord-imgSlide li:nth-child(3) {
    /* background-image: url('../images/mainpage/ord-img3.jpg'); */
}
.ord-imgSlide li:nth-child(4) {
    /* background-image: url('../images/mainpage/ord-img4.jpg'); */
}
.ord-imgSlide li:nth-child(5) {
    /* background-image: url('../images/mainpage/ord-img5.jpg'); */
}
.ord-imgSlide li:nth-child(6) {
    /* background-image: url('../images/mainpage/ord-img6.jpg'); */
}
@media (min-width: 576px) {
    .g-imgBox {
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: min-content;
    }
    .g-imgBox .g-item:nth-child(1) {
        grid-row: span 6;
        grid-column: 1 / 5;
    }
    .g-imgBox .g-item:nth-child(2) {
        grid-column: span 4;
        grid-row: span 4;
    }
    .g-imgBox .g-item:nth-child(3) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(4) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(5) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(6) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(7) {
        grid-row: span 2;
        grid-column: span 4;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(8) {
        grid-column: span 4;
        grid-row: span 2;
    }
}

@media (min-width: 768px) {
    .g-imgBox {
        grid-template-rows: repeat(5, 1fr);
        grid-template-columns: repeat(4, 1fr);
    }
    .g-imgBox .g-item:nth-child(1) {
        grid-row: span 2;
        grid-column: 1 / 3;
    }
    .g-imgBox .g-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .g-imgBox .g-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .g-imgBox .g-item:nth-child(4) {
        grid-column: span 4;
        grid-row: span 1;
    }
    .g-imgBox .g-item:nth-child(5) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .g-imgBox .g-item:nth-child(7) {
        grid-column: span 2;
        grid-row: span 3;
    }
    .g-imgBox .g-item:nth-child(8) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (min-width: 992px) {
    .innerbox {
        width: 90%;
        padding: 0;
    }
    .g-imgBox {
        grid-template-rows: repeat(6, 1fr);
        grid-template-columns: repeat(8, 1fr);
    }
    .g-imgBox .g-item:nth-child(1) {
        grid-row: span 3;
        grid-column: 1 / 5;
    }
    .g-imgBox .g-item:nth-child(2) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 4;
    }
    .g-imgBox .g-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(5) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(6) {
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(7) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .g-imgBox .g-item:nth-child(8) {
        grid-column: span 4;
        grid-row: span 1;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}
