﻿
/* 메인에서만 다른 스타일 덮어쓰기 시작 */

section { margin-bottom: 0; }
header .header-middle { margin-bottom: 0; }

footer { margin-top: 0; }

/*sm*/ @media (max-width: 575px) {
    header { margin-bottom: 0; }
}

/* 메인에서만 다른 스타일 덮어쓰기 끝 */








/* 공통 시작 */

section { padding: 3rem 0; }
section .section-title { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1.5rem; font-weight: 700; line-height: 2rem; }
section .section-title.center { justify-content: center; }
section .section-title p { margin: 0 }
section .section-title i { margin-right: 0.5rem; font-size: 3rem; }
section .section-title p .highlight { color: var(--color-main); font-size: 2rem; font-weight: 700; }
/*sm*/ @media (max-width: 575px) {
    section { padding: 2rem 0; }
    section .section-title { font-size: 1.25rem; font-weight: 500; line-height: 1.5rem; }
    section .section-title i { font-size: 2.5rem; }
    section .section-title p .highlight { font-size: 1.5rem; }
}

/* 공통 끝 */








/* 롤링이미지 시작 */

/* 기본 2000*400이며, 내용이 들어가는 영역은 1200*400 */
/* 그러므로 (.container의 max-width):(롤링이미지세로) = 3:1 */

#sectionRollingImage { position: relative; padding: 0; }
#sectionRollingImage .splide .splide__arrow { background-color: transparent; font-size: 40px; }
#sectionRollingImage .splide .splide__arrow svg path { fill: #fff; }
#sectionRollingImage .splide .splide__track .splide__list { height: 400px; } /* 1200:400 = 3:1 */
#sectionRollingImage .splide .splide__track .splide__list .splide__slide { background: no-repeat center / cover; }
#sectionRollingImage .splide .splide__track .splide__list .splide__slide.pointer { cursor: pointer; }
#sectionRollingImage .splide .splide__progress .splide__progress__bar { background-color: var(--color-main); }
#sectionRollingImage .splide .splide__pagination { flex-wrap: nowrap; }
#sectionRollingImage .splide .splide__pagination li { flex: 1; max-width: 50px; }
#sectionRollingImage .splide .splide__pagination li .splide__pagination__page { width: 90%; height: 5px; margin: 2px; background: #fff; border-radius: 0;}
#sectionRollingImage .splide .splide__pagination li .splide__pagination__page.is-active { transform: scaleY(2); opacity: 1; }
/*xxl*/ @media (max-width: 1399px) {
    #sectionRollingImage .splide .splide__track .splide__list { height: 380px; } /* 1140:380 = 3:1 */
}
/*xl*/ @media (max-width: 1199px) {
    #sectionRollingImage .splide .splide__track .splide__list { height: 320px; } /* 960:320 = 3:1 */
}
/*lg*/ @media (max-width: 991px) {
    #sectionRollingImage .splide .splide__track .splide__list { height: 240px; } /* 720:240 = 3:1 */
}
/*md*/ @media (max-width: 767px) {
    #sectionRollingImage .splide .splide__track .splide__list { height: 180px; } /* 540:180 = 3:1 */
    #sectionRollingImage .splide .splide__pagination li .splide__pagination__page { height: 3px; }
}
/*sm*/ @media (max-width: 575px) {
    #sectionRollingImage .splide .splide__arrow { display: none; }
    #sectionRollingImage .splide .splide__track .splide__list { height: calc(100vw / 3); } /* .container의 max-width가 없고, 화면의 가로 100%이므로 calc로 3:1 유지되게 계산 */
}




/* 롤링이미지 끝 */








/* 롤링이미지 퀵서치 시작 */

#sectionRollingImage .quicksearch_area { position: absolute; top: 0; left: 0; width: 100%; height: 100%; font-size: 0.9rem; pointer-events: none; }
#sectionRollingImage .quicksearch_area .container { display: flex; align-items: center; height: 100%; }
#sectionRollingImage .quicksearch_area .quicksearch_box { display: flex; flex-direction: column; width: 30%; height: 90%; background-color: #fff; pointer-events: auto; box-shadow: 4px 12px 30px 6px rgb(0 0 0 / 9%); z-index: 2; }
#sectionRollingImage .quicksearch_area .quicksearch_box .header { display: flex; align-items: center; }
#sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item { flex: 1; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0.75rem; color: #fff; background-color: var(--color-text); cursor: pointer; }
#sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item ~ .header_item { border-left: 1px solid var(--color-gray-dark); }
#sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item.active { background-color: var(--color-main); border-color: var(--color-main); }
#sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item.active + .header_item { border-color: var(--color-main); }
#sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item.active:before { content: ""; position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%) rotate(45deg); width: 0.5rem; height: 0.5rem; background-color: var(--color-main); }
#sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item i { margin-bottom: 0.25rem; font-size: 1.5rem; }
#sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item .title {  }
#sectionRollingImage .quicksearch_area .quicksearch_box .content { flex: 1; }
#sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item { display: none; position: relative; height: 100%; padding: 1rem; }
#sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item.active { display: block; }
/*xxl*/ @media (max-width: 1399px) {
    #sectionRollingImage .quicksearch_area { padding: 1.5rem 0; background: var(--color-background-dark); }
    #sectionRollingImage .quicksearch_area { position: relative; }
    #sectionRollingImage .quicksearch_area .quicksearch_box { width: 100%; box-shadow: none; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .header {  }
    #sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item { flex-direction: row; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item i { margin-bottom: 0; margin-right: 0.25rem; font-size: 1rem; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .header .header_item .title { font-size: 1rem; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item.active { display: flex; justify-content: space-between; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item.active > div { flex-grow: 1; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item.active > div ~ div { margin-left: 0.5rem; }
}
/*xl*/ @media (max-width: 1199px) {
}
/*lg*/ @media (max-width: 991px) {
    #sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item { flex-wrap: wrap; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item.active > div ~ div { margin-left: 0; margin-right: 0.5rem; }
    #sectionRollingImage .quicksearch_area .quicksearch_box .content .content_item.active > div:last-child { margin-right: 0; }
}
/*md*/ @media (max-width: 767px) {
    
}
/*sm*/ @media (max-width: 575px) {
    /*#sectionRollingImage .quicksearch_area { display: none; }*/
}

#sectionRollingImage .datepicker { cursor: pointer; }
#sectionRollingImage .datepicker .body { display: flex; align-items: center; margin-bottom: 0.5rem; white-space: nowrap; border: 1px solid var(--color-gray-light); border-radius: 0.25rem; transition: border-color 0.4s, color 0.4s; }
#sectionRollingImage .datepicker:hover .body { border-color: var(--color-main); color: var(--color-main); }
#sectionRollingImage .datepicker .body > div { padding: 0.6rem; }
#sectionRollingImage .datepicker .body > div ~ div { }
#sectionRollingImage .datepicker .body .title { color: var(--color-text-light); margin-bottom: 0; }
#sectionRollingImage .datepicker:hover .body .title { color: var(--color-main); }
#sectionRollingImage .datepicker .body .date { flex: 2.5; display: flex; justify-content: space-between; align-items: center; }
#sectionRollingImage .datepicker .body .time { flex: 1; display: flex; justify-content: space-between; align-items: center; border-left: 1px dashed var(--color-gray-light); transition: border-color 0.4s; }
#sectionRollingImage .datepicker:hover .body .time { border-color: var(--color-main); }
/*xxl*/ @media (max-width: 1399px) {
    #sectionRollingImage .datepicker { display: flex; }
    #sectionRollingImage .datepicker > div { flex: 1; }
    #sectionRollingImage .datepicker > div ~ div { margin-left: 0.5rem; }
}
/*xl*/ @media (max-width: 1199px) {
    #sectionRollingImage .datepicker .body .title { padding-right: 0; }
    #sectionRollingImage .datepicker .body .date { flex: 2; }
}
/*lg*/ @media (max-width: 991px) {
    #sectionRollingImage .datepicker { width: 100%; }
}
/*md*/ @media (max-width: 767px) {
}
/*sm*/ @media (max-width: 575px) {
    #sectionRollingImage .datepicker { flex-direction: column; }
    #sectionRollingImage .datepicker > div ~ div { margin-left: 0; }
}

#sectionRollingImage .form-select { height: auto; padding: 0.6rem; padding-left: 3rem; font-size: 0.9rem; }
#sectionRollingImage .form-select ~ label { padding: 0.6rem; color: var(--color-text-light); transform: scale(1); opacity: 1; }
/*xxl*/ @media (max-width: 1399px) {
}
/*xl*/ @media (max-width: 1199px) {
    #sectionRollingImage .form-select { padding-left: 2.5rem; }
}
/*lg*/ @media (max-width: 991px) {
}
/*md*/ @media (max-width: 767px) {
}
/*sm*/ @media (max-width: 575px) {
}

#sectionRollingImage .quicksearchbutton { position: absolute; left: 0; bottom: 0; width: 100%; padding: 1rem; }
#sectionRollingImage .quicksearchbutton button { width: 100%; }
/*xxl*/ @media (max-width: 1399px) {
    #sectionRollingImage .quicksearchbutton { position: relative; width: auto; padding: 0; }
    #sectionRollingImage .quicksearchbutton button { padding: 0.6rem; font-size: 0.9rem; }
}
/*xl*/ @media (max-width: 1199px) {
}
/*lg*/ @media (max-width: 991px) {
}
/*md*/ @media (max-width: 767px) {
}
/*sm*/ @media (max-width: 575px) {
}

/* 롤링이미지 퀵서치 끝 */










/* 팝업 시작 */

#divPopup { position: absolute; width: 100%; top: 15rem; left: 0; z-index: 2; pointer-events: none; }
#divPopup .popup_list { display: flex; align-items: flex-start; flex-wrap: wrap; }
#divPopup .popup_list .popup_item { margin: 0.5rem; background-color: #fff; pointer-events: auto; }
#divPopup .popup_list .popup_item.pc { display: block; }
#divPopup .popup_list .popup_item.mobile { display: none; }
#divPopup .popup_list .popup_item.total { display: block; }
#divPopup .popup_list .popup_item img { width: 100%; }
#divPopup .popup_list .popup_item img.pointer { cursor: pointer; transition: all 0.4s; }
#divPopup .popup_list .popup_item img.pointer:hover { opacity: 0.8; }
#divPopup .popup_list .popup_item .buttons { display: flex; }
#divPopup .popup_list .popup_item .buttons .button { padding: 0.75rem; background-color: var(--color-text); color: #fff; font-size: 0.8rem; text-align: center; cursor: pointer; transition: all 0.4s; }
#divPopup .popup_list .popup_item .buttons .button:hover { opacity: 0.8; }
#divPopup .popup_list .popup_item .buttons .button.close_today { flex: 2; }
#divPopup .popup_list .popup_item .buttons .button.close { flex: 1; border-left: 1px solid var(--color-gray-dark); }
/*md*/ @media (max-width: 767px) {
    #divPopup { top: 5rem; }
    #divPopup .popup_list .popup_item.pc { display: none; }
    #divPopup .popup_list .popup_item.mobile { display: block; }
    #divPopup .popup_list .popup_item.total { display: block; }
}

/* 팝업 끝 */





/* 지금 제일 잘 나가는 상품 시작 */

#sectionRecommandCommon_BestNow .splide .splide__arrows .splide__arrow { background-color: transparent!important }
#sectionRecommandCommon_BestNow .splide .splide__arrows .splide__arrow.splide__arrow--prev { left: -3rem; }
#sectionRecommandCommon_BestNow .splide .splide__arrows .splide__arrow.splide__arrow--next { right: -3rem; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide { margin: 0.3rem 0; background-color: #fff; border: 1px solid var(--color-gray-light); cursor: pointer; transition: all 0.4s }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide:hover { opacity: 0.8; transform: translateY(-0.2rem); }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .thumb { background: no-repeat center / cover; border-top-left-radius: inherit; border-top-right-radius: inherit; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .title { padding: 0.5rem 0.75rem 0 0.75rem; margin-bottom:0.25rem; font-weight: 500; /* white-space: nowrap; overflow: hidden; text-overflow: ellipsis; */ }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .description { padding: 0 0.75rem; margin-bottom: 0.5rem; color: var(--color-text-light); font-size: 0.8rem; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .icon { padding: 0 0.75rem; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .icon .badge { margin-bottom: 0.25rem; color: var(--color-main-dark); background-color: #fff; font-size: 0.9rem; border: 1px solid var(--color-main-dark); }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .blank { height: 45px; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price { position: absolute; bottom:0; padding: 0 0.75rem 0.5rem 0.75rem; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price .price-sell { margin-right: 0.5rem; font-size: 1.25rem; font-weight: 700; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price .price-origin { margin-right: 0.25rem; font-size: 0.8rem; color: var(--color-gray); text-decoration: line-through; }
#sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price .price-per { font-size: 1rem; font-weight: 500; color: var(--color-main-light); }
/*xxl*/ @media (max-width: 1399px) {
    #sectionRecommandCommon_BestNow .splide .splide__arrows .splide__arrow.splide__arrow--prev { left: -2rem; }
#sectionRecommandCommon_BestNow .splide .splide__arrows .splide__arrow.splide__arrow--next { right: -2rem; }
}
/*sm*/ @media (max-width: 575px) {
    #sectionRecommandCommon_BestNow .splide .splide__arrows .splide__arrow { display: none; }
    #sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .title { padding: 0.7rem 0.5rem 0 0.5rem; }
    #sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .description { padding: 0 0.5rem; }
    #sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .icon { padding: 0 0.5rem; }
    #sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price { padding: 0.7rem 0.5rem; }
    #sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price .price-origin { display: none; }
}
/*Galaxy Fold 280*/ @media (max-width: 300px) {
    #sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price .price-sell { font-size: 1rem; }
    #sectionRecommandCommon_BestNow .splide .splide__track .splide__list .splide__slide .price .price-per { font-size: 0.9rem; }
}

/* 지금 제일 잘 나가는 상품 끝 */



/* 카테고리링크 시작 */

#sectionCategoryLink { background: url('/Images/Custom/bg-categorylink.jpg') no-repeat center / cover; }
#sectionCategoryLink .container { display: flex; justify-content: space-between; }
#sectionCategoryLink .container .tile { display: flex; flex-direction: column; width: 33%; border: 3px solid transparent; cursor: pointer; transition: all 0.4s; }
#sectionCategoryLink .container .tile:hover { border: 3px solid var(--color-main); }
#sectionCategoryLink .container .tile .top { width:100%; height: 300px; background: url('/Images/Custom/bg-categorylink.jpg') no-repeat center / cover; }
#sectionCategoryLink .container .tile .bottom { flex: 1; position: relative; padding: 1rem; padding-bottom: 4rem; background-color: #fff; }
#sectionCategoryLink .container .tile .bottom .title { font-size: 1.5rem; font-weight: 700; }
#sectionCategoryLink .container .tile .bottom .description { font-size: 1rem; font-weight: 400; line-height: 1.25rem; color: var(--color-text-light); }
#sectionCategoryLink .container .tile .bottom .button { position: absolute; bottom: 1rem; left: 1rem; }
/*xxl*/ @media (max-width: 1399px) {
}
/*xl*/ @media (max-width: 1199px) {
}
/*lg*/ @media (max-width: 991px) {
    #sectionCategoryLink .container { flex-direction: column; }
    #sectionCategoryLink .container .tile { flex-direction: row; width: 100%; }
    #sectionCategoryLink .container .tile ~ .tile { margin-top: 0.5rem; }
    #sectionCategoryLink .container .tile .top { width: 30%; height: auto; }
}
/*md*/ @media (max-width: 767px) {
}
/*sm*/ @media (max-width: 575px) {
    #sectionCategoryLink .container .tile .top { width: 60%; }
    #sectionCategoryLink .container .tile .bottom .title { font-size: 1.25rem; }
    #sectionCategoryLink .container .tile .bottom .description { display: none; }
}

/* 카테고리링크 끝 */







/* 카테고리별 추천상품 시작 */

#sectionRecommandCategory .nav-pills { justify-content: space-between; }
#sectionRecommandCategory .nav-pills .nav-item { flex-grow: 1; margin-bottom: 0.25rem; background-color: var(--color-background-dark); cursor: pointer; }
#sectionRecommandCategory .nav-pills .nav-item ~ .nav-item { margin-left: 0.25rem; }
#sectionRecommandCategory .nav-pills .nav-item .nav-link { padding: 0.75rem 0; font-size: 1.25rem; font-weight: 500; text-align: center; }
/*sm*/ @media (max-width: 575px) {
    #sectionRecommandCategory .nav-pills { font-size: 0.9rem; }
}

#sectionRecommandCategory .block { display: flex; background-color: #fff; border: 1px solid var(--color-gray-light); border-top: 2px solid var(--color-main); }
#sectionRecommandCategory .block ~ .block { margin-top: 1rem; }
#sectionRecommandCategory .block .left { display: flex; flex-direction: column; justify-content: space-between; width: 20%; padding: 1rem; border-right: 1px solid var(--color-gray-light); }
#sectionRecommandCategory .block .left .top .categoryname { font-size: 1.5rem; font-weight: 700; color: var(--color-main); }
#sectionRecommandCategory .block .left .top .more { font-size: 0.8rem; }
#sectionRecommandCategory .block .left .bottom .title { margin-bottom: 0.5rem; font-weight: 500; }
#sectionRecommandCategory .block .left .bottom .badges { display: flex; flex-wrap: wrap; }
#sectionRecommandCategory .block .left .bottom .badges .item { padding: 0.25rem; margin-right: 0.25rem; margin-bottom: 0.25rem; color: var(--color-main); border: 1px solid var(--color-gray-light); transition: all 0.4s; cursor: pointer; }
#sectionRecommandCategory .block .left .bottom .badges .item:hover { color: #fff; background-color: var(--color-main); border-color: var(--color-main); }
#sectionRecommandCategory .block .right { width: 80%; padding: 1rem 2rem; }
/*md*/ @media (max-width: 767px) {
    #sectionRecommandCategory .block { flex-direction: column; }
    #sectionRecommandCategory .block .left { width: 100%; padding-bottom: 0; border-right: 0; }
    #sectionRecommandCategory .block .left .top { display: flex; justify-content: space-between; }
    #sectionRecommandCategory .block .left .bottom { display: none; }
    #sectionRecommandCategory .block .right { width: 100%; padding: 1rem 1rem }
}

#sectionRecommandCategory .splide .splide__arrows .splide__arrow { background-color: transparent!important; border-radius: 0; transition: all 0.4s; }
#sectionRecommandCategory .splide .splide__arrows .splide__arrow svg { width: 1rem; height: 1rem; }
#sectionRecommandCategory .splide .splide__arrows .splide__arrow svg path { fill: var(--color-gray-dark); }
#sectionRecommandCategory .splide .splide__arrows .splide__arrow.splide__arrow--prev { left: -2rem; }
#sectionRecommandCategory .splide .splide__arrows .splide__arrow.splide__arrow--next { right: -2rem; }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide { margin: 0.3rem 0; background-color: #fff; cursor: pointer; transition: opacity 0.4s, transform 0.4s; }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide:hover { opacity: 0.8; transform: translateY(-0.2rem); }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .thumb { background: no-repeat center / cover; }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .title { font-weight: 500; /* white-space: nowrap; overflow: hidden; text-overflow: ellipsis; */ }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .description { margin-bottom: 0.5rem; color: var(--color-text-light); font-size: 0.8rem; }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .icon .badge { margin-bottom: 0.25rem; color: var(--color-main-dark); background-color: #fff; font-size: 0.75rem; border: 1px solid var(--color-main-dark); }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .blank { height: 40px; }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .price { position: absolute; bottom:0; }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .price .price-sell { margin-right: 0.5rem; font-size: 1.25rem; font-weight: 700; }
#sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .price .price-per { font-size: 1rem; font-weight: 500; color: var(--color-main-light); }
/*md*/ @media (max-width: 767px) {
    #sectionRecommandCategory .splide .splide__arrows .splide__arrow { opacity: 0; }
    #sectionRecommandCategory .splide .splide__arrows .splide__arrow.splide__arrow--prev { left: 0; }
    #sectionRecommandCategory .splide .splide__arrows .splide__arrow.splide__arrow--next { right: 0; }
}
/*sm*/ @media (max-width: 575px) {
}
/*Galaxy Fold 280*/ @media (max-width: 300px) {
    #sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .price .price-sell { font-size: 1rem; }
    #sectionRecommandCategory .splide .splide__track .splide__list .splide__slide .price .price-per { font-size: 0.9rem; }
}

/* 카테고리별 추천상품 끝 */






/* 제주여행정보 시작 */

#sectionTourInfoLink { background: url('/Images/Custom/bg-tourinfo.jpg') no-repeat center / cover; }
#sectionTourInfoLink .container .blocks { display: flex; justify-content: space-between; flex-wrap: wrap; }
#sectionTourInfoLink .container .blocks .block { position: relative; width: 20%; color: #fff; border-radius: 50%; overflow: hidden; cursor: pointer; }
#sectionTourInfoLink .container .blocks .block .mask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--color-text); opacity: 0.5; transition: all 0.4s; }
#sectionTourInfoLink .container .blocks .block:hover .mask { top: -100%; }
#sectionTourInfoLink .container .blocks .block .text { position: absolute; top: 50%; left: 50%; width: 100%; transform: translate(-50%, -50%); text-align: center; }
#sectionTourInfoLink .container .blocks .block .text .icon { margin-bottom: 0.5rem; font-size: 3rem; }
#sectionTourInfoLink .container .blocks .block .text .title { font-size: 1.5rem; }
/*xl*/ @media (max-width: 1199px) {
    #sectionTourInfoLink .container .blocks .block .text .icon { font-size: 2.5rem; }
    #sectionTourInfoLink .container .blocks .block .text .title { font-size: 1.5rem; }
}
/*lg*/ @media (max-width: 991px) {
    #sectionTourInfoLink .container .blocks .block { width: 24%; }
}
/*md*/ @media (max-width: 767px) {
    #sectionTourInfoLink .container .blocks .block .text .icon { font-size: 2.2rem; }
    #sectionTourInfoLink .container .blocks .block .text .title { font-size: 1.2rem; }
}
/*sm*/ @media (max-width: 575px) {
    #sectionTourInfoLink .container .blocks { justify-content: center; }
    #sectionTourInfoLink .container .blocks .block { width: 40%; margin: 0.25rem; }
    #sectionTourInfoLink .container .blocks .block .text .icon { font-size: 2.5rem; }
    #sectionTourInfoLink .container .blocks .block .text .title { font-size: 1.5rem; }
}

/*#sectionTourInfoLink { background-color: #fff; }
#sectionTourInfoLink .blocks { display: flex; justify-content: space-between; flex-wrap: wrap; }
#sectionTourInfoLink .blocks .block { width: 24%; background-color: #fff; border-radius: 20px; cursor: pointer; box-shadow: 4px 12px 30px 6px rgb(0 0 0 / 9%); transition: all 0.4s; }
#sectionTourInfoLink .blocks .block:hover { opacity: 0.8; transform: rotate(-2deg) scale(1.02); }
#sectionTourInfoLink .blocks .block .image { height: 200px; border-top-left-radius: inherit; border-top-right-radius: inherit; }
#sectionTourInfoLink .blocks .block .text { padding: 0.75rem; }
#sectionTourInfoLink .blocks .block .text .top { display: flex; align-items: center; }
#sectionTourInfoLink .blocks .block .text .top .icon { display: flex; justify-content: center; align-items: center; width: 2rem; height: 2rem; margin-right: 0.5rem; background-color: var(--color-main-dark); color: #fff; border-radius: 50%; }
#sectionTourInfoLink .blocks .block .text .top .title { font-size: 1.2rem; font-weight: 500; }
#sectionTourInfoLink .blocks .block .text .bottom { font-size: 0.9rem; line-height: 1.25rem; color: var(--color-text-light); padding-left: 2.5rem; }*/
/*lg*/ /*@media (max-width: 991px) {
    #sectionTourInfoLink .blocks .block { width: 49%; margin-bottom: 0.5rem; }
    #sectionTourInfoLink .blocks .block:hover { transform: scale(1.02); }
    #sectionTourInfoLink .blocks .block .image { height: 100px; }
}*/
/*sm*/ /*@media (max-width: 575px) {
    #sectionTourInfoLink .blocks .block { width: 100%; }
    #sectionTourInfoLink .blocks .block:hover { transform: none; }
    #sectionTourInfoLink .blocks .block .image { display: none; }
    #sectionTourInfoLink .blocks .block .text { border-top-left-radius: inherit; border-top-right-radius: inherit; }
}*/

/* 제주여행정보 끝 */




/* 각종링크 시작 */

#sectionEtcLink { background-color: var(--color-background-dark); }
#sectionEtcLink .splide__slide { filter: grayscale(100%); }
#sectionEtcLink .splide__slide:hover { filter: grayscale(0%); }

/* 각종링크 시작 */