:root {
  --primary-color: #44536a;
  --secondary-color: #e9edf2;
  --tertiary-color: #e84958;
  --point-color: #e67e22;
  --darkgray-color: #c2c2c2;
  --lightgray-color: #f7f7f7;
  --white-color: #ffffff;
  --footerbg-color: #44536a;
  --background-color: #f9f9f9;

  --line-color: #dddddd;
  --body-color: #212326;
}

/* 
https://colorhunt.co/palette/3674b5578fcaa1e3f9d1f8ef

*/

html {
  font-size: 62.5%;
}

/* @media (max-width: 1440px) {
  html {
    font-size: 0.694444444444vw;
  }
} */
@media (max-width: 1202px) {
  html {
    font-size: 0.8319467554vw;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 1.30208333333vw;
  }
}

@media (max-width: 460px) {
  html {
    font-size: 2.17391304348vw;
  }
}

body {
  font-size: 1.8rem;
  color: var(--body-color);
  word-break: keep-all;

  -webkit-font-smoothing: antialiased; /* 크롬, 사파리, 엣지용 앤티앨리어싱 */
  -moz-osx-font-smoothing: grayscale; /* 파이어폭스, 사파리용 회색조 폰트 */
}

@media (max-width: 460px) {
  body {
    /* line-height: 1.5; */
    overflow-x: hidden;
  }
}

p {
  font-size: 1.7rem;
  line-height: 1.5;
  opacity: 0.75;
}

.fs {
  font-size: 1.3rem;
}

.inner {
  max-width: 1410px;
  margin: 0 auto;
}

@media (max-width: 1442px) {
  .inner {
    margin: 0 1.6rem;
  }
}

.w_inner {
  max-width: 1610px;
  margin: 0 auto;
}

/* 1410--1442px 1170--1202px*/

@media (max-width: 1642px) {
  .w_inner {
    margin: 0 1.6rem;
  }
}

.default {
  position: relative;
  padding: 12rem 0;
}

.default.bg {
  background: var(--background-color);
}

.default.bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: 1px;
  height: 4rem;
  background: var(--primary-color);
  transform: translate(0, -50%);
}

.title {
  margin-bottom: 5.6rem;
}

.title h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.25;

  text-transform: uppercase;
}

.title h2 em {
  font-weight: 250;
}

.title .desc {
  font-weight: 400;
  margin-top: 1.6rem;
  line-height: 2.4rem;
}

.icon_btn {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  height: 4.8rem;

  padding: 0 9.6rem 0 4.8rem;
  overflow: hidden;

  color: var(--white-color);
  white-space: nowrap;
}

.icon_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 4.8rem;

  background: var(--primary-color);
}

.icon_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;

  background: rgba(0, 0, 0, 0.1) url(../lib/icon/arrow-right.svg) no-repeat
    center center;

  filter: invert();
}

.icon_btn_write {
  position: relative;
  z-index: 1;

  margin-top: 4rem;

  display: inline-flex;
  align-items: center;
  height: 4.8rem;
  border-radius: 4.8rem;
  padding: 0 2.4rem 0 8rem;
  overflow: hidden;

  color: var(--white-color);
  white-space: nowrap;
}

.icon_btn_write::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 4.8rem;
  border-radius: 4.8rem;
  background: var(--primary-color);
}

.icon_btn_write::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 4.8rem;
  background: rgba(0, 0, 0, 0.1) url(../lib/icon/edit-3.svg) no-repeat center
    center;

  filter: invert();
}

.icon_btn_cancel {
  position: relative;
  z-index: 1;

  margin-top: 4rem;

  display: inline-flex;
  align-items: center;
  height: 4.8rem;
  border-radius: 4.8rem;
  padding: 0 2.4rem 0 8rem;
  overflow: hidden;

  color: var(--white-color);
  white-space: nowrap;
}

.icon_btn_cancel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 4.8rem;
  border-radius: 4.8rem;
  background: var(--point-color);
}

.icon_btn_cancel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 4.8rem;
  background: rgba(0, 0, 0, 0.1) url(../lib/icon/x.svg) no-repeat center center;

  filter: invert();
}

.flx {
  display: flex;
  gap: 3rem;
}

.flx > * {
  flex: 1;
  min-width: 0;
}

hr.hr {
  display: block;
  border: 1px solid transparent;
  margin: 4rem 0;
}

@media (max-width: 460px) {
  .flx {
    flex-direction: column;
    gap: 4rem;
  }
}

.grd3 {
  display: grid;
  gap: 4rem 3rem;
  grid-template-columns: repeat(
    auto-fit,
    minmax(calc((1170px - 3rem * 2) / 3), 1fr)
  );
}

.grd4 {
  display: grid;
  gap: 4rem 3rem;
  grid-template-columns: repeat(
    auto-fit,
    minmax(calc((1170px - 3rem * 3) / 4), 1fr)
  );
}

.design {
  margin-top: 1.6rem;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
}

.pg_current {
  display: inline-block;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  min-width: 30px;
  border-radius: 3px;
}
.pg_wrap {
  clear: both;
  float: none;
  display: block;
  margin-top: 4rem;
}
