/* =========================================================
   BEAUTY BY TMY
   Base / Reset
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}


body {
    margin: 0;

    background: #ffffff;
    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


img,
picture,
video {
    display: block;

    width: 100%;
    max-width: 100%;
}


img {
    object-fit: cover;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}


ul,
ol {
    margin: 0;
    padding: 0;

    list-style: none;
}