* {
  /* 터치 시 번쩍이는 하이라이트 색상을 투명하게 변경 */
  -webkit-tap-highlight-color: transparent;
}

: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;
}

.content-auto {
  content-visibility: auto;
}
.landing_container {
  width: 100vw;
  min-width: 1050px;
  text-align: center;
  margin: 50px auto;
  background-color: #ffffff;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .landing_container {
    width: 100%;
    min-width: 0;
    text-align: center;
    margin: 35px auto;
  }
}
/* 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;
  /* margin: auto; */
}


/* unionpos에서 쓰일 fs, fw */
.fs-maintitle {
  font-size: 80px;
}

.fs-subtitle1 {
  font-size: 60px;
}

.fs-subtitle2 {
  font-size: 54px;
}

.fs-text1 {
  font-size: 50px;
}

.fs-text2 {
  font-size: 45px;
}

.fs-subtext1 {
  font-size: 40px;
}

.fs-subtext2 {
  font-size: 35px;
}

.fs-subtext3 {
  font-size: 30px;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
  /* 보통(regular)보다 살짝 두꺼운 놈 */
}

.fw-regular {
  font-weight: 400;
}

/* 소개 시작 */
.introduce-section {
  width: 100vw;
  height: calc(100vh - 130px);
  background-color: #fbfbfb;
  position: relative;
  min-height: 700px;
}

.introduce-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 16px;
}

.introduce-text-box {
  text-align: left;
  position: relative;
  top: -3em;
}

.introduce-text-box p {
  letter-spacing: -0.04em;
  line-height: 130%;
}

.introduce-img {
  width: 536px;
  height: 412px;
}

.introduce-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.introduce-scroll-sign-box {
  position: absolute;
  bottom: 2em;
  left: 50%;
  translate: -50% 0;
}

.introduce-scroll-sign-text {
  color: #cdcdcd;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.8px;
  margin-bottom: 0.8em;
}

.introduce-scroll-signs {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font: 20px;
}

.introduce-scroll-signs svg {
  width: 1em;
  height: 1em;
  rotate: 90deg;
}

.introduce-scroll-signs svg {
  width: 1em;
  height: 1em;
  rotate: 90deg;
}

@keyframes scroll-sign-motion1 {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(1em);
  }

  50% {
    transform: translateX(1em);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes scroll-sign-motion2 {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(1em);
  }

  50% {
    transform: translateX(1em);
  }

  90% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes scroll-sign-motion3 {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(1em);
  }

  50% {
    transform: translateX(1em);
  }

  80% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

.introduce-scroll-signs svg:nth-of-type(1) {
  color: #a7a7a7;
  position: relative;
  top: 0em;
  /* animation-delay: 1.0s; */
  animation-name: scroll-sign-motion3;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.introduce-scroll-signs svg:nth-of-type(2) {
  color: #d9d9d9;
  position: relative;
  top: -0.5em;
  /* animation-delay: 0.5s; */
  animation-name: scroll-sign-motion2;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.introduce-scroll-signs svg:nth-of-type(3) {
  color: #e9e9e9;
  position: relative;
  top: -1em;
  /* animation-delay: 0s; */
  animation-name: scroll-sign-motion1;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* 소개 끝 */
/* 네이버 스마트 플레이스 광고 시작 */

.naver-smartplace-section {
  padding: 100px 0;
}

.naver-smartplace-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.naver-smartplace-text-container {
  text-align: left;
}

.naver-smartplace-text-img {
  width: 237px;
  height: 27px;
  margin-bottom: 20px;
}

.naver-smartplace-text-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.naver-smartplace-text-box {
}

.naver-smartplace-text-box h2 {
  font-size: 48px;
  margin-bottom: 27px;
}

.naver-smartplace-text-box h2 span {
  color: #0ac391;
}

.naver-smartplace-img {
  width: 500px;
  height: 500px;
}

.naver-smartplace-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 네이버 스마트 플레이스 광고 끝 */

/* 플레이스 플러스+ 광고 시작 */

.placeplus-section {
  padding: 150px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #fff 52.88%, #f0f6ff 100%);
}

/* 플레이스 플러스+ 광고 끝 */

/* 플레이스 리뷰 시작 */

.place-review-accum-section {
  padding: 0 0 300px 0;
}

.place-review-accum-title {
  margin-bottom: 77px;
}

.place-review-accum-title h2 span {
  background: var(--Linear, linear-gradient(90deg, #08c761 0%, #7687ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.place-review-accum-mb {
  margin-bottom: 118px;
}

.place-review-accum-img {
  margin: auto;
  margin-top: 100px;
}

.place-review-accum-img.prai1 {
  width: 913px;
  height: 570px;
}

.place-review-accum-img.prai2 {
  width: 893px;
  height: 675px;
}

.place-review-accum-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 플레이스 리뷰 끝 */

/* 배너 시작 */

.upsolution-pos-ad-banner-section {
  background-color: #000000;
}

.upsolution-pos-ad-banner {
  max-width: 1920px;
  min-width: 1050px;
  width: 100vw;
  height: 788px;
  margin: auto;
  /* background-color: #000000; */
  /* background-image:
    linear-gradient(90deg, #000000 calc(50% - min(8.33vw, 160px)), transparent 100%),
    url("https://16882298.com/img/products/upsolution_pos/upsolution_pos_banner.png"); */
  background-image:
    linear-gradient(
      90deg,
      #000000 calc(100% - 790px - 305px),
      transparent calc(100% - 790px)
    ),
    url("/img/products/upsolution_pos/upsolution_pos_banner_v2.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.upsolution-pos-ad-banner-text-box {
  color: #fafafa;
  text-align: left;
  position: relative;
  top: -5em;
  left: 2.625em;
}

.upsolution-pos-ad-banner-text-box h2 {
  margin-bottom: 38px;
}

/* 배너 끝 */

/* 포스기 칩 성능 시작 */
.performance-section {
  padding-top: 196px;
  padding-bottom: 190px;
}

.performance-expalin {
}

.performance-expalin p {
  margin-top: 85px;
  margin-bottom: 110px;
}

.performance-cardbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.performance-card {
  border-radius: 20px;
  background-color: #fafafa;
  box-shadow: 0 7px 29px 0 #64646f33;
  width: 300px;
  height: 300px;
}

.performance-card > div:nth-of-type(1) {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.performance-card > div:nth-of-type(1) img {
  max-width: 100%;
  max-height: 100%;
}

/* 포스기 칩 성능 끝 */

/* 배달 광고 시작 */
.delivery-ad-section {
  background-color: #f5f5f5;
}

.delivery-ad {
  width: 100%;
  object-fit: contain;
}

/* 배달 광고 끝 */

/* 메뉴 구성 */
/* 한눈에 보이는 설정 섹션 시작 */
.clear-setting {
  padding: 254px 0 0 0;
}

.clear-setting-box {
  margin-bottom: 170px;
}

.clear-setting-box:last-child {
  margin-bottom: 0;
}

.clear-setting-box h2 {
  margin-bottom: 57px;
  line-height: 130%;
}

.clear-setting-img {
  margin-top: 110px;
}

/* ciss는 clear-setting-img 줄임말일뿐. */
.clear-setting-img.csi-intuitive {
  width: 1032px;
  height: 690px;
  margin-left: auto;
  margin-right: auto;
}

.clear-setting-img.csi-update {
  width: 857px;
  height: 325px;
  margin-left: auto;
  margin-right: auto;
}

.clear-setting-img.csi-same-real {
  width: 676px;
  height: 556px;
  margin-left: auto;
  margin-right: auto;
}

.clear-setting-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clear-setting-menu-excel-add {
  display: flex;
  flex-direction: row;
  border-radius: 7px;
  border: 1px solid #c7c7c7;
  background: #f5f8ff;
  align-items: center;
  width: 1014px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 58px;
}

.clear-setting-menu-excel-add img {
}

.clear-setting-menu-excel-add p {
  margin-left: 0.75em;
  letter-spacing: -0.023em;
}

/* 한눈에 보이는 설정 섹션 끝 */

/* 매출 정산 섹션 시작 */
.sales-settlement-data-section {
  padding-top: 286px;
}

.sales-settlement-data-box {
  margin-bottom: 200px;
}

.sales-settlement-data-box:last-child {
  margin-bottom: 0px;
}

.sales-settlement-data-box h2 {
  margin-bottom: 79px;
}

.sales-settlement-data-img {
  margin-top: 120px;
}

/* ssdi는 sales-settlement-data-img 줄임말일뿐 */
.sales-settlement-data-img.ssdi-auto-send {
  margin-left: auto;
  margin-right: auto;
  width: 981px;
  height: 481px;
}

.sales-settlement-data-img.ssdi-data-check {
  margin-left: auto;
  margin-right: auto;
  width: 1050px;
  height: 1007px;
}

.sales-settlement-data-img.ssdi-ai-analyze {
  margin-left: auto;
  margin-right: auto;
  width: 1020px;
  height: 266px;
  margin-top: 63px;
}

.sales-settlement-data-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-analyze-beta {
  margin-bottom: 21px;
}

.ai-analyze-beta p {
  padding: 9px 40px;
  color: #ffffff;
  border-radius: 32px;
  background: linear-gradient(90deg, #0089fa 0%, #5560ff 100%);
  display: inline-block;
}

/* 매출 정산 섹션 끝 */

/* 포인트 적립 섹션 시작 */
.point-earn-section {
  padding-top: 212px;
  padding-bottom: 200px;
}

.point-earn-box {
  margin-bottom: 150px;
}

.point-earn-box h2 {
  margin-bottom: 92px;
}

.point-earn-box:last-child {
  margin-bottom: 0px;
}

.point-earn-img {
  margin-top: 80px;
}

.point-earn-box .caption {
  color: #656565;
  text-align: center;
  margin: 16px auto auto auto;
}

/* pei는 point-earn-img 줄임말일뿐 */
.point-earn-img.pei-phone-number {
  width: 954px;
  height: 900px;
  margin-left: auto;
  margin-right: auto;
}

.point-earn-img.pei-real-time-check-order {
  width: 912px;
  height: 566px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.point-earn-img.pei-real-time-check-order p {
  position: absolute;
  color: #656565;
  text-align: center;
  font-size: 34px;
  right: 1.29em;
  bottom: -1.7em;
}

.point-earn-img.pei-auto-calc-menu {
  width: 890px;
  height: 566px;
  margin-left: auto;
  margin-right: auto;
}

.point-earn-img.pei-cook-finish-noti {
  width: 910px;
  height: 567px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.point-earn-img.pei-cook-finish-noti p {
  position: absolute;
  color: #656565;
  text-align: center;
  font-size: 34px;
  left: 0;
  bottom: 0.65em;
  letter-spacing: -0.04em;
}

.point-earn-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 포인트 적립 섹션 끝 */

/* 무료로 써보고 싶다면? 채널톡 버튼 시작*/
.point-earn-channel-talk-btn {
  width: 844px;
  margin: auto;
}

.point-earn-btn-text-box {
  position: relative;
}

.point-earn-btn-text {
  /* position: relative; */
  /* left: 0.375em; */
}

.point-earn-btn-svg1 {
  color: #ffffff;
  height: 0.625em;
  width: auto;
  object-fit: contain;
  position: absolute;
  translate: 100% 50%;
  top: 0;
  right: -1.6em;
}

.point-earn-btn-svg2 {
  color: #ffffff80;
  height: 0.625em;
  width: auto;
  object-fit: contain;
  position: absolute;
  translate: 100% 50%;
  top: 0;
  right: -2em;
}

/* 무료로 써보고 싶다면? 채널톡 버튼 끝 */

/* 멀티패드 커넥트, 프론트 시작 */
.multipad-section {}

/* 멀티패드 커넥트, 프론트 끝 */

/* 고객이 먼저 찾는 매장 만들기 채널톡 버튼 시작*/
.multipad-channel-talk-btn {
  width: 853px;
  margin: auto;
}

.multipad-btn-text-box {
  position: relative;
}

.multipad-btn-text {
  /* position: relative; */
  /* left: 0.375em; */
}

.multipad-btn-svg1 {
  color: #ffffff;
  height: 0.625em;
  width: auto;
  object-fit: contain;
  position: absolute;
  translate: 100% 50%;
  top: 0;
  right: -1.75em;
}

.multipad-btn-svg2 {
  color: #ffffff80;
  height: 0.625em;
  width: auto;
  object-fit: contain;
  position: absolute;
  translate: 100% 50%;
  top: 0;
  right: -2.15em;
}

/* 고객이 먼저 찾는 매장 만들기 채널톡 버튼 끝 */

/* 사후관리 시작 */
.sinsin-follow-up-section {
  margin-top: 136px;
}

/* 사후관리 끝 */

/* 구성품 시작 */
.component-section {
  padding-top: 136px;
  padding-bottom: 194px;
}

.component-title {
  margin-bottom: 80px;
}

.component-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.component-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.component-left {
  position: relative;
  left: 20px;
}

.component-left > p {
  position: relative;
  left: -1.25em;
}

.component-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  right: 66px;
}

.component-right-up {
}

.component-right-down {
}

.component-pos-img {
  width: 548px;
  height: 652px;
  margin: auto;
}

.component-multipad-img {
  width: 430px;
  height: 278px;
  margin: auto;
}

.component-recipt-printer-img {
  width: 204px;
  height: 208px;
  margin: auto;
}

/* 구성품 끝 */

/* 추가 구성품 addon 시작 */
/* main addon */
.component-main-addon-section {
  padding-bottom: 270px;
}

.component-main-addon-title {
  margin-bottom: 134px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.component-main-addon-title-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f5f8fa;
  margin-right: 34px;
  font-size: 76px;
  color: #919ba5;
}

.component-main-addon-title-plus p {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  position: relative;
  top: -5px;
}

.component-addon-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 80px;
}

.component-addon-explain-box {
  margin-bottom: 46px;
}

.component-addon-name {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.component-addon-recommend {
  border-radius: 32px;
  background: #294377;
  padding: 5px 21px;
  font-size: 32px;
  color: #fafafa;
  margin-right: 0.5625em;
}

.component-addon-card-img {
  aspect-ratio: 513/382;
  width: 100%;
  height: auto;
  background-color: #f9f9f9;
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  box-sizing: border-box;
}

.component-addon-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: auto;
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.2);
}

.component-addon-card-img:hover > img {
  transform: scale(1.2);
}

.magnifier {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #294377;
  border-radius: 50%;
  box-sizing: border-box;
}

.magnifier img {
  width: 94%;
  height: 94%;
}

.addon-addexplain {
  position: absolute;
  font-size: 28px;
  color: #888888;
  bottom: 1.07em;
  right: 1.43em;
}

/* sub addon */
.component-sub-addon-section {
  padding-bottom: 277px;
}

.component-sub-addon-title {
  margin-bottom: 140px;
}

/* 추가 구성품 addon 끝 */

/* 제품 상세 시작 */
.product-detail-section {
  padding-bottom: 370px;
}

.product-detail-title {
  margin-bottom: 125px;
}

.product-detail-table {
  margin: auto;
  border-spacing: 30px;
}

.product-detail-table th,
.product-detail-table td {
  text-align: left;
}

.product-detail-table th {
  width: 210px;
}

.product-detail-table td {
  letter-spacing: -0.07em;
}

.product-detail-img {
  margin: auto;
  margin-top: 150px;
}

/* pdi는 product-detail-img줄임말*/
.product-detail-img.pdi-pos {
  width: 575px;
  height: 486px;
}

.product-detail-img.pdi-npay-connect {
  width: 960px;
  height: 482px;
}

.product-detail-img.pdi-toss-front {
  width: 940px;
  height: 536px;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-hr {
  display: block;
  width: 605px;
  size: 1px;
  color: #b9b9b9;
  margin: 125px auto;
}

.product-detail-npay-explain {
  width: 100%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  padding: 24px 0;
  color: #ffffff;
  margin-top: 125px;
}

/* 제품 상세 끝 */

/* 도입 절차 시작 */
.install-process-div {
  margin-bottom: 155px;
}

/* 도입 절차 끝 */

.only-PC {
  display: block;
}

.only-mobile {
  display: none;
}

.hanabank-container {
  background: #fbfbfb;
  width: 1050px;
  margin: auto;
}
.hanabank-box {
  width: 890px;
  margin: auto;
  margin-bottom: 126px;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {

  /* unionpos에서 쓰일 fs, fw */
  .fs-maintitle {
    font-size: min(7.5vw, 30px);
  }

  .fs-subtitle1 {
    font-size: min(6.25vw, 25px);
  }

  .fs-subtitle2 {
    font-size: min(6.25vw, 25px);
  }

  .fs-text1 {
    font-size: min(4.5vw, 18px);
  }

  .fs-text2 {
    font-size: min(4.5vw, 18px);
  }

  .fs-subtext1 {
    font-size: min(3.75vw, 15px);
  }

  .fs-subtext2 {
    font-size: min(3vw, 12px);
  }

  .fs-subtext3 {
    /* font-size: 10px; or 11px */
    font-size: min(2.75vw, 11px);
  }

  /* 소개 시작 */
  .introduce-section {
    width: 100vw;
    height: auto;
    background-color: transparent;
    /* position: relative; */
    padding-top: min(18.75vw, 75px);
    padding-bottom: min(22.5vw, 90px);
    min-height: 0;
  }

  .introduce-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: none;
    row-gap: min(11.5vw, 46px);
  }

  .introduce-text-box {
    text-align: center;
    position: inherit;
  }

  .introduce-text-box p {
    letter-spacing: -0.04em;
    line-height: 130%;
  }

  .introduce-img {
    width: min(83.25vw, 333px);
    height: min(64vw, 256px);
  }

  .introduce-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* 소개 끝 */
  /* 네이버 스마트 플레이스 광고 시작 */

  .naver-smartplace-section {
    padding: 0 0 min(11.75vw, 47px) 0;
  }

  .naver-smartplace-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .naver-smartplace-text-container {
    text-align: center;
    margin-bottom: min(3vw, 12px);
  }

  .naver-smartplace-text-box {
  }

  .naver-smartplace-text-box h2 {
    font-size: min(6.25vw, 25px);
    margin-bottom: min(7vw, 28px);
  }

  .naver-smartplace-img {
    width: min(47.5vw, 190px);
    height: min(47.5vw, 190px);
  }

  /* 네이버 스마트 플레이스 광고 끝 */

  /* 플레이스 플러스+ 광고 시작 */

  .placeplus-section {
    padding: min(14.5vw, 58px) 0 min(7vw, 28px) 0;
  }

  /* 플레이스 플러스+ 광고 끝 */

  /* 플레이스 리뷰 끝 */

  .place-review-accum-section {
    padding: 0 0 min(25vw, 100px) 0;
  }

  .place-review-accum-title {
    margin-bottom: min(10.5vw, 42px);
  }

  .place-review-accum-mb {
    margin-bottom: min(12vw, 48px);
  }

  .place-review-accum-img {
    margin-top: min(8.75vw, 35px);
  }

  .place-review-accum-img.prai1 {
    width: min(95vw, 380px);
    height: min(59.75vw, 239px);
  }

  .place-review-accum-img.prai2 {
    width: min(95vw, 380px);
    height: min(72vw, 288px);
  }

  /* 플레이스 리뷰 끝 */

  /* 배너 시작 */

  .upsolution-pos-ad-banner-section {
    background-color: #000000;
  }

  .upsolution-pos-ad-banner {
    max-width: 400px;
    min-width: 0;
    width: 100vw;
    height: min(71vw, 284px);
    margin: auto;
    /* background-color: #000000; */
    /* background-image:
      linear-gradient(90deg, #000000 calc(30%), transparent 45%),
      url("https://16882298.com/img/products/upsolution_pos/upsolution_pos_banner_mobile.png"); */
    background-image:
      linear-gradient(90deg, #000000 calc(0%), transparent 50%),
      url("/img/products/upsolution_pos/upsolution_pos_banner_v2.png");
    background-position: right center;
    background-repeat: no-repeat;
    /* background-size: auto; */
    background-size:
      100% 100%,
      auto 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }

  .upsolution-pos-ad-banner-text-box {
    color: #fafafa;
    text-align: left;
    position: relative;
    /* top: -4em;
    left: 2.625em; */
    top: min(8.5vw, 34px);
    left: 0;
  }

  .upsolution-pos-ad-banner-text-box h2 {
    font-size: min(5vw, 20px);
    margin-bottom: min(2.5vw, 10px);
    line-height: 140%;
  }

  .upsolution-pos-ad-banner-text-box p {
    font-size: min(3vw, 12px);
    line-height: 130%;
    /* line-height: 0%; */
    /* transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); */
  }

  /* 장난치기용 */
  /* .upsolution-pos-ad-banner-text-box:hover p{
    line-height: 130%;
  } */

  /* 배너 끝 */

  /* 포스기 칩 성능 시작 */
  .performance-section {
    padding-top: min(13.75vw, 55px);
    padding-bottom: min(5.25vw, 21px);
  }

  .performance-expalin p {
    margin-top: min(4.75vw, 19px);
    margin-bottom: min(10.75vw, 43px);
  }

  .performance-card {
    border-radius: min(2vw, 8px);
    box-shadow: 0 min(0.75vw, 3px) min(2.75vw, 11px) 0 #64646f33;
    width: min(27.5vw, 110px);
    height: min(27.5vw, 110px);
  }

  .performance-card > div:nth-of-type(1) {
    height: min(20.25vw, 81px);
  }

  .performance-card > div:nth-of-type(1) img {
    width: 60%;
    height: 60%;
  }

  /* 포스기 칩 성능 끝 */

  /* 배달 광고 시작 */

  /* 배달 광고 끝 */

  /* 메뉴 구성 */
  /* 한눈에 보이는 설정 섹션 시작 */
  .clear-setting {
    padding: min(14.25vw, 57px) 0 0 0;
  }

  .clear-setting-box {
    margin-bottom: min(15vw, 60px);
  }

  .clear-setting-box:last-child {
  }

  .clear-setting-box h2 {
    margin-bottom: min(3.25vw, 13px);
  }

  .clear-setting-img {
    margin-top: min(6vw, 24px);
  }

  /* ciss는 clear-setting-img 줄임말일뿐. */
  .clear-setting-img.csi-intuitive {
    width: min(88.5vw, 354px);
    height: min(59.25vw, 237px);
  }

  .clear-setting-img.csi-update {
    width: min(72.5vw, 290px);
    height: min(27.5vw, 110px);
  }

  .clear-setting-img.csi-same-real {
    width: min(57.5vw, 230px);
    height: min(47.5vw, 190px);
  }

  .clear-setting-img img {
  }

  .clear-setting-menu-excel-add {
    border-radius: min(0.75vw, 3px);
    border: min(0.25vw, 1px) solid #c7c7c7;
    width: min(86.5vw, 346px);
    padding: min(2.5vw, 10px) min(5vw, 20px);
  }

  .clear-setting-menu-excel-add img {
    width: min(6.5vw, 26px);
    height: min(6vw, 24px);
  }

  .clear-setting-menu-excel-add p {
  }

  /* 한눈에 보이는 설정 섹션 끝 */

  /* 매출 정산 섹션 시작 */
  .sales-settlement-data-section {
    padding-top: min(23.5vw, 94px);
  }

  .sales-settlement-data-box {
    margin-bottom: min(12.5vw, 50px);
  }

  .sales-settlement-data-box:last-child {
    margin-bottom: 0px;
  }

  .sales-settlement-data-box h2 {
    margin-bottom: min(7vw, 28px);
  }

  .sales-settlement-data-img {
    margin-top: min(5vw, 20px);
  }

  /* ssdi는 sales-settlement-data-img 줄임말일뿐 */
  .sales-settlement-data-img.ssdi-auto-send {
    width: min(74vw, 296px);
    height: min(63.5vw, 254px);
  }

  .sales-settlement-data-img.ssdi-data-check {
    width: min(79.5vw, 318px);
    height: min(76.25vw, 305px);
  }

  .sales-settlement-data-img.ssdi-ai-analyze {
    width: min(77.25vw, 309px);
    /* height: 81px; */
    height: auto;
    margin-top: min(2.5vw, 10px);
  }

  .sales-settlement-data-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ai-analyze-beta {
    margin-bottom: min(1.5vw, 6px);
  }

  .ai-analyze-beta p {
    padding: min(0.75vw, 3px) min(3vw, 12px);
    border-radius: min(2.5vw, 10px);
  }

  /* 매출 정산 섹션 끝 */

  /* 포인트 적립 섹션 시작 */
  .point-earn-section {
    padding-top: min(16.5vw, 66px);
    padding-bottom: min(15.5vw, 62px);
  }

  .point-earn-box {
    margin-bottom: min(12.5vw, 50px);
  }

  .point-earn-box h2 {
    margin-bottom: min(6.25vw, 25px);
  }

  .point-earn-box:last-child {
  }

  .point-earn-img {
    margin-top: min(5vw, 20px);
  }
  .point-earn-box .caption {
    margin: 8px auto auto auto;
  }

  /* pei는 point-earn-img 줄임말일뿐 */
  .point-earn-img.pei-phone-number {
    width: min(72.5vw, 290px);
    height: min(68.5vw, 274px);
    margin-left: auto;
    margin-right: auto;
  }

  .point-earn-img.pei-real-time-check-order {
    width: min(75vw, 300px);
    height: min(46.75vw, 187px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .point-earn-img.pei-real-time-check-order p {
    font-size: min(2.75vw, 11px);
    right: 1.29em;
    bottom: -1.7em;
  }

  .point-earn-img.pei-auto-calc-menu {
    width: min(67.5vw, 270px);
    height: min(43vw, 172px);
    margin-left: auto;
    margin-right: auto;
  }

  .point-earn-img.pei-cook-finish-noti {
    width: min(69vw, 276px);
    height: min(43vw, 172px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .point-earn-img.pei-cook-finish-noti p {
    font-size: min(2.75vw, 11px);
    left: 0;
    bottom: 0.65em;
  }

  .point-earn-img img {
  }

  /* 포인트 적립 섹션 끝 */

  /* 무료로 써보고 싶다면? 채널톡 버튼 시작*/
  /* .point-earn-channel-talk-btn {
    width: 938px;
    margin: auto;
  }

  .point-earn-btn-text-box {
    position: relative;
  }

  .point-earn-btn-text {
  }

  .point-earn-btn-svg1 {
    color: #FFFFFF;
    height: 0.625em;
    width: auto;
    object-fit: contain;
    position: absolute;
    translate: 100% 50%;
    top: 0;
    right: -1.6em;
  }

  .point-earn-btn-svg2 {
    color: #FFFFFF80;
    height: 0.625em;
    width: auto;
    object-fit: contain;
    position: absolute;
    translate: 100% 50%;
    top: 0;
    right: -2em;
  } */

  /* 무료로 써보고 싶다면? 채널톡 버튼 끝 */

  /* 멀티패드 커넥트, 프론트 시작 */
  .multipad-section {
  }

  /* 멀티패드 커넥트, 프론트 끝 */

  /* 고객이 먼저 찾는 매장 만들기 채널톡 버튼 시작*/
  .multipad-channel-talk-btn {
    max-width: 400px;
    width: 100%;
    margin: auto;
  }

  .multipad-btn-text-box {
  }

  .multipad-btn-text {
  }

  .multipad-btn-svg1 {
    color: #ffffff;
    height: 0.625em;
    width: auto;
    object-fit: contain;
    position: absolute;
    translate: 100% 50%;
    top: 0;
    right: -0.5em;
  }

  .multipad-btn-svg2 {
    color: #ffffff80;
    height: 0.625em;
    width: auto;
    object-fit: contain;
    position: absolute;
    translate: 100% 50%;
    top: 0;
    right: -0.9em;
  }

  /* 고객이 먼저 찾는 매장 만들기 채널톡 버튼 끝 */

  /* 사후관리 시작 */
  .sinsin-follow-up-section {
    margin-top: min(17.5vw, 70px);
  }

  /* 사후관리 끝 */

  /* 구성품 시작 */
  .component-section {
    padding-top: min(17.5vw, 70px);
    padding-bottom: min(24vw, 96px);
  }

  .component-title {
    margin-bottom: min(17.5vw, 70px);
  }

  .component-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .component-name-fs {
    font-size: min(3.5vw, 14px);
  }

  .component-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .component-left {
    position: relative;
    left: min(4vw, 16px);
  }

  .component-left > p {
    position: relative;
    left: calc(-1 * min(4vw, 16px));
  }

  .component-right {
    right: min(2vw, 8px);
  }

  .component-right-up {
  }

  .component-right-down {
  }

  .component-pos-img {
    width: min(52vw, 208px);
    height: min(62vw, 248px);
  }

  .component-multipad-img {
    width: min(40.75vw, 163px);
    height: min(26.5vw, 106px);
  }

  .component-recipt-printer-img {
    width: min(19.5vw, 78px);
    height: min(19.75vw, 79px);
  }

  .component-img-text-margin {
    margin-bottom: min(1.5vw, 6px);
  }

  /* 구성품 끝 */

  /* main addon */
  .component-main-addon-section {
    padding-bottom: min(16vw, 64px);
  }

  .component-main-addon-title {
    margin-bottom: min(11.75vw, 47px);
  }

  .component-main-addon-title-plus {
    width: min(6.5vw, 26px);
    height: min(6.5vw, 26px);
    border-radius: 50%;
    margin-right: min(3vw, 12px);
    font-size: min(6.75vw, 27px);
  }

  .component-main-addon-title-plus p {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    top: calc(-1 * min(0.25vw, 1px));
  }

  .component-addon-box {
    column-gap: min(2vw, 8px);
    row-gap: min(5vw, 20px);
  }

  .component-addon-explain-box {
    margin-bottom: min(4vw, 16px);
  }

  .component-addon-name {
    margin-bottom: min(2.25vw, 9px);
  }

  .component-addon-recommend {
    border-radius: min(3vw, 12px);
    padding: min(0.5vw, 2px) min(2vw, 8px);
    font-size: min(3vw, 12px);
    margin-right: 0.5625em;
  }

  .component-addon-card-img {
    border-radius: min(4vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .component-addon-card-img > img {
    width: 90%;
    height: 90%;
  }

  .component-addon-card-img:hover > img {
    transform: scale(1.2);
  }

  .magnifier {
    width: min(6.5vw, 26px);
    height: min(6.5vw, 26px);
    top: min(2.25vw, 9px);
    left: min(2.25vw, 9px);
    border-radius: 50%;
  }

  .magnifier img {
    width: 94%;
    height: 94%;
  }

  .addon-addexplain {
    font-size: min(3vw, 12px);
    bottom: 0.41em;
    right: 0.83em;
    letter-spacing: -0.02em;
  }

  /* sub addon */
  .component-sub-addon-section {
    padding-bottom: min(8.5vw, 34px);
  }

  .component-sub-addon-title {
    margin-bottom: min(4.25vw, 17px);
  }

  /* 추가 구성품 addon 끝 */

  /* 제품 상세 시작 */
  .product-detail-section {
    padding-bottom: min(34vw, 136px);
  }

  .product-detail-title {
    margin-bottom: min(11vw, 44px);
  }

  .product-detail-table {
    margin: auto;
    border-spacing: min(2.5vw, 10px);
  }

  .product-detail-table th,
  .product-detail-table td {
    text-align: left;
  }

  .product-detail-table th {
    width: min(20vw, 80px);
  }

  .product-detail-table td {
    letter-spacing: -0.07em;
  }

  .product-detail-img {
    margin: auto;
    margin-top: min(12.5vw, 50px);
  }

  /* pdi는 product-detail-img줄임말*/
  .product-detail-img.pdi-pos {
    width: min(54vw, 216px);
    height: min(45.75vw, 183px);
  }

  .product-detail-img.pdi-npay-connect {
    width: min(80vw, 320px);
    height: min(40.25vw, 161px);
  }

  .product-detail-img.pdi-toss-front {
    width: min(92.5vw, 370px);
    height: min(52.75vw, 211px);
  }

  .product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-detail-hr {
    width: min(57vw, 228px);
    size: min(0.25vw, 1px);
    margin: min(16vw, 64px) auto;
  }

  .product-detail-npay-explain {
    border-radius: min(0.5vw, 2px);
    padding: min(1.25vw, 5px) 0;
    color: #ffffff;
    margin-top: min(11.75vw, 47px);
  }

  /* 제품 상세 끝 */

  /* 도입 절차 시작 */
  .install-process-div {
    margin-bottom: min(17.5vw, 70px);
  }

  /* 도입 절차 끝 */

  /* 추가 구성품 끝 */

  .only-PC {
    display: none;
  }

  .only-mobile {
    display: block;
  }

  .hanabank-container {
    background: #fbfbfb;
    width: min(95vw, 380px);
    margin: auto;
  }
  .hanabank-box {
    position: relative;
    transform: translateY(-20%);
    width: min(91vw, 364px);
    margin-bottom: 0px;
    border-radius: 8px;
  }
}
