/***************************************
****************reset*******************
***************************************/
@import url(./vars.css);

*, *::before, *::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--black);
    display: inline-block;
}

ul, ol, li {
    list-style: none;
}

img {
    vertical-align: top;
    display: block;
}

input, textarea, button, html, body {
    line-height: 1.5;
    font-size: 14px;
    color: var(--black);
    font-weight: 200;
    font-family: Geologica, sans-serif;
}

button {
    cursor: pointer;
    background-color: transparent;
}

._wrapper {
    min-height: 100vh;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

._container {
    margin: 0 auto;
    max-width: 1320px;
    padding: 0 20px;
    box-sizing: content-box;
    overflow: hidden;
}

main {
    flex: 1 1 auto;
}

._pb_img, ._pb_img_contain {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    inset: 0;
}

._pb_img_contain {
    object-fit: contain;
}

body._lock {
    overflow: hidden;
}

@media (max-width: 1365px) {
    input, textarea, button, html, body {
        font-size: 1.03vw;
    }
}