.entire_wrapper{
	overflow: hidden;
	top:0;
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #000;
    color: #000;
    z-index:9999;
}

.entire_wrapper.hidden {
	overflow: hidden;
	top:0;
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #000;
    color: #000;
	display:none;
	z-index:9999;
}

.gallerySwiper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    color: #000;
}

.gallerySwiper .swiper-pagination {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0 !important;
    bottom: initial !important;
    left: 30px !important;
    z-index: 99;
    width: 40px !important;
    height: 50px !important;
    color: #fff;
}

.gallerySwiper .tool_bar {
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 1;
}

.gallerySwiper .tool_bar.hidden {
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    pointer-events: none;
    opacity: 0;
}

.gallerySwiper .tool_bar ul {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: end;
    margin: 0;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 9;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.65);
}

.gallerySwiper .tool_bar ul li {
    list-style: none;
    cursor: pointer;
}

.gallerySwiper .tool_bar ul li a:focus {
    outline: 2px solid red;
}

.gallerySwiper .tool_bar button {
    cursor: pointer;
}

.gallerySwiper .tool_bar img {
    filter: brightness(10);
}

/* 공통 swiper 설정 */
.gallerySwiper .swiper {
    width: 100%;
    height: 100%;
}

/* 공통 slide 설정 */
.gallerySwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    outline: none;
    background-position: center;
    background-size: cover;
    font-size: 18px;
    text-align: center;
}

.gallerySwiper .swiper-slide:focus {
    border: 2px solid red;
    outline: none;
}

.gallerySwiper button {
    border: none;
    background: transparent;
    opacity: 1 !important;
}

.gallerySwiper button:focus {
    outline: 2px solid red;
}

.gallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-sizing: border-box;
}

/* 메인 슬라이더 */
.gallerySwiper .mainSwiper {
    margin: 0 auto;
    margin-inline: 6rem;
    position: relative;
    width: calc(100% - 12rem);
    height: 100%;
}

.gallerySwiper .desc_wrap {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    padding-inline: 7vw 0;
    position: absolute;
    bottom: 100px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    color: #fff;
    pointer-events: none;
}

.gallerySwiper .mainSwiper .swiper-wrapper {
    margin: 0;
    padding: 0;
}


.gallerySwiper .mainSwiper img {
    width: 100%;
    object-fit: contain;
}

.swiper-button-next {
    right: 2rem;
}

.swiper-button-prev {
    left: 2rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #fff;
    font-size: 32px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.85);
}

/* 썸네일 슬라이더 */

.gallerySwiper .thumbsSwiper {
    padding: 10px 0;
    overflow: hidden;
    overflow: visible;
    position: absolute;
    bottom: 0px;
    height: 100px;
    max-height: 150px;
    background-color: #000;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    /* 펼쳐졌을 때 높이 */
    opacity: 1;
    transform: translateY(0);
    box-sizing: border-box;
}

.gallerySwiper .thumbsSwiper.collapsed {
    transform: translateY(100px);
}

.gallerySwiper .thumbsSwiper .swiper-wrapper {
    padding-left: 10px;
}

.gallerySwiper .thumbsSwiper .swiper-slide {
    flex-shrink: 0;
    margin-right: 10px;
    border: 2px solid transparent;
    width: 101px;
    height: 76px;
    transition: 0.3s;
    border-radius: 4px;
}

.gallerySwiper .thumbsSwiper .swiper-slide:focus {
    outline: 2px solid red;
}

.gallerySwiper .thumbsSwiper .swiper-slide:hover {
    border: 2px solid red;
    transition: 0.3s;
}

.gallerySwiper .thumbsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}

.gallerySwiper .thumb_total {
    position: absolute;
    top: -45px;
    right: 10vw;
    z-index: 99;
    width: 50px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.gallerySwiper .thumb_total * {
    filter: brightness(7);
}

@media screen and (max-width: 1440px) {
    .gallerySwiper .mainSwiper {
        margin-inline: 0;
        width: 100%;
    }
}

.skip {
    overflow: hidden;
    width: 0;
    height: 0;
    font-size: 0;
}


body {
    margin: 0;
}