@charset "UTF-8";
:root {
  --Green: #2A644C;
  --lightGreen: #8ABB40;
  --Gray: #B2B2B2;
  --Dark: #3A3637;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.title-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.title-box h2 {
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 54.6px */
  letter-spacing: -1px;
}
.title-box h2 strong {
  font-weight: inherit;
  color: var(--Green);
}
.title-box p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.75px;
}

.p-160 {
  padding: 160px 0;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
  z-index: 120;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
header nav ul li a {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid transparent;
}
header nav ul li a span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
header nav ul li:hover a {
  border-bottom: 1px solid var(--Green);
}
header nav ul li:hover a span {
  color: var(--Green);
}
header nav .sns-box {
  display: flex;
  gap: 10px;
}
header nav .sns-box a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 300px;
  background-color: #3BB044;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
  color: #fff;
}
header nav .sns-box a:last-child {
  background-color: #FAE100;
  color: var(--Dark);
}

/* 메인슬라이드 */
.visual_section {
  width: calc(100% - 120px);
  height: calc(100vh - 140px);
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto;
}
.visual_section ul li {
  position: relative;
}
.visual_section ul li .visual_bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  animation: subbg 15s forwards;
  position: absolute;
  left: 0;
  top: 0;
}
.visual_section ul li#sl01 .visual_bg {
  background-image: url("../img/visual_bg01.jpg");
}
.visual_section ul li#sl02 .visual_bg {
  background-image: url("../img/visual_bg02.jpg");
}
.visual_section ul li#sl02 .visual_txt .txt2 {
  text-align: center;
}
.visual_section ul li#sl02 .visual_txt .txt2 b {
  color: #f7bf69;
  display: inline-block;
  margin-top: 10px;
}
.visual_section ul li#sl03 .visual_bg {
  background-image: url("../img/visual_bg03.jpg");
}
.visual_section .visual_txt {
  height: 100%;
  width: 100%;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.visual_slide {
  height: 100%;
  position: relative;
}
.visual_slide .visual_txt {
  text-align: center;
}
.visual_slide .visual_txt p {
  color: #fff;
  opacity: 0;
  text-shadow: 0 0 24px #000;
}
.visual_slide .visual_txt p:nth-child(1) {
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.visual_slide .visual_txt p:nth-child(1) small {
  display: block;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
  color: var(--lightGreen);
  margin-bottom: 20px;
  text-shadow: 0 0 24px #000;
}
.visual_slide .visual_txt p:nth-child(2) {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: -1px;
}
.visual_slide li.swiper-slide-active p:nth-child(1) {
  animation: slideup 1.5s 0.1s forwards;
}
.visual_slide li.swiper-slide-active p:nth-child(2) {
  animation: fadein 1.5s 0.6s forwards;
}
.visual_slide .visual_page {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(199, 184, 166, 0.4);
  height: 100px;
}
.visual_slide .visual_page .visual_page_cont {
  height: 100%;
  display: flex;
}
.visual_slide .visual_page p {
  width: 33.3333333333%;
  height: 100%;
  color: #B2B2B2;
  background: none;
  border-radius: 0;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin: 0 !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.75px;
}
.visual_slide .visual_page p + p {
  border-left: 1px solid rgba(199, 184, 166, 0.4);
}
.visual_slide .visual_page p.swiper-pagination-bullet-active {
  color: #fff;
}
.visual_slide .visual_page p.swiper-pagination-bullet-active::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/visual_page_arrow.svg") center/cover no-repeat;
  position: absolute;
  top: 10px;
}

@keyframes subbg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slideup {
  from {
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gallery-wrap .title-box {
  text-align: center;
}
.gallery-wrap .gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 0 auto 40px;
  position: relative;
  max-width: 1100px;
}
.gallery-wrap .gallery-pagination::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--Gray);
  position: absolute;
  bottom: 10px;
  left: 0;
}
.gallery-wrap .gallery-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 61px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 62px;
  background-color: transparent;
  opacity: 1;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
  transition: all 0.2s;
}
.gallery-wrap .gallery-pagination .swiper-pagination-bullet span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--Gray);
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}
.gallery-wrap .gallery-pagination .swiper-pagination-bullet span:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.2s;
}
.gallery-wrap .gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--Green);
}
.gallery-wrap .gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  background-color: var(--lightGreen);
}
.gallery-wrap .gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span:before {
  border-color: var(--lightGreen);
}
.gallery-wrap .gallery-swiper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.gallery-wrap .gallery-swiper .navi-box {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 30px;
}

.navi-box {
  display: flex;
  justify-content: space-between;
}
.navi-box > div {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  cursor: pointer;
}
.navi-box > div:hover {
  opacity: 0.8;
}
.navi-box > div:active {
  opacity: 0.6;
}
.navi-box > div:first-child {
  border: 1px solid var(--lightGreen);
  background: rgba(255, 255, 255, 0.6);
}
.navi-box > div:last-child {
  background: rgba(138, 187, 64, 0.6);
  transform: scaleX(-1);
}
.navi-box > div:last-child svg path {
  stroke: #fff;
}

.digital-wrap {
  background: url(../img/digital-bg.jpg) center/cover no-repeat;
  overflow: hidden;
}
.digital-wrap .top-box {
  display: flex;
  justify-content: space-between;
}
.digital-wrap .top-box .navi-box {
  max-width: 132px;
  margin: 40px 0 46px;
}
.digital-wrap .top-box .navi-box > div:last-child {
  background-color: var(--lightGreen);
}
.digital-wrap .top-box .digital-swiper {
  max-width: 640px;
  height: 360px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.digital-wrap .top-box .digital-swiper .swiper-slide {
  position: relative;
}
.digital-wrap .top-box .digital-swiper .swiper-slide span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background-color: var(--Green);
  border-radius: 300px;
  padding: 6px 20px;
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -1px;
}
.digital-wrap .th-digital-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.digital-wrap .th-digital-swiper .swiper-slide span {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.75px;
  transition: all 0.2s;
}
.digital-wrap .th-digital-swiper .swiper-slide img {
  border-radius: 12px;
  overflow: hidden;
  filter: brightness(0.8);
  transition: all 0.2s;
}
.digital-wrap .th-digital-swiper .swiper-slide.swiper-slide-thumb-active img {
  filter: none;
}
.digital-wrap .th-digital-swiper .swiper-slide.swiper-slide-thumb-active span {
  color: var(--Green);
}

.doctor-wrap {
  background: url(../img/doctor-bg.jpg) center/cover no-repeat;
  padding: 160px 0 95px;
}
.doctor-wrap .inner {
  display: flex;
  justify-content: space-between;
}
.doctor-wrap .text-box .top-box small {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.75px;
  color: var(--Green);
}
.doctor-wrap .text-box .top-box h3 {
  display: flex;
  align-items: end;
  gap: 16px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: -1px;
  color: var(--lightGreen);
  margin-top: 30px;
}
.doctor-wrap .text-box .top-box h3 strong {
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 54.6px */
  letter-spacing: -1px;
}
.doctor-wrap .text-box .top-box .mark-text {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: -1px;
  border-radius: 500px;
  border: 1px solid var(--lightGreen);
  background: rgba(138, 187, 64, 0.1);
  width: -moz-max-content;
  width: max-content;
  padding: 4px 16px;
  margin: 10px 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.doctor-wrap .text-box .top-box .mark-text img {
  width: 30px;
}
.doctor-wrap .text-box .top-box .con-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.doctor-wrap .text-box .top-box .con-text span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
.doctor-wrap .text-box .list-box {
  display: flex;
  gap: 40px;
  margin-top: 97px;
}
.doctor-wrap .text-box .list-box > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.doctor-wrap .text-box .list-box > div ul li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
.doctor-wrap .img-box {
  max-width: 600px;
}

.scroll-wrap {
  position: relative;
  padding-bottom: 0;
}
.scroll-wrap .bg-box {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.scroll-wrap .bg-box::before {
  content: url(../img/scroll-bg01.png);
  position: absolute;
  top: 902px;
  left: 0;
}
.scroll-wrap .bg-box::after {
  content: url(../img/scroll-bg02.png);
  right: 0;
  top: 0;
  position: absolute;
}
.scroll-wrap:after {
  content: "";
  display: block;
  width: 986px;
  height: 188px;
  background: url("/new/images/sub/04/01_txt02_bottom_n1.png") no-repeat center;
  position: absolute;
  left: 0;
  bottom: 0;
}
.scroll-wrap .flex-box {
  display: flex;
  justify-content: space-between;
}
.scroll-wrap .contSideWrap {
  position: relative;
  width: 550px;
  z-index: 2;
}
.scroll-wrap .contSideSticky {
  position: sticky;
  top: 160px;
}
.scroll-wrap .contSideSticky ul {
  border-top: 1px solid var(--Gray);
  width: 418px;
}
.scroll-wrap .contSideSticky ul li {
  counter-increment: tabNumber;
  border-bottom: 1px solid var(--Gray);
}
.scroll-wrap .contSideSticky ul li .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: -1px;
  padding: 20px 12px;
  cursor: pointer;
  color: var(--Gray);
}
.scroll-wrap .contSideSticky ul li .nav-link:before {
  content: counter(tabNumber, decimal-leading-zero);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.75px;
}
.scroll-wrap .contSideSticky ul li .nav-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../img/01_arrow1.png") no-repeat center;
  background-size: cover;
  transform: translateY(-50%);
  transition: 0.2s;
}
.scroll-wrap .contSideSticky ul li .nav-link.current {
  color: var(--Green);
}
.scroll-wrap .contSideSticky ul li .nav-link.current:before {
  color: var(--Dark);
}
.scroll-wrap .contSideSticky ul li .nav-link.current::after {
  width: 28px;
  height: 28px;
  background: url("../img/01_arrow_active.png") no-repeat center;
  background-size: cover;
}
.scroll-wrap .conMainWrap .list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 167px;
}
.scroll-wrap .conMainWrap .list li {
  height: 617px;
}
.scroll-wrap .conMainWrap .list li img {
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
}
.scroll-wrap .conMainWrap .list li .text-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: -moz-max-content;
  width: max-content;
}
.scroll-wrap .conMainWrap .list li .text-box small {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  color: var(--Gray);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-wrap .conMainWrap .list li .text-box small::after {
  content: "";
  height: 1px;
  width: 90px;
  background-color: var(--Gray);
}
.scroll-wrap .conMainWrap .list li .text-box h3 {
  color: var(--Green);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -1px;
}
.scroll-wrap .conMainWrap .list li .text-box p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
@keyframes textLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.scroll-wrap .txt_flow {
  width: 100%;
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 5;
  margin-top: 20px;
}
.scroll-wrap .txt_flow p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: textLoop 30s linear infinite;
  padding-right: 30px;
  font-size: 120px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 4px;
  color: #F5F5F5;
}
.scroll-wrap .txt_flow p strong {
  color: #EDF6DF;
  font-weight: inherit;
}
.scroll-wrap .txt_flow p span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #F5F5F5;
  margin-left: 30px;
}

.implant-wrap {
  background: url(../img/implant-bg.jpg) center/cover no-repeat;
  overflow: hidden;
  scroll-margin-top: 90px;
}
.implant-wrap .inner {
  display: flex;
}
.implant-wrap .slide-box {
  width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 5;
}
.implant-wrap .slide-box .navi-box {
  justify-content: right;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  box-shadow: 0 0 30px 0 rgba(17, 34, 27, 0.2);
  position: relative;
}
.implant-wrap .slide-box .navi-box > div {
  border-radius: 0;
  border: none;
}
.implant-wrap .slide-box .navi-box > div svg path {
  stroke: #fff;
}
.implant-wrap .slide-box .navi-box > div:first-child {
  background-color: var(--Gray);
}
.implant-wrap .slide-box .navi-box > div:last-child {
  background-color: var(--lightGreen);
}
.implant-wrap .slide-box .implant-swiper {
  overflow: hidden;
  background-color: #fff;
  border-radius: 40px 0 0 0;
  padding: 67.5px 34px 0;
  height: 500px;
  box-shadow: 0 0 30px 0 rgba(17, 34, 27, 0.2);
  position: relative;
  z-index: 4;
}
.implant-wrap .slide-box .implant-swiper .swiper-slide {
  opacity: 0 !important;
}
.implant-wrap .slide-box .implant-swiper .swiper-slide small {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  color: var(--Green);
}
.implant-wrap .slide-box .implant-swiper .swiper-slide p {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -1px;
  margin: 10px 0 20px;
}
.implant-wrap .slide-box .implant-swiper .swiper-slide span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
.implant-wrap .slide-box .implant-swiper .swiper-slide ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.implant-wrap .slide-box .implant-swiper .swiper-slide ul li {
  border-radius: 500px;
  border: 1px solid var(--lightGreen);
  background: rgba(138, 187, 64, 0.1);
  padding: 6px 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.implant-wrap .slide-box .implant-swiper .swiper-slide ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/list-ico.svg) center/cover no-repeat;
}
.implant-wrap .slide-box .implant-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.implant-wrap .img-box {
  box-shadow: 0 0 30px 0 rgba(17, 34, 27, 0.2);
  position: relative;
  width: 100%;
  height: 560px;
  z-index: 0;
}
.implant-wrap .img-box .implant-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
}
.implant-wrap .img-box .implant-img.active {
  opacity: 1;
  z-index: 2;
}

.info-wrap .title-box {
  text-align: center;
}
.info-wrap .map-box {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #F5F5F5;
}
.info-wrap ul {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 68px;
}
.info-wrap ul li {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 272px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.info-wrap ul li .img-box {
  width: 184px;
  height: 184px;
  border-radius: 100%;
  border: 1px solid rgba(178, 178, 178, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.info-wrap ul li .img-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background-color: rgba(178, 178, 178, 0.15);
  border-radius: 100%;
  transform: translate(-50%, -50%);
}
.info-wrap ul li p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}

footer {
  background-color: var(--Dark);
  position: relative;
  overflow: hidden;
}
footer * {
  color: #fff;
}
footer > img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
footer .top-box {
  padding: 100px 0 78px;
  border-bottom: 1px solid rgba(178, 178, 178, 0.2);
}
footer .top-box .inner {
  display: flex;
  justify-content: space-between;
}
footer .top-box .info-box .sub-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: -1px;
  color: var(--lightGreen);
  margin-bottom: 20px;
}
footer .top-box .info-box.call-box p {
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
footer .top-box .info-box.call-box small {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
footer .top-box .info-box.time-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .top-box .info-box.time-box ul li {
  display: flex;
  gap: 30px;
}
footer .top-box .info-box.time-box ul li p {
  width: 70px;
}
footer .top-box .info-box.time-box ul li * {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
footer .top-box .info-box.time-box ul li.color-line * {
  color: var(--lightGreen);
}
footer .top-box .info-box.time-box ul li.color-line span {
  display: flex;
  align-items: center;
  gap: 4px;
}
footer .top-box .info-box.time-box ul li.color-line span::after {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(../img/time-mark.svg) center/cover no-repeat;
  margin-top: -3px;
}
footer .top-box .info-box.flex-box {
  display: flex;
  gap: 30px;
}
footer .top-box .info-box.flex-box .mini-info .sns-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .top-box .info-box.flex-box .mini-info .sns-box li {
  width: 220px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(178, 178, 178, 0.2);
  overflow: hidden;
}
footer .top-box .info-box.flex-box .mini-info .sns-box li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
}
footer .bottom-box {
  padding: 30px 0;
}
footer .bottom-box .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .bottom-box ul li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
  color: var(--Gray);
}

aside {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}
aside .menu-box {
  background-color: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 500px;
  display: none;
  margin-bottom: 8px;
}
aside .menu-box ul {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
aside .menu-box ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
aside .menu-box ul li span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
}
aside .btn-box {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
aside .btn-box span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #fff;
}
aside .btn-box.menu-btn {
  background-color: var(--lightGreen);
}
aside .btn-box.top-btn {
  background-color: var(--Gray);
}