:root {
  /* Layout */
  --layoutwidth: 1480px;
  --layoutwidthmin: 1300px;
  --boldWeight: 400;
  /* Font */
  --mainfont: 'Pretendard-Regular';
  --pointfont: "Montserrat";
  --pointcolor: #c09473;
  --pointcolor2: #7c6352;
}

.main-font {
  font-family: var(--mainfont), sans-serif
}

.point-font {
  font-family: var(--pointfont), serif;
  font-weight: 600;
}

.point-color {
  color: var(--pointcolor) !important;
  color: var(--pointcolor)
}

.point-color2 {
  color: var(--pointcolor2) !important;
  color: var(--pointcolor2)
}

/* ==================================================================
초기화
===================================================================== */

* {
  outline: none;
}

*, :after, :before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit; /*vertical-align: baseline;*/
}

html, body {
  font-family: var(--mainfont), sans-serif;
  font-weight: var(--boldWeight);
  line-height: 1.7;
  word-break: break-all;
  color: #000000;
}

body {
  -webkit-font-smoothing: antialiased;
  -font-smoothing: antialiased;
  letter-spacing: -0.5px
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

div, span, p, ul, ol, li, dd, dt, dl, h1, h2, h3, h4, h5, h6 {
  word-break: keep-all;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: #000;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

ul, li, ol, dl, dt, dd {
  list-style: none
}

b, strong {
  font-weight: 600;
}

small {
  font-size: 0.9em;
  vertical-align: text-bottom;
}

tbody, tfoot, thead, tr, th, td {
}

br {
  font-family: sans-serif
}

img {
  image-rendering: -moz-auto; /* Firefox */
  image-rendering: -o-auto; /* Opera */
  image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: auto;
  -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
  max-width: 100%;
  display: block;
  margin: auto;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  font-family: var(--mainfont), sans-serif;
  font-size: 1em
}

input[type="submit"] {
  width: auto
}

input[type="button"], input[type="text"], input[type="email"],
input[type="search"], input[type="password"], textarea, input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #585858;
  outline: none;
}

input[type="button"]:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

::-webkit-input-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
}

::-moz-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
  opacity: 1;
}

/* Scroll관련 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: rgba(220, 220, 220, 0.3);
}

::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  border-radius: 5px;
  background: var(--pointcolor);
  border: 2px solid transparent;
}

@media (max-width: 550px) {
  div, span, p, ul, ol, li, dd, dt, dl, h1, h2, h3, h4, h5, h6 {
    word-break: keep-all;
  }
} 
 