@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Thin_100.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-ExtraLight_200.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Light_300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Regular_400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Medium_500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-SemiBold_600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Bold_700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-ExtraBold_800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Black_900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

html, body {
  padding: 0px;
  margin: 0px;
  color: var(--font-black);
  font-family: Pretendard;
}

div {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--font-black);
}

hr {
  border: 0;
  height: 1px;
  background: #E3E2E2;
  margin: 0;
}

.mob {
  display: none;
}


/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ 헤더 시작 ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 998;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.header {
  color: var(--font-gray);
  font-size: 16px;
  font-weight: 500;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header-inquiry-btn-wrapper {
  height: 100%;
}

.header-inquiry-btn-wrapper .header-inquiry-btn {
  width: 110px;
  height: 35px;
  border-radius: 10px;
}

.header a {
  color: var(--font-gray);
}

.header .logo {
  width: 105px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .logo a {
  width: 100%;
  height: 100%;
}

.header .logo img {
  width: 100%;
}

.header .menu {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 27px;
  transition: var(--text-hovering);
}

.header .menu:hover {
  color: var(--font-orange);
}

.header .menu-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 80px;
  transition: height 0.3s ease;
}

.header .solution-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 32px;
  margin-left: 44px;
  cursor: pointer;
  transition: var(--text-hovering);
  position: relative;
}

.header .solution-wrapper:hover {
  color: var(--font-orange);
}

.header .solution-wrapper:hover .icon-menu-open{
  background-image: url(../images/header/icon-menu-close.svg);
}

.header .solution-wrapper .icon-menu-open {
  width: 12px;
  height: 19px;
  background-image: url(../images/header/icon-menu-open.svg);
  background-repeat: no-repeat;
  background-position-y: 6px;
}

.header .menu-solution {
  margin-right: 6px;
}

.solution-layer {
  position: absolute;
  top: 31px;
  left: 0px;
  width: 245px;
  height: 311px;
  box-shadow: 0px 0px 17px rgb(207 207 207);
  z-index: 999;
  border-radius: 8px;
  padding: 30px;
  text-align: left;
  visibility: hidden;
  transition: opacity 0.3s ease;
  opacity: 0;
  background-color: white;
}

.solution-wrapper .header-hr {
  margin-top: 6px;
  margin-bottom: 15px;
  width: 60px;

}

.solution-layer .menu-s {
  padding-bottom: 8px;
  color: var(--font-black);
  font-size: 14px;
  font-weight: 500;
}

.solution-layer .menu-s:hover {
  color: var(--font-orange);
}

.header .solution-wrapper:hover .solution-layer {
  visibility: visible;
  opacity: 1;
}

/*     //    띠배너      //    */
.line-banner {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  color: white;
  padding: 10px 0px;
  cursor: pointer;

}

.hide-banner {
  display: none;
}

.image-banner {
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  background-color: lightgray;
}

.gradation-banner{
}

.line-banner .gp-c1 {
  width: 15%;
}

.line-banner .gp-c2 {
  width: 70%;
  text-align: center;
}

.line-banner .gp-st {
  font-size: 15px;
  color: var(--font-white);
  font-weight: 600;
  font-family: Pretendard;
}

.line-banner .gp-bt {
  font-size: 20px;
  color: var(--font-white);
  font-weight: 600;
  font-family: Pretendard;
}

.line-banner .gp-c3 {
  width: 15%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: underline;
  color: var(--font-white);
}
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ 헤더 끝 ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ 공통 요소 정의 시작 ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.btn-orange {
  background-color: var(--btn-box-bg-orange);
  color: var(--font-white);
  border: 0;
  border-radius: 5px;
  padding: 4px;
  font-family: Pretendard;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-orange:hover {
  background-color: var(--btn-box-bg-orange-hover);
}

.sub-header {
  width: 100%;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  position: sticky;
  top: 150px;
  left: 0px;
  z-index: 99;
  transition: top 0.3s ease;
}

.btn-active-orange {
  background-color: var(--activated-btn-orange);
  color: var(--font-white);
  border: 0;
  border-radius: 25px;
  padding: 4px;
  font-family: Pretendard;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  width: 300px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.btn-active-orange:hover {
  background-color: var(--btn-box-bg-orange-hover);
}

.btn-non-active {
  background-color: var(--nonactivated-btn-gray);
  color: var(--nonactivated-btn-txt-gray);
  border: 0;
  border-radius: 25px;
  padding: 4px;
  font-family: Pretendard;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  width: 300px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.btn-non-active:hover {
  background-color: var(--btn-box-bg-orange-hover);
}

.btn-black {
  background-color: var(--bg-btn-black);
  color: var(--font-white);
  border: 0;
  border-radius: 5px;
  padding: 4px;
  font-family: Pretendard;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-black:hover {
  background-color: var(--bg-btn-black-hover);
}

.f-color-orange {
  color: var(--font-orange);
}

.f-color-black {
  color: var(--font-black);
}

.section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  background-color: white;
}

.section-title {
  font-family: Pretendard;
  font-size: 34px;
  font-weight: 700;
  line-height: 48px;
  color: var(--font-black);
  margin-top: 120px;
  margin-bottom: 50px;
  text-align: center;
}

.section-title-with-subtitle {
  font-family: Pretendard;
  font-size: 34px;
  font-weight: 700;
  line-height: 48px;
  color: var(--font-black);
  margin-top: 120px;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-family: Pretendard;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--font-black);
  margin-bottom: 50px;
  text-align: center;
}

.section-hr {
  width: 1600px;
  margin: 0 auto;
}

.stn-box {
  width: 100%;
  display: flex;
  border-radius: 21px;
  min-height: 80px;
}

.service-introduction-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 122px 0 80px;
  background-color: var(--btn-box-bg-orange);
  width: 1200px;
  height: 244px;
  border-radius: 15px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.service-introduction-box-text {
  font-family: Pretendard;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--font-white);
}

.service-introduction-box-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-si {
  width: 260px;
  height: 50px;
  font-family: Pretendard;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 5px 0;
  border-radius: 15px;
}

/* 모달 */
.modal-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,50%);
  display: none; /*active시 바뀜*/
  position: fixed;
  top: 0px;
  left: 0px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px); /* 배경 흐리게 처리 */
}

.modal-wrapper.active {
  display: flex;
}

.modal {
  min-width: 514px;
  height: fit-content;
  max-height: 90vh;
  padding: 13px 0px 28px 0px;
  background-color: var(--box-bg-gray);
  border-radius: 21px;
  display: flex;
  flex-direction: column;
}
.modal-inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.modal-close-btn-wrapper {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: 19px;
}

.modal-close-btn {
  background-color: unset;
  border: unset;
  width: fit-content;
  height: fit-content;
  padding: 0;
  cursor: pointer;
}

.modal-close-btn-img {
  width: 18px;
  transition: filter 0.3s ease;
}

.modal-close-btn:hover .modal-close-btn-img {
  filter: brightness(1.5);
}

.modal-title {
  font-family: Pretendard;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--font-black);
  text-align: center;
  width: 100%;
  margin-top: 5px;
}

.modal-sub-title {
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--font-black);
  text-align: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 30px;
  word-break: keep-all;
}

.modal-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.modal-label {
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--font-gray);
  text-align: left;
  width: 374px;
  position: relative;
}

.required-star {
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #FF0000;
}

.modal-input {
  width: 374px;
  height: 41px;
  border: 1px solid var(--input-border-color);
  background-color: var(--input-bg);
  border-radius: 15px;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-left: 15px;
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 400;
  color: var(--font-black);
}

.modal-check-box-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 374px;
  padding-left: 20px;
  margin-top: 7px;
  row-gap: 12px;
  margin-bottom: 15px;
}

.checkbox-wrapper {
  width: 155px;
  display: flex;
  align-items: center;
}

.checkbox-wrapper:nth-child(2) {
  width: 125px;
}

.checkbox-wrapper:nth-child(3) {
  width: 60px;
}

.modal-chkbox {
  margin: 0;
}

.interested-services-label {
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--font-black);
  padding-left: 6px;
}

.modal-agreement-area {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  width: 393px;
  row-gap: 10px;
}

.modal-agreement-wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
}

.modal-agreement-label, .agree-label {
  font-family: Pretendard;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--font-black);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.modal-agreement-label {
  width: 190px;
}

.agree-label {
  padding-left: 5px;
}

.modal-agree-check-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.modal-btn-submit {
  width: 458px;
  height: 31px;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  border-radius: 8px;
  /*margin-top: 30px;*/
}

.modal-inner::-webkit-scrollbar-button {
  display: none;
}

.modal-inner::-webkit-scrollbar {
  width: 5px; /* 스크롤바 너비 */
}

.modal-inner::-webkit-scrollbar-track {
  background: #f1f1f1; /* 스크롤바 트랙 색상 */
}

.modal-inner::-webkit-scrollbar-thumb {
  background: #888; /* 스크롤바 손잡이 색상 */
  border-radius: 2px; /* 스크롤바 손잡이 둥글기 */
  width: 5px;
}

.modal-inner::-webkit-scrollbar-thumb:hover {
  background: #555; /* 스크롤바 손잡이 호버 시 색상 */
}

.modal-recaptcha {
  margin-top: 20px;
  margin-bottom: 20px;
}

/*///////////////// 각페이지 최상단의 타이틀 영역 //////////////////*/
.page-title-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0px 60px 0px;
}

.page-title {
  font-family: Pretendard;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--font-black);
  text-align: center;
}

.page-subtitle {
  font-family: Pretendard;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--font-black);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 30px;
}

.page-inquiry-btn-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.inquiry-btn {
  color: var(--font-white);
  width: 180px;
  height: 51px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 15px;
}

.stn-box-title-big {
  font-family: Pretendard;
  font-size: 45px;
  font-weight: 700;
  line-height: 63px;
}

.stn-box-icon-type1 {
  width: 100%;
  background-color: var(--box-bg-gray);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 100px;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 38px 170px 58px 170px;
  margin-bottom: 120px;
}

.stn-box-icon-type2 {
  width: 100%;
  background-color: var(--box-bg-gray);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 36px;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 38px 106px 57px 106px;
  margin-bottom: 120px;
}

.icon-card {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-img-wrapper {
  display: flex;
  justify-content: center;
  width: 220px;
  height: fit-content;
}

.icon-img {
  width: 136px;
}

.icon-title {
  font-family: Pretendard;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  color: var(--font-black);
  text-align: center;
  width: 220px;
  word-break: keep-all;
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-subtitle {
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--font-black);
  text-align: center;
  width: 220px;
  word-break: keep-all;
  height: 59px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


/* ***************** 슬라이드 박스 정의 ******************** */
.swiper {
  height: fit-content;
}

.slide-card-box {
  margin-bottom: 120px;
}


.swiper-wrapper {
}

.slide-card-wrapper {
  width: 100%;
  height: fit-content;
}


.swiper-slide {
  background-color: var(--box-bg-whiteorange);
  box-shadow: var(--box-shadow);
  border-radius: 21px;
}

.slide-card {
  border-radius: 21px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 50px 0 50px 100px;
  column-gap: 65px;
}

.slide-img-box {
  width: fit-content;
}

.slide-img {
  width: 360px;
}

.slide-text-box {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.slide-title {
  font-family: 'Pretendard';
  font-size: 34px;
  font-weight: 700;
  line-height: 48px;
  color: var(--font-orange);
}

.slide-subtitle {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  margin-top: 4px;
  color: var(--font-black);
}

.slide-desc-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 30px;
}

.slide-desc-title {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--font-black);
  margin-bottom: 8px;
}

.slide-desc {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: var(--font-black);
}

.slide-desc ul {
  padding: 0 0 0 25px;
  margin: 0;
}

.slide-desc ul li::marker {
  font-size: 12px;
}

.slide-desc ul li {
  margin-top: 6px;
}

.slide-desc ul li:first-child {
  margin-top: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #CCCCCC; /* 버튼 색상 변경 */
  transition: color 0.3s ease;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--btn-box-bg-orange);
}

.swiper-pagination-bullet-active {
  background-color: var(--btn-box-bg-orange)!important; /* 활성화된 점 색상 */
}

.modal_toast {
  position: absolute;
  padding: 7px 11px;
  background-color: #484848;
  color: var(--font-white);
  border-radius: 5px;
  /*display: flex;*/
  flex-direction: row;
  justify-content: center;
  top: -11px;
  left: 67px;
  box-shadow: var(--box-shadow);
  width: fit-content;
  font-size: 14px;
  line-height: 17px;
  box-sizing: border-box;
  display: none;
}

.modal_toast::after {
  border-top: 7px solid #484848;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 0px solid transparent;
  content: "";
  position: absolute;
  top: 30px;
  left: 12px;
}

.modal_icon_warnning {
  width: 17px;
  margin-right: 5px;
}

.inquiry-modal #modal_name_toast_require {
  top: -10px;
  left: 39px;
}

.inquiry-modal #modal_email_toast_require {
  top: -10px;
  left: 51px;
}

.inquiry-modal #modal_phone_toast_require {
  top: -10px;
  left: 64px;
}

.inquiry-modal #modal_company_toast_require {
  top: -10px;
  left: 51px;
}

.inquiry-modal #modal_privacy_toast_require {
  top: -36px;
  left: 179px;
}



.si-modal #modal_name_toast_require {
  top: -10px;
  left: 39px;
}

.si-modal #modal_email_toast_require {
  top: -10px;
  left: 51px;
}

.si-modal #modal_phone_toast_require {
  top: -10px;
  left: 64px;
}

.si-modal #modal_company_toast_require {
  top: -10px;
  left: 51px;
}

.si-modal #modal_privacy_toast_require {
  top: -34px;
  left: 180px;
}


/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ 공통 요소 정의  끝 ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ 푸터 시작 ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
footer {
  width: 100%;
  height: 460px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 80px;
  color: var(--font-white);
}

.footer-wrapper {
  width: 1200px;
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--bg-btn-black);
  padding: 60px 60px 45px 60px;
  border-radius: 15px;
}

.footer-menu-wrapper-1920 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.footer-menu-wrapper-1920 .footer-menu-col {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.footer-menu-wrapper-1920 .footer-menu-col.col2 {
  margin-right: 100px;
}

.footer-menu-wrapper-1920 .footer-menu-title {
  color: #C1C0C0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-menu-wrapper-1920 .footer-menu {
  color: var(--font-white);
  margin-bottom: 12px;
  padding-left: 11px;
  transition: var(--text-hovering);
}

.footer-menu-wrapper-1920 .footer-menu:hover {
  color: var(--font-orange);
}

.footer-menu-wrapper-1920 .footer-solution-line {
  width: 100px;
  height: 1px;
  margin-left: 10px;
  background-color: #C1C0C0;
}

.footer-menu-wrapper-1920 .footer-company-intro-line {
  width: 56px;
  height: 1px;
  margin-left: 10px;
  background-color: #C1C0C0;
}

.footer-info-wrapper {
  width: 100%;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: Pretendard;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}

.footer-info-row {
  text-align: right;
  margin-bottom: 8px;
}

.footer-info-row:last-child {
  margin-bottom: 0;
}

.footer-logo-wrapper {
  margin-top: 29px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.company-logo-wrapper-1920 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.company-logo-wrapper-1920 .company-logo {
  width: 117px;
  height: 34px;
  margin-right: 20px;
}

.company-logo-wrapper-1920 .company-logo-img {
  width: 117px;
}

.company-logo-wrapper-1920 .privacy {
  font-family: Pretendard;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  margin-right: 25px;
  color: var(--font-white);
  transition: var(--text-hovering);
}

.company-logo-wrapper-1920 .marketing {
  font-family: Pretendard;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: var(--font-white);
  transition: var(--text-hovering);
}

.company-logo-wrapper-1920 .privacy:hover, .company-logo-wrapper-1920 .marketing:hover {
  color: var(--font-orange);
  text-decoration: underline;
}

.etc-logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.etc-logo {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.etc-logo:last-child {
  margin-right: 0;
}

.logo-smoa {
  width: 163px;
}

.logo-kibo {
  width: 56px;
}

.logo-innobiz {
  width: 73px;
}

.logo-mainbiz {
  width: 68px;
}

.logo-kova {
  width: 62px;
}

.logo-iso {
  width: 42px;
}

.logo-kisa {
  width: 41px;
}

.logo-isms {
  width: 40px;
}

/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ 푸터 끝 ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼  시작 ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲  끝 ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/


@media screen and (min-width: 1920px) {
  .company-logo-wrapper-768, .footer-menu-wrapper-mob {
    display: none;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1919px) {
  .company-logo-wrapper-768, .footer-menu-wrapper-mob {
    display: none;
  }

  .section-hr {
    width: 1020px;
  }
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .footer-menu-wrapper-mob {
    display: none;
  }

  .company-logo-wrapper-1920 {
    display: none;
  }

  .header {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding-left: 20px;
  }

  .header-inquiry-btn-wrapper {
    padding-right: 30px;
  }

  .header-inquiry-btn-wrapper .header-inquiry-btn {
    width: 90px;
    height: 30px;
    border-radius: 15px;
  }

  .header .menu-wrapper {
    height: 50px;
  }

  .header .logo {
    width: 79px;
    height: 24px;
  }

  /*     //    띠배너      //    */
  .line-banner .gp-st {
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
  }

  .line-banner .gp-bt {
    font-size: 17px;
    font-weight: 500;
  }

  .line-banner .gp-c3 {
    font-size: 15px;
  }

  footer {
    height: 535px;
    background-color: var(--bg-btn-black);
    margin-bottom: 0px;
  }

  .footer-wrapper {
    width: 768px;
    height: 535px;
    padding: 60px 40px 42px 60px;
    border-radius: 0;
  }

  .company-logo-wrapper-768 {
    width: 100%;
    margin-top: 35px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .company-logo-wrapper-768 .company-logo {
    width: 117px;
    height: 34px;
    margin-left: 20px;
  }

  .company-logo-wrapper-768 .company-logo-img {
    width: 117px;
  }

  .company-logo-wrapper-768 .privacy {
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: var(--font-white);
    transition: var(--text-hovering);
    padding-top: 10px;
  }

  .company-logo-wrapper-768 .marketing {
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    margin-left: 25px;
    color: var(--font-white);
    transition: var(--text-hovering);
    padding-top: 10px;
  }

  .company-logo-wrapper-768 .privacy:hover, .company-logo-wrapper-768 .marketing:hover {
    color: var(--font-orange);
    text-decoration: underline;
  }

  .logo-smoa {
    width: 147px;
  }

  .logo-kibo {
    width: 53px;
  }

  .logo-innobiz {
    width: 66px;
  }

  .logo-mainbiz {
    width: 61px;
  }

  .logo-kova {
    width: 56px;
  }

  .logo-iso {
    width: 38px;
  }

  .logo-kisa {
    width: 37px;
  }

  .logo-isms {
    width: 40px;
  }

  .footer-logo-wrapper {
    justify-content: flex-end;
    margin-top: 41px;
  }

  .section-hr {
    width: 520px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 24px;
    margin-top: 50px;
  }

  .section-title-with-subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 50px;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 25px;
  }

  .service-introduction-box {
    padding: 0 50px;
    width: 768px;
    max-width: 95%;
    height: 150px;
  }

  .service-introduction-box-text {
  }

  .service-introduction-box-btn-wrapper {
  }

  .btn-si {
    width: 125px;
    height: 38px;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    margin: 8px 0;
    border-radius: 10px;
  }

  .section {
    width: 100%;
  }

  /*///////////////// 각페이지 최상단의 타이틀 영역 //////////////////*/
  .page-title-area {
    width: MIN(768px, 100%);
    height: 260px;
    padding: 45px 0px 50px 0px;
    margin: 0 auto;
  }

  .page-title {
    font-size: 24px;
    line-height: 29px;
  }

  .page-subtitle {
    font-size: 16px;
    line-height: 19px;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .inquiry-btn {
    width: 110px;
    height: 38px;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    border-radius: 10px;
  }

  .stn-box-title-big {
    font-size: 24px;
    line-height: 29px;
  }



  .stn-box-icon-type1 {
    width: 696px;
    column-gap: 16px;
    row-gap: 51px;
    padding: 20px 2px 30px 2px;
    margin-bottom: 60px;
  }

  .stn-box-icon-type2 {
    width: 696px;
    column-gap: 36px;
    row-gap: 57px;
    padding: 25px 110px 45px 110px;
    margin-bottom: 60px;
  }

  .icon-card {
  }

  .icon-img-wrapper {
  }

  .icon-img {
  }

  .icon-title {
    font-size: 20px;
    line-height: 24px;
    height: 52px;
  }

  .icon-subtitle {
    height: 38px;
  }


  /* ***************** 슬라이드 박스 정의 ******************** */
  .swiper {
    width: 696px;
    height: 320px;
  }

  .slide-card-box {
    margin-bottom: 60px;
  }

  .slide-card-wrapper {
    height: fit-content;
  }

  .slide-card {
    border-radius: 21px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px 50px 30px 80px;
    column-gap: 25px;
  }

  .slide-img-box {
    width: fit-content;
  }

  .slide-img {
    width: 226px;
  }

  .slide-text-box {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .slide-title {
    font-size: 20px;
    line-height: 24px;
    word-break: keep-all;
  }

  .slide-subtitle {
    font-size: 14px;
    line-height: 17px;
    margin-top: 5px;
    word-break: keep-all;
  }

  .slide-desc-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 18px;
  }

  .slide-desc-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 5px;
    word-break: keep-all;
  }

  .slide-desc {
    font-size: 14px;
    line-height: 17px;
  }

  .slide-desc ul {
    padding: 0 0 0 23px;
  }

  .slide-desc ul li::marker {
    font-size: 10px;
  }

  .slide-desc ul li {
    margin-top: 5px;
    word-break: keep-all;
  }

  .slide-desc ul li:first-child {
    margin-top: 0;
  }

  .sub-header {
    top: 120px;
  }

  .btn-active-orange {
    width: 190px;
    height: 30px;
    font-size: 14px;
    font-weight: 500;
  }

  .btn-non-active {
    width: 190px;
    height: 30px;
    font-size: 14px;
    font-weight: 500;
  }

}

/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
@media screen and (max-width: 767px) {
  .pc {
    display: none!important;
  }

  br.mob {
    display: block;
  }

  .footer-menu-wrapper-1920 {
    display: none;
  }

  .company-logo-wrapper-1920 {
    display: none;
  }

  .header {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding-left: 14px;
    display: block;
  }

  .header-inquiry-btn-wrapper {
    padding-right: 30px;
    display: none;
  }

  .header-inquiry-btn-wrapper .header-inquiry-btn {
    width: 90px;
    height: 30px;
    border-radius: 15px;
  }

  .header .menu-wrapper {
    height: 50px;
    position: relative;
  }

  .header .logo {
    width: 94px;
    height: 28px;
  }

  .m-menu-btn-wrapper {
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    cursor: pointer;
  }
  .m-menu-btn-img {
    width: 24px;
    height: 17px;
    background-image: url('/images/header/btn-mob-menu.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .m-menu-layer {
    width: 100vw;
    background-color: white;
    position: absolute;
    top: 50px;
    left: -14px;
    flex-direction: column;
    padding: 23px 10px 32px 40px;
    font-size: MAX(MIN(3.75vw, 16px),12px);
    font-weight: 500;
    line-height: MAX(MIN(3.75vw, 16px), 12px);
  }

  .m-menu-layer.active {
    display: flex;
  }

  .m-menu-layer .header-hr {
    width: calc(100% - 45px);
    margin-bottom: 23px;
    margin-top: 21px;
  }

  .m-menu-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .m-menu-col {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
  }

  .m-menu-col a {
    margin-bottom: 15px;
    word-break: keep-all;
  }

  .m-menu-col .m-menu {
    color: var(--font-black);
    transition: var(--text-hovering);
  }

  .m-menu-col .m-menu:hover {
    color: var(--font-orange);
  }

  .m-menu-col a:last-child {
    margin-bottom: 0;
  }

  .mm-col1 {
    width: 160px;
  }

  .mm-col2 {
    width: 120px;
  }

  /*     //    띠배너      //    */
  .line-banner .gp-st {
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
  }

  .line-banner .gp-bt {
    font-size: 17px;
    font-weight: 500;
  }

  .line-banner .gp-c1 {
    width: 0%;
  }

  .line-banner .gp-c2 {
    width: 85%;
    text-align: left;
    padding-left: 30px;
  }

  .line-banner .gp-c3 {
    font-size: 15px;
    min-width: 80px;
  }

  footer {
    height: fit-content;
    margin-bottom: 0px;
  }

  .footer-wrapper {
    width: 100%;
    height: fit-content;
    padding: 30px 20px 16px 18px;
    border-radius: 0;
  }

  .footer-menu-wrapper-mob {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menu-wrapper-mob .footer-menu-title {
    color: #C1C0C0;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    width: 100%;
  }

  .footer-menu-wrapper-mob .footer-solution-line {
    width: 195px;
    height: 1px;
    margin-left: 10px;
    background-color: #C1C0C0;
  }

  .footer-menu-wrapper-mob .footer-menu-col.col1 {
    padding-left: 11px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 115px;
  }

  .footer-menu-wrapper-mob .footer-menu-col.col1 a{
    width: 84px;
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: var(--font-white);
    margin-bottom: 15px;
    margin-right: 30px;
  }

  .footer-menu-wrapper-mob .footer-menu-col.col2 {
    padding-left: 11px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 62px;
    margin-bottom: 30px;
  }

  .footer-menu-wrapper-mob .footer-menu-col.col2 a{
    width: 84px;
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: var(--font-white);
    margin-bottom: 15px;
    margin-right: 30px;
  }

  .footer-menu-wrapper-mob .footer-menu {
    transition: var(--text-hovering);
  }

  .footer-menu-wrapper-mob .footer-menu:hover {
    color: var(--font-orange);
  }

  .footer-menu-wrapper-mob .footer-general-line {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5px;
    height: 1px;
    background-color: #C1C0C0;
  }

  .footer-menu-wrapper-mob .footer-menu-col.col3 {
    padding-left: 11px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 120px;
  }

  .footer-menu-wrapper-mob .footer-menu-col.col3 a{
    width: 90px;
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: var(--font-white);
    margin-bottom: 15px;
    margin-right: 30px;
  }

  .footer-menu-wrapper-mob .footer-company-intro-line {
    width: 51px;
    margin-left: 10px;
    height: 1px;
    background-color: #C1C0C0;
  }

  .company-logo-wrapper-768 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .company-logo-wrapper-768 .company-logo-img {
    width: 104px;
  }

  .company-logo-wrapper-768 .privacy, .company-logo-wrapper-768 .marketing {
    font-family: Pretendard;
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    color: var(--font-white);
    transition: var(--text-hovering);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 5px;
  }

  .company-logo-wrapper-768 .privacy:hover, .company-logo-wrapper-768 .marketing:hover {
    color: var(--font-orange);
    text-decoration: underline;
  }

  .company-logo-wrapper-768 .privacy {
    margin-left: 15px;
  }

  .company-logo-wrapper-768 .marketing {
    margin-left: 22px;
  }

  .footer-info-row {
    text-align: left;
    margin-bottom: 15px;
  }

  .etc-logo-wrapper {
    flex-wrap: wrap;
  }

  .logo-smoa {
    width: 111px;
  }

  .logo-kibo {
    width: 40px;
  }

  .logo-innobiz {
    width: 49px;
  }

  .logo-mainbiz {
    width: 46px;
  }

  .logo-kova {
    width: 42px;
  }

  .logo-iso {
    width: 28px;
  }

  .logo-kisa {
    width: 28px;
  }

  .logo-isms {
    width: 32px;
  }

  .etc-logo {
    height: 33px;
  }

  .section-hr {
    width: 80%;
  }

  .section-title {
    font-size: 16px;
    line-height: 18px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .section-title-with-subtitle {
    font-size: 16px;
    line-height: 18px;
    margin-top: 50px;
    margin-bottom: 5px;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 30px;
    word-break: keep-all;
  }

  .service-introduction-box {
    padding: 40px 25px;
    width: 100%;
    height: 178px;
    flex-direction: column;
    align-items: center;
    border-radius: 0px;
    margin-bottom: 0px;
  }

  .service-introduction-box-text {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
  }

  .service-introduction-box-btn-wrapper {
    flex-direction: row;
    margin-top: 30px;
  }

  .btn-si {
    width: 125px;
    height: 30px;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    margin: 0 10px;
    border-radius: 10px;
  }


  /* 모달 */
  .modal {
    width: 93%;
    min-width: unset;
    max-width: 514px;
    height: fit-content;
    max-height: 90vh;
    padding: 13px 0px 28px 0px;
  }
  .modal-inner {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }

  .modal-close-btn-wrapper {
    padding-right: 15px;
  }

  .modal-title {
    font-size: 16px;
    line-height: 19px;
    margin-top: 0;
  }

  .modal-sub-title {
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .modal-form {
    width: 90%;
  }

  .modal-label {
    width: 100%;
  }

  .modal-input {
    width: 100%;
  }

  .modal-check-box-area {
    width: 100%;
  }

  .checkbox-wrapper {
    width: 145px;
  }

  .checkbox-wrapper:nth-child(2) {
    width: 125px;
  }

  .checkbox-wrapper:nth-child(3) {
    width: 60px;
  }

  @media (max-width: 418px) {
    .checkbox-wrapper:nth-child(3) {
      order: 2
    }
    .checkbox-wrapper:nth-child(5) {
      order: 3
    }
  }

  .modal-agreement-area {
    width: 100%;
  }

  .modal-agreement-label {
    width: 190px;
  }

  @media (max-width: 340px) {
    .modal-agreement-label {
      width: 180px;
    }
    @media (max-width: 328px) {
      .modal-form {
          width: 93%;
      }
    }
  }

  .modal-btn-submit {
    width: 100%;
    font-size: 12px;
    line-height: 14px;
  }

  .section {
    width: 100%;
  }

  /*///////////////// 각페이지 최상단의 타이틀 영역 //////////////////*/
  .page-title-area {
    width: 100%;
    height: fit-content;
    padding: 40px 0px 30px 0px;
    margin: 0 auto;
  }

  .page-title {
    font-size: 20px;
    line-height: 24px;
  }

  .page-subtitle {
    font-size: 12px;
    line-height: 14px;
    margin-top: 10px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    word-break: keep-all;
    width: MIN(500px, 90%);
  }

  .inquiry-btn {
    width: 90px;
    height: 30px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    border-radius: 10px;
  }

  .stn-box-title-big {
    font-size: 16px;
    line-height: 19px;
  }

  /* 가로 372px "이하" 일 때 */
  @media screen and (max-width: 372px) {

  }

  /* 가로 373px "이상" 일 때 */
  @media screen and (min-width: 373px) {
    .m-menu-col {
      margin-right: 10vw;
    }
  }



  .stn-box-icon-type1 {
    width: 95.6vw;
    column-gap: 10px;
    row-gap: 24px;
    padding: 10px 22px 20px 22px;
    margin-bottom: 50px;
  }

  .stn-box-icon-type2 {
    width: 95.6vw;
    column-gap: 10px;
    row-gap: 24px;
    padding: 10px 22px 20px 22px;
    margin-bottom: 50px;
  }

  .icon-card {
    width: 30%;
    align-items: center;
  }

  .stn-box-icon-type2 .icon-card {
    width: 40%;
  }

  .icon-img-wrapper {
    height: fit-content;
    width: 132px;
  }

  .icon-img {
    width: 64px;
  }

  .icon-title {
    font-size: 14px;
    line-height: 17px;
    height: 41px;
    width: 132px;
  }

  .icon-subtitle {
    font-size: 10px;
    line-height: 12px;
    height: fit-content;
    min-height: 24px;
    width: 132px;
  }

  @media (max-width: 550px) {
    .icon-card {
      width: 47%;
    }
    .icon-subtitle {
      font-size: 10px;
      line-height: 12px;
      height: fit-content;
      min-height: 24px;
      width: 98%;
      max-width: 132px;
    }
  }


  /* ***************** 슬라이드 박스 정의 ******************** */
  .swiper {
    width: 95.6vw;
    height: fit-content;
    background-color: var(--box-bg-whiteorange);
  }

  .swiper-slide {
    box-shadow: unset;
    border-radius: 21px;
  }

  .slide-card-box {
    margin-bottom: 50px;
  }

  .slide-card-wrapper {
    height: fit-content;
  }

  .slide-card {
    border-radius: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 60px 50px 60px;
    column-gap: 25px;
  }

  .slide-img-box {
    width: fit-content;
  }

  .slide-img {
    width: MIN(226px, 80vw);
  }

  .slide-text-box {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: MIN(226px, 80vw);
  }

  .slide-title {
    font-size: 20px;
    line-height: 24px;
    word-break: keep-all;
  }

  .slide-subtitle {
    font-size: 14px;
    line-height: 17px;
    margin-top: 5px;
    word-break: keep-all;
  }

  .slide-desc-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 18px;
  }

  .slide-desc-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 5px;
    word-break: keep-all;
  }

  .slide-desc {
    font-size: 14px;
    line-height: 17px;
  }

  .slide-desc ul {
    padding: 0 0 0 23px;
  }

  .slide-desc ul li::marker {
    font-size: 10px;
  }

  .slide-desc ul li {
    margin-top: 5px;
    word-break: keep-all;
  }

  .slide-desc ul li:first-child {
    margin-top: 0;
  }

  .sub-header {
    top: 120px;
  }

  .btn-active-orange {
    width: 122px;
    height: 30px;
    font-size: 12px;
  }

  .btn-non-active {
    width: 122px;
    height: 30px;
    font-size: 12px;
  }

  /* 가로 373px "이하" 일 때 서비스소개서다운로드 모달의 개인정보처리방침동의 체크 토스트 위치 변경 */
  @media screen and (max-width: 373px) {
    .si-modal #modal_privacy_toast_require {
      left: 140px;
    }
    .si-modal #modal_privacy_toast_require::after {
      left: 51px;
    }
    @media screen and (max-width: 340px) {
      .si-modal #modal_privacy_toast_require {
        left: 130px;
      }
      .si-modal #modal_privacy_toast_require::after {
        left: 51px;
      }
    }
  }
  @media screen and (max-width: 378px) {
    .inquiry-modal #modal_privacy_toast_require {
      left: 140px;
    }
    .inquiry-modal #modal_privacy_toast_require::after {
      left: 51px;
    }
    @media screen and (max-width: 340px) {
      .inquiry-modal #modal_privacy_toast_require {
        left: 130px;
      }
      .inquiry-modal #modal_privacy_toast_require::after {
        left: 51px;
      }
    }
  }
}


