@charset "utf-8";

:root {
  --point-color: #4caf50;
  --text-color: #111111;
  --sub-text-color: #666666;
  --border-color: #e5e7eb;
  --background-color: #f7faf8;
  --white-color: #ffffff;

  --transition: all .3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--background-color);
  overflow-x: hidden;
}

ul,
ol,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  border-radius: 0;
  outline: none;
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.pc_show {
  display: block;
}

.mo_show {
  display: none;
}

@media (max-width: 1199px) {

  .inner {
    width: min(100% - 32px, 1200px);
  }

}

@media (max-width: 767px) {

  .pc_show {
    display: none;
  }

  .mo_show {
    display: block;
  }

}