/* section{
  min-width: max-content;
} */

* {
  -webkit-tap-highlight-color: transparent;
  /* Chrome, Safari, Opera (모바일) */
  outline: none;
  /* 클릭 시 생기는 외곽선 제거 */
}

/* 메인 페이지 스타일 시작 */
.inner-container {
  width: 1200px;
  margin: auto;
}

.fs-title2 {
  font-size: 65px;
}

.fs-text1 {
  font-size: 40px;
}

.fs-text2 {
  font-size: 34px;
}

.fs-text3 {
  font-size: 30px;
}

#ssok-main em {
  font-style: normal;
}

#ssok-main .title-highlight {
  color: #3679FF;
}

.title-explain-margin {
  margin-bottom: 46px;
}

/* 인트로 시작 */
.intro-section {
  padding: 170px 0 100px 0;
}

.intro-section h2 {
  margin-bottom: 76px;
}

.main-figure {
  width: 100%;
  border-radius: 58px;
  position: relative;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #DDEBF9 100%);
  padding-top: 30px;
}

.main-figure img {
  height: 600px;
  display: block;
  margin: auto;
}

.main-explain-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3679FF;
  border-radius: 16px;
  padding: 30px;
  gap: 70px;
}

.main-explain {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.main-explain img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.main-explain dd {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  text-wrap: nowrap;
}

/* 인트로 끝 */


/* 누구나 가능 섹션 시작 */
.everybody-can-section {
  padding: 170px 0 130px 0;
}

.everybody-can-title {
  position: relative;
  width: fit-content;
}

.everybody-can-title-img {
  position: absolute;
  width: 234px;
  object-fit: contain;
  bottom: 0;
  left: -100vw;
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
}

.everybody-can-title-img.active {
  left: 40px;
}

.everybody-can-case-box {
  margin-top: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.everybody-loan-case {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 11px;
  background: #E4F2FF;
  box-shadow: 0 0 3px 0 #3679FF;
  width: 655px;
  height: 134px;
  position: relative;
}

.everybody-loan-case img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.everybody-loan-case dt {
  margin: 0 25px 0 30px;
}

.everybody-loan-case dd {
  padding: 45px 0;
}

.everybody-loan-case.case-0 {
  opacity: 1;
  /* 26px은 gap 값 */
  transform: translateY(calc((-100% - 26px) * 0));
  transition: all 0.8s ease-out 0.3s;
}

.everybody-loan-case.case-1 {
  opacity: 0;
  transform: translateY(calc((-100% - 26px) * 1));
  transition: all 0.8s ease-out 0.3s;
  z-index: -1;
}

.everybody-loan-case.case-2 {
  opacity: 0;
  transform: translateY(calc((-100% - 26px) * 2));
  transition: all 0.8s ease-out 0.3s;
  z-index: -2;
}

.everybody-loan-case.case-3 {
  opacity: 0;
  transform: translateY(calc((-100% - 26px) * 3));
  transition: all 0.8s ease-out 0.3s;
  z-index: -3;
}

.everybody-can-case-box.active .everybody-loan-case.case-0 {
  opacity: 1;
}

.everybody-can-case-box.active .everybody-loan-case.case-1 {
  transform: translateY(0);
  opacity: 1;
}

.everybody-can-case-box.active .everybody-loan-case.case-2 {
  transform: translateY(0);
  opacity: 1;
}

.everybody-can-case-box.active .everybody-loan-case.case-3 {
  transform: translateY(0);
  opacity: 1;
}



/* 누구나 가능 섹션 끝 */


/* 대출절차 섹션 시작 */

.loan-procedure-section {
  padding: 160px 0 210px 0;
}

.loan-procedure-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 94px 0 70px 0;
}

.loan-procedure-line {
  position: absolute;
  z-index: -1;
  top: 90px;
  transform: translateY(-50%);
  /* width: 870px; */
  width: 0px;
  left: calc((100% - 870px) / 2);
  height: 13px;
  background: linear-gradient(90deg, #EFEFEF 0%, #E4F2FF 100%);
  transition: width 2s linear, opacity 2s linear;
  opacity: 0.2;
}

.loan-procedure-line.active {
  width: 870px;
  opacity: 1;
}

.loan-procedure-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.loan-procedure-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #EFEFEF;
  display: flex;
  align-items: center;
  justify-items: center;
}

.loan-procedure-img img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.box-0 .loan-procedure-img {}

.box-1 .loan-procedure-img {
  transition: all 0.5s linear 0.5s;
}

.box-2 .loan-procedure-img {
  transition: all 0.5s linear 1.2s;
}

.box-3 .loan-procedure-img {
  transition: all 0.5s linear 1.7s;
}

.loan-procedure-wrapper.active .box-1 .loan-procedure-img {
  background-color: #ECF0F3;

}

.loan-procedure-wrapper.active .box-2 .loan-procedure-img {
  background-color: #E9F1F9;
}

.loan-procedure-wrapper.active .box-3 .loan-procedure-img {
  background-color: #E4F2FF;
}

.loan-procedure-text-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loan-procedure-text-explain {
  color: #838383;
  text-align: center;
  font-size: 25px;
  width: 180px;
  text-wrap: wrap;
}

.loan-procedure-caption {
  position: relative;
  background-color: #EFF8FF;
  width: fit-content;
  color: #4F98E4;
  padding: 23px 26px;
  border-radius: 15px;
  margin: auto 0 auto auto;
  right: 30px;
  opacity: 0;
  transition: all 1.4s linear;
}

.loan-procedure-caption.active {
  opacity: 1;
}


.loan-procedure-caption-triangle {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 100px;
  transform: translateY(-100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 18px 24px 18px;
  border-color: transparent transparent #EFF8FF transparent;
}

/* 대출절차 섹션 끝 */

/* 쏙대출 비교 섹션 시작 */
.ssok-compare-section {
  overflow: hidden;
  padding: 200px 0;
  background-color: #22262B;
  color: #FFFFFF;
  width: 100%;
}

.loan-wrapper {
  width: max-content;
}

.loan-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  width: max-content;
  gap: 30px;
  margin: 80px 0 27px 0;
}


.loan-box-room {
  color: #E9E9E9;
}

.loan-box-room ul {
  margin-top: 30px;
  border-radius: 40px;
}

.loan-box-room hr {
  border: 0;
  border-top: 0.5px solid #E2E2E2;
}

.another-loan {}

.another-loan p {
  color: #414A53;
}

.another-loan ul {
  background: #414A53;
  padding: 42px 32px;
}

.another-loan hr {
  margin: 35px 0;
  width: 250px;
}

.ssok-loan {
  font-size: 36px;
}

.ssok-loan p {
  color: #FFFFFF;
}

.ssok-loan ul {
  background: #6296FF;
  padding: 60px 42px;
}

.ssok-loan hr {
  margin: 45px 0;
  width: 290px;
}

.loan-box img {
  position: absolute;
  width: 166px;
  height: 166px;
  object-fit: contain;
  z-index: 0;
  bottom: 0;
  right: 0;
  transform: translateX(50%) translateY(15%);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ssok-compare-caption {
  color: #D0D0D0;
  font-size: 25px;
  text-align: right;
  padding-right: 20px;
}

/* 쏙대출 비교 섹션 끝 */

/* 대출 상품 소개  섹션 시작 */
.loan-products-section {
  padding: 200px 0;
}

.loan-product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px 24px;
  margin: 130px 0 0 0;
}

.loan-product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  background-color: #FAFAFC;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  padding: 35px 0;
}

.loan-product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.loan-product-card dd {
  font-size: 20px;
  color: #535C6C;
  margin: 10px 0;
}

.loan-product-card dt {
  color: #293448;
}

/* 대출 상품 소개  섹션 끝 */

/* 특별 혜택 섹션 시작 */
.special-benefit-section {
  padding: 180px 0 300px 0;
}

.special-benefit-card-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  margin-top: 140px;
}

.special-benefit-card-frame {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.special-benefit-card-img {
  border-radius: 24px;
  overflow: hidden;
  width: 490px;
}

.special-benefit-card-img img {
  width: 100%;
  height: 305px;
  object-fit: contain;
}

/* sbci => special-benefit-card-img 줄임말*/

.sbci-0 {
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #E9F2FF 100%);
}

.sbci-1 {
  border-radius: 24px;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #EEFFEB 100%);
}

.sbci-2 {
  border-radius: 24px;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #FFFAEB 100%);
}

.special-benefit-card-explain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 490px;
  color: #151E30;
}

.special-benefit-card-explain.padding-left {
  padding-left: 67px;
}

.special-benefit-card-explain-div {
  margin: 0;
  width: max-content;
  position: relative;
}

.special-benefit-card-explain dt {
  text-align: left;
  font-size: 40px;
  margin-bottom: 44px;
}

.special-benefit-card-explain strong {
  font-size: 50px;
}

.special-benefit-card-explain dd {
  font-size: 30px;
  text-align: left;
  color: #838383;
}

.special-benefit-card-caption {
  position: absolute;
  bottom: -12px;
  transform: translateY(100%);
  right: 0;
  color: #838383;
  font-size: 20px;
}



/* 특별 혜택 섹션 끝 */

/* 쏙과 시작하는 새로운 내일 섹션 시작 */
.starts-with-ssok-section {
  padding: 235px 0 188px 0;
  color: #FFFFFF;
  background: var(--Linear, linear-gradient(180deg, #22262B 0%, #000 100%));
}

.ssok-data-container {
  margin-bottom: 350px;
}

.ssok-data-list {
  margin-top: 120px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

@keyframes blingbling {
  0% {
    box-shadow: 0 0 30px 4px rgba(255, 255, 255, 1);
  }

  50% {
    box-shadow: 0 0 30px 4px rgba(255, 255, 255, 0.4);
  }

  100% {
    box-shadow: 0 0 30px 4px rgba(255, 255, 255, 1);
  }
}

.ssok-data-card {
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 0 30px 5px rgba(255, 255, 255, 1);
  padding: 35px 0;
  animation: blingbling 2s infinite linear;
}

.ssok-data-card dd {
  color: #848484;
  text-align: center;
  font-family: Pretendard;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 12px;
}

.ssok-data-card dt {
  color: #151E30;
  font-size: 45px;
}

.ssok-data-list-caption {
  position: absolute;
  bottom: -32px;
  right: 0;
  transform: translateY(100%);
  color: #848484;
  font-size: 30px;
}

.ssok-review-title {
  margin-bottom: 115px;
}

/* 쏙대출 리뷰 캐러셀 시작 */
.ssok-review-carousel-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* 전체 감싸는 래퍼 */
.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  width: 100%;
}

/* 컨테이너 (이미지 영역) */
.carousel-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 뷰포트 */
.carousel-viewport {
  position: relative;
  /* width: 100%; */
  width: 580px;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  overflow: hidden;
}

/* 트랙 */
.carousel-track {
  display: flex;
  height: 100%;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

/* 슬라이드 */
.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loan-review-card {
  width: 580px;
  height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loan-review-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
  transform: scale(0.9);
  opacity: 0.6;
}

.loan-review-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 작성하신 그라데이션 그대로! */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 53%, rgba(143, 143, 143, 0.44) 66%, #000 100%);
  pointer-events: none;
  /* 클릭이 이미지에 전달되도록 */
  z-index: 0;
}

.carousel-slide.active .loan-review-card img,
.carousel-slide.active .ssok-review-badge,
.carousel-slide.active .ssok-review-text {
  transform: scale(1);
  opacity: 1;
}

.ssok-review-badge {
  font-size: 30px;
  position: absolute;
  padding: 12px 20px;
  border-radius: 33px;
  background: #387AFF;
  top: 55px;
  left: 44px;
  transform: scale(0.9);
  opacity: 0.6;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
  z-index: 1;
}

.ssok-review-text {
  position: absolute;
  color: #FFFFFF;
  bottom: 45px;
  left: 63px;
  transform: scale(0.9);
  opacity: 0.6;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
  z-index: 1;
}

.ssok-review-text p:first-child {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 36px;
  text-align: left;
}

.ssok-review-text p:last-child {
  font-size: 28px;
  text-align: left;
}

.ssok-review-nav-button {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  box-shadow: 0 0 5px 0 #FFFFFF;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.ssok-review-nav-button:active {
  box-shadow: 0 0 10px 0 #FFFFFF;
}

.ssok-review-nav-button img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
}

/* 쏙대출 리뷰 캐러셀 끝 */

/* 쏙과 시작하는 새로운 내일 섹션 끝 */

/* 자주묻는 질문 시작 */
.faq-section {
  background-color: #000000;
  padding: 180px 0;
}

.faq-title {
  margin-bottom: 180px;
}

.faq-container {
  color: #fff;
  width: 1125px;
  margin: 0 auto;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.faq-item {
  /* border-bottom: 1px solid #333; */
  row-gap: 15px;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  list-style: none;
  cursor: pointer;
  font-size: 30px;
  font-weight: 700;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.q-icon {
  padding-right: 20px;
  margin-right: 30px;
  color: #7F7F7F;
  font-weight: 500;
  border-right: 1px solid #333333;
}

.arrow-icon::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  bottom: 40px;
  border-right: 3px solid #555;
  border-bottom: 3px solid #555;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}



.faq-answer {
  /* padding: 25px 20px 5px 90px; */
  padding: 20px 20px 20px 90px;
  color: #FFFFFF;
  font-size: 26px;
  /* letter-spacing: -0.02em; */
  word-break: keep-all;
  font-weight: 300;
}

.faq-item[open] .arrow-icon::after {
  transform: rotate(-135deg);
  /* transform: rotate(-45deg) scaleY(-1); */
  perspective: 800px;
  /* top: 25px; */
}

.faq-answer-text {
  text-align: left;
}

/* 자주묻는 질문 끝 */


/* 하단 배너 섹션 시작 */
.bottom-banner-section {
  background-color: #000000;
}

.bottom-banner {
  background-image:
    /* linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), */
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
    url('https://16882298.com/img/ssok/main/ssok_bottom_banner.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover, auto 100%;
  /* min-width: 1920px; */
  max-width: 1920px;
  height: clamp(312px, 26.04vw, 500px);
  transition: background-image 0.1s ease;
}

/* 하단 배너 섹션 끝 */


/* 쏙 1:1 상담신청 시작 */
.ssok-inquiry-section {
  padding: 130px 0;
}

.ssok-inquiry-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 86px 0 96px 0;
}

.ssok-inquiry-explain-box {
  margin: 0;
  color: #252525;
}

.ssok-inquiry-explain-box h2 {
  text-align: left;
}

.ssok-inquiry-explain-box p {
  text-align: left;
}

/* sie는 ssok-inquiry-explain 줄임말*/
.sie1 {
  color: #939393;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.sie2 {
  font-size: 57px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 12px;
}

.sie3 {
  font-size: 28px;
  color: #252525;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.sie4 {
  font-size: 28px;
  color: #252525;
  color: #252525;
  letter-spacing: -0.01em;
}

.sie4 .call {
  color: #939393;
  font-weight: 600;
}

.ssok-inquiry-form-box {
  margin: 0;
  margin-top: 62px;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.input-group label {
  color: #000000;
  font-size: 30px;
  margin-bottom: 12px;
}

.input-group .required {
  color: #F00;
}

.input-group input {
  width: 650px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid #DDD;
  background: #FFF;
  font-size: 28px;
  padding: 22px;
}

.agree-group {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
}

.hidden-checkbox {
  display: none;
}

.check-box {
  margin: 0;
  background-color: #D9D9D9;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}



.check-box img {
  width: 80%;
  height: 80%;
}

.check-box.active {
  background-color: #5E94FF;
}

.agree-check-text {
  color: #000;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.agree-check-text span {
  font-weight: 600;
  margin: 0 10px;
}

.agree-detail {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* color: #000; */
  color: #8C8C8C;
  font-size: 22px;
}

.submit-btn {
  width: 650px;
  height: 100px;
  border-radius: 9.418px;
  background: #343434;
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-top: 50px;
  cursor: pointer;
}

.submit-btn.active {
  background: #387AFF;
  border: none;
}

/* 개인정보 수집동의 모달시작 */
#agree-modal {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  /* min-width: 400px;
  min-height: 350px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.50);
  display: none;
}

#agree-modal.active {
  display: flex;
}

.agree-modal-content {
  color: #1C1C3C;
  max-width: 400px;
  border-radius: 15px;
  background: #F5F7F9;
  padding: 46px 20px;
}

.agree-modal-text {
  text-wrap: wrap;
  word-break: keep-all;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.agree-modal-text p {
  text-align: left;
}

.agree-modal-text p:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.agree-modal-text p:nth-child(2) strong {
  text-wrap: nowrap;
  font-weight: 500;
}

.confirm-button {
  background-color: #FFFFFF;
  font-size: 16px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin: 23px 0 0 0;
  cursor: pointer;
}

.confirm-button:active {
  opacity: 0.7;
}

#complete-inquiry-apply-modal {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  /* min-width: 400px;
  min-height: 350px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.50);
  display: none;
}

#complete-inquiry-apply-modal.active {
  display: flex;
}

.complete-inquiry-apply-content {
  color: #1C1C3C;
  width: 320px;
  border-radius: 15px;
  background: #F5F7F9;
  padding: 46px 20px;
}

.complete-inquiry-apply-text {
  text-wrap: wrap;
  word-break: keep-all;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.complete-inquiry-apply-text p {
  text-align: left;
}

.complete-inquiry-apply-text p:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}


/* 개인정보 수집동의 모달끝 */

/* 쏙 1:1 상담신청 끝 */

/* 메인 페이지 스타일 끝 */

@media screen and (max-width: 768px) {

  /* 메인 페이지 스타일 시작 */
  .inner-container {
    /* width: 360px; */
    width: min(100vw, 400px);
    padding: 0 min(5vw, 20px);
    margin: auto;
  }

  .fs-title2 {
    font-size: min(7.5vw, 30px);
  }

  .fs-text1 {
    font-size: min(4.5vw, 18px);
  }

  .fs-text2 {
    font-size: min(4.25vw, 17px);
  }

  .fs-text3 {
    font-size: min(3.75vw, 15px);
  }

  #ssok-main em {
    font-style: normal;
  }

  #ssok-main .title-highlight {
    color: #3679FF;
  }

  .title-explain-margin {
    margin-bottom: min(5.75vw, 23px);
  }

  /* 인트로 시작 */
  .intro-section {
    padding: min(10vw, 40px) 0 min(12.5vw, 50px) 0;
  }

  .intro-section h2 {
    text-align: left;
    margin-bottom: min(7.5vw, 30px);
  }

  .intro-section h2 em {
    /* margin-left: min(3vw, 12px); */
  }

  .main-figure {
    width: 100%;
    border-radius: min(6.25vw, 25px);
    position: relative;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #DDEBF9 100%);
    padding-top: min(7.5vw, 30px);
    padding-bottom: min(10vw, 40px);
  }

  .main-figure img {
    height: min(75vw, 300px);
    display: block;
    margin: auto;
  }

  .main-explain-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
    bottom: min(6vw, 24px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #3679FF;
    border-radius: min(2.5vw, 10px);
    padding: min(3vw, 12px) 0 min(3.75vw, 15px) 0;
    gap: 0px;
    width: 91.42%;
  }

  .main-explain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(2.5vw, 10px);
  }

  .main-explain img {
    width: min(6.25vw, 25px);
    height: min(6.25vw, 25px);
    object-fit: contain;
  }

  .main-explain dd {
    color: #FFF;
    text-align: center;
    font-size: min(3.25vw, 13px);
    text-wrap: nowrap;
  }

  .main-explain dd em {
    font-size: min(4.5vw, 18px);
  }

  /* 인트로 끝 */


  /* 누구나 가능 섹션 시작 */
  .everybody-can-section {
    padding: min(10vw, 40px) 0 min(12.5vw, 50px) 0;
  }

  .everybody-can-title {
    position: relative;
    width: fit-content;
  }

  .everybody-can-title-img {
    position: absolute;
    width: min(30vw, 120px);
    object-fit: contain;
    bottom: 0;
    left: -100vw;
    transition: all 0.3s ease-in-out;
    transform: translateY(100%);
  }

  .everybody-can-title-img.active {
    left: min(2vw, 8px);
  }

  .everybody-can-case-box {
    margin-top: min(10.5vw, 42px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: min(3.25vw, 13px);
  }

  .everybody-loan-case {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: min(2.75vw, 11px);
    background: #E4F2FF;
    box-shadow: 0 0 min(0.75vw, 3px) 0 #3679FF;
    width: min(82vw, 328px);
    height: min(16.75vw, 67px);
    position: relative;
  }

  .everybody-loan-case img {
    width: min(8.75vw, 35px);
    height: min(8.75vw, 35px);
    object-fit: contain;
  }

  .everybody-loan-case dt {
    margin: 0 min(3.5vw, 14px) 0 min(3.5vw, 14px);
  }

  .everybody-loan-case dd {
    padding: 0;
  }

  .everybody-loan-case.case-0 {
    opacity: 1;
    /* 26px은 gap 값 */
    transform: translateY(calc((-100% - min(3.25vw, 13px)) * 0));
    transition: all 0.8s ease-out 0.3s;
  }

  .everybody-loan-case.case-1 {
    opacity: 0;
    transform: translateY(calc((-100% - min(3.25vw, 13px)) * 1));
    transition: all 0.8s ease-out 0.3s;
    z-index: -1;
  }

  .everybody-loan-case.case-2 {
    opacity: 0;
    transform: translateY(calc((-100% - min(3.25vw, 13px)) * 2));
    transition: all 0.8s ease-out 0.3s;
    z-index: -2;
  }

  .everybody-loan-case.case-3 {
    opacity: 0;
    transform: translateY(calc((-100% - min(3.25vw, 13px)) * 3));
    transition: all 0.8s ease-out 0.3s;
    z-index: -3;
  }

  .everybody-can-case-box.active .everybody-loan-case.case-0 {
    opacity: 1;
  }

  .everybody-can-case-box.active .everybody-loan-case.case-1 {
    transform: translateY(0);
    opacity: 1;
  }

  .everybody-can-case-box.active .everybody-loan-case.case-2 {
    transform: translateY(0);
    opacity: 1;
  }

  .everybody-can-case-box.active .everybody-loan-case.case-3 {
    transform: translateY(0);
    opacity: 1;
  }



  /* 누구나 가능 섹션 끝 */


  /* 대출절차 섹션 시작 */

  .loan-procedure-section {
    padding: min(10vw, 40px) 0 min(30vw, 120px) 0;
  }

  .loan-procedure-section .inner-container {
    width: min(80vw, 320px);
    padding: 0;
  }

  .loan-procedure-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: min(8vw, 32px) 0 0px 0;
    gap: min(6.75vw, 27px);
  }

  .loan-procedure-line {
    position: absolute;
    z-index: -1;
    transform: translateY(0%) translateX(-50%);
    /* width: 870px; */
    width: min(1.5vw, 6px);
    top: calc((100% - min(87.5vw, 350px)) / 2);
    left: calc((min(20vw, 80px)) / 2);
    height: 0px;
    background: linear-gradient(90deg, #EFEFEF 0%, #E4F2FF 100%);
    transition: all 2s linear;
    opacity: 0.2;
  }

  .loan-procedure-line.active {
    height: min(87.5vw, 350px);
    width: min(1.5vw, 6px);
    opacity: 1;
  }

  .loan-procedure-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: min(4vw, 16px);
    margin: 0;
  }

  .loan-procedure-box.box-0 {
    align-items: center;
  }

  .loan-procedure-img {
    width: min(20vw, 80px);
    height: min(20vw, 80px);
    border-radius: 50%;
    background-color: #EFEFEF;
    display: flex;
    align-items: center;
    justify-items: center;
    margin: 0;
    flex-shrink: 0;
  }

  .loan-procedure-img img {
    width: min(15vw, 60px);
    height: min(15vw, 60px);
    object-fit: contain;
    margin: auto;
  }

  .box-0 .loan-procedure-img {}

  .box-1 .loan-procedure-img {
    transition: all 0.5s linear 0.5s;
  }

  .box-2 .loan-procedure-img {
    transition: all 0.5s linear 1.2s;
  }

  .box-3 .loan-procedure-img {
    transition: all 0.5s linear 1.7s;
  }

  .loan-procedure-wrapper.active .box-1 .loan-procedure-img {
    background-color: #ECF0F3;

  }

  .loan-procedure-wrapper.active .box-2 .loan-procedure-img {
    background-color: #E9F1F9;
  }

  .loan-procedure-wrapper.active .box-3 .loan-procedure-img {
    background-color: #E4F2FF;
  }

  .loan-procedure-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    margin: 0;
    width: 100%;
  }

  .loan-procedure-text-explain {
    color: #838383;
    text-align: left;
    font-size: min(3.75vw, 15px);
    width: auto;
    text-wrap: wrap;
  }

  .loan-procedure-caption {
    position: relative;
    background-color: #EFF8FF;
    width: fit-content;
    color: #4F98E4;
    padding: min(5.75vw, 23px) min(6.5vw, 26px);
    border-radius: min(3.75vw, 15px);
    margin: auto 0 auto auto;
    right: min(7.5vw, 30px);
    opacity: 0;
    transition: all 1.4s linear;
  }

  .loan-procedure-caption.active {
    opacity: 1;
  }


  .loan-procedure-caption-triangle {
    position: absolute;
    z-index: -1;
    top: 0;
    right: min(25vw, 100px);
    transform: translateY(-100%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px min(4.5vw, 18px) min(6vw, 24px) min(4.5vw, 18px);
    border-color: transparent transparent #EFF8FF transparent;
  }

  .bubble-caption {
    color: #4F98E4;
    font-size: min(3vw, 12px);
    border-radius: min(1.25vw, 5px);
    background-color: #EFF8FF;
    width: 100%;
    padding: min(2vw, 8px) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: min(2vw, 8px) 0 0 0;
    opacity: 0;
  }

  .bubble-caption.caption-1 {
    transition: all 1s linear 0.5s;
  }

  .bubble-caption.caption-2 {
    transition: all 1s linear 1s;
  }

  .bubble-caption.caption-3 {
    transition: all 1s linear 1.5s;
  }

  .bubble-caption-triangle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: min(2.125vw, 8.5px) min(3.68vw, 14.722px) min(2.125vw, 8.5px) 0px;
    border-color: transparent #eff8ff transparent transparent;
  }

  .loan-procedure-wrapper {}

  .loan-procedure-wrapper.active .caption-1 {
    opacity: 1;
  }

  .loan-procedure-wrapper.active .caption-2 {
    opacity: 1;
  }

  .loan-procedure-wrapper.active .caption-3 {
    opacity: 1;
  }

  /* 대출절차 섹션 끝 */

  /* 쏙대출 비교 섹션 시작 */
  .ssok-compare-section {
    padding: min(20vw, 80px) 0;
    background-color: #22262B;
    color: #FFFFFF;
    width: 100%;
  }

  .loan-wrapper {
    width: max-content;
  }

  .loan-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    width: max-content;
    gap: min(2.5vw, 10px);
    margin: min(10vw, 40px) 0 min(3.25vw, 13px) 0;
  }


  .loan-box-room {
    color: #E9E9E9;
  }

  .loan-box-room ul {
    margin-top: min(3.75vw, 15px);
    border-radius: min(5vw, 20px);
  }

  .loan-box-room hr {
    border: 0;
    border-top: min(0.125vw, 0.5px) solid #E2E2E2;
  }

  .another-loan {}

  .another-loan p {
    color: #414A53;
  }

  .another-loan ul {
    background: #414A53;
    padding: min(5.25vw, 21px) min(4vw, 16px);
  }

  .another-loan hr {
    margin: min(4.75vw, 19px) 0;
    width: min(31.25vw, 125px);
  }

  .ssok-loan {
    font-size: min(5vw, 20px);
  }

  .ssok-loan p {
    color: #FFFFFF;
  }

  .ssok-loan ul {
    background: #6296FF;
    padding: min(7.5vw, 30px) min(5.25vw, 21px);
  }

  .ssok-loan hr {
    margin: min(5.25vw, 21px) 0;
    width: min(36.25vw, 145px);
  }

  .loan-box img {
    position: absolute;
    width: min(20.75vw, 83px);
    height: min(20.75vw, 83px);
    object-fit: contain;
    z-index: 0;
    bottom: 0;
    right: 0;
    transform: translateX(40%) translateY(10%);
  }

  .ssok-compare-caption {
    color: #D0D0D0;
    font-size: min(3vw, 12px);
    text-align: right;
    padding-right: min(2.5vw, 10px);
  }

  /* 쏙대출 비교 섹션 끝 */

  /* 대출 상품 소개  섹션 시작 */
  .loan-products-section {
    padding: min(25vw, 100px) 0;
  }

  .loan-product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(3vw, 12px);
    margin: min(12.5vw, 50px) 0 0 0;
  }

  .loan-product-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: min(6vw, 24px);
    width: 100%;
    height: 100%;
    background-color: #FAFAFC;
    box-shadow: 0 0 min(1vw, 4px) 0 rgba(0, 0, 0, 0.25);
    padding: min(3vw, 12px) 0;
  }

  .loan-product-card img {
    width: min(15vw, 60px);
    height: min(15vw, 60px);
    object-fit: contain;
  }

  .loan-product-card dd {
    font-size: min(3vw, 12px);
    color: #535C6C;
    margin: min(2.5vw, 10px) 0 min(1.25vw, 5px) 0;
  }

  .loan-product-card dt {
    color: #293448;
  }

  /* 대출 상품 소개  섹션 끝 */

  /* 특별 혜택 섹션 시작 */
  .special-benefit-section {
    padding: min(15vw, 60px) 0 min(37.5vw, 150px) 0;
  }

  .special-benefit-card-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(10vw, 40px);
    margin-top: min(17.5vw, 70px);
  }

  .special-benefit-card-frame {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
  }

  .special-benefit-card-img {
    border-radius: min(6vw, 24px);
    overflow: hidden;
    width: min(42vw, 168px);
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .special-benefit-card-img img {
    width: 100%;
    height: min(26.25vw, 105px);
    object-fit: contain;
  }

  /* sbci => special-benefit-card-img 줄임말*/

  .sbci-0 {
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #E9F2FF 100%);
  }

  .sbci-1 {
    border-radius: 24px;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #EEFFEB 100%);
  }

  .sbci-2 {
    border-radius: 24px;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #FFFAEB 100%);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  }

  .special-benefit-card-explain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(42vw, 168px);
    color: #151E30;
  }

  .special-benefit-card-explain.padding-left {
    padding-left: min(9.25vw, 37px);
  }

  .special-benefit-card-explain-div {
    margin: 0;
    width: max-content;
    position: relative;
  }

  .special-benefit-card-explain dt {
    text-align: left;
    font-size: min(3.75vw, 15px);
    margin-bottom: min(2.5vw, 10px);
  }

  .special-benefit-card-explain strong {
    font-size: min(5vw, 20px);
  }

  .special-benefit-card-explain dd {
    font-size: min(3vw, 12px);
    text-align: left;
    color: #838383;
    line-height: 1.4;
  }

  .special-benefit-card-caption {
    position: absolute;
    bottom: -6px;
    transform: translateY(100%);
    right: 0;
    color: #838383;
    font-size: 10px;
  }


  /* 특별 혜택 섹션 끝 */

  /* 쏙과 시작하는 새로운 내일 섹션 시작 */
  .starts-with-ssok-section {
    padding: min(25vw, 100px) 0 min(22.5vw, 90px) 0;
    color: #FFFFFF;
    background: var(--Linear, linear-gradient(180deg, #22262B 0%, #000000 100%));
  }

  .ssok-data-container {
    margin-bottom: min(40vw, 160px);
  }

  .ssok-data-list {
    margin-top: min(10vw, 40px);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(3vw, 12px);
  }

  @keyframes blingbling {
    0% {
      box-shadow: 0 0 min(1.75vw, 7px) min(0.5vw, 2px) rgba(255, 255, 255, 1);
    }

    50% {
      box-shadow: 0 0 min(1.75vw, 7px) min(0.5vw, 2px) rgba(255, 255, 255, 0.4);
    }

    100% {
      box-shadow: 0 0 min(1.75vw, 7px) min(0.5vw, 2px) rgba(255, 255, 255, 1);
    }
  }


  .ssok-data-card {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 0 min(1.75vw, 7px) min(0.5vw, 2px) rgba(255, 255, 255, 1);
    padding: min(7.5vw, 30px) 0;
    animation: blingbling 2s infinite linear;
  }

  .ssok-data-list .ssok-data-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .ssok-data-card dd {
    color: #848484;
    text-align: center;
    font-family: Pretendard;
    font-size: min(4.25vw, 17px);
    font-style: normal;
    font-weight: 600;
    margin-bottom: min(2.5vw, 10px);
  }

  .ssok-data-card dt {
    color: #151E30;
    font-size: min(5.5vw, 22px);
  }

  .ssok-data-list-caption {
    position: absolute;
    bottom: calc(-1 * min(4vw, 16px));
    right: 0;
    transform: translateY(100%);
    color: #848484;
    font-size: min(3.75vw, 15px);
  }

  .ssok-review-title {
    margin-bottom: min(15vw, 60px);
  }

  /* 쏙대출 리뷰 캐러셀 시작 */
  .ssok-review-carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 전체 감싸는 래퍼 */
  .carousel-wrapper {
    display: flex;
    align-items: center;
    gap: min(5vw, 20px);
    width: 100%;
  }

  /* 컨테이너 (이미지 영역) */
  .carousel-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: min(5vw, 20px);
    box-shadow: 0 min(2.5vw, 10px) min(7.5vw, 30px) rgba(0, 0, 0, 0.1);
  }

  /* 뷰포트 */
  .carousel-viewport {
    position: relative;
    /* width: 100%; */
    width: min(72.5vw, 290px);
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    overflow: hidden;
  }

  /* 트랙 */
  .carousel-track {
    display: flex;
    height: 100%;
    cursor: grab;
  }

  .carousel-track:active {
    cursor: grabbing;
  }

  /* 슬라이드 */
  .carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .loan-review-card {
    width: min(72.5vw, 290px);
    height: min(72.5vw, 290px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .loan-review-card img {
    width: 100%;
    height: 100%;
    border-radius: min(2.5vw, 10px);
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
    transform: scale(0.9);
    opacity: 0.6;
  }

  .loan-review-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 작성하신 그라데이션 그대로! */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 53%, rgba(143, 143, 143, 0.44) 66%, #000 100%);
    pointer-events: none;
    /* 클릭이 이미지에 전달되도록 */
    z-index: 0;
  }

  .carousel-slide.active .loan-review-card img,
  .carousel-slide.active .ssok-review-badge,
  .carousel-slide.active .ssok-review-text {
    transform: scale(1);
    opacity: 1;
  }

  .ssok-review-badge {
    font-size: min(3.75vw, 15px);
    position: absolute;
    padding: min(1.5vw, 6px) min(2.5vw, 10px);
    border-radius: min(4vw, 16px);
    background: #387AFF;
    top: min(6.75vw, 27px);
    left: min(5.5vw, 22px);
    transform: scale(0.9);
    opacity: 0.6;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
  }

  .ssok-review-text {
    position: absolute;
    color: #FFFFFF;
    bottom: min(5.75vw, 23px);
    left: min(7.75vw, 31px);
    transform: scale(0.9);
    opacity: 0.6;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
  }

  .ssok-review-text p:first-child {
    font-weight: bold;
    margin-bottom: min(1.5vw, 6px);
    font-size: min(4.5vw, 18px);
    text-align: left;
  }

  .ssok-review-text p:last-child {
    font-size: min(3.5vw, 14px);
    text-align: left;
  }

  .ssok-review-nav-button {
    display: none;
  }

  .carousel-dot-group {
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(-1 * min(7.5vw, 30px));
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: min(3.75vw, 15px);
    height: auto;
  }

  .carousel-dot {
    width: min(2.5vw, 10px);
    height: min(2.5vw, 10px);
    background-color: #9C9C9C;
    border-radius: 50%;
    transition: all 0.3s linear;
    cursor: pointer;
  }

  .carousel-dot.active {
    background-color: #FFFFFF;
    box-shadow: 0 0 min(0.5vw, 2px) min(0.25vw, 1px) #FFFFFF;
  }

  /* 쏙대출 리뷰 캐러셀 끝 */

  /* 쏙과 시작하는 새로운 내일 섹션 끝 */

  /* 자주묻는 질문 시작 */
  .faq-section {
    border-top: solid min(0.25vw, 1px) #000000;
    background-color: #000000;
    padding: 0px 0 min(17.5vw, 70px) 0;
  }

  .faq-title {
    margin-bottom: min(10.5vw, 42px);
  }

  .faq-container {
    color: #fff;
    width: min(90vw, 360px);
    margin: 0 auto;
  }

  .faq-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: min(1.75vw, 7px);
  }

  .faq-item {
    /* border-bottom: 1px solid #333; */
    row-gap: min(1.75vw, 7px);
  }

  .faq-question {
    display: flex;
    align-items: center;
    padding: min(1.25vw, 5px) min(8.25vw, 33px) min(1.25vw, 5px) min(3.5vw, 14px);
    list-style: none;
    cursor: pointer;
    font-size: min(4vw, 16px);
    font-weight: 700;
    position: relative;
  }

  .faq-question::-webkit-details-marker {
    display: none;
  }

  .q-icon {
    padding-right: min(3vw, 12px);
    margin-right: min(3.75vw, 15px);
    color: #7F7F7F;
    font-weight: 500;
    border-right: 1px solid #333333;
  }

  .arrow-icon::after {
    content: '';
    position: absolute;
    right: min(3.75vw, 15px);
    bottom: min(3vw, 12px);
    width: min(3.25vw, 13px);
    height: min(3.25vw, 13px);
    border-right: min(0.5vw, 2px) solid #555;
    border-bottom: min(0.5vw, 2px) solid #555;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }



  .faq-answer {
    /* padding: 25px 20px 5px 90px; */
    padding: min(2.5vw, 10px) min(2.5vw, 10px) min(2.5vw, 10px) min(13vw, 52px);
    color: #FFFFFF;
    font-size: min(3.5vw, 14px);
    /* letter-spacing: -0.02em; */
    word-break: keep-all;
    font-weight: 300;
  }

  .faq-item[open] .arrow-icon::after {
    transform: rotate(-135deg);
    /* transform: rotate(-45deg) scaleY(-1); */
    /* top: 25px; */
  }

  .faq-answer-text {
    text-align: left;
  }

  /* 자주묻는 질문 끝 */


  /* 하단 배너 섹션 시작 */
  .bottom-banner-section {
    color: #000000;
  }

  .bottom-banner {
    background-image:
      /* linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), */
      linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
      url('https://16882298.com/img/ssok/main/ssok_bottom_banner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover, auto 100%;
    /* min-width: 1920px; */
    max-width: 400px;
    max-height: 189px;
    height: 47.25vw;
    transition: background-image 0.1s ease;
  }

  /* 하단 배너 섹션 끝 */


  /* 쏙 1:1 상담신청 시작 */
  .ssok-inquiry-section {
    padding: min(11.25vw, 45px) 0 min(20vw, 80px) 0;
  }

  .ssok-inquiry-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }

  .ssok-inquiry-container.inner-container {
    width: min(81vw, 324px);
    padding: 0;
  }

  .ssok-inquiry-explain-box {
    margin: 0;
    color: #252525;
  }

  .ssok-inquiry-explain-box h2 {
    text-align: left;
  }

  .ssok-inquiry-explain-box p {
    text-align: left;
  }

  .ssok-inquiry-explain-box .sub-text {
    display: none;
  }

  /* sie는 ssok-inquiry-explain 줄임말*/
  .sie1 {
    color: #939393;
    font-size: min(3.5vw, 14px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: min(2.75vw, 11px);
  }

  .sie2 {
    font-size: min(7vw, 28px);
    color: #000000;
    font-weight: 700;
    margin-bottom: min(2.5vw, 10px);
  }

  .sie3 {
    display: none;
    font-size: min(7vw, 28px);
    color: #252525;
    letter-spacing: -0.01em;
    margin-bottom: min(7vw, 28px);
  }

  .sie4 {
    font-size: min(4.25vw, 17px);
    color: #252525;
    letter-spacing: -0.01em;
  }

  .sie4 .call {
    color: #939393;
    font-weight: 600;
  }

  .ssok-inquiry-form-box {
    margin: 0;
    margin-top: min(7vw, 28px);
  }

  .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: min(3.75vw, 15px);
  }

  .input-group label {
    color: #000000;
    font-size: min(3.75vw, 15px);
    margin-bottom: min(2.5vw, 10px);
    font-weight: 600;
  }

  .input-group .required {
    color: #F00;
  }

  .input-group input {
    width: 100%;
    height: min(10vw, 40px);
    border-radius: min(1.25vw, 5px);
    border: 1px solid #DDD;
    background: #FFF;
    font-size: min(3.5vw, 14px);
    padding: min(3.75vw, 15px);
  }

  .agree-group {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
  }

  .hidden-checkbox {
    display: none;
  }

  .check-box {
    margin: 0;
    background-color: #D9D9D9;
    width: min(3.5vw, 14px);
    height: min(3.5vw, 14px);
    border-radius: min(0.5vw, 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }



  .check-box img {
    width: 70%;
    height: 70%;
    /* Safari */
    -webkit-user-select: none;
    /* IE 10+ */
    -ms-user-select: none;
    user-select: none;
  }

  .check-box.active {
    background-color: #5E94FF;
  }

  .agree-check-text {
    color: #000;
    font-size: min(3.5vw, 14px);
    cursor: pointer;
    letter-spacing: -0.04em;
  }

  .agree-check-text span {
    font-weight: 600;
    margin: 0 min(1.25vw, 5px);
  }

  .agree-detail {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #8C8C8C;
    font-size: min(3.5vw, 14px);
  }

  .submit-btn {
    width: 100%;
    height: min(15vw, 60px);
    border-radius: min(2vw, 8px);
    background: #343434;
    color: #FFF;
    text-align: center;
    font-size: min(4.5vw, 18px);
    font-weight: 600;
    margin-top: min(5.5vw, 22px);
    cursor: pointer;
  }

  .submit-btn.active {
    background: #387AFF;
    border: none;
  }

  /* 개인정보 수집동의 모달시작 */
  #agree-modal {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    /* min-width: 400px;
  min-height: 350px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.50);
    display: none;
  }

  #agree-modal.active {
    display: flex;
  }

  .agree-modal-content {
    color: #1C1C3C;
    max-width: min(80vw, 320px);
    /* max-width: 320px; */
    border-radius: min(2vw, 8px);
    background: #F5F7F9;
    padding: min(5.75vw, 23px) min(4vw, 16px);
  }

  .agree-modal-text {
    text-wrap: wrap;
    word-break: keep-all;
    font-size: min(3.5vw, 14px);
    letter-spacing: -0.02em;
    line-height: 1.6;
  }

  .agree-modal-text p {
    text-align: left;
  }

  .agree-modal-text p:nth-child(1) {
    font-size: min(4.5vw, 18px);
    font-weight: 600;
    margin-bottom: min(1.25vw, 5px);
  }

  .agree-modal-text p:nth-child(2) strong {
    text-wrap: nowrap;
    font-weight: 500;
  }

  .confirm-button {
    background-color: #FFFFFF;
    font-size: min(4vw, 16px);
    padding: min(1.5vw, 6px);
    border: none;
    border-radius: min(1.25vw, 5px);
    width: 100%;
    margin: min(2.75vw, 11px) 0 0 0;
    cursor: pointer;
  }

  .confirm-button:active {
    opacity: 0.7;
  }

  #complete-inquiry-apply-modal {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    /* min-width: 400px;
  min-height: 350px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.50);
    display: none;
  }

  #complete-inquiry-apply-modal.active {
    display: flex;
  }

  .complete-inquiry-apply-content {
    color: #1C1C3C;
    /* width: 320px; */
    width: min(80vw, 320px);
    border-radius: min(3.75vw, 15px);
    background: #F5F7F9;
    padding: min(11.5vw, 46px) min(5vw, 20px);
  }

  .complete-inquiry-apply-text {
    text-wrap: wrap;
    word-break: keep-all;
    font-size: min(4vw, 16px);
    letter-spacing: -0.02em;
    line-height: 1.6;
  }

  .complete-inquiry-apply-text p {
    text-align: left;
  }

  .complete-inquiry-apply-text p:nth-child(1) {
    font-size: min(5vw, 20px);
    font-weight: 600;
    margin-bottom: min(2.5vw, 10px);
  }


  /* 개인정보 수집동의 모달끝 */

  /* 쏙 1:1 상담신청 끝 */

  /* 메인 페이지 스타일 끝 */
}