* {
    font-size: 1.1rem;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    font-size: 1.05rem;
}


.p-img-box {
    display: flex;
    justify-content: center;
    align-content: center;
}
.p-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.p-img-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    box-sizing: border-box;
    margin: 0 10px;
}

/* 페이지네이션 */
.page-item a {
    color: var(--bk-color);
    text-decoration: none;
}
.page-item.active a {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}


/* swiper */
.main-slide {
    height: 800px;
}
@media (max-width: 768px) {
    .main-slide {
        height: 400px;
    }
}

.main-slide .swiper-wrapper {
  height: 100%;
}

.main-slide .swiper-slide {
  height: 100%;
}

.main-slide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}