:root {
  --pg-main-blue: #347CF6;
}

body {
  color: #151E30;
}

#sinsinplus-index {
  min-width: 1200px;
}

.inner-container {
  width: 1200px;
  margin: auto;
}

/* intro, hero-section 시작 */

.hero-section {
  /* background: linear-gradient(180deg, #C1DEFF 0%, #E7F3FF 100%); */
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url("../img/main/hero_sushi.png");
  background-size: cover;      /* 이미지가 요소를 가득 채우도록 확대/축소 */
  background-position: center; /* 이미지의 중심을 요소의 중앙에 맞춤 */
  background-repeat: no-repeat; /* 이미지 반복 방지 */
}

.hero-section .bottom-capsule{
  border-radius: 15px;
  background: #E2E3E1;
  padding: 7px 14px;
  width: fit-content;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translate(-50%, -50%);
}

.hero-section .inner-container {
  height: 100%;
}

.height-control-div {
  /* 헤더 nav의 높이 만큼 띄움 */
  height: 80px;
}

.hero-section .title {
  padding: 120px 0 0;
  margin: auto;
  position: relative;
  z-index: 1;
  width: fit-content;
}

@keyframes spread {
  0% {
    box-shadow:
      0px
      /*  x        */
      0px
      /*  y        */
      0px
      /*  blur     */
      0px
      /*  spread   */
      #2882FE;
  }

  20% {
    box-shadow:
      0px
      /*  x        */
      0px
      /*  y        */
      0px
      /*  blur     */
      0px
      /*  spread   */
      #2882FE;
  }

  100% {
    box-shadow:
      0px
      /*  x        */
      0px
      /*  y        */
      0px
      /*  blur     */
      140px
      /*  spread   */
      #C9E3FF;
  }
}

.pg-circle {
  position: relative;
  color: #FFFFFF;
  background: #2882FE;
  width: fit-content;
  padding: 48px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin: 210px auto auto auto;
  animation: spread 2s 0s infinite linear;
  z-index: 1;
}

.bubble {
  position: absolute;
  background: #FFFFFFCC;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  scale: 1;
  will-change: left, top;
}

.bubble img {
  width: 100%;
  height: 100%;
}


/* 아래로 이동 화살표 시작 */
@keyframes page-down {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-20%);
  }
}

.chevron-box {
  width: fit-content;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  animation: page-down 1s 0s infinite;
}

.chevron-box svg:nth-of-type(1) {
  width: 40px;
}

.chevron-box svg:nth-of-type(2) {
  width: 40px;
}

/* 아래로 이동 화살표 끝 */

/* intro, hero-section 끝 */

/* review, review-section 시작 */
.review-section {
  background: linear-gradient(180deg, #FFF 0%, #F4F7FF 100%);
  padding: 150px 0;
}

.review-section .inner-container {
  width: 1100px;
}

.review-scroll-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.review-section .title-box {
  position: sticky;
  top: 150px;
}

.review-section .card-box {
  gap: 50px;
  display: flex;
  flex-direction: column;
}

.review-section .card {
  width: 404px;
  height: 520px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.review-section .card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 카드 하단 검은색으로 칠한 느낌 */
.review-section .card::after {
  content: "";
  /* 필수! 이거 없으면 안 나타남 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0.00) 61%, #000 74.52%);
  z-index: 2;
  /* 이미지(1)보다 위, 글자(3)보다 아래 */
  pointer-events: none;
  /* 그라데이션 층이 마우스 클릭을 방해하지 않도록 */
}

.review-section .capsule {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 4px 18px;
  border-radius: 22px;
  border: 1px solid #FFF;
  background: rgba(78, 78, 78, 0.70);
  color: #FFFFFF;
  z-index: 3;
}

.review-section .content {
  position: absolute;
  bottom: 40px;
  left: 32px;
  color: #FFFFFF;
  z-index: 3;
}


/* review, review-section 끝 */

/* PG-PAY, pg-intro-section 시작 */
.pg-intro-section {
  background: linear-gradient(180deg, #F3F6FF 0%, #FFF 100%);
}

.pg-intro-section .inner-container {
  padding: 240px 34px 110px;
}

.pg-intro-section .card-box {
  margin: 70px auto auto auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pg-intro-section .card {
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 0 4px 0 #DDE5FF;
  padding: 34px 42px;
}

.pg-intro-section .card .explain {
  margin-left: 20px;
}

.pg-intro-section .card .icon {
  height: 80px;
  width: 80px;
}

.pg-intro-section .card .icon img {
  height: 100%;
  object-fit: contain;
}


/* PG-PAY, pg-intro-section 끝 */
/* PG-PAY, pg-graph-section 시작 */
.pg-graph-section {
  height: 100vh;
  min-height: fit-content;
}

.pg-graph-section .inner-container {
  width: 1025px;
  height: 100%;
}

.pg-graph-section .content-container {
  width: 100%;
}

.pg-graph-section .text-box h2 {
  margin: 17px 0 38px;
  position: relative;
}

.pg-graph-section .text-box .underline {
  position: absolute;
  background-color: #4396FB;
  height: 20px;
  width: 184px;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}

.pg-graph-section .graph-box {
  gap: 0 14px;
}

.pg-graph-section .card-company,
.pg-graph-section .pg-pay {
  width: 94px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.pg-graph-section .graph {
  width: 100%;
  border-radius: 10px;
}

.pg-graph-section .card-company .graph {
  height: 250px;
  background-color: #D1D6DB;
}

.pg-graph-section .pg-pay .graph {
  height: calc(250px / 2.4);
  background-color: #317EF3;
}

.pg-graph-section .pg-pay img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* PG-PAY, pg-graph-section 끝 */

/* PG-PAY, pg-deposit-section 시작 */
.pg-deposit-section {
  height: 100vh;
  min-height: fit-content;
}

.pg-deposit-section .inner-container {
  width: 1073px;
  height: 100%;
}

.pg-deposit-section .content-container {
  width: 100%;
}

.pg-deposit-section .img-box {
  width: 429px;
  height: auto;
  object-fit: contain;
}

.pg-deposit-section .text-box h2 {
  margin: 17px 0 38px;
  position: relative;
}

/* PG-PAY, pg-deposit-section 끝 */

/* service, service-compare-section 시작 */
.service-compare-section {
  padding: 150px 0 260px;
  background-color: #F5F8FA;
}

.service-compare-section .compare-box {
  position: relative;
  margin: 100px auto auto auto;
}

.service-compare-section .normal-van {
  color: #636C79;
  border-radius: 30px;
  background-color: #E3E8EE;
  width: 500px;
  position: relative;
}

.service-compare-section .normal-van .title {
  padding: 0 47px;
}

.service-compare-section .normal-van .title h4 {
  padding: 35px 0;
  border-bottom: 1px solid #636C79;
}

.service-compare-section .normal-van .content {
  padding: 40px 0;
}

.service-compare-section .normal-van .content li {
  margin-bottom: 30px;
}

.service-compare-section .normal-van .content li:last-of-type {
  margin-bottom: 0;
}

.service-compare-section .pg-pay {
  border-radius: 30px;
  background-color: #FFFFFF;
  width: 580px;
  overflow: hidden;
  position: relative;
  border: 5px solid var(--pg-main-blue);
  background-color: var(--pg-main-blue);
}

.service-compare-section .pg-pay .title {
  background-color: var(--pg-main-blue);
  padding: 40px 47px;
  color: #FFFFFF;

}

.service-compare-section .pg-pay .title h4 {}

.service-compare-section .pg-pay .content {
  padding: 50px 0;
  color: var(--pg-main-blue);
  background-color: #FFFFFF;
}

.service-compare-section .pg-pay .content li {
  margin-bottom: 40px;
}

.service-compare-section .pg-pay .content li:last-of-type {
  margin-bottom: 0;
}

.service-compare-section .versus {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #151E30;
  border-radius: 50%;
  color: #FFFFFF;
  z-index: 2;
  width: 146px;
  height: 146px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* service, service-compare-section 끝 */
/* service, service-zero-cost-section 시작 */
.service-zero-cost-section {
  background-color: #CCE9FF;
  padding: 110px 0;
}

.service-zero-cost-section .card-box {
  gap: 0 18px;
  margin: 90px auto auto auto;
}

.service-zero-cost-section .card {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.10);
  padding: 34px 0;
  width: 350px;
}

/* service, service-zero-cost-section 끝 */


/* service, service-all-pay-section 시작 */
.service-all-pay-section {
  padding: 180px 0 110px;
}

.service-all-pay-section h2 {
  margin-bottom: 34px;
}

.service-all-pay-section .payment-method-box {
  margin: 70px auto 30px auto;
}

.service-all-pay-section .payment-method-img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.service-all-pay-section .card-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 1100px;
  gap: 67px 26px;
}

.service-all-pay-section .card {
  grid: 1fr;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.service-all-pay-section .card.wide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 470px;
  padding: 40px;
}

.service-all-pay-section .card.wide h6 {
  margin: 40px auto 20px;
}

.service-all-pay-section .card.narrow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 22px 44px;
  text-align: left;
  gap: 0 74px;
}

.service-all-pay-section .card.narrow h6 {
  margin-bottom: 12px;
}

.service-all-pay-section .card .cable {
  width: 296px;
  height: 178px;
}

.service-all-pay-section .card .pos {
  width: 211px;
  height: 184px;
}

.service-all-pay-section .card .wireless {
  width: 102px;
  height: 176px;
}

.service-all-pay-section .card .kiosk {
  width: 102px;
  height: 176px;
}

.service-all-pay-section .card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* service, service-all-pay-section 끝 */

/* service, service-untact-section 시작 */
.service-untact-section {
  padding: 110px 0 270px;
}

.service-untact-section .inner-container {
  width: 1130px;
}

.service-untact-section h2 {
  margin-bottom: 40px;
}

.service-untact-section .banner {
  width: 100%;
  object-fit: contain;
  border-radius: 25px;
  margin: 60px auto 44px;
}

.service-untact-section .card-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
}

.service-untact-section .card {
  border-radius: 24px;
  width: 100%;
  padding: 50px 0 22px 50px;
}

.service-untact-section .card.payment {
  border: 1px solid #EAEAEA;
  background: #E8F4FF;
}

.service-untact-section .card.receipt {
  border: 1px solid #D0FFE5;
  background: #E8FFF5;
}

.service-untact-section .card img {
  margin: 16px 0 0 auto;
}

.service-untact-section .card.receipt .electronic-receipt {
  margin: 16px 40px 0 auto;
}

/* service, service-untact-section 끝 */

/* promotion, promotion-banner-section 시작 */
.promotion-banner-section {
  background-color: #0F1C31;
  padding: 80px 0 0 0;
}

.promotion-banner-section .inner-container {
  padding: 0 66px;
}

.promotion-banner-section h2 {
  margin: 20px 0;
}

.promotion-banner-section .loan-img {
  width: 459px;
  height: auto;
  object-fit: contain;
}

/* promotion, promotion-banner-section 끝*/

/* promotion, promotion-faq-section 시작*/
.promotion-faq-section {
  padding: 200px 0;
}

.promotion-faq-section .inner-container {
  padding: 0 70px;
}

.promotion-faq-section .faq-container {}

.promotion-faq-section .faq-title {
  width: fit-content;
  text-wrap: nowrap;
  margin: 0 150px 0 0;
}

.promotion-faq-section .faq-wrapper {
  width: 100%;
  position: relative;
  /* faq-question의 padding top의 길이 만큼 미뤄지기*/
  top: -22px;
}

.promotion-faq-section .faq-item {
  border-bottom: 1px solid #DADADA;
}

.promotion-faq-section .faq-item:first-of-type {}

.promotion-faq-section .faq-question {
  padding: 22px 0 22px 50px;
  list-style-type: none;
  position: relative;
  cursor: pointer;
}

.promotion-faq-section .faq-question::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 3px solid #151E30;
  border-bottom: 3px solid #151E30;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  left: 20px;
  top: 50%;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.promotion-faq-section .faq-item[open] .faq-question::after {
  transform: translateX(-50%) translateY(-50%) rotate(225deg);
}

.promotion-faq-section .faq-answer {
  /* calc값은 faq-question:after의 left - (width / 2) */
  padding: 0 0 22px calc(20px - (12px / 2));
}

/* promotion, promotion-faq-section 끝*/


@media screen and (max-width:768px) {
  #sinsinplus-index {
    min-width: 0;
  }

  .inner-container {
    width: 25rem;
    margin: auto;
  }

  /* intro, hero-section 시작 */

  .hero-section {
    /* background: linear-gradient(180deg, #C1DEFF 0%, #E7F3FF 100%); */
    width: 100%;
    min-height: 0;
    /* 자연스럽게 보이기 위해 헤더 높이를 빼줬음 */
    min-height: calc(100vh - 53px);
    position: relative;
    overflow: hidden;
    background-image: url("../img/main/hero_sushi.png");
    background-size: cover;      /* 이미지가 요소를 가득 채우도록 확대/축소 */
    background-position: right; /* 이미지의 중심을 요소의 중앙에 맞춤 */
    background-repeat: no-repeat; /* 이미지 반복 방지 */
  }

  .hero-section .inner-container {
    height: auto;
  }

  .height-control-div {
    /* 헤더 nav의 높이 만큼 띄움 */
    height: 53px;
  }

  .hero-section .title {
    padding: 3.75rem 0 0;
    margin: auto auto auto 1.75rem;
    width: 100%;
    position: relative;
    z-index: 1;
    width: fit-content;
  }


  @keyframes spread {
    0% {
      box-shadow:
        0px
        /*  x        */
        0px
        /*  y        */
        0px
        /*  blur     */
        0px
        /*  spread   */
        #2882FE;
    }

    20% {
      box-shadow:
        0px
        /*  x        */
        0px
        /*  y        */
        0px
        /*  blur     */
        0px
        /*  spread   */
        #2882FE;
    }

    100% {
      box-shadow:
        0px
        /*  x        */
        0px
        /*  y        */
        0px
        /*  blur     */
        4.375rem
        /*  spread   */
        #C9E3FF;
    }
  }


  .pg-circle {
    padding: 1.375rem;
    aspect-ratio: 1/1;
    margin: 9.375rem auto auto auto;
  }

  .bubble {
    position: absolute;
    background: #FFFFFFCC;
    border-radius: 50%;
    /* width: 82px;
    height: 82px; */
    width: 5.125rem;
    height: 5.125rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    scale: 1;
    will-change: left, top;
  }

  .bubble img {
    width: 100%;
    height: 100%;
  }

  /* intro, hero-section 끝 */

  /* review, review-section 시작 */
  .review-section {
    background: #FFFFFF;
    padding: 4rem 0px 5.3125rem;
  }

  .review-section .inner-container {
    width: 25rem;
  }

  .review-scroll-container {
    flex-direction: column;
    justify-content: start;
  }

  .review-section .title-box {
    position: relative;
    top: 0;
    margin: auto auto 3.4375rem 2rem;
  }

  .review-section .title-box h2 {
    margin-bottom: 1.5625rem;
  }

  .review-section .card-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .review-section .card-box {
    gap: 1.625rem;
    flex-direction: row;
    width: 100%;
  }

  .review-section .card {
    width: 16.4375rem;
    height: 21.125rem;
    border-radius: 1rem;
    flex-shrink: 0;
    transform: scale(0.8);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .review-section .card.active {
    transform: scale(1);
  }

  .review-section .card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* 카드 하단 검은색으로 칠한 느낌 */
  .review-section .card::after {
    content: "";
    /* 필수! 이거 없으면 안 나타남 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(102, 102, 102, 0.00) 61%, #000 74.52%);
    z-index: 2;
    /* 이미지(1)보다 위, 글자(3)보다 아래 */
    pointer-events: none;
    /* 그라데이션 층이 마우스 클릭을 방해하지 않도록 */
  }

  .review-section .capsule {
    position: absolute;
    top: 1.125rem;
    right: 1.125rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.875rem;
    border: 0.0625rem solid #FFF;
  }

  .review-section .content {
    position: absolute;
    bottom: 1.6875rem;
    left: 1.375rem;
    color: #FFFFFF;
    z-index: 3;
  }

  .review-section .dots {
    width: 100%;
    gap: 0 0.625rem;
    margin-top: 2.1875rem;
  }

  .review-section .dot {
    background-color: #D9D9D9;
    border-radius: 50%;
    width: 0.75rem;
    height: 0.75rem;
    cursor: pointer;
  }

  .review-section .dot.active {
    background-color: #B4B4B4;
  }

  /* review, review-section 끝 */

  /* PG-PAY, pg-intro-section 시작 */
  .pg-intro-section {
    background: linear-gradient(180deg, #F3F6FF 0%, #FFF 100%);
  }

  .pg-intro-section .inner-container {
    /* padding: 4.375rem 1.5rem 0px; */
    padding: 4.375rem 1.5rem 4.375rem;
  }

  .pg-intro-section .card-box {
    margin: 3.4375rem auto auto auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.0625rem;
  }

  .pg-intro-section .card {
    border-radius: 1.25rem;
    background: #FFFFFF;
    box-shadow: 0 0 0.25rem 0 #DDE5FF;
    padding: 0.625rem 0 0 1.0625rem;
    height: 10.625rem;
    position: relative;
  }

  .pg-intro-section .card .explain {
    margin-left: 0px;
    margin-top: 0.625rem;
  }

  .pg-intro-section .card .icon {
    height: 3rem;
    width: 3rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
  }

  .pg-intro-section .card .icon img {
    height: 100%;
    object-fit: contain;
  }


  /* PG-PAY, pg-intro-section 끝 */
  /* PG-PAY, pg-graph-section 시작 */
  .pg-graph-section {
    height: auto;
    min-height: fit-content;
    padding: 5.625rem 0;
  }

  .pg-graph-section .inner-container {
    width: 22rem;
    height: auto;
  }

  .pg-graph-section .content-container {
    width: 100%;
  }

  .pg-graph-section .text-box h2 {
    margin: 0.625rem 0;
    position: relative;
  }

  .pg-graph-section .text-box .underline {
    position: absolute;
    background-color: #4396FB;
    height: 0.625rem, ;
    width: 6.25rem;
    bottom: 0;
    left: 100%;
    transform: translateX(-100%);
    opacity: 0.1;
  }

  .pg-graph-section .graph-box {
    gap: 0 0.4375rem;
  }

  .pg-graph-section .card-company,
  .pg-graph-section .pg-pay {
    width: 2.9375rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem 0;
  }

  .pg-graph-section .graph {
    width: 100%;
    border-radius: 0.3125rem;
  }

  .pg-graph-section .card-company .graph {
    height: 7.8125rem;
    background-color: #D1D6DB;
  }

  .pg-graph-section .pg-pay .graph {
    height: calc(7.8125rem / 2.4);
    background-color: #317EF3;
  }

  .pg-graph-section .pg-pay img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* PG-PAY, pg-graph-section 끝 */

  /* PG-PAY, pg-deposit-section 시작 */
  .pg-deposit-section {
    height: auto;
    min-height: fit-content;
    padding: 5.625rem 0;
  }

  .pg-deposit-section .inner-container {
    width: 22rem;
    height: auto;
  }

  .pg-deposit-section .content-container {
    width: 100%;
    position: relative;
  }

  .pg-deposit-section .img-box {
    width: 8.4375rem;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .pg-deposit-section .text-box h2 {
    margin: 0.625rem 0;
    position: relative;
  }

  .pg-deposit-section .text-box strong {
    position: relative;
  }

  .pg-deposit-section .text-box .underline {
    position: absolute;
    background-color: #4396FB;
    height: 0.625rem;
    width: 5.625rem;
    bottom: 0;
    left: 100%;
    transform: translateX(-100%);
    opacity: 0.1;
  }

  /* PG-PAY, pg-deposit-section 끝 */

  /* service, service-compare-section 시작 */
  .service-compare-section {
    padding: 5rem 0;
    background-color: #F5F8FA;
  }

  .service-compare-section .inner-container {
    width: 23.5rem;
  }

  .service-compare-section .compare-box {
    position: relative;
    margin: 3.75rem auto auto auto;
  }

  .service-compare-section .normal-van {
    color: #636C79;
    border-radius: 0.9375rem;
    background-color: #E3E8EE;
    width: 10.25rem;
    text-wrap: nowrap;
    position: relative;
  }

  .service-compare-section .normal-van .title {
    padding: 0 1.0625rem;
  }

  .service-compare-section .normal-van .title h4 {
    padding: 0.9375rem 0;
    border-bottom: 0.0625rem solid #636C79;
  }

  .service-compare-section .normal-van .content {
    padding: 1.5625rem 0;
  }

  .service-compare-section .normal-van .content li {
    margin-bottom: 1rem;
  }

  .service-compare-section .normal-van .content li:last-of-type {
    margin-bottom: 0;
  }

  .service-compare-section .pg-pay {
    border-radius: 0.9375rem;
    background-color: #FFFFFF;
    width: 13.5rem;
    overflow: hidden;
    position: relative;
    border: 0.1875rem solid var(--pg-main-blue);
    background-color: var(--pg-main-blue);
  }

  .service-compare-section .pg-pay .title {
    background-color: var(--pg-main-blue);
    padding: 0.8125rem 0;
    color: #FFFFFF;

  }

  .service-compare-section .pg-pay .title h4 {}

  .service-compare-section .pg-pay .content {
    padding: 1.75rem 0;
    color: var(--pg-main-blue);
    background: #FFFFFF;
  }

  .service-compare-section .pg-pay .content li {
    margin-bottom: 1rem;
  }

  .service-compare-section .pg-pay .content li:last-of-type {
    margin-bottom: 0;
  }

  .service-compare-section .versus {
    position: absolute;
    left: 102%;
    top: 55%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #151E30;
    border-radius: 50%;
    color: #FFFFFF;
    z-index: 2;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* service, service-compare-section 끝 */
  /* service, service-zero-cost-section 시작 */
  .service-zero-cost-section {
    background-color: #CCE9FF;
    padding: 4.375rem 0;
  }

  .service-zero-cost-section .inner-container {
    width: 23.75rem;
  }

  .service-zero-cost-section .card-box {
    gap: 1.3125rem 0;
    margin: 2.8125rem auto auto auto;
  }

  .service-zero-cost-section .card {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 1.5rem;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.10);
    padding: 2.125rem 0;
    width: 100%;
  }

  /* service, service-zero-cost-section 끝 */


  /* service, service-all-pay-section 시작 */
  .service-all-pay-section {
    padding: 5rem 0 3.75rem;
  }

  .service-all-pay-section h2 {
    margin-bottom: 1.875rem;
  }

  .service-all-pay-section .payment-method-box {
    margin: 1.875rem auto 2.75rem;
    width: 100%;
    overflow: hidden;
    gap: 0 0;
  }

  .service-all-pay-section .payment-method-img {
    width: 4.375rem;
    height: auto;
    object-fit: contain;
  }



  .service-all-pay-section .card-box {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.875rem 0;
    padding: 0 1.4375rem;
  }

  .service-all-pay-section .card {
    grid: 1fr;
    width: 100%;
    border-radius: 0.3125rem;
    border: 0.0625rem solid #D9D9D9;
    background: #FFFFFF;
  }

  .service-all-pay-section .card.wide {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 15.3125rem;
    padding: 1.25rem;
  }

  .service-all-pay-section .card.wide h6 {
    margin: 0.875rem auto 0.625rem;
  }

  .service-all-pay-section .card.narrow {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1.375rem 2.75rem;
    text-align: left;
    gap: 0 4.625rem;
  }

  .service-all-pay-section .card.narrow h6 {
    margin-bottom: 0.75rem;
  }

  .service-all-pay-section .card .cable {
    width: 11.25rem;
    height: auto;
  }

  .service-all-pay-section .card .pos {
    width: 7.5625rem;
    height: auto;
  }

  .service-all-pay-section .card .wireless {
    width: 4.25rem;
    height: auto;
  }

  .service-all-pay-section .card .kiosk {
    width: 5.9375rem;
    height: auto;
  }

  .service-all-pay-section .card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


  /* service, service-all-pay-section 끝 */

  /* service, service-untact-section 시작 */
  .service-untact-section {
    padding: 3.75rem 0 6.25rem 0;
  }

  .service-untact-section .inner-container {
    width: 22.25rem;
  }

  .service-untact-section h2 {
    margin-bottom: 2.25rem;
  }

  .service-untact-section .banner {
    width: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    margin: 2rem auto 0.4375rem;
  }

  .service-untact-section .card-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.375rem;
  }

  .service-untact-section .card {
    border-radius: 0.5rem;
    width: 100%;
    padding: 1.625rem 0 0.4375rem 0;
  }

  .service-untact-section .card.payment {
    border: 0.0625rem solid #EAEAEA;
    background: #E8F4FF;
  }

  .service-untact-section .card.receipt {
    border: 0.0625rem solid #D0FFE5;
    background: #E8FFF5;
  }

  .service-untact-section .electronic-receipt {}

  .service-untact-section .card img {
    margin: 0;
  }

  .service-untact-section .card p {
    margin-bottom: 1.5625rem;
  }

  .service-untact-section .card.payment .remote-payment {
    margin: 0;
    width: 9.125rem;
    height: auto;
  }

  .service-untact-section .card.receipt .electronic-receipt {
    margin: 0;
    width: 7.5rem;
    height: auto;
  }

  /* service, service-untact-section 끝 */

  /* promotion, promotion-banner-section 시작 */
  .promotion-banner-section {
    background-color: #0F1C31;
    padding: 1.875rem 0 0 0;
  }

  .promotion-banner-section .inner-container {
    padding: 0 0.5625rem 0 1.4375rem;
  }

  .promotion-banner-section h2 {
    margin: 0.625rem 0 1.25rem;
  }

  .promotion-banner-section .loan-img {
    width: 11.125rem;
    height: auto;
    object-fit: contain;
  }

  /* promotion, promotion-banner-section 끝*/

  /* promotion, promotion-faq-section 시작*/
  .promotion-faq-section {
    padding: 5.625rem 0;
  }

  .promotion-faq-section .inner-container {
    padding: 0 2.75rem;
  }

  .promotion-faq-section .faq-container {}

  .promotion-faq-section .faq-title {
    width: fit-content;
    text-wrap: nowrap;
    margin: auto auto 3.875rem auto;
  }

  .promotion-faq-section .faq-wrapper {
    width: 100%;
    position: relative;
    /* faq-question의 padding top의 길이 만큼 미뤄지기*/
    top: -0.8125rem;
  }

  .promotion-faq-section .faq-item {
    border-bottom: 0.0625rem solid #DADADA;
  }

  .promotion-faq-section .faq-item:first-of-type {}

  .promotion-faq-section .faq-question {
    padding: 0.8125rem 0 0.8125rem 2.0625rem;
    list-style-type: none;
    position: relative;
    cursor: pointer;
  }

  .promotion-faq-section .faq-question::after {
    content: "";
    position: absolute;
    width: 0.4375rem;
    height: 0.4375rem;
    border-right: 0.125rem solid #151E30;
    border-bottom: 0.125rem solid #151E30;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    left: 0.625rem;
    top: 50%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }

  .promotion-faq-section .faq-item[open] .faq-question::after {
    transform: translateX(-50%) translateY(-50%) rotate(225deg);
  }

  .promotion-faq-section .faq-answer {
    /* calc값은 faq-question:after의 left - (width / 2) */
    padding: 0 0 0.8125rem calc(0.625rem - (0.4375rem / 2));
  }

  /* promotion, promotion-faq-section 끝*/
}


/* inquiry, inquiry-section 시작*/
.inquiry-section {
  padding: 200px 0;
  background-color: #EAF4FE;
}

.inquiry-section .inner-container {
  width: 1080px;
}

.inquiry-section .card-box {
  margin: 100px auto 130px auto;
  gap: 0 45px;
}

.inquiry-section .card {
  border-radius: 20px;
  border: 1px solid #D5D5D5;
  background: #FFF;
  width: 100%;
  padding: 50px 0 50px 40px;
}

.inquiry-section .card img {
  margin-right: 24px;
  width: 92px;
  height: auto;
  object-fit: contain;
}

.inquiry-section .form-container {
  margin: 100px auto auto auto;
  background-color: #FFFFFF;
  padding: 90px 110px;
  border-radius: 36px;
}

.inquiry-section .form-box {
  width: 100%;
  gap: 35px 0;
}

.text-input {
  width: 100%;
}

.text-input label {
  margin-bottom: 12px;
}

.text-input input {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #DDD;
  background: #FFF;
  padding: 22px;
}

.inquiry-section .info-agreement {
  width: 100%;
}


.inquiry-section .personal-info-check {
  background-color: #D9D9D9;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  transition: all 0.1s linear;
}

#personal-info:checked+label .personal-info-check {
  background-color: var(--pg-main-blue);
}

#personal-info-check:checked~.personal-info-check {
  background-color: var(--pg-main-blue);
}

.inquiry-section .personal-info-check img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.inquiry-section .personal-info-essential {
  margin: auto 10px auto;
}



.inquiry-section .form-container .apply {
  color: #FFFFFF;
  border-radius: 10px;
  background-color: var(--pg-main-blue);
  width: 100%;
  padding: 32px 0;
  cursor: pointer;
}

.inquiry-section .form-container .apply:disabled {
  background-color: #D9D9D9;
  cursor: not-allowed;
}


/* inquiry, inquiry-section 끝*/

/* inquiry-detail-modal 시작 */
#inquiry-detail-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #00000088;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: left;
}

#inquiry-detail-modal .window {
  padding: 55px 20px;
  width: 330px;
  background-color: #F5F7F9;
  border-radius: 15px;
  color: #1C1C3C;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px 0;
  line-height: 160%;
}

#inquiry-detail-modal .window button {
  width: 100%;
  background-color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 5px;
  cursor: pointer;
}

/* inquiry-detail-modal 끝*/

/* 모달형 문의 신청 폼 시작 */
#inquiry-sub-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.80);
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: left;
}

#inquiry-sub-modal .window {
  position: relative;
  padding: 80px 48px;
  width: 554px;
  background-color: #F5F7F9;
  border-radius: 15px;
  color: #1C1C3C;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px 0;
  line-height: 160%;
}

#inquiry-sub-modal .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

#inquiry-sub-modal .form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px 0;
}

#inquiry-sub-modal .text-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px 0;
  justify-content: start;
  align-items: center;
  margin-bottom: 38px;
}

#inquiry-sub-modal .input-box {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}

#inquiry-sub-modal .input-box-row {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 0.5rem;
}

#inquiry-sub-modal .input-box-row input {
  width: 20px;
  height: 20px;
}

#inquiry-sub-modal .input-box input {
  width: 100%;
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #CDCDCD;
  padding: 18px 14px;
}

#inquiry-sub-modal .sub-submit-btn {
  border-radius: 6px;
  background: var(--pg-main-blue);
  color: #FFFFFF;
  width: 100%;
  padding: 18px;
  cursor: pointer;
}

#inquiry-sub-modal .sub-submit-btn:disabled {
  background: #919BA5;
  cursor: not-allowed;
}

/* 모달형 문의 신청 폼 끝 */

@media screen and (max-width: 768px) {

  /* inquiry, inquiry-section 시작*/
  .inquiry-section {
    padding: 4.375rem 0 2.5rem;
    background-color: #EAF4FE;
  }

  .inquiry-section .inner-container {
    width: 22.125rem;
  }

  .inquiry-section .card-box {
    margin: 2.375rem auto 4.375rem auto;
    gap: 1.125rem 0;
  }

  .inquiry-section .card {
    border-radius: 0.625rem;
    border: 0.0625rem solid #D5D5D5;
    background: #FFF;
    width: 100%;
    padding: 1.25rem 0 1.25rem 3.625rem;
  }

  .inquiry-section .card img {
    margin-right: 2.1875rem;
    width: 3rem;
    height: auto;
    object-fit: contain;
  }

  .inquiry-section .form-container {
    margin: 3.75rem auto auto auto;
    background-color: #FFFFFF;
    padding: 2.875rem 2.25rem;
    border-radius: 1.125rem;
  }

  .inquiry-section .form-box {
    width: 100%;
    gap: 0.75rem 0;
  }

  .text-input {
    width: 100%;
  }

  .text-input label {
    margin-bottom: 0.375rem;
  }

  .text-input input {
    width: 100%;
    border-radius: 0.3125rem;
    border: 0.0625rem solid #DDD;
    background: #FFF;
    padding: 0.75rem;
  }

  .inquiry-section .info-agreement {
    width: 100%;
  }


  .inquiry-section .personal-info-check {
    background-color: #D9D9D9;
    width: 0.6875rem;
    height: 0.6875rem;
    border-radius: 0.125rem;
    transition: all 0.1s linear;
  }

  #personal-info:checked+label .personal-info-check {
    background-color: var(--pg-main-blue);
  }

  .inquiry-section .personal-info-check img {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }

  .inquiry-section .personal-info-essential {
    margin: auto 0.25rem auto 0.3125rem;
  }



  .inquiry-section .form-container .apply {
    color: #FFFFFF;
    border-radius: 0.3125rem;
    background-color: var(--pg-main-blue);
    width: 100%;
    padding: 0.875rem 0;
  }

  .inquiry-section .form-container .apply:disabled {
    background-color: #D9D9D9;
  }


  /* inquiry, inquiry-section 끝*/

  /* inquiry-detail-modal 시작 */
  #inquiry-detail-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000088;
    top: 0;
    left: 0;
    z-index: 40;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  #inquiry-detail-modal .window {
    padding: 3.4375rem 1.25rem;
    width: 20.625rem;
    background-color: #F5F7F9;
    border-radius: 0.9375rem;
    color: #1C1C3C;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.625rem 0;
    line-height: 160%;
  }

  #inquiry-detail-modal .window button {
    width: 100%;
    background-color: #FFFFFF;
    padding: 0.75rem 0.9375rem;
    border-radius: 0.3125rem;
    cursor: pointer;
  }

  /* inquiry-detail-modal 끝*/

  /* 모달형 문의 신청 폼 시작 */
  #inquiry-sub-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.80);
    top: 0;
    left: 0;
    z-index: 30;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  #inquiry-sub-modal .window {
    position: relative;
    padding: 7.5rem 1.688rem 2.5rem;
    /* 120px 27px 40px */
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 0;
    color: #1C1C3C;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.625rem 0;
    /* 10px */
    line-height: 160%;
  }

  #inquiry-sub-modal .close-btn {
    position: absolute;
    top: 1.25rem;
    /* 20px */
    right: 1.563rem;
    /* 25px */
    cursor: pointer;
    color: #707070;
  }

  #inquiry-sub-modal .line {
    position: absolute;
    width: 100vw;
    height: 0.063rem;
    /* 1px */
    background: #707070;
    top: 4rem;
    /* 64px */
    left: 0;
  }

  #inquiry-sub-modal .form-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.75rem 0;
    /* 28px */
  }

  #inquiry-sub-modal .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.125rem 0;
    /* 18px */
    justify-content: start;
    align-items: center;
    margin-bottom: 2.375rem;
    /* 38px */
  }

  #inquiry-sub-modal .input-box {
    display: flex;
    flex-direction: column;
    gap: 0.625rem 0;
    /* 10px */
  }

  #inquiry-sub-modal .input-box-row {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0 0.5rem;
    /* 기존에 rem이었던 값 유지 */
  }

  #inquiry-sub-modal .input-box-row input {
    width: 0.938rem;
    /* 15px */
    height: 0.938rem;
    /* 15px */
  }

  #inquiry-sub-modal .input-box input {
    width: 100%;
    background: #FFFFFF;
    border-radius: 0.375rem;
    /* 6px */
    border: 0.063rem solid #CDCDCD;
    /* 1px */
    padding: 0.75rem 0.875rem;
    /* 12px 14px */
  }

  #inquiry-sub-modal .sub-submit-btn {
    position: absolute;
    bottom: 2.5rem;
    /* 40px */
    border-radius: 0.375rem;
    /* 6px */
    background: var(--pg-main-blue);
    color: #FFFFFF;
    width: calc(100% - (1.688rem * 2));
    /* 27px * 2 */
    padding: 1.125rem;
    /* 18px */
    cursor: pointer;
  }

  #inquiry-sub-modal .sub-submit-btn:disabled {
    background: #919BA5;
    cursor: not-allowed;
  }

  /* 모달형 문의 신청 폼 끝 */
}



/* 헤더 시작*/
#sinsinplus-header {
  position: fixed;
  top: 0;
  z-index: 30;
  width: 100%;
  min-width: 1200px;
}

.header-top {
  width: 100%;
  min-width: 1200px;
  height: 34px;
  background-color: #3679FF;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.25em 1em;
  gap: 1.25em;

  /* transition: all 0.3s ease; */
  overflow: hidden;
}

/* 스크롤을 내렸을 때 header-top을 숨기는 스타일 */
.header-top.is-hidden {
  height: 0;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border: none;
}

.header-nav-box {
  width: 100%;
  background-color: rgba(256, 256, 256, 0.9);
}

.header-nav {
  width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  height: 80px;
}

.header-nav-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  gap: 86px;
}

.header-nav-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sinsinplus-logo {
  width: 101px;
  object-fit: contain;
}

.menu-list {
  display: flex;
  flex-direction: row;
  gap: 50px;
  color: #141E28;
}

.menu-list li a {}

.menu-list li a:hover {
  opacity: 0.6;
}


.header-contact-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  gap: 15px;
}

.header-contact-number .call-number {
  width: 150px;
  padding: 15px 0;
  border-radius: 5px;
  background: #D6D6D6;
  color: #717171;
}

.header-contact-number .call-icon {
  width: 19px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #717171;
  fill: #717171;
}

.header-contact-number .quick-inquiry-btn {
  width: 150px;
  padding: 15px 0;
  color: #FFF;
  background-color: var(--pg-main-blue);
  border-radius: 5px;
  cursor: pointer;
}

/* 헤더 끝 */

@media screen and (max-width:768px) {

  /* 헤더 시작*/
  #sinsinplus-header {
    position: fixed;
    top: 0;
    z-index: 30;
    width: 100%;
    min-width: 0;
  }

  .header-top {
    width: 100%;
    min-width: 0;
    height: 34px;
    background-color: #3679FF;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.25em 1em;
    gap: 1.25em;

    /* transition: all 0.3s ease; */
    overflow: hidden;
  }

  /* 스크롤을 내렸을 때 header-top을 숨기는 스타일 */
  .header-top.is-hidden {
    height: 0;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border: none;
  }

  .header-nav-box {
    width: 100%;
    background-color: rgba(256, 256, 256, 0.9);
  }

  .header-nav {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    /* height: 53px; */
    height: 3.3125rem;
    padding: 0 1.25rem 0;
  }

  .header-nav-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    gap: 0;
  }

  .header-nav-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .sinsinplus-logo {
    width: 5rem;
    object-fit: contain;
  }

  .menu-list {
    display: flex;
    flex-direction: row;
    gap: 0;
    color: #141E28;
  }

  .menu-list li a {}

  .menu-list li a:hover {
    opacity: 0.6;
  }


  .header-contact-number {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    gap: 0.5rem;
  }

  .header-contact-number .call-icon {
    width: 1.1875rem;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #717171;
    fill: #717171;
  }

  .header-contact-number .quick-inquiry-btn {
    width: 9.375rem;
    padding: 0.9375rem 0;
    color: #FFF;
    background-color: var(--pg-main-blue);
    border-radius: 0.3125rem;
    cursor: pointer;
  }

  /* 헤더 끝 */

}

/* 하단바 고정 CTA 시작 */
.bottom-cta {
  position: fixed;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 16px 46px;
  gap: 0 35px;
  text-wrap: nowrap;
}

.bottom-cta button {
  border-radius: 12px;
  padding: 14px 22px;
  background: #2882FE;
  color: #FFFFFF;
  cursor: pointer;
}

.bottom-cta button:hover {
  opacity: 0.6;
}

.bottom-cta.is-hidden {
  display: none;
}

/* 하단바 고정 CTA 끝 */


/* footer 시작 */

.sinsinplus-footer {
  background-color: #13123B;
  padding: 120px 0 200px;
}

.sinsinplus-footer .footer-box {
  width: 1050px;
  margin: auto;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.footer-content-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 14px 0;
  margin-bottom: 60px;
}

.brand-name {}

.rights {}

.description {}

.sinsinplus-footer .footer-link {
  margin-bottom: 20px;
}

/* footer 끝 */

@media screen and (max-width: 768px) {

  /* 하단바 고정 CTA 시작 */
  .bottom-cta {
    position: fixed;
    border-radius: 0.5625rem;
    background: #3679FF;
    box-shadow: none;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 0;
    gap: 0px;
    text-wrap: nowrap;
    color: #FFFFFF;
    cursor: pointer;
    width: 23.125rem;
    padding: 0.875rem;
  }

  /* 하단바 고정 CTA 끝 */


  /* footer 시작 */

  .sinsinplus-footer {
    background-color: #13123B;
    padding: 3.75rem 0 4.375rem;
  }

  .sinsinplus-footer .footer-box {
    width: 20rem;
    margin: auto;
    color: #FFFFFF;
    border-bottom: 0.0625rem solid #FFFFFF;
    padding: 0 0 0 0.875rem;
  }

  .footer-content-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.625rem 0;
    margin-bottom: 1.875rem;
  }

  .brand-name {}

  .rights {}

  .description {}

  .sinsinplus-footer .footer-link {
    margin-bottom: 1.25rem;
  }

  /* footer 끝 */
}