@charset "utf-8";

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-size: var(--txt-size);
    color: var(--main-color);
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 0 none;
    width: 100%;
}

address,
caption,
em,
i {
    font-weight: normal;
    font-style: normal;
}

caption,
hr,
legend {
    display: none;
}

fieldset,
img,
input,
select,
textarea {
    border: 0 none;
    outline: none;
}

input,
select,
textarea {
    vertical-align: middle;
}

:root {
    --main-color: #fff;
    --sub-color: #000;
    --point-color: #66A5D8;
    --background-color: #000;
    --box-color: #f2f2f2;
    --main-font: "Roboto", "Pre", sans-serif;
    --bold-font: "Roboto:wght@700", "PreB", sans-serif;
    --big-size: 56px;
    --tit-size: 28px;
    --txt-size: 22px;
}
@media screen and (max-width:480px) {
:root {
    --big-size: 28px;
    --tit-size: 24px;
    --txt-size: 16px;
}
}

body {
    color: var(--main-color);
    background-color: var(--background-color);
    font-family: var(--main-font);
    font-size: var(--txt-size);
    line-height: 1.5;
}
.inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}
@media screen and (max-width:1600px) {
    .inner { 
        padding: 0 3%;
    }
}
@media screen and (max-width:1400px) {
    .inner { 
        padding: 0 5%;
    }
}
#wrap {
    overflow-x: hidden;
    min-width: 300px;
    position: relative;
}
h1 {
    font-size: var(--big-size);
}
h2 {
    font-size: var(--tit-size);
}
@media screen and (max-width:1024px) {
    h1 {
        font-size: var(--tit-size);
    }
    h2 {
        font-size: var(--txt-size);
    }
}