@import url("normalize.css");
@import url("reset.css");
/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Raleway:wght@500;600;800&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Sans:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap");



:root {
  --main_color: #333333;
  --sub_color: #999999;
  --white_color: white;
  --highlight_color: #045CAB;
  --sub_highlight_color: #EDF3FB;
}

/* ----------------- 레이아웃 ---------------- */
.container{
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

section{
  margin: 81px 0;
  text-align: center;
}
section:last-of-type{
  margin: 81px 0 0;
  text-align: center;
}

.d-flex {
  display: flex;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.flex_dc {
  flex-direction: column;
}
.tc{
text-align: center;
}

.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.mb20{
  margin-bottom: 15px;
}

/* ----------------- 폰트 위계 ---------------- */
/* 
font-family: 'Noto Sans', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: 'Roboto', sans-serif;
*/
body {
  font-family: "Noto Sans KR", sans-serif;
  color: #333;
  font-weight: 700;
}

.eu {
  font-family: "Roboto", sans-serif;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.bold {
  font-weight: 700;
}

.f4 {
  font-weight: 400;
}

.f5 {
  font-weight: 500;
}

.f6 {
  font-weight: 600;
}

.ttu {
  text-transform: uppercase;
}

/*h1,
h2,
h3,
h4,
h5,
h6 {
   line-height: 1; 
  letter-spacing: -0.01em;  1000 = 1em, 100 = 0.1em, 10 = 0.01
}*/
.main_tt {
  font-size: 62px;
  line-height: 90px;
  margin-bottom: 54px;
}

.sub_tt {
  font-size: 34px;
  line-height: 48px;
  margin-bottom: 54px;
  color: var(--highlight_color);
}

.desc_tt {
  font-size: 24px;
  line-height: 44px;
}


/* ---------------- Header -------------- */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 10.5px 0;
  /* padding: 17px 0 5px; */
  z-index: 999;
  background: var(--white_color);
  box-shadow: 0px 5px 5px 0px rgb(153 153 153 / 20%);
  transition: 0.5s;
}
header .die_IE{
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100vw;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background-color: yellow;
  color: red;
  font-weight: 400;
}
header.fixed {
  padding: 5px 0 3px;
  /* padding: 10px 0 0; */
}

.logo a {
  display: inline-block;
  font-size: 33px;
  color: var(--highlight_color);
  line-height: 60px;
  font-weight: 700;
}

header span a {
  margin-left: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
}

header .fa-phone {
  font-size: 20px;
}


/* ----------------- 링크 버튼 스타일 ---------------- */
.border_btn {
  width: 100%;
  line-height: 81px;
  font-size: 24px;
  background-color: var(--highlight_color);
  color: var(--white_color);
  box-sizing: border-box;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 700;
}

.btn {
  width: 100%;
  line-height: 81px;
  font-size: 24px;
  background-color: var(--highlight_color);
  color: var(--white_color);
  box-sizing: border-box;
  cursor: pointer;
  font-weight: 700;
}

.checks {
  position: relative;
}

.checks input[type="checkbox"] {
  /* 실제 체크박스는 화면에서 숨김 */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.checks input[type="checkbox"]+label:before {
  content: ' ';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 8px 0 0;
  text-align: center;
  vertical-align: middle;
  background: var(--white_color);
  border: 1px solid var(--white_color);
  border-radius: 3px;
}

.checks.agree input[type="checkbox"]+label {
  cursor: pointer;
  padding-left: 30px;
  line-height: 37px;

}

.checks.agree input[type="checkbox"]+label:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  opacity: .6;
  box-shadow: none;
  border-color: var(--highlight_color);
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.checks.agree input[type="checkbox"]:checked+label:before {
  position: absolute;
  content: "";
  width: 10px;
  top: 7px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  background: transparent;
  border-color: transparent var(--highlight_color) var(--highlight_color) transparent;
  border-top-color: transparent;
  border-left-color: transparent;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}



.gneder {
  position: relative;
}

.gneder input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.gneder input[type="radio"]+label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-right: 20px;
  cursor: pointer;

}

.gneder input[type="radio"]+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  text-align: center;
  background: var(--white_color);
  border: 1px solid var(--highlight_color);
  border-radius: 100%;
  /* box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05); */
}

.gneder input[type="radio"]:checked+label:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  width: 10px;
  height: 10px;
  background: var(--white_color);
  border-radius: 100%;
  box-shadow: inset 0px 0px 10px var(--highlight_color);
}


hr {
  border: none;
  border-bottom: 1px solid var(--highlight_color);
  margin-bottom: 54px;
}

footer {
  /* margin: 0 0 54px; */
  /* background-color: var(--sub_highlight_color); */
  box-shadow: 0px -5px 5px 0px rgb(153 153 153 / 10%);
  color: #fff;
  /* padding: 81px 0; */
}
.footer_top{
  padding: 81px 0 81px;
}
.footer_logo a {
  display: inline-block;
  color: var(--highlight_color);
  font-size: 24px;
}

footer .cr,
footer p {
  color: var(--main_color);
  line-height: 27px;
  font-weight: 400;
}
footer .info{
  gap: 20px;
  margin-bottom: 10px;
}
.Copyright{
  background-color: #262626;
  padding: 40px 10px;
}
.Copyright p{
  display: block;
  text-align: center;
  color: var(--sub_color);
}