@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css");

:root {
  --header-height: 80px;
  /* color */
  --primary-color: #55566c;
  --primary-color1: #726176;
  --primary-color2: #9e8fa3;
  --primary-color3: #c9bed2;
  --primary-color4: #3b3c4c;
  --primary-color5: #7a7a7a;
  --white: #fff;
  --red: #df2804;
  /* font */
  --font-primary: "Pretendard", sans-serif;
  --font-secondary: "MaruBuri", sans-serif;
  /* border radius */
  --bdrs12: 12px;

  /* input */
  --input-height: 56px;

  /* quick menu */
  --q-width: 90px;
}

* {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

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

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul {
  list-style: none;
}

fieldset,
input {
  border: 0;
  box-sizing: border-box;
}

input:focus {
  outline: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
img {
  width: 100%;
  height: 100%;
}
section {
  position: relative;
}

html,
body {
  width: 100%;
  height: 100%;
}
button > a {
  display: block;
}
/* ------------------------------ Typography ------------------------------ */
html {
  font-size: clamp(14px, 1.6vw, 18px);
  margin-top: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  line-height: 1.3;
  margin: 0 0 0.5em;
  color: inherit;
}
h1 {
  /* font-size: clamp(2.25rem, 4vw, 3rem); */
  font-size: clamp(1.8rem, 4vw, 2.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

p {
  font-size: clamp(14px, 1.5vw, 16px);

  /* font-size: 16px; */
  font-weight: 400;
  color: var(--primary-color5);
  margin: 0 0 1em;
}
.ms-3 p {
  color: var(--white);
  max-width: 90%;
}
.footer p {
  color: var(--white);
  margin: 0 0 0.1em;
}
small {
  font-size: 0.875rem;
}
.fw-b {
  font-weight: 600;
}

html.no-scroll {
  overflow-y: hidden !important;
}
body {
  position: relative;
  display: flex;
  flex-direction: column;
  word-break: keep-all;
  font-family: "Pretendard", "MaruBuri", sans-serif !important;
  letter-spacing: -0.025em;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1rem;
  color: var(--primary-color4);
  background: var(--white);
}

.side_bottom--block .side_bottom--right::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

@media screen and (max-width: 992px) {
  :root {
    --input-height: 40px;
  }
  body {
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  body::-webkit-scrollbar {
    display: none !important;
    /* Safari & Chrome */
    scrollbar-width: none !important;
  }
}
@media screen and (min-width: 992px) {
  .ms-3 p {
    max-width: 60%;
  }
}
