:root {
  /* npay connect */
  --npay-dark: #1a1a1a;
  --npay-basic: #00DE5A;
  --npay-light: #F1FFE5;
  /* toss front*/
  --toss-basic: #0094ff;
  --toss-light: #EBF6FF;
  /* sinsin pay */
  --sinsinpay-light: #F4F9FF;

  --text-color1: #222222;
}

p {
  /* color: var(--text-color1); */
  /* color: #222222; */
}

/* npay제품 뒤에 쓰이는 배경색 */
.npay-bg1 {
  background-color: var(--npay-dark);
}

/* npay제품 탭 뒤에 쓰이는 배경색 */
.npay-bg2 {
  background-color: var(--npay-light);
}

/* npay제품에 쓰이는 텍스트 컬러 */
.npay-color {
  color: var(--npay-basic)
}

/* toss제품 뒤에 쓰이는 배경색 */
.toss-bg1 {
  background-color: #FFFFFF;
}

/* toss제품 탭 뒤에 쓰이는 배경색 */
.toss-bg2 {
  background-color: var(--toss-light);
}

/* toss제품 쓰이는 텍스트 컬러 */
.toss-color {
  color: var(--toss-basic);
}

/* 신신페이 소개 및 기타 설명 시 쓰이는 bg */
.sinsinpay-bg1 {
  background-color: var(--sinsinpay-light);
}

.sinsinpay-bg2 {
  background-color: #FBFBFB;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.using-size {
  width: 890px;
  margin: 0px auto;
  /* overflow: hidden; */
}

.product-first-face-container {
  margin-top: 200px;
  /* margin-bottom: 282px; */
  /* margin-bottom: 140px; */
  margin-bottom: 48px;
}

.product-first-face {
  margin-bottom: 46px;
  font-size: 50px;
}

.product-first-face>p:nth-of-type(1) {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 52px;
}

.product-first-face>img {
  margin-top: 100px;
  margin-bottom: 46px;
}

.channelTalk-in-mobile {
  display: none;
}

.review-carousel {
  margin-bottom: 282px;
  max-width: 890px;
  margin: auto;
}

.review-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.review-card {
  width: 100%;
  /* height: 372px; */
  margin-bottom: 82px;
}

.review-card>img {
  width: 100%;
}

.review-card>p:nth-of-type(1) {
  font-size: 30px;
  font-weight: 700;
  margin: 16px auto;
}

.review-card>p:nth-of-type(2) {
  font-size: 26px;
}

.function-container {
  padding: 116px 0 132px 0;
}

.function-container>p:nth-of-type(1) {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.4;
}

.function-container>p:nth-of-type(1)>span {
  color: #007BF3;
}


.function-box {
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 123, 243, 0.30);
  padding: 50px 80px;
  margin-top: 64px;
  gap: 40px;
}

.function-card {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.function-card>p {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
  width: 50%;
}

.function-card>img {
  flex: 1;
  display: block;
  margin: 0 auto;
  width: 50%;
  object-fit: contain;
}

/* --- 화살표 선 --- */
.arrow-divider {
  display: flex;
  /* 선-아이콘-선 을 가로로 배치 */
  align-items: center;
  /* 세로 중앙 정렬 */
  margin-top: 22px;
  margin-bottom: 22px;
  gap: 0px;
  /* 선과 아이콘 사이 간격 */
}

/* --- 양쪽 선 (가상 요소) --- */
.arrow-divider::before,
.arrow-divider::after {
  content: '';
  /* 가상 요소 필수 속성 */
  flex-grow: 1;
  /* 남는 공간을 모두 차지해서 선처럼 보이게 함 */
  height: 1px;
  /* 선 두께 */
  background-color: #116CFF80;
  /* 연한 파란색 */
}

/* --- 가운데 동그란 아이콘 --- */
.arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 56px;
  /* 동그라미 크기 */
  height: 56px;
  /* 동그라미 크기 */
  border-radius: 50%;
  /* 원으로 만들기 */
  background-color: #f0f6ff;
  /* 연한 하늘색 배경 */

  color: #007bff;
  /* 화살표 색상 */
  font-size: 20px;
  font-weight: bold;


  flex-shrink: 0;
  /* 아이콘 크기 고정 (중요) */
}

.payment-container {
  padding: 176px 0 132px 0;
}

.payment-container>div:nth-of-type(1)>p:nth-of-type(1) {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 60px;
}

.payment-container>div:nth-of-type(1)>p:nth-of-type(1)>span {
  color: #116CFF;
}

.payment-container>div:nth-of-type(1)>p:nth-of-type(2) {
  font-size: 46px;
  font-weight: 500;
  color: #454545;
}

.payment-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 24px;
  margin-top: 100px;
}

.payment-card {
  width: 440px;
  height: 375px;
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  border-radius: 30px;
  overflow: hidden;
}

.payment-card>div {
  height: 285px;
}

.payment-card>p {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #667181;
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
}

.stable-commu-container {
  width: 890px;
  margin: auto;
}

.stable-commu-container>div:nth-of-type(1)>p:nth-of-type(1) {
  font-size: 54px;
  font-weight: 700;
  color: #000000;
}

.stable-commu-container>div:nth-of-type(1)>p:nth-of-type(1) span {
  color: #0177FF;
}

.stable-commu-container>div:nth-of-type(1)>p:nth-of-type(2) {
  font-size: 46px;
  font-weight: 300;
  line-height: 1.4;
  margin: 56px 0 44px 0;
}

.stable-commu-container>div:nth-of-type(1)>p:nth-of-type(2) span {
  font-weight: 500;
}

.stable-commu-container>div:nth-of-type(2) {
  margin: 44px 0 52px 0;
}

.stable-commu-need-reason {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.stable-commu-need-reason>div {
  font-size: 27px;
  font-weight: 500;
  color: #4c4c4c;
  background: #F5F6F7;
  margin-top: 20px;
  padding: 10px 62px;
}

.stable-commu-box {
  background: #F4F8FA;
  border-radius: 30px 30px 0 0;
  padding: 25px 30px 25px 44px;
  margin: 52px 0 100px 0;
  font-weight: 500;
}

.stable-commu-box>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.stable-commu-box li {
  position: relative;
  padding-left: 60px;
  text-align: start;
  margin-bottom: 12px;
  font-size: 34px;
  margin: 30px 0;
  line-height: 120%;
  letter-spacing: -0.7px;
  font-weight: 500;
}

/* 기본: 한 줄일 때 자연스럽게 가운데 */
.stable-commu-box li::before {
  content: "";
  position: absolute;
  top: 0;
  /* 글자 첫 줄 기준 자연스러운 보정값 */
  left: 0;
  width: 34px;
  height: 34px;
  background: url("https://16882298.com/img/products/nc7000/nc7000_li_check1.svg") no-repeat center/contain;
}

/* 만약 확실히 두 줄 이상일 때 위 정렬이 필요하면 클래스로 제어 */
.stable-commu-box li.top-align::before {
  top: 0;
  /* 강제 상단 */
  transform: none;
}

.wireless-channel-talk-btn {
  margin: auto;
  width: 790px;
}

.tab-container {
  margin-top: 240px;
  margin-bottom: 162px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab-container>div:nth-of-type(1) {
  margin-bottom: 142px;
}

.tab-container>div:nth-of-type(1) {
  margin-bottom: 142px;
  text-align: center;
}

.tab-container>div:nth-of-type(1)>p:nth-of-type(1) {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.4;
}

.tab-container>div:nth-of-type(1)>p:nth-of-type(2) {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 30px;
}

.tab-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tab-card {
  width: 435px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  cursor: pointer;
  padding-top: 20px;
}

.tab-card>p:nth-of-type(1) {
  font-size: 36px;
  color: #676767;
  margin: 12px 0 12px 0;
}

.tab-card>p:nth-of-type(2) {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 30px;
}

.tab-npay {
  background-color: var(--npay-light);
  border: 1px;
  box-sizing: border-box;
  border-radius: 24px;
  border: 2px solid var(--npay-basic);
  background: #F1FFE5;
}

.tab-npay img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.tab-toss {
  background-color: var(--toss-light);
  border: 1px;
  box-sizing: border-box;
  border-radius: 24px;
  border: 2px solid var(--toss-basic);
  background: #EBF6FF;
}

.tab-toss img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.tab-deactive {
  border-radius: 24px;
  border: 2px solid #f0f0f0;
  background: #FFFFFF;
}

.tab-npay:hover {
  background-color: var(--npay-light);
  border: 1px;
  box-sizing: border-box;
  border-radius: 24px;
  border: 2px solid var(--npay-basic);
  background: #F1FFE5;
}

.tab-toss:hover {
  background-color: var(--toss-light);
  border: 1px;
  box-sizing: border-box;
  border-radius: 24px;
  border: 2px solid var(--toss-basic);
  background: #EBF6FF;
}

/* 채널톡 및 문의버튼 시작 */
.inquire-button {}

.inquire-button button {
  border-radius: 77px;
  background: linear-gradient(90deg, #0177FF 0%, #0D9DFE 100%), #116CFF;
  box-shadow: 0 0 34px 0 rgba(4, 126, 255, 0.50);
  border: 0px;
  padding: 40px 60px;
}

.inquire-button button span {
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

/* 채널톡 및 문의버튼 끝 */


.basic-componenets1 {
  padding: 150px 0 90px 0;
}

.basic-componenets1>img {
  margin: 64px 0 46px 0;
}

.basic-componenets1>p:nth-of-type(1) {
  font-size: 50px;
  font-weight: 700;
}

.basic-componenets1>p:nth-of-type(2) {
  font-size: 38px;
}

.basic-componenets2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* display: flex;
  flex-direction: row;
  justify-content: space-between; */
  margin-bottom: 200px;
}

.basic-componenets2>div {
  font-size: 38px;
}

.basic-componenets2>div>img {
  margin-bottom: 50px;
}

.additional-products-container {
  margin-bottom: 200px;
}

.additional-products-container>p {
  color: var(--text-color1);
  margin-bottom: 74px;
  font-size: 50px;
  font-weight: 700;
}

.additional-products-container>div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.additional-products-container>div p {
  font-size: 38px;
  margin-top: 30px;
}

.additional-product {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.install-process-section {
  margin-bottom: 100px;
}

/* 채널톡 보낼때 화살표 추가 */
.install-process-div {
  margin-bottom: 80px;
}


.inquire-btn-detail1 {
  position: relative;
  left: 0.375em;
}

.inquire-btn-detail2 {
  color: #FFFFFF;
  object-fit: contain;
  height: 0.625em;
  position: relative;
  top: -0.04em;
  /* 48px기준 18px */
  /* left: 0.375em; */
  /* 48px기준 28px */
  left: 0.583em;
}

.inquire-btn-detail3 {
  color: #FFFFFF80;
  object-fit: contain;
  height: 0.625em;
  position: relative;
  top: -0.04em;
  /* 48px기준 4px */
  /* left: 0.083em; */
  /* 48px기준 14px */
  left: 0.292em;
}

/* 채널톡 보낼때 화살표 추가 끝 */

.hanabank-box {
  width: 890px;
  margin: auto;
  margin-bottom: 126px;
  border-radius: 20px;
  overflow: hidden;
}

/* 모바일에서 사용 */
@media screen and (max-width: 768px) {
  .using-size {
    /* width: 380px; */
    /* width: 94%;
    margin: 0px auto; */
    width: clamp(190px, 95vw, 380px);
    /* width: clamp(180px, 90vw, 360px); */
    margin: 0px auto;
  }

  .product-first-face-container {
    margin-top: clamp(50px, 25vw, 100px);
    margin-bottom: clamp(50px, 25vw, 100px);
  }

  .product-first-face {
    /* margin-bottom: 46px; */
    margin-bottom: 0px;
    font-size: clamp(12px, 6vw, 24px);
  }

  .product-first-face>p:nth-of-type(1) {
    font-size: clamp(23px, 11.5vw, 46px);
    font-weight: 700;
    margin-bottom: clamp(26px, 13vw, 52px);
  }

  .product-first-face>img {
    margin-top: clamp(50px, 25vw, 100px);
    /* margin-bottom: clamp(23px, 11.5vw, 46px); */
    margin-bottom: 0;
  }

  .review-carousel {
    width: 100vw;
    margin-bottom: clamp(52.5px, 26.25vw, 105px);
    overflow: hidden;
  }

  .review-container {
    display: flex;
    flex-direction: row;
    /* overflow: hidden; */
    /* width: 100%; */
    width: clamp(200px, 100vw, 400px);
    margin: auto;
    scroll-behavior: smooth;
  }

  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    margin-left: clamp(5px, 2.5vw, 10px);
    margin-right: clamp(5px, 2.5vw, 10px);
    margin-bottom: 0px;
  }

  .review-card>img {
    width: 100%;
    display: block;
  }

  .review-card>p:nth-of-type(1) {
    font-size: clamp(11px, 5.5vw, 22px);
    font-weight: 700;
    margin: clamp(10px, 5vw, 20px) 0 clamp(5px, 2.5vw, 10px) 0;
  }

  .review-card>p:nth-of-type(2) {
    font-size: clamp(9px, 4.5vw, 18px);
  }

  .function-container {
    /* padding: clamp(35px, 17.5vw, 70px) 0 clamp(10px, 5vw, 20px) 0; */
    padding: clamp(35px, 17.5vw, 70px) 0 clamp(43.5px, 21.75vw, 87px) 0;
  }

  .function-container>p:nth-of-type(1) {
    font-size: clamp(15px, 7.5vw, 30px);
    font-weight: 700;
    line-height: 1.4;
  }

  .function-container>p:nth-of-type(1)>span {
    color: #007BF3;
  }


  .function-box {
    border-radius: clamp(5px, 2.5vw, 10px);
    background: #FFF;
    box-shadow: 0 0 clamp(15px, 7.5vw, 30px) 0 rgba(0, 123, 243, 0.30);
    padding: clamp(25px, 12.5vw, 50px) clamp(12px, 6vw, 24px);
    margin-top: clamp(32px, 16vw, 64px);
    gap: clamp(20px, 10vw, 40px);
  }

  .function-card {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .function-card>p {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(12px, 6vw, 24px);
    font-weight: 600;
    margin-top: clamp(12px, 6vw, 24px);
    width: 100%;
  }

  .function-card>img {
    flex: 1;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    width: 100%;
  }

  /* --- 화살표 선 --- */
  .arrow-divider {
    display: flex;
    /* 선-아이콘-선 을 가로로 배치 */
    align-items: center;
    /* 세로 중앙 정렬 */
    margin-top: clamp(12px, 6vw, 24px);
    margin-bottom: clamp(12px, 6vw, 24px);
    gap: 0px;
    /* 선과 아이콘 사이 간격 */
  }

  /* --- 양쪽 선 (가상 요소) --- */
  .arrow-divider::before,
  .arrow-divider::after {
    content: '';
    /* 가상 요소 필수 속성 */
    flex-grow: 1;
    /* 남는 공간을 모두 차지해서 선처럼 보이게 함 */
    height: clamp(0.5px, 0.25vw, 1px);
    /* 선 두께 */
    background-color: #116CFF80;
    /* 연한 파란색 */
  }

  /* --- 가운데 동그란 아이콘 --- */
  .arrow-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: clamp(20px, 10vw, 40px);
    /* 동그라미 크기 */
    height: clamp(20px, 10vw, 40px);
    /* 동그라미 크기 */
    border-radius: 50%;
    /* 원으로 만들기 */
    background-color: #f0f6ff;
    /* 연한 하늘색 배경 */

    color: #007bff;
    /* 화살표 색상 */
    font-size: clamp(10px, 5vw, 20px);
    font-weight: bold;


    flex-shrink: 0;
    /* 아이콘 크기 고정 (중요) */
  }

  .payment-container {
    /* padding: clamp(87px, 43.5vw, 174px) 0 clamp(13.5px, 6.75vw, 27px) 0; */
    padding: clamp(43.5px, 21.75vw, 87px) 0 clamp(13.5px, 6.75vw, 27px) 0;
  }

  .payment-container>div:nth-of-type(1)>p:nth-of-type(1) {
    font-size: clamp(15px, 7.5vw, 30px);
    margin-bottom: clamp(15px, 7.5vw, 30px);
  }

  .payment-container>div:nth-of-type(1)>p:nth-of-type(1)>span {
    color: #116CFF;
  }

  .payment-container>div:nth-of-type(1)>p:nth-of-type(2) {
    font-size: clamp(10px, 5vw, 20px);
  }

  .payment-box {
    width: 100%;
    /* gap: clamp(3px, 1.5vw, 6px); */
    row-gap: clamp(4px, 2vw, 8px);
    column-gap: clamp(2.5px, 1.25vw, 5px);
    margin-top: clamp(21px, 10.5vw, 42px);
  }

  .payment-card {
    width: 100%;
    height: clamp(80px, 40vw, 160px);
    border-radius: clamp(5px, 2.5vw, 10px);
  }

  .payment-card>div {
    height: clamp(70px, 35vw, 140px);
  }

  .payment-card>p {
    height: clamp(20px, 10vw, 40px);
    font-size: clamp(9.5px, 4.75vw, 19px);
  }



  .stable-commu-container {
    width: clamp(172px, 86vw, 344px);
    margin: auto;
  }

  .stable-commu-container>div:nth-of-type(1)>p:nth-of-type(1) {
    font-size: clamp(14px, 7vw, 28px);
  }

  .stable-commu-container>div:nth-of-type(1)>p:nth-of-type(1) span {}

  .stable-commu-container>div:nth-of-type(1)>p:nth-of-type(2) {
    font-size: clamp(10px, 5vw, 20px);
    margin: clamp(15px, 7.5vw, 30px) 0 clamp(6px, 3vw, 12px) 0;
  }

  .stable-commu-container>div:nth-of-type(1)>p:nth-of-type(2) span {}

  .stable-commu-container>div:nth-of-type(2) {
    margin: clamp(6px, 3vw, 12px) 0 clamp(9px, 4.5vw, 18px) 0;
  }

  .stable-commu-need-reason {
    display: flex;
    flex-direction: row;
  }

  .stable-commu-need-reason>div {
    font-size: clamp(6px, 3vw, 12px);
    margin-top: clamp(4px, 2vw, 8px);
    padding: clamp(2px, 1vw, 4px) clamp(12px, 6vw, 24px);
  }

  .stable-commu-box {
    border-radius: clamp(7.5px, 3.75vw, 15px);
    padding: clamp(7.5px, 3.75vw, 15px);
    margin: clamp(10px, 5vw, 20px) 0 clamp(25px, 12.5vw, 50px) 0;
  }

  .stable-commu-box>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: clamp(2px, 1vw, 4px);
    gap: clamp(7.5px, 3.75vw, 15px);
  }

  .stable-commu-box li {
    padding-left: clamp(10px, 5vw, 20px);
    margin-bottom: clamp(6px, 3vw, 12px);
    font-size: clamp(7.5px, 3.75vw, 15px);
    margin: clamp(7.5px, 3.5vw, 15px) 0;
    line-height: 120%;
    letter-spacing: -0.02em;
  }

  /* 기본: 한 줄일 때 자연스럽게 가운데 */
  .stable-commu-box li::before {
    content: "";
    position: absolute;
    top: 0.1em;
    /* 글자 첫 줄 기준 자연스러운 보정값 */
    left: 0;
    width: clamp(6px, 3vw, 12px);
    height: clamp(6px, 3vw, 12px);
    background: url("https://16882298.com/img/products/nc7000/nc7000_li_check1.svg") no-repeat center/contain;
  }

  /* 만약 확실히 두 줄 이상일 때 위 정렬이 필요하면 클래스로 제어 */
  .stable-commu-box li.top-align::before {
    top: 0;
    /* 강제 상단 */
    transform: none;
  }

  .wireless-channel-talk-btn {
    width: min(93.25vw, 373px);
  }

  .tab-container {
    margin-top: clamp(50px, 25vw, 100px);
    margin-bottom: clamp(17.5px, 8.75vw, 35px);
  }

  .tab-container>div:nth-of-type(1) {
    margin-bottom: 56px;
  }

  .tab-container>div:nth-of-type(1)>p:nth-of-type(1) {
    font-size: clamp(15px, 7.5vw, 30px);
  }

  .tab-container>div:nth-of-type(1)>p:nth-of-type(2) {
    font-size: clamp(10px, 5vw, 20px);
    margin-top: clamp(10px, 5vw, 20px);
  }

  .tab-box {
    width: 95%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3px, 1.5vw, 6px);

  }

  .tab-card {
    width: 100%;
    border-radius: clamp(5px, 2.5px, 10px);
    border: clamp(0.5px, 0.25vw, 1px) solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    cursor: pointer;
    align-items: center;
    padding-top: clamp(7.5px, 3.75vw, 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .tab-card>img {
    height: clamp(50px, 25vw, 100px);
    object-fit: contain;
  }

  .tab-card>p:nth-of-type(1) {
    font-size: clamp(7.5px, 3.75vw, 15px);
    margin: clamp(3px, 1.5vw, 6px) 0 clamp(3px, 1.5vw, 6px) 0;
  }

  .tab-card>p:nth-of-type(2) {
    font-size: clamp(11px, 5.5vw, 22px);
    margin-bottom: clamp(6px, 3vw, 12px);
  }

  .tab-npay {
    background-color: var(--npay-light);
    box-sizing: border-box;
    border-radius: clamp(12px, 6vw, 24px);
    border: clamp(1px, 0.5vw, 2px) solid var(--npay-basic);
    background: #F1FFE5;
  }

  .tab-npay img {
    width: 87px;
    height: clamp(50px, 25vw, 100px);
    object-fit: contain;
  }

  .tab-toss {
    background-color: var(--toss-light);
    box-sizing: border-box;
    border-radius: clamp(12px, 6vw, 24px);
    border: clamp(1px, 0.5vw, 2px) solid var(--toss-basic);
    background: #EBF6FF;
  }

  .tab-toss img {
    width: 87px;
    height: clamp(50px, 25vw, 100px);
    object-fit: contain;
  }

  .tab-deactive {
    border-radius: clamp(12px, 6vw, 24px);
    border: clamp(1px, 0.5vw, 2px) solid #f0f0f0;
    background: #FFFFFF;
  }

  .tab-npay:hover {
    background-color: var(--npay-light);
    box-sizing: border-box;
    border-radius: clamp(12px, 6vw, 24px);
    border: clamp(1px, 0.5vw, 2px) solid var(--npay-basic);
    background: #F1FFE5;
  }

  .tab-toss:hover {
    background-color: var(--toss-light);
    box-sizing: border-box;
    border-radius: clamp(12px, 6vw, 24px);
    border: clamp(1px, 0.5vw, 2px) solid var(--toss-basic);
    background: #EBF6FF;
  }

  /* 채널톡 및 문의버튼 시작 */
  .inquire-button {}

  .inquire-button button {
    border-radius: clamp(25vw, 12.5vw, 50px);
    box-shadow: 0 0 clamp(10px, 5vw, 20px) 0 rgba(4, 126, 255, 0.50);
    border: 0px;
    padding: clamp(9px, 4.5vw, 18px) clamp(10px, 5vw, 20px);
    width: 94%;
  }

  .inquire-button button span {
    font-size: clamp(9px, 4.5vw, 18px);
  }

  /* 채널톡 및 문의버튼 끝 */

  .basic-componenets1 {
    padding: clamp(75px, 37.5vw, 150px) 0 clamp(45px, 22.5vw, 90px) 0;
  }

  .basic-componenets1>img {
    margin: clamp(24px, 12vw, 48px) 0 clamp(12px, 6vw, 24px) 0;
    width: 75%;
  }

  .basic-componenets1>p:nth-of-type(1) {
    font-size: clamp(12px, 6vw, 24px);
  }

  .basic-componenets1>p:nth-of-type(2) {
    font-size: clamp(9px, 4.5vw, 18px);
  }

  .basic-componenets2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: clamp(56px, 28vw, 112px);
  }

  .basic-componenets2>div {
    font-size: clamp(9px, 4.5vw, 18px);
  }

  .basic-componenets2>div>img {
    margin-bottom: clamp(11px, 5.5vw, 22px);
    height: clamp(43px, 21.5vw, 86px);
    width: clamp(50px, 25vw, 100px);
  }

  .additional-products-container {
    margin-bottom: clamp(56px, 28vw, 112px);
  }

  .additional-products-container>p {
    margin-bottom: clamp(17px, 8.5vw, 34px);
    font-size: clamp(12px, 6vw, 24px);
  }

  .additional-products-container>div {}

  .additional-products-container>div p {
    font-size: clamp(9px, 4.5vw, 18px);
    margin-top: 12px;
  }

  .additional-products-container>div>div>img {
    height: clamp(90px, 45vw, 180px);
    object-fit: contain;
  }

  .additional-product {}

  .install-process-section {
    margin-bottom: clamp(35px, 17.5vw, 70px);
  }


  /* 채널톡 보낼때 화살표 추가 */
  .inquire-btn-detail1 {
    position: relative;
    left: 0.375em;
  }

  .inquire-btn-detail2 {
    color: #FFFFFF;
    object-fit: contain;
    height: 0.625em;
    position: relative;
    top: 0em;
    /* left: 0.375em; */
    left: 0.583em;
  }

  .inquire-btn-detail3 {
    color: #FFFFFF80;
    object-fit: contain;
    height: 0.625em;
    position: relative;
    top: 0em;
    /* left: 0.083em; */
    left: 0.292em;
  }

  /* 채널톡 보낼때 화살표 추가 끝 */
  .br-delete {
    display: none;
  }


  .hanabank-box {
    position: relative;
    transform: translateY(-20%);
    width: min(91vw, 364px);
    margin-bottom: 0px;
    border-radius: 8px;
  }

}