@import url('./base/tokens.css');
@import url('/components/text-style.css');
@import url('/components/header.css');
@import url('/components/footer.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  overflow: auto;
  height: auto;
  width: 100%;
}

body {
  font-family: 'Pretendard', sans-serif;
  font-size: var(--text-b4-size);
  line-height: var(--text-b4-line);
  color: #222;
  background-color: #FDFDFD;
  word-break: keep-all;
  overflow-wrap: break-word;
}


.body-wrap {
  width: 100%;
  display: flex;
  padding: 0 2rem;
  box-sizing: border-box;
  gap: 1rem;
  flex-direction: column;
  justify-self: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .body-wrap {
   gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .body-wrap {
   padding: 0.875Rem;
   gap: 2rem;
  }
}

/*Home-hero*/
.home-hero {
  margin-top: 6.125rem;
  width: 100%;
  height: 100vh;
  max-height: 700px;
  background-image: url('/img/hero/home-hero-img.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  background-color: #eaf5ff;
  border-radius: 20px;
  align-items: center; /* 수직 가운데 정렬 */
  justify-content: start; /* 좌측 정렬 (또는 center) */
  display: flex;
}

.home-hero__inner {
  width: 100%;

  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 1760px;
  padding: 0 5.5rem;
}

.home-hero__text {
  opacity: 0;                      
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.home-hero__text.show {
  opacity: 1;                     
  transform: translateY(0);
}


.home-hero__label {
  color: #153D58;
  margin-bottom: 0.875rem;
  font-weight: 400;
}

.home-hero__headline {
  color: #153D58;
  margin-bottom: 2rem;
}

.home-hero__subtext {
  color: #4E7893;
  margin-bottom: 3.75rem;
}

.home-hero__cta {
  padding: 1.125rem 2rem;
  border: 1px solid #5B9DFB;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-primary-900);
  font-weight: var(--font-weight-medium);
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--text-b3-size);
  transition: background-color 0.2s, color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 264px;
  gap: 6px;
  box-shadow: 0.75rem 0.75rem 2rem rgba(151, 189, 229, 0.5);
}



.home-hero__cta:hover {
  background-color: #5B9DFB;
  color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
  z-index: 20;
  opacity: 1;
  transition: opacity 0.3s ease;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-100);
  box-shadow: 0.5rem 0.5rem 2rem rgba(50, 50, 50, 0.1);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* 스크롤되면 숨김 */
.scroll-indicator.hide {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .home-hero {
    max-height: 100%;
    height: 720px;
    background-image: url('/img//hero/home-hero-pad.webp');
    background-position: bottom center;
  }

  .home-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: unset;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 4rem 3.25rem;
  }

  .home-hero__label{
    font-size: 1.25rem; 
  }

  .home-hero__headline{
    font-size: 2.25rem; 
    margin-bottom: 1.875rem;
  }

  .home-hero__subtext {
    margin-bottom: 2.5rem;
    font-size: 1.25rem; 
  }

  .home-hero__cta {
    padding: 1rem 1rem;
    border: 1px solid #5B9DFB;
    width: 240px;
  }
  
}

  @media (max-width: 768px) {
    .home-hero {
      margin-top: 64px;
      height: 550px;
      background-image: url('/img/hero/home-hero-mobile.webp');
      border-radius: 12px;
      background-position: bottom center;
    }

    .home-hero__inner{
      padding: 2.25rem 1.5rem;
    }

    .home-hero__text {
      text-align: center;
      width: 100%;
    }

    .home-hero__cta
    {
      font-size: var(--text-b4-size);
      margin: 0 auto;
      padding: 0.5rem 1rem;
      width: 200px;
    }

    .home-hero__label{
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .home-hero__headline{
      font-size: var(--text-h7-size);
      margin-bottom: 0.875rem;
    }

    .home-hero__subtext{
      font-size: var(--text-b4-size);
      margin-bottom: 1rem;
    }
  }




/*feature-section*/

  .feature-section {
    width: 100%;
    max-width: 1920px;
  }

  .feature-section__inner {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 2.25rem;
    margin: 0 auto;
    width: 100%;
    padding: 4rem 0rem 4rem 3.875rem;
    box-sizing: border-box;
  }
  
  .feature-section__text {
    flex: 1;
    padding: 0;
    font-size: 2.25rem;
    line-height: 180%;
    letter-spacing: -0.04em;
    padding: 4rem 3rem;
    margin-bottom: 10px;
  }

  .feature-section__text p {
    margin-left: 4px;
  }

  .feature-section__text .lineheight{
    margin-top: 0.45rem;
    margin-left: 0;
  }

  .text-strong {
    border: 1px solid var(--color-primary-300);
    padding: 6px 10px;
    border-radius: 6px;
    color: #153D58;
    background: linear-gradient(90deg, #FFFFFF 0%, #FAFCFF 100%);
    box-shadow: 4px 4px 8px 0 rgba(97, 133, 183, 0.05);
  }

  .feature-section__desc {
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    margin-left: 4px;
  }

  .feature-section__desc a {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 1.25rem;
    letter-spacing: 0px;
    line-height: 180%;
  }
  
  .feature-section__image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    
  }
  
  .feature-section__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    display: block;

  }



@media (min-width: 1024px) {
  .feature-section__inner {
    flex-direction: row;
    align-items: center;
  }

  .feature-section__text {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .feature-section__image {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .feature-section__image {
    padding-right: 36px;
  }

}

@media (max-width: 1024px) {
  .feature-section__inner {
    flex-direction: column;
    padding: unset;
  }

  .feature-section__text {
    width: 100%;
    padding: 7.5rem 3.875rem 8.5rem 3.875rem ;
  }

  .feature-section__image img {
    height: 600px;
    transform: scale(1.2) translateY(-8%);
    transform-origin: center;
  }
}


@media (max-width: 768px) {
  .feature-section__text {
    padding: 3.5rem 1.5rem 4.5rem 1.5rem;
  }

  .feature-section__text{
   font-size: 1.5rem; 
   line-height: 170%;
  }

  .feature-section__desc a{
    font-size: var(--text-b4-size);
    line-height: 160%;
  }

  .feature-section__image{
    max-height: 330px;
    border-radius: 12px;
  }

  .feature-section__image img {
    transform: scale(1) translateY(-8%);
  }

}



/*solution*/

.solution {
  padding: 5rem 4rem;
  background-color: #F6F6F9;
  text-align: center;
  border-radius: 20px;
  width: 100%;
  max-width: 1920px;
}

.solution__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.solution__title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}



.solution__tab-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 972px;
  overflow: hidden; 
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  padding: 16px 28px;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}


.solution__tab-scroll {
  position: relative;
  flex: 1;
  overflow: hidden; 
  max-width: 100%; 
  min-width: 0; 
  background-color: #fff;
}


.solution__tab-list {
  display: flex;
  overflow-x: auto;
  flex-shrink: 0;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  padding: 1rem 0;
  gap: 2rem;
  scrollbar-width: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution__tab-list::-webkit-scrollbar {
  display: none; 
}

.solution__label {
  font-size: 1.125rem;
  color: #bbb;
  margin-bottom: 0.875rem;
  font-weight: 400;
}

.solution__title {
  color: #111;
  line-height: 1.4;
}


.solution__tab-arrow {
  z-index: 2;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-gray-400);
  flex-shrink: 0;
  padding: 1rem; 
  background-clip: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.solution__tab-arrow:hover {
  opacity: 1;
}

.solution__tab-arrow--left {
  left: 0;
}

.solution__tab-arrow--right {
  right: 0;
}

.solution__tab-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}

.solution__tab-gradient--left {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.solution__tab-gradient--right {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* 기본 상태 */
.solution-tab__item {
  position: relative;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
  padding-bottom: 0.25rem;
    flex: 0 0 auto;
    text-align: center;
  }


.solution-tab__label {
  font-size: 0.875rem;
  color: #888;
  font-weight: 400;
  line-height: 130%;
}

.solution-tab__name {
  font-size: 1.25rem;
  color: var(--color-gray-400);
  font-weight: 400; 
}

/* 호버 상태 */
.solution-tab__item:hover {
  opacity: 1;
}

.solution-tab__item:hover .solution-tab__label,
.solution-tab__item:hover .solution-tab__name {
  font-weight: 500; 
}

/* 활성화 상태 */
.solution-tab__item.is-active {
  opacity: 1;
}

.solution-tab__item.is-active .solution-tab__label,
.solution-tab__item.is-active .solution-tab__name {
  color: #4791fa;
  font-weight: 700;
}

.solution-tab__item.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4791fa;
  border-radius: 1px;
}

.solution__content-wrap {
  width: 100%;
}

.solution__content {
  display: none;
  max-width: 1180px;
  min-height: 404px;
  margin: 0 auto;
  padding: 2.25rem 3.25rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.solution__content.is-active {
  display: flex;
}

.solution__content-text {
  flex: 1;
  text-align: left;
}

.solution-logo {
  margin-bottom: 1rem;
  max-width: 120px;
}

.solution__heading {
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
}

.solution__desc {
  color: var(--color-gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 180%;
  letter-spacing: -0.04em;
}

.solution__btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.375rem;
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-size: 1rem;
  color: var(--color-white);
  background-color: var(--color-gray-600);
  text-decoration: none;
  transition: 0.2s;
}

.solution__btn:hover {
  background-color: var(--color-primary-700);
}


.solution__content-img {
  flex: 1;
  text-align: right;
}

.solution__content-img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.solution-logo {
  width: auto;
  height: 40px;
}

.br-lg,
.br-md {
  display: inline;
}

@media (max-width: 1024px) {
  
  .break-on-pc {
    display: none;
  }


  .solution-tab__label {
    font-size: 1rem;
  }
  
  .solution-tab__name {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    font-weight: 400; 
  }
  
    .br-lg {
      display: none;
    }
    .br-md {
      display: inline;
    }

  .solution {
    padding: 82px 48px 48px 48px;
  }

  .solution__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem;
    width: 100%;
    gap: 3rem;
    min-height: 810px;
  }

  .solution__head {margin-bottom: 0px;}

  .solution-logo {
    height: 46px;
    margin-bottom: 1.75rem;
  }

  .solution__text {
    order: 2;
    margin-top: 1.5rem;
  }

  .solution__content-text {
    width: 100%;
  }

  .solution__image {
    order: 1;
    max-width: 100%;
    width: 100%;
  }

  .solution__text .solution__subtitle {
    font-size: 0.875rem;
  }

  .solution__text .solution__title {
    font-size: 1.5rem;
  }

  .solution__text .solution__desc {
    font-size: var(--text-b2-size);
    line-height: 1.6;
  }

  .solution__btn {
    margin:  auto 0;
    font-size: var(--text-b3-size);
    padding: 16px 32px;
  }

  .solution__heading {
    font-size: var(--text-h5-size) ;
    font-weight: var(--text-h5-weight) ;
    letter-spacing: var(--text-h5-spacing);
    line-height: var(--text-h5-line);
    margin-bottom: 0.75rem;
  }

  .solution__desc{
    font-size: var(--text-b3-size) ;
    font-weight: var(--text-b3-weight) ;
    letter-spacing: var(--text-b3-spacing);
    line-height: var(--text-b3-line);
  }


} 

@media (max-width: 768px) {

  .solution {
    padding: 2.5rem 0.75rem 0.75rem 0.75rem;
    border-radius: 12px;
  }

  .br-lg,
.br-md {
  display: inline;}

  .break-on-pc {display: inline;}

  .solution__title-wrap {
    margin-bottom: 1.5rem;
  }

  .solution__label {
    font-size: var(--text-b4-size);
  }

  .solution__title{
    font-size: 1.5rem;
  }

  .solution-tab__label {
    font-size: 0.75rem;
    margin-bottom: 0px;
  }
  
  .solution-tab__name {
    font-size: 1rem;
    line-height: 100%;
  }

  .solution__tab-wrap {
    gap: 0.5rem;
    padding: 4px 12px;
  }

  .solution__tab-list {
    gap: 1.25rem;
  }

  .solution__content {
    padding: 1.5rem;
    border-radius: 8px;
    gap: 1.5rem;
    min-height: 520px;
  }

  .solution-logo {
    margin-bottom: 1rem;
    max-width: 72px;
    height: auto;
  }

  .solution__heading {
    font-size: var(--text-b3-size);
  }

  .solution__desc {
    font-size: var(--text-b5-size);
    line-height: 150%;
    margin-bottom: 1.5rem;
  }

  .solution__btn{
    font-size: var(--text-b5-size);
    padding: 0.5rem 1.25rem;
    }

    .solution__tab-arrow {
      font-size: 1.25rem;
      padding: 1rem; 
      background-clip: content-box; 
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
}

/*파트너사*/

.partner {
  padding: 6rem 4rem 9rem 4rem;
  text-align: center;
  max-width: 1320px;
}

.partner__head {
  margin-bottom: 3rem;
}

.partner__desc {
  color: var(--color-gray-400);
  margin-bottom: 0.75rem;
}



.partner__grid {
  display: flex;
  flex-wrap: wrap; 
  gap: 2rem; 
  justify-content: center; 
  align-items: center;
  max-width: 1320px;
}

.partner__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.partner__item:last-child {
  border-right: none;
}

.partner__item img {
  height: 3.875rem;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {



  .partner__desc{
    font-size: var(--text-b3-size) ;
  }

  .partner__title {
    font-size: var(--text-h4-size) ;
  }

  .partner__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
  }

}

@media (max-width: 768px) {

  .partner{
    padding: 3rem 0rem 5rem 0rem;
  }

  .partner__desc {
    font-size: var(--text-b4-size);
    margin-bottom: 0.5rem;
  }

  .partner__title{
    font-size: var(--text-h7-size);
  }

  .partner__item img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
  }

  .partner__grid {
    gap: 1rem; 
  }

  .partner__head{
    margin-bottom: 2rem;
  }
  
}

/*cta banner*/

.cta-banner {
  width: 100%;
  position: relative;
  background-color: #397FE1;
  border-radius: 20px;
  padding: 1rem 1rem;
  overflow: hidden;
  color: white;
  text-align: center;
  height: 320px;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background-image: url('/img/cta-banner-bg.png'); 
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;   
  justify-content: center; 
  text-align: center;
  
}

.cta-banner__sub {
  margin-bottom: 0.75rem;
}

.cta-banner__title {
  margin-bottom: 2rem;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1.5px solid #Fff; 
  border-radius: 9999px;
  color: white;
  background-color: rgba(255, 255, 255, 0.1); 
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  box-shadow: 0.75rem 0.75rem 2rem rgba(33, 86, 176, 0.5);
}

.cta-banner__btn:hover {
  background-color: #fff;
  color: #3d7ad1;
}

.cta-icon {
  stroke: currentColor;
}

@media (max-width: 1024px) {
  .cta-banner {

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    border-radius: 12px;
  }

  .cta-banner__content {
    max-width: 90%;
  }

  .cta-banner__sub{
    font-size: var(--text-b2-size) ;
  }
  
}

@media (max-width: 768px) {

  .cta-banner {
    height: 220px;
  }

  .cta-banner__sub {
    font-size: var(--text-b4-size);
    margin-bottom: 0.25rem;
  }

  .cta-banner__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cta-banner__btn{
    font-size: var(--text-b4-size);
    padding: 0.625rem 1.5rem;
  }
}

/*팝업*/

/* 팝업 배경 */
.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.popup.hide {
  display: none;
}

/* 팝업 본체 */
.popup__inner {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10001;
}

/* 닫기 버튼 */
.popup__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-gray-300);
}

/* 타이틀 */
.popup__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.popup__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* 서브 타이틀 */
.popup__subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 170%;
  color: var(--color-gray-400);
}

/* 폼 스타일 */
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 입력 필드 라인 */
.popup__form-row {
  display: flex;
  gap: 1rem;
}

.popup__form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.popup__form-field label {
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-black);
}

.popup__form-field input,
.popup__form-field textarea {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
  resize: none;
}

/* 동의 */
.popup__form-agree {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.5rem;
}

/* 제출 버튼 */
.popup__submit {
  background-color: var(--color-primary-700);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.popup__submit:hover {
  background-color: #3572e5;
}

/* 반응형 */
@media (max-width: 768px) {
  .popup__form-row {
    flex-direction: column;
  }
  .popup__inner {
    max-height: 90vh;    
    overflow-y: auto;    
    overscroll-behavior: contain; 
    padding-bottom: 2rem; 
    padding: 1.5rem;
  }
  .popup__title {
    margin-bottom: 0.75rem;
  }

  .text__h7 {
    font-size: 1.25rem;
  }

  .popup__subtitle {
    font-size: 0.75rem;
  }

  .popup__form-field label {
    font-size: 14px;
  }

  .popup__form-field input,
  .popup__form-field textarea {
    font-size: 14px;
}
  .popup__submit{ 
    font-size: 14px;
  }

}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border: 1px solid var(--color-gray-100);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.scroll-to-top.hide,
.scroll-to-top.hide-by-popup {
  opacity: 0;
  pointer-events: none;
}
.scroll-to-top img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }

  .scroll-to-top img {
    width: 16px;
    height: 16px;
  }
}




/*애니메이션*/
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none; 
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}