:root {
  --tit-margin: 100px;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wide section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.wide section::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: var(--bg-img);
  opacity: var(--bg-opactiy);
  position: absolute;
  top: 0;
  left: 0;
}

.wide section > * {
  position: relative;
  z-index: 1;
}
.wide section:last-child {
  margin-bottom: 170px;
}

.bg {
  width: 100%;
  height: 100%;
  background-image: var(--bg-img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.cta-btn {
  background-color: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
  border-radius: 50px;
  width: fit-content;
  min-width: 165px;
}

.cta-btn.more {
  letter-spacing: 0;
}

.cta-btn.download,
.btn.download {
  column-gap: 6px;
}

.cta-btn.download:after,
.btn.download::after,
.btn.download.hwp::before,
.btn.download.excel::before,
.btn.download.pdf::before {
  content: "";
  background-image: url("/assets/images/public/icon_download.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.btn.download.hwp::before {
  background-image: url("/assets/images/public/icon_hwp.png");
}
.btn.download.pdf::before {
  background-image: url("/assets/images/public/icon_pdf.png");
}
.btn.download.excel::before {
  background-image: url("/assets/images/public/icon_excel.png");
}
.btn.download.hwp::after,
.btn.download.excel::after,
.btn.download.pdf::after {
  display: none;
}

.more-arrow {
  --arrow-circle-size: clamp(30px, 6vw, 50px);
  --arrow-size: clamp(3px, 1vw, 8px);
  --arrow-thickness: 2px;
  --arrow-color: #fff;

  display: block;
  position: relative;
  width: var(--arrow-circle-size);
  height: var(--arrow-circle-size);

  border: 1px solid var(--arrow-color);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;

  overflow: hidden;
}

.more-arrow .arrow {
  transition: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--arrow-color);

  width: 18px;
  height: var(--arrow-thickness);
  transform: rotate(-45deg);
}

.more-arrow .arrow::before {
  content: "";
  position: absolute;
  top: calc(var(--arrow-size) / -2);
  right: 1px;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-top: var(--arrow-thickness) solid var(--arrow-color);
  border-right: var(--arrow-thickness) solid var(--arrow-color);
  transform: rotate(45deg);
}

.more-arrow:hover .arrow {
  animation: aniArrow 1.2s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
}

@keyframes aniArrow {
  0% {
    transform: translateX(-45px) translateY(45px) rotate(-45deg);
  }

  100% {
    transform: translateX(44px) translateY(-44px) rotate(-45deg);
  }
}

/* content-title */
.text.white *,
.content-title.white * {
  color: #fff;
}

.text.white .btn,
.content-title.white .btn {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.text.center *,
.content-title.center * {
  text-align: center;
}

.text.center .btn,
.content-title.center .btn {
  margin-left: auto;
  margin-right: auto;
}

.content-title {
  margin-bottom: var(--tit-margin);
}

.content-title .desc,
.text .desc {
  font-size: clamp(14px, 2vw, var(--f20));
  line-height: 1.75;
  margin-top: 15px;
  word-break: keep-all;
}

.content-title .sub-p,
.sub-p {
  font-size: clamp(18px, 2.2vw, var(--f22));
  font-weight: 600;
  letter-spacing: var(--en-letter-spacing);
  line-height: 1;
  margin-bottom: clamp(5px, 2vw, 20px);
  color: var(--color-primary);
}

.content-title .btn {
  margin-top: 50px;
}

.circle-glow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.6);
  filter: blur(50px);
  opacity: 0.03;
}

.spin {
  display: inline-block;
  animation: rotate360 3.5s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 텍스트 박스 */
.text-box ~ .text-box {
  margin-top: 150px;
}

.text-box h3.title {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 45px;
  line-height: 1.2;
}

.text-box h3.title::before {
  content: "";
  display: inline-block;
  width: 0.875em;
  height: 0.875em;
  background-image: url("/assets/images/public/tit_bullet.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.text-box h5.sub-title {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}

.text-box h5.sub-title::before {
  content: "";
  display: inline-block;
  width: 0.666em;
  height: 0.666em;
  background-image: url("/assets/images/public/sub_bullet.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.text-box p.desc {
  font-size: var(--f18);
  line-height: 1.75;
  word-break: keep-all;
}
/* 규정 */

.terms {
  clear: both;
}

.terms .depth01 h4 {
  width: 100%;
  margin-bottom: 30px;
}

.terms .depth01 h4 + p {
  margin-bottom: 10px;
}

.terms .depth02 h5 {
  width: 100%;
  color: #121212;
}

.terms .depth02 h5 + p {
  margin-bottom: 10px;
}

.terms .depth03 h6 {
  width: 100%;
  color: #121212;
}

.terms .depth02 li {
  padding-bottom: 50px;
}

.terms .depth02 ol ol,
.terms .depth02 ol ul,
.terms .depth02 ul ul,
.terms .depth03 ol ol,
.terms .depth03 ol ul,
.terms .depth03 ul ul {
  margin: 5px 0;
}

.terms .depth02 ol li,
.terms .depth03 ol li {
  padding-left: 20px;

  text-indent: -20px;
}

.terms .depth02 ul li,
.terms .depth03 ul li {
  padding-left: 17px;
  text-indent: -17px;
}

.terms .depth02 li li {
  padding-bottom: 0px;
}

.terms .depth03 li {
  padding-bottom: 30px !important;
}

.terms .depth03 li li {
  padding-bottom: 0px !important;
}

.terms .depth03 p {
  margin-left: -17px;
  text-indent: 0 !important;
}

.terms .depth03 ul,
.terms .depth03 ol,
.terms .depth03 li table {
  margin-left: -17px !important;
}

.terms .depth03 ul ul,
.terms .depth03 ol ul,
.terms .depth03 ol p,
.terms .depth03 ul p {
  margin-left: 0px !important;
}
/*규정 end */

/* terms */
.terms * {
  word-break: keep-all;
}

.terms h3.title {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
  line-height: 1.2;
}

.terms h3.title::before {
  content: "";
  display: inline-block;
  width: 0.875em;
  height: 0.875em;
  background-image: url("/assets/images/public/tit_bullet.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.terms h5 {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}

.terms h5::before {
  content: "";
  display: inline-block;
  width: 0.666em;
  height: 0.666em;
  background-image: url("/assets/images/public/sub_bullet.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.terms .textwrap {
  margin-top: 60px;
}

.terms .depth01 ~ .depth01 {
  margin-top: 150px;
}

.terms .depth02 {
  --padding-left: 25px;
  padding-left: var(--padding-left);
}

.terms .depth02 ~ .depth02 {
  margin-top: 50px;
}

.terms .depth02 h5 {
  margin-bottom: 15px;
  position: relative;
  left: calc(var(--padding-left) * -1);
}

.terms .depth02 p + ul {
  margin-top: 15px;
}

.terms .depth02 ul > li ~ li,
.terms .depth02 ol > li ~ li {
  margin-top: 10px;
}

.terms .depth02 ul ul > li,
.terms .depth02 ol ol > li,
.terms .depth02 ul ol > li,
.terms .depth02 ol ul > li {
  font-size: 0.9em;
}

.terms .depth03 h6 {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 5px;
}

.terms .depth03 h6:before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}

.mt_10 {
  margin-top: 10px;
}
.mt_50 {
  margin-top: 50px;
}
.al_center {
  text-align: center;
}
.al_right {
  text-align: right;
}
.al_left {
  text-align: left !important;
}

.t_underline {
  text-decoration: underline;
}
.justify-content-end {
  display: flex;
  align-items: center;
  justify-content: end;
}
.justify-content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.justify-content-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-number li {
  counter-increment: list-counter;
  padding-left: 28px;
}

.list-number li::before {
  content: counter(list-counter);
  position: absolute;
  top: 2px;
  left: 0;
  background-color: var(--color-primary);
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
}
.btn.download {
  border-radius: 50px;
}

.step-box-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(100% + 50px);
}

.step-box-item {
  max-width: 246px;
  height: 138px;
  border: 1px solid #fe6000;
  border-radius: 18px;
  position: relative;
  background: #fefaf9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0 !important;
  margin: 0 50px;
  flex-direction: column;
  padding: 10px;
}

.step-box-item * {
  text-align: center;
  font-weight: bold;
}
.step-box-wrap li {
  margin-bottom: 20px;
}
/* .step-box-wrap li ~ li .step-box-item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: 60px;
  border-top: 2px dashed #e8e8e8;
  left: -12.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.step-box-wrap li ~ li .step-box-item::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/service/arrow.png) no-repeat 50%;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 27px;
} */

.step-box-wrap li:not(:last-child) .step-box-item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: 60px;
  border-top: 2px dashed #e8e8e8;
  right: -12.5%;
  top: 50%;
  transform: translate(50%, -50%);
  transform-origin: right;
}

.step-box-wrap li:not(:last-child) .step-box-item::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/service/arrow.png) no-repeat 50%;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 27px;
}

.step-box-wrap.list-number li {
  width: calc(20% + 50px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  margin-left: -50px;
}

.step-box-wrap.list-number li::before {
  top: -10px;
  left: 70px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  z-index: 1;
}

.step-box-item .title {
  font-size: 1.1em;
}

.step-box-item .sub_title {
  font-size: 0.8em;
  color: var(--color-mute);
  font-weight: 400;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}
/* Tablet ( ~ 1023px)*/
@media all and (max-width: 1023px) {
  .step-box-wrap {
    flex-direction: column;
    width: 100%;
  }
  .step-box-item {
    max-width: none;
    width: 100%;
    margin: 50px;
  }
  .step-box-wrap.list-number li {
    width: 100%;
    margin-bottom: 0;
    margin-left: 0;
  }
  .step-box-wrap li:not(:last-child) .step-box-item::before {
    right: 50%;
    bottom: -38px;
    top: inherit;
    width: 26px;
    height: 27px;
    transform: translateX(50%) rotate(90deg);
  }
  .step-box-wrap li:not(:last-child) .step-box-item::after {
    width: 1px;
    max-width: none;
    border-top: none;
    border-left: 2px dashed #e8e8e8;
    right: 50%;
    top: inherit;
    transform: translate(50%);
    transform-origin: right;
    bottom: -55px;
    height: 60px;
  }
}
/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .terms .depth01 ~ .depth01 {
    margin-top: 60px;
  }
  .wide section:last-child {
    margin-bottom: clamp(40px, 8vw, 80px);
  }
  .search-box-area.justify-content-between {
    flex-direction: column-reverse;
  }
  .search-box-area.justify-content-between .total-count {
    width: 100%;
    padding: 10px 0;
    text-align: left;
  }
  .search-box-area.justify-content-between + .table {
    margin-top: 5px !important;
  }
}

@media all and (max-width: 479px) {
}
