/* half-container */
.half-container {
  position: relative;
  z-index: 2;
  display: flex;
}

.half-container .tit-wrap,
.half-container .box-wrap {
  flex: 1;
}

.half-container .tit-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.half-container .box-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 100px;
  padding: var(--divider-gap) 5.2vw;
  padding-right: 0;
}

.half-container .box-wrap .box {
  width: 450px;
  border-radius: 30px;
  overflow: hidden;
  align-self: flex-start;
}

.half-container .box-wrap .box:nth-child(odd) {
  align-self: flex-end;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
  .half-container.inner-divider {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
  .half-container .box-wrap {
    row-gap: 80px;
    padding: var(--divider-gap) 7vw;
    padding-right: 0;
  }

  .half-container .box-wrap .box {
    width: 100%;
  }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  /* half-container */
  .half-container {
    flex-direction: column;
    align-items: center;
  }

  .half-container .tit-wrap {
    height: 100%;
    text-align: center;
  }

  .half-container .box-wrap {
    row-gap: 45px;
    padding: 0;
    padding-right: 0;
    margin-top: var(--tit-margin);
    width: 75vw;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  /* half-container */
  .half-container {
    flex-direction: column;
    align-items: center;
  }

  .half-container .tit-wrap {
    text-align: center;
    display: block;
    width: 100%;
    height: 100%;
  }

  .half-container .box-wrap {
    row-gap: 30px;
    padding: 0;
    padding-right: 0;
    margin-top: var(--tit-margin);
  }
}

:root {
  --tit-margin: 80px;
  --top-tit-margin: 250px;

  --sub-p-size: 26px;
}

.wide section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

/* detail-btn */
.detail-btn {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 50px;
  width: fit-content;
  --btn-height: 60px;
  --btn-font-size: 18px;
  padding: 0 35px;
  transition: all 0.3s ease;
}

.btn.detail-btn:hover,
.content-title .btn.detail-btn:hover,
.text .btn.detail-btn:hover {
  font-weight: 700;
}

.detail-btn::after {
  content: "";
  display: block;
  width: 19px;
  height: auto;
  aspect-ratio: 19/12;
  background: url("/themes/basic/assets/images/btn_arrow.svg") no-repeat center
    center / contain;
  margin-left: 12px;
}

.detail-btn.white::after {
  filter: invert(1);
}

.detail-btn.link::after {
  width: 15px;
  aspect-ratio: 1;
  background: url("/themes/basic/assets/images/icon_link.svg") no-repeat center
    center / contain;
}

.btn-wrap {
  display: flex;
  gap: 20px;
}

/* 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 h2 span,
.content-title.white h2 span {
  color: var(--color-primary);
}

.content-title h2 span.light,
.content-title.white h2 span.light {
  color: var(--color-sub);
}

.content-title .desc {
  font-size: var(--f22);
  color: var(--color-mute);
  line-height: 1.75;
  margin-top: 30px;
  word-break: keep-all;
}

.content-title.white .desc {
  color: rgba(255, 255, 255, 0.6);
}

.content-wrap {
  display: flex;
  justify-content: space-between;
  gap: 5vw;
}

.content-wrap .content-title {
  margin-bottom: 0;
}

.sub-p,
.white .sub-p {
  color: var(--color-sub);
  font-size: var(--sub-p-size);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.sub-p.white {
  color: #fff;
}

.sub-p + h2 {
  margin-top: 10px;
}

/* 슬라이드 도트넘버링 커스텀 */
.slide-dots.num {
  bottom: 20px;
  color: #fff;
  background: #000;
  left: 50%;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bg-fixed {
  background-attachment: fixed;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  :root {
    --tit-margin: 55px;
    --top-tit-margin: 200px;
    --sub-p-size: 20px;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  :root {
    --tit-margin: 35px;
    --top-tit-margin: 150px;
    --sub-p-size: 14px;
  }

  .btn-wrap {
    gap: 10px;
  }

  .down-app {
    width: 120px;
  }

  /* detail-btn */
  .detail-btn {
    --btn-height: 45px;
    --btn-font-size: 14px;
    padding: 0 20px;
  }
}
