@charset "utf-8";

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --header-height: 80px;
  --padding-xlg1: 180px; /* 180 > 140 */
  --padding-lg1: 140px; /* 140 > 140 */
  --padding-lg2: 140px; /* 140 > 110 */
  --padding-lg3: 140px; /* 140 > 90 */
  --color-things-primary: #FF5000;
  --color-things-primary-sub: #FF9D14;
  --color-works-primary: #EDFF00;
  --color-works-primary-sub: #74C40B;
  --color-works-primary-sub2: #AFC804;
  --color-works-primary-sub3: #B7CF12;
  --color-works-primary-sub4: #BBD600;
}

/* ========================================
   CSS VARIABLES - MOBILE
======================================== */
@media screen and (max-width: 1023px){
  :root {
    --padding-xlg1: 140px; /* 180 > 140 */
    --padding-lg1: 140px; /* 140 > 140 */
    --padding-lg2: 110px; /* 140 > 110 */
    --padding-lg3: 90px; /* 140 > 90 */
  }
}

/* ========================================
   ALIGNMENT
======================================== */
.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.align-center {
  text-align: center !important;
}

.text-left {
  text-align: left;
}

/* ========================================
   DISPLAY
======================================== */
.pc-data {
  display: block;
}

.mo-data {
  display: none;
}

/* ========================================
   DISPLAY - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .pc-data {
    display: none;
  }
  
  .mo-data {
    display: block;
  }
}

/* ========================================
   COLORS
======================================== */
.color-primary {
  color: var(--color-things-primary) !important;
}

.color-primary-sub {
  color: var(--color-things-primary-sub) !important;
}

.color-works-primary {
  color: var(--color-works-primary) !important;
}

.color-works-primary-sub {
  color: var(--color-works-primary-sub) !important;
}

.color-works-primary-sub2 {
  color: var(--color-works-primary-sub2) !important;
}

.color-works-primary-sub3 {
  color: var(--color-works-primary-sub3) !important;
}

.color-works-primary-sub4 {
  color: var(--color-works-primary-sub4) !important;
}

.bg-primary {
  padding: 6px;
  color: #DADADA;
  border-radius: 4px;
  background: linear-gradient(90deg, #FF7B00 0%, var(--color-things-primary) 100%);
}

.bg-works-primary {
  padding: 4px 8px;
  color: #222;
  border-radius: 321px;
  background: linear-gradient(90.51deg, #FAFFB8 0%, var(--color-works-primary) 100%);
}

/* ========================================
   COLORS - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .bg-primary {
    padding: 2px 4px;
  }
  
  .bg-works-primary {
    padding: 2px 8px;
  }
}

/* ========================================
   SPACING
======================================== */
.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-lg3 {
  padding-top: var(--padding-lg3) !important;
} /* 140 > 90 */

.pb-lg1 {
  padding-bottom: var(--padding-lg1) !important;
} /* 140 > 140 */

/* ========================================
   ICONS
======================================== */
.icon {
  display: inline-flex;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.icon-download {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-download.svg);
}

.icon-in {
  width: 21px;
  height: 21px;
  background-image: url(../images/icon-in.svg);
}

.icon-blog {
  width: 21px;
  height: 21px;
  background-image: url(../images/icon-blog.svg);
}

.icon-instagram {
  width: 21px;
  height: 21px;
  background-image: url(../images/icon-instagram.svg);
}

.icon-youtube {
  width: 21px;
  height: 21px;
  background-image: url(../images/icon-youtube.svg);
}

.icon-logo-safeu {
  display: inline-block;
  width: 114px;
  height: 22px;
  vertical-align: top;
}

.icon-logo-safeu::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask: url(../images/mask/logo.svg) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(../images/mask/logo.svg) no-repeat 50%;
  mask-size: contain;
  background-color: #fff;
  transition: all 0.4s;
}

.icon-logo-things {
  display: inline-block;
  width: 100px;
  height: 25px;
  vertical-align: top;
}

.icon-logo-things::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-logo-things.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}

.icon-logo-works {
  display: inline-block;
  width: 100px;
  height: 25px;
  vertical-align: top;
}

.icon-logo-works::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-logo-works.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}

.icon-arrow-prev {
  background-image: url(../images/mask/icon-arrow-prev.svg);
}

.icon-arrow-next {
  background-image: url(../images/mask/icon-arrow-next.svg);
}

.line-icon-works {
  display: block;
  width: 8px;
  height: 72px;
  margin: 0 auto;
  -webkit-mask: url(../images/mask/line.png) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(../images/mask/line.png) no-repeat 50%;
  mask-size: contain;
  background: var(--color-works-primary);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 7px;
}

.line-icon {
  display: block; 
  width: 8px; 
  height: 72px; 
  margin: 0 auto; 
  background: url(../images/mask/line.png) no-repeat center;
} 

/* ========================================
   BULLET
======================================== */
.bullet::before {
  content: '';
  display: inline-block; 
  width: 8px; 
  height: 17px; 
  margin-right: 20px; 
  background-color: #222222;
}

.mini-bullet {
  position: relative; 
  display: flex; 
  align-items: center; 
  padding-left: 20px;
}

.mini-bullet::before {
  content: ''; 
  position: absolute; 
  display: inline-block; 
  top: 12px; 
  left: 0; 
  width: 3.6px; 
  height: 3.6px; 
  margin-right: 10px; 
  vertical-align: middle; 
  border-radius: 50%; 
  border: 1px solid #888888; 
  background-color: #888888;
}

/* ========================================
   BULLET - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .mini-bullet {margin-left: 12px;}
}

/* ========================================
   BUTTONS
======================================== */
.btn-basic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 147px;
  height: 40px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  border-radius: 4px;
  background-color: #000;
  vertical-align: top;
  box-sizing: border-box;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.btn-primary {
  background-color: var(--color-things-primary);
}

.btn-solid {
  color: #000;
  border: 1px solid #000;
  background: none;
}

.btn-dark {
  background-color: #202020;
}

.btn-gray {
  background-color: #404040;
}

.btn-submit {
  min-width: 103px;
  height: 32px;
  padding: 0 26px;
  color: #fff;
  background: #1E1E1E;
}

.btn-submit.active {
  background: linear-gradient(90deg, #FF7B00 0%, var(--color-things-primary) 100%);
}

.btn-login {
  display: inline-block;
  width: 100px;
  height: 40px;
  padding: 11px 30px;
  font-weight: 600;
  font-size: 15px;
  color: #222222;
  line-height: 1.2;
  background: rgba(80, 87, 95, 0.1);
  background-blend-mode: color;
  mix-blend-mode: normal;
  border-radius: 4px;
  vertical-align: top;
}

.dark .btn-login {
  color: #D9D9D9;
  background: rgba(255, 255, 255, 0.06);
}

.dark .btn-basic:not(.btn-primary) {
  background: #fff;
  color: #1E1E1E;
}

.btn-control {
  position: relative;
  width: 27px;
  height: 40px;
  border-radius: 4px;
}

.btn-control .icon {
  width: 10px;
  height: 18px;
}

/* ========================================
   BUTTONS - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .btn-basic {
    min-width: 180px;
    height: 54px;
    padding: 0 40px;
    font-size: 18px;
  }
  
  .btn-dark,
  .btn-gray {
    width: 100%;
    max-width: 400px;
  }
  
  .btn-basic.btn-submit {
    width: 100%;
    height: 50px;
    max-width: none;
    font-size: 15px;
  }
}

/* ========================================
   ANIMATION
======================================== */
[data-ani='fade'] {
  opacity: 0;
  transform: translateY(0);
  transition: 1s ease-out;
}

[data-ani='fadeUp'] {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.2s ease-out;
}

/* ========================================
   LAYOUT
======================================== */
#dBody {
  overflow-x: hidden;
}

html.fix {
  overflow: hidden;
}

.dark {
  background: #000;
}

.data {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.data-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0px;
}

.data-full {
  max-width: none;
}

/* ========================================
   LAYOUT - PC
======================================== */
@media all and (min-width:1024px) {
  .data-max {
    max-width: 1920px;
  }
}

/* ========================================
   LAYOUT - TABLET
======================================== */
@media all and (min-width:1024px) and (max-width:1320px) {
  .data-inner {
    max-width: calc(100vw - 40px);
  }
}

/* ========================================
   LAYOUT - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .data-inner {
    max-width: 70vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .data-full {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .data-inner {
    max-width: none;
  }
}

/* ========================================
   HEADINGS
======================================== */
.heading-logo {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 18px;
}

.heading-logo::after {
  content: '';
  -webkit-mask: url(../images/mask/logo.svg) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(../images/mask/logo.svg) no-repeat 50%;
  mask-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-things-primary);
  transition: all 0.4s;
}

.heading-tag {
  display: inline-flex;
  vertical-align: middle;
}

.heading-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #50575F;
}

.heading-sub {
  display: inline-flex;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: #444444;
  padding: 8px 24px;
  background: #F7F7F7;
  border-radius: 30px;
}

.heading-sub + .heading-title,
.heading-sub + .heading-scenes .heading-title,
.heading-sub + .heading-scenes + .heading-scenes .heading-title {
  margin-top: 16px;
}

.tag-black + .heading-title {
  margin-top: 24px;
}

.heading-title {
  display: block;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #222;
} /* 42 > 32 */

.heading-title + .heading-desc,
.heading-scenes + .heading-desc {
  margin-top: 8px;
}

.heading-title-large {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #222;
} /* 42 > 28 */

.heading-title-medium {
  gap: 18px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #222;
  vertical-align: middle;
} /* 36 > 32 */

.heading-title-medium + .heading-desc {
  margin-top: 10px;
}

.heading-inner-medium + .heading-desc {
  margin-top: 24px;
}

.heading-title-samll {
  gap: 14px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #222;
  vertical-align: middle;
} /* 32 > 28 */

.heading-primary {
  background: linear-gradient(90deg, #FF9A2E 0%, var(--color-things-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading-group .block {
  display: block;
}

.heading-group .btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.heading-group.align-left .btn-area {
  justify-content: start;
}

[class^=heading-inner] {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.desc-group .title {
  font-weight: 600;
  font-size: 32px;
  color: #222;
  line-height: 1.2;
} /* 32 > 24 */

.desc-group .desc {
  margin-top: 23px;
  font-size: 24px;
  color: #50575F;
} /* 24 > 18 */

.desc-group + .desc-group {
  margin-top: 44px;
}

/* dark */
.dark .heading-title,
.dark .heading-desc {
  color: #fff;
}

.dark .desc-group .title {
  color: #fff;
}

.dark .desc-group .desc {
  color: #888;
}

.dark .heading-title-medium,
.dark .heading-title-samll {
  color: #fff;
}

.dark .heading-primary {
  background-color: linear-gradient(90deg, #FF7B00 0%, var(--color-things-primary) 63.21%);
}

/* ========================================
   HEADINGS - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .heading-desc {
    font-size: 18px;
    line-height: 1.4;
  }
  
  .heading-title {
    font-size: 32px;
  }
  
  .heading-title + .heading-desc,
  .heading-sub + .heading-title {
    margin-top: 24px;
  }
  
  .heading-group .btn-area {
    margin-top: 50px;
  }
  
  .heading-title-large {
    font-size: 28px;
  }
  
  .heading-title-medium {
    font-size: 32px;
    line-height: 1.4;
  }
  
  .heading-title-medium + .heading-desc {
    margin-top: 0;
  }
  
  .heading-inner-medium .heading-title-medium {
    font-size: 36px;
  } /* 36 > 36 */
  
  .heading-title-samll {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .desc-group .title {
    font-size: 24px;
  }
  
  .desc-group .desc {
    font-size: 18px;
  }
}

/* ========================================
   FOOTER
======================================== */
.footer-logo {
  display: inline-block;
  flex: none;
  width: 201px;
  height: 36px;
}

.footer-logo {
  background: url(../images/mask/logo.svg);
  background-size: cover;
}

.footer-contact {
  width: 67.5%;
  padding-right: 40px;
  box-sizing: border-box;
}

.footer-site {
  padding-top: 50px;
  padding-bottom: 80px;
  background: #000;
}

.footer-site .data-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.footer-site .links-site {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  width: calc(100% - 67.5%);
  padding-left: 40px;
  box-sizing: border-box;
}

.footer-site .links-site::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 100%;
  background: #222;
  transform: translateY(-50%);
}

.footer-site .links-site .link-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
}

.footer-site .links-site li + li {
  margin-top: 10px;
}

.footer-site .links-list {
  width: 100%;
}

.footer-site .links-list + .links-list {
  margin-top: 96px;
}

.footer-site .ask-contact {
  margin-top: 97px;
  font-size: 18px;
  color: #fff;
}

.footer-site .info-company {
  display: flex;
  margin-top: 20px;
}

.footer-site .info-company span {
  position: relative;
  margin: 0;
}

.footer-site .info-company .call {
  padding-right: 20px;
}

.footer-site .info-company .call::before {
  background: none;
  -webkit-mask: url(../images/mask/icon-ask-call.png) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(../images/mask/icon-ask-call.png) no-repeat 50%;
  mask-size: contain;
  background-color: #fff;
}

.footer-site .info-company .call:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 16px;
  background: #222;
  transform: translateY(-50%);
}

.footer-site .info-company .mail {
  padding-left: 20px;
}

.footer-site .info-company .mail::before {
  background: none;
  -webkit-mask: url(../images/mask/icon-ask-mail.png) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(../images/mask/icon-ask-mail.png) no-repeat 50%;
  mask-size: contain;
  background-color: #fff;
}

.footer-site .copyright {
  padding-top: 70px;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
}

/* 뉴스레터 버전 */
.footer-contact {
  width: calc(54.21875%);
  padding-right: 62px;
}

.footer-contact .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 50px;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-contact .text {
  margin-top: 10px;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.4;
}

.footer-newsletter {
  padding-bottom: 20px;
  background: #2d2d2d;
}

.footer-newsletter .footer-logo {
  width: 170px;
  height: 30px;
}

.footer-newsletter .footer-logo {
  filter: invert(8%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(92%) contrast(90%);
}

.footer-newsletter .links-site {
  width: calc(100% - 54.21875%);
  padding: 40px 0 40px 62px;
}

.footer-newsletter .links-site::before {
  height: 327px;
  background: #404040;
}

.footer-newsletter .links-site .link-item {
  font-size: 16px;
}

.footer-newsletter .links-site li + li {
  margin-top: 22px;
}

.footer-newsletter .sns-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 21px;
  margin-top: 16px;
}

.footer-newsletter .sns-group .sns-list {
  height: 21px;
}

.footer-newsletter .copyright {
  padding-top: 100px;
  font-size: 13px;
  line-height: 1.4;
  color: #404040;
  margin: 0 auto;
}

/* ========================================
   FOOTER - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .footer-contact {
    width: 100%;
    padding-right: 0;
    padding-bottom: 50px;
  }
  
  .footer-contact .title {
    flex-direction: column;
    align-items: start;
  }
  
  .footer-site .data-inner {
    flex-direction: column;
  }
  
  .footer-site .links-site::before {
    top: 0;
    width: 100%;
    height: 1px;
  }
  
  .footer-site .links-site {
    width: 100%;
    padding: 50px 0 0;
  }
  
  .footer-site .links-list + .links-list {
    margin-top: 48px;
  }
}

@media screen and (max-width: 767px) {
  .footer-site .info-company {
    flex-wrap: wrap;
  }
  
  .footer-site .info-company span {
    width: 100%;
    padding: 0 !important;
  }
  
  .footer-site .info-company .call:after {
    display: none;
  }
  
  .footer-site .info-company .mail {
    margin-top: 8px;
  }
}

/* 뉴스레터 버전 MOBILE */
@media screen and (max-width: 1023px) {
  .footer-newsletter .sns-group {
    display: none;
  }
  
  .footer-newsletter .copyright {
    padding-top: 80px;
  }
}


/* ========================================
   POPUP
======================================== */
.layer-pop-parent {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}

.layer-pop-children {
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  text-align: center;
  vertical-align: middle;
}

.pop-view-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}

.pop-view-contents {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.02em;
}

.pop-view-contents.complete {
  padding-top: 122px;
}

.pop-view-contents.complete::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 119px;
  height: 112px;
  background: url(../images/img-pop-complete.svg);
  background-size: cover;
  transform: translateX(-50%);
}

.pop-view-contents .pop-text {
  font-weight: 500;
  font-size: 15px;
  color: #828282;
  line-height: 1.4;
}

.pop-view-header {
  display: flex;
  position: relative;
}

.pop-view-header + .pop-view-body {
  margin-top: 30px;
}

.pop-view-body {
  position: relative;
}

.pop-view-body .text-area {
  text-align: left;
}

.pop-view-footer {
  position: relative;
  padding-top: 30px;
}

.pop-view-footer .pop-view-btns {
  margin-top: 20px;
}

.pop-view-wrap {
  position: relative;
  width: 848px;
  padding: 30px 30px 40px;
  background: #fff;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity var(--layer-pop-duration) ease;
}

.pop-view-wrap.large {
  width: 960px;
}

.pop-view-wrap.medium {
  width: 848px;
}

.pop-view-wrap.small {
  width: 640px;
}

.pop-view-wrap.small .pop-view-header {
  justify-content: center;
}

.pop-view-wrap .btn-pop-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  cursor: pointer;
  z-index: 11;
}

.pop-view-wrap .btn-pop-close::before,
.pop-view-wrap .btn-pop-close::after {
  content: '';
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18.72px;
  height: 1px;
  background: #ffffff;
}

.pop-view-wrap .btn-pop-close::before {
  transform: rotate(405deg);
}

.pop-view-wrap .btn-pop-close::after {
  transform: rotate(-405deg);
}

.layer-pop-wrap {
  --layer-pop-duration: 0.6;
  position: fixed;
  top: 0;
  left: 100%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10000;
  visibility: hidden;
  overflow: hidden;
  transition: left 0s var(--layer-pop-duration) ease, visibility 0s var(--layer-pop-duration) ease, background var(--layer-pop-duration) 0s ease;
}

.layer-pop-wrap .pop-data {
  display: inline-block;
}

.layer-pop-wrap.actived {
  left: 0;
  visibility: visible;
  background: rgba(57, 60, 64, 0.7);
  transition: left 0s 0s ease, visibility 0s 0s ease, background var(--layer-pop-duration) 0s ease;
}

.layer-pop-wrap.actived .pop-view-wrap {
  opacity: 1;
}

.contents-pop .pop-view-wrap {
  border-radius: 4px;
}

html.dark .layer-pop-wrap .btn-basic:not(.btn-primary) {
  background: #000;
  color: #fff;
}

/* ========================================
   POPUP - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  /* 팝업 열렸을 때 body 스크롤 방지 */
  html.fix {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  
  .layer-pop-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* 동적 뷰포트 높이 */
  }
  
  .layer-pop-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .layer-pop-children {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  
  .layer-pop-wrap .pop-data {
    width: 100%;
  }
  
  .pop-view-wrap {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
  }
  
  .pop-view-wrap.small {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: 320px;
    margin: 0 auto;
  }
  
  .pop-view-wrap .btn-pop-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
  }
  
  .pop-view-header {
    flex-shrink: 0;
    min-height: 60px;
    padding: 0;
  }
  
  .pop-view-header:after {
    margin: auto 24px;
  }
  
  .pop-view-header + .pop-view-body {
    margin-top: 20px;
  }
  
  .pop-view-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
    padding: 0 5px;
  }
  
  .pop-view-footer {
    padding: 24px 24px 40px 24px;
  }
  
  .pop-view-footer .pop-view-btns {
    margin-top: 0;
  }
  
  .pop-view-ui {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .pop-view-ui .btn-basic {
    min-width: 130px;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
  }
}

/* 작은 화면 대응 */
@media screen and (max-width: 1023px) and (max-height: 600px) {
  .layer-pop-children {
    padding: 10px;
  }
  
  .pop-view-wrap {
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
  }
  
  .pop-view-header {
    min-height: 50px;
  }
  
  .pop-view-body {
    padding: 0 5px;
  }
}
