﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

:root {
  /* 에이모바일 Color */
  --color-main: #51addc;
  --color-sub: #1950a2;

  /* 계산용 */
  --header-height: 17.2rem;
  --footer-height: 35.5rem;
}

@media (max-width: 768px) {
  :root {
    --header-height: 6rem;
    --footer-height: 54.3rem;
  }
}

* {
  margin: 0;
  padding: 0;
}
img {
  border: 0;
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6,
fieldset,
ul,
ol,
dl,
dt,
dd,
p,
button,
figure {
  margin: 0;
  padding: 0;
}
em {
  font-style: normal;
}
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans KR", "Nanum Gothic", "나눔 고딕", "Dotum", "돋움",
    sans-serif;
  color: #000;
}
body.lock {
  overflow: hidden;
}
@media (max-width: 370px) {
  body {
    font-size: 1.4rem;
  }
}

textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input,
textarea,
button,
select {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

legend,
caption {
  width: 0;
  height: 0;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}
a {
  font-style: normal;
  text-decoration: none;
  color: #333;
}
fieldset,
button {
  background: none;
  border: 0px;
}
li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}
iframe {
  vertical-align: middle;
  border: 0 none;
}
input,
button {
  box-sizing: inherit;
}
hr {
  border-width: 1px 0 0 0;
}
select::-ms-expand {
  display: none;
}

/* 공통 클래스 START */
.c_main {
  margin-top: var(--header-height);
  padding-bottom: var(--footer-height);
}
.c_section {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .c_section {
    padding: 4rem 0;
  }
}
.c_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.c_sectionTitle {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .c_sectionTitle {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
}
/* 공통 클래스 END */
