/*  */
.wrap {
  width: 100%;
}
/*  */
.inner {
  position: relative;
  /* max-width: 1280px; */
  width: 100%;
  /* padding: 0px 40px; */
}
/*  */
/* header */
.header {
  position: absolute;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-color: transparent;
}
.header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 150px;
}
.header .inner .logo {
  position: relative;
}
.header .logo a {
  position: relative;
}
.header .logo img {
  width: 120px;
  height: 28px;
}
/* 안 쓰는 선택자 */
/* .header .inner .logo a h1 {
  font-size: var(--xxx-large);
  font-weight: 600;
  color: var(--p500);
  text-align: center;
  letter-spacing: -0.03em;
} */
.nav {
  position: relative;
  display: flex;
  gap: var(--large);
  align-items: center;
  /* justify-content: flex-end; */
}
.nav ul {
  position: relative;
  display: flex;
  gap: var(--xx-large);
  align-items: center;
}
.nav ul li {
  position: relative;
}
.nav ul li a {
  /*  */
  align-items: center;
  justify-content: center;
  /* font-size: var(--xx-large); */
  text-align: center;
  /* font-family: "Spoqa Han Sans Neo", "sans-serif"; */
  /* font-size: var(--x-large); */
  /* font-weight: 600; */
  letter-spacing: 0.2px;

  /* padding: var(--xx-small) var(--large); */
}
.nav ul li:hover a {
  color: var(--g600);
}
.nav .lang-wrap {
  /* border-radius: 24px;
  overflow: hidden; */
  position: relative;
}
.nav .lang-wrap .lang-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--xx-small); /* 이게 맞을까...? */
  cursor: pointer;
}
.nav .lang-wrap .lang-icon img {
  width: var(--lang-img);
  height: var(--lang-img);
}
.nav .lang-wrap .lang-menu {
  /* position: absolute;
  display: flex;
  flex-direction: column;
  max-height: 0;
  opacity: 0;
  transition: all 0.25s ease; */
  /*  */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);

  transition: all 0.25s ease;
  pointer-events: none;
  /* background-color: transparent; */
  border-radius: 0 0 var(--xx-large) var(--xx-large);
  opacity: 0;
  transform: translateY(-10px);
}
/* hover 시 노출 */
.nav .lang-wrap:hover .lang-menu {
  pointer-events: auto;
  /* max-height: 200px;*/
  opacity: 1;
  transform: translateY(0);
}
/* 언어 항목 */
.nav .lang-wrap .lang-menu .lang {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
}
.nav .lang-wrap .lang-menu .lang:hover {
  color: var(--g600);
}
/* 모바일 파트 */
.utils {
  display: none;
}
.mobile-menu {
  /* display: none; */
}
.mobile-menu img {
  width: var(--xx-large);
  height: var(--xx-large);
  display: block;
  object-fit: contain;
}
/* hero */
.hero-section {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-section .hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* tal */
.tal-section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 1680px;
  padding: 0 80px;
  padding-top: 534px;
  padding-bottom: 172px;
  gap: 72px;
}
.tal-section .back-title {
  position: absolute;
  top: 114px;
  /* left: 128px; */
}
.tal-section .back-title img {
  width: 100%;
  height: 100%;
}
.tal-section .back-title h2 {
  /* background: linear-gradient(180deg, #656565 0%, #111111 99.99%); */
  /* -webkit-background-clip: text; */
  /* background-clip: text; */
  /* font-family: "Archivo Black", sans-serif; */
  /* font-size: 180px; */
  /* font-size: 9vw; */
  /* line-height: 1.05; */
  /* -webkit-text-fill-color: transparent; */
}
.tal-section .inner {
  position: relative;
  width: 100%;
  display: flex;
  gap: 62px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tal-section .inner .tal-title {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  /* padding: 0 80px; */
}
.tal-section .inner .tal-title .title {
  position: relative;
}
.tal-section .inner .tal-title .title p {
  font-family: "Jalnan Gothic";
  font-size: var(--xxx-large);
  text-align: center;
}

/* tal-swiper */
.tal-section .inner .swiper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* visibility: visible; */
  overflow: hidden;
}
.tal-section .inner .swiper .swiper-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  /* justify-content: center; */
  /* gap: 72px; */
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide {
  /* width: 100%; */
  position: relative;
  height: 600px;
  display: flex;
  /* gap: 0px; */
  align-items: center;
  /* justify-content: center; */
  opacity: 0.08;
  z-index: 1;
  flex-direction: column;
  transform: scale(0.9);
  pointer-events: none;
  transition:
    transform 0.7s ease,
    opacity 4s ease,
    z-index 0.4 ease;
  /* overflow: hidden; */
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide .slide-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 500px;
  /* width: 600px; */
  /* gap: 72px; */
  transform: scale(0.5);
  justify-content: space-between;
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide .slide-info img {
  display: flex;
  width: 500px;
  height: 480px;
  border-radius: 15px;
  opacity: 1;
  /* z-index: 1; */
  transition: opacity 0.68s ease;
  object-fit: cover;
  visibility: visible;
  gap: 400px;
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide .slide-title {
  position: relative;
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide .slide-title p {
  display: none;
  /* white-space: nowrap; */
  width: max-content;
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide-active {
  /* transform: scale(1.05);
  z-index: 10;
  opacity: 1; */
  opacity: 1;
  transform: scale(1.05);
  z-index: 10;
  pointer-events: auto;
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide-active .slide-info {
  position: relative;
  display: flex;
  transform: scale(0.8);
  /* width: 100%; */
}
.tal-section
  .inner
  .swiper
  .swiper-wrapper
  .swiper-slide-active
  .slide-info
  img {
  position: relative;
  display: flex;
  transform: scale(1.05);
  /* gap: 300px; */
  z-index: 10;
  opacity: 1;
  transition: transform 0.4s;
  /* height: 500px; */
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide-active .slide-title {
  position: relative;
}
.tal-section
  .inner
  .swiper
  .swiper-wrapper
  .swiper-slide-active
  .slide-title
  p {
  /* position: absolute; */
  /* left: 50%; */
  display: block;
  font-size: var(--xx-large);
  /* transform: scale(1.4); */
  text-align: center;
  /* white-space: nowrap; */
  /* width: max-content; */
  /* transform: translateX(-50%); */
  /* color: var(--black); */
}
.tal-section .inner .swiper .swiper-wrapper .swiper-slide-prev,
.tal-section .inner .swiper .swiper-wrapper .swiper-slide-next {
  opacity: 0.65;
  z-index: 5;
}
.swiper-slide-duplicate {
  opacity: 0;
}
/* tal-swiper */

.tal-section .tal-btn {
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
  gap: 35px;
  flex-direction: row;
}
.tal-section .tal-btn .google-btn {
  position: relative;
  width: var(--btn-width);
  height: var(--btn-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 46px;
}
.tal-section .tal-btn .google-btn:hover {
  background-color: var(--n500);
}
.tal-section .tal-btn .app-btn {
  position: relative;
  width: var(--btn-width);
  height: var(--btn-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 46px;
}
.tal-section .tal-btn .app-btn:hover {
  background-color: var(--n500);
}
.tal-section .tal-btn .google-btn p {
  font-weight: 500;
  font-size: var(--xx-large);
}
.tal-section .tal-btn .app-btn p {
  font-weight: 500;
  font-size: var(--xx-large);
}

/* grow */
.grow-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 80px;
}
.grow-section .black-sticker-big {
  position: absolute;
  top: -30px;
  left: 515px;
  z-index: 10;
}
.grow-section .black-sticker-big img {
  width: 40px;
  height: 35px;
}
.grow-section .black-sticker-small {
  position: absolute;
  top: -5px;
  left: 555px;
  z-index: 10;
}
.grow-section .black-sticker-small img {
  width: 30px;
  height: 30px;
}
.grow-section .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1523px;
  gap: 72px;
  padding-top: 126px;
  background: linear-gradient(39.83deg, #ffffff -6.23%, #c0fe0f 85.76%);
  border-radius: 35px;
  z-index: 5;
  object-fit: cover;
}
.grow-section .inner .grow-title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}
/* 화면에 들어왔을 때 */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.grow-section .inner .grow-title .title {
  position: relative;
  width: 100%;
}
.grow-section .inner .grow-title .title h2 {
  text-align: center;
  color: var(--black);
  line-height: 1.3;
  font-size: var(--xxx-large);
  font-family: "Jalnan Gothic";
}
.grow-section .inner .grow-title .eye-sticker {
  position: absolute;
  top: 30px;
  left: 85px;
  z-index: 5;
  /* transform: rotate(8deg); */
}
.grow-section .inner .grow-title .eye-sticker img {
  width: 90px;
  height: 75px;
}
.grow-section .sub-title {
  flex: 1;
}
.grow-section .inner .grow-title .sub-title {
  position: relative;
  /* display: grid; */
  /* grid-template-columns: 1, 3fr; */
  display: flex;
  flex-direction: row;
  gap: 35px;
  width: 100%;
  /* flex: 1; */
}
.grow-section .inner .grow-title .sub-title .cumulative {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  /* width: 100%; */
  height: 120px;
  line-height: 0.99;
  background-color: var(--white);
  border-radius: 15px;
  gap: 15px;
}
.grow-section .inner .grow-title .sub-title .cumulative h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: var(--black);
}
.grow-section .inner .grow-title .sub-title .cumulative p {
  font-size: var(--x-large);
  text-align: center;
  color: var(--black);
}
.grow-section .inner .grow-title .sub-title .cumulative:hover {
  background-color: var(--black);
}
.grow-section .inner .grow-title .sub-title .cumulative:hover h2 {
  color: var(--white);
}
.grow-section .inner .grow-title .sub-title .cumulative:hover p {
  color: var(--white);
}
.grow-section .inner .grow-title .sub-title .monthly {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  /* width: 100%; */
  height: 120px;
  background-color: var(--white);
  border-radius: 15px;
  gap: 15px;
  line-height: 0.99;
}
.grow-section .inner .grow-title .sub-title .monthly h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;

  color: var(--black);
}
.grow-section .inner .grow-title .sub-title .monthly p {
  font-size: var(--x-large);
  text-align: center;
  color: var(--black);
}
.grow-section .inner .grow-title .sub-title .monthly:hover {
  background-color: var(--black);
}
.grow-section .inner .grow-title .sub-title .monthly:hover h2 {
  color: var(--white);
}
.grow-section .inner .grow-title .sub-title .monthly:hover p {
  color: var(--white);
}
.grow-section .inner .grow-title .sub-title .amount {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  /* width: 100%; */
  height: 120px;
  line-height: 0.99;
  background-color: var(--white);
  border-radius: 15px;
  gap: 15px;
}
.grow-section .inner .grow-title .sub-title .amount h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: var(--black);
}
.grow-section .inner .grow-title .sub-title .amount p {
  font-size: var(--x-large);
  text-align: center;
  color: var(--black);
}
.grow-section .inner .grow-title .sub-title .amount:hover {
  background-color: var(--black);
}
.grow-section .inner .grow-title .sub-title .amount:hover h2 {
  color: var(--white);
}
.grow-section .inner .grow-title .sub-title .amount:hover p {
  color: var(--white);
}
/*  */
.grow-section .inner .grow-media {
  position: relative;
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
}
.grow-section .inner .grow-media iframe {
  width: 100%;
  height: 100%;
  /* pointer-events: none; */
}
/* .grow-section .inner .grow-media .video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
} */
.grow-section .inner .grow-bot-title {
  position: relative;
  align-items: center;
  justify-content: center;
  padding-top: 177px;
}
.grow-section .inner .grow-bot-title h2 {
  font-size: 200px;
  font-weight: 600;
  font-family: "Archivo Black", sans-serif;
}
/* service */
.service-section {
  position: relative;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  flex-direction: column;
  width: 100%;
  height: 3214px;
  gap: 350px;
  padding: 0 80px;
  padding-top: 326px;
  /* padding-bottom: 500px; */
  /* overflow-x: none; */
}
.service-section .mb-br {
  display: none;
}
.service-section .pc-br {
  display: block;
}
.service-section .tb-mb-br {
  display: none;
}
.service-section .mb-real-br {
  display: none;
}
.service-section .mb-real-br {
  display: none;
}
.service-section .spring-first {
  position: absolute;
  /* top: -495px; */
  /* left: 24px; */
  transform: translate(-30%, -80%);
}
.service-section .spring-first img {
  width: 100%;
  height: 100%;
}
.service-section .spring-second {
  position: absolute;
  /* top: -30px; */
  /* left: 1000px; */
  /* height: 0%; */
  transform: translate(130%, 30%);
}
.service-section .spring-second img {
  width: 100%;
  height: 100%;
}
.service-section .spring-third {
  position: absolute;
  top: 2700px;
  left: -400px;
}
.service-section .spring-third img {
  width: 100%;
  height: 100%;
}
/* .service-section .spring-fourth {
  position: absolute;
  top: 2713px;
  left: -350px;
}
.service-section .spring-fourth img {
  width: 100%;
  height: 100%;
} */
.service-section .back-title {
  /* position: relative; */
  /* scrollbar-width: fixed; */
  /* position: -webkit-sticky; */
  /* align-self: flex-start; */
  position: sticky;
  padding-top: 50px;
  top: 0px;
  /* width: 100%; */
  /* padding: 0 80px; */
  transition: opacity 0.3s;
  /* 부드러운 전환을 원할 때 */
  transition: transform 0.3s ease-out;
  transform: translate(0%, -10%);
  /* z-index: 1; */
}
/* .service-section .back-title.sticky {
  position: fixed;
  top: 0;
  left: 0;
} */
.service-section .back-title img {
  width: 40%;
  height: 100%;
}
/* .service-section .back-title h2 {
  font-size: 140px;
  font-family: "Archivo Black", sans-serif;
  opacity: 0.2;
  line-height: 97%;
  color: var(--g600);
} */
.service-section .sub-title {
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translate(0%, 400%);
  width: 90%;
}
.service-section .sub-title p {
  font-size: var(--xxx-large);
  text-align: right;
  line-height: 1.3;
  font-family: "Jalnan Gothic";
  white-space: nowrap;
}
.service-section .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 136px;
  z-index: 3;
  /* padding: 0 35px; */
}
.service-section .inner .service-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 136px;
  z-index: 3;
  /* padding: 0 80px; */
}
/* .service-section .inner .service-wrap .side-bar {
  width: 100%;
  height: 2px;
  background-color: var(--white);
} */
.service-section .inner .service-wrap .service-info-vip {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* justify-content: center; */
  justify-content: space-between;
  /* padding: 0 80px; */
  width: 100%;
  /* gap: 405px; */
}
.service-section .inner .service-wrap .service-info-premium {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* justify-content: center; */
  justify-content: space-between;
  /* padding: 0 80px; */
  width: 100%;
  /* gap: 310px; */
}
.service-section .inner .service-wrap .service-info-real {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* justify-content: center; */
  justify-content: space-between;
  /* padding: 0 80px; */
  width: 100%;
  /* gap: 390px; */
}
.service-section .inner .service-wrap .service-info-relax {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* justify-content: center; */
  justify-content: space-between;
  /* padding: 0 80px; */
  width: 100%;
  /* gap: 390px; */
}
.service-section .inner .service-wrap .service-info-vip .info-description {
  position: relative;
  display: flex;
  width: 100%;
  /* white-space: nowrap; */
  flex-direction: column;
  gap: 40px;
  padding-top: 30px;
}
.service-section .inner .service-wrap .service-info-premium .info-description {
  position: relative;
  display: flex;
  width: 100%;
  /* white-space: nowrap; */
  flex-direction: column;
  gap: 40px;
  padding-top: 30px;
}
.service-section .inner .service-wrap .service-info-real .info-description {
  position: relative;
  display: flex;
  width: 100%;
  /* white-space: nowrap; */
  flex-direction: column;
  gap: 40px;
  padding-top: 30px;
}
/* service-info, description-left */
.service-section
  .inner
  .service-wrap
  .service-info
  .info-description
  .info-title-left {
  position: relative;
  width: 100%;
}
.service-section .inner .service-wrap .info-description .info-title-left h3 {
  font-weight: 600;
  font-size: var(--xxx-large);
  /* line-height: 150%; */
}
.service-section .inner .service-wrap .info-description .info-caption-left {
  position: relative;
  width: 100%;
}
.service-section .inner .service-wrap .info-description .info-caption-left p {
  font-size: var(--xx-large);
  line-height: 1.5;
}
/* service-info, description-right */
.service-section .inner .service-wrap .info-description .info-title-right {
  position: relative;
  width: 100%;
}
.service-section .inner .service-wrap .info-description .info-title-right h3 {
  text-align: right;
  font-weight: 600;
  font-size: var(--xxx-large);
  /* line-height: 150%; */
}
.service-section .inner .service-wrap .info-description .info-caption-right {
  position: relative;
  width: 100%;
}
.service-section .inner .service-wrap .info-description .info-caption-right p {
  text-align: right;
  line-height: 1.5;
  font-size: var(--xx-large);
}
.service-section .inner .service-wrap .service-img {
  position: relative;
  object-fit: cover;
  width: 100%;
}
.service-section .inner .service-wrap .service-img img {
  border-radius: 15px;
  width: 100%;
  height: 553px;
}
.service-section .inner .wrap-foot {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 0 80px;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 5;
}
.service-section .inner .wrap-foot .wrap-foot-top {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 41px;
}
.service-section .inner .wrap-foot .wrap-foot-top .top-Rectangle-white {
  width: 400px;
  height: 130px;
  border-radius: 81px;
  background-color: #fff;
}
.service-section .inner .wrap-foot .wrap-foot-top .top-Rectangle-linear {
  width: 400px;
  height: 130px;
  border-radius: 81px;
  background-color: #8eb8fb;
}
.service-section .inner .wrap-foot .wrap-foot-bot {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 41px;
}
.service-section .inner .wrap-foot .wrap-foot-bot .bot-Rectangle-linear {
  width: 435px;
  height: 130px;
  border-radius: 81px;
  background: linear-gradient(
    98.74deg,
    #6395f4 8.94%,
    #ffffff 69.24%,
    #beff05 113.45%
  );
}
.service-section .inner .wrap-foot .wrap-foot-bot .bot-Rectangle-white {
  width: 130px;
  height: 130px;
  background-color: #fff;
  border-radius: 75px;
}
/* partnership */
.partnership-section {
  position: relative;
  display: flex;
  width: 100%;
  /* height: 875px; */
  align-items: center;
  justify-content: center;
  padding: 129px 80px;
  background-color: var(--n500);
  /* width: 100%; */
}
.partnership-section .inner {
  position: relative;
  width: 100%;
  display: flex;
  gap: 30px;
  /* align-items: center; */
  /* justify-content: center; */
  flex-direction: column;
  padding: var(--xx-large) 0px;
  padding: 20px 0;
}
.partnership-section .inner .partnership-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 20px;
  gap: 10px;
  /* width: fit-content; */
  /* 오른쪽 정렬 */
  /* margin-left: auto; */
}
.partnership-section .inner .partnership-title .title {
  position: relative;
}
.partnership-section .inner .partnership-title .title h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: var(--xxxx-large);
  line-height: 40px;
  color: var(--black);
  text-align: right;
}
.partnership-section .inner .partnership-title .sub-title {
  position: relative;
}
.partnership-section .inner .partnership-title .sub-title h2 {
  font-family: "Jalnan Gothic";
  font-size: var(--xx-large);
  color: var(--g400);
  font-weight: 500;
  text-align: right;
}
/* partnership-list */
.partnership-section .partnership-list {
  position: relative;
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 10px 0;
}
.partnership-list .partnership-wrap {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
/* partnership-list - partnership-main */
.partnership-section .partnership-list .partnership-main {
  position: relative;
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  flex-direction: row;
  flex: 1;
}
.partnership-main .partnership-mkt {
  /* width: 340px; */
  /* width: 100%; */
  height: 400px;
  padding: var(--large) var(--x-large);
  background-color: var(--black);
  border-radius: var(--partnership-radius);
}
.partnership-main .partnership-mkt .wrap-title {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--white);
}
.partnership-main .partnership-mkt .wrap-sub-title {
  /* font-size: var(--small); */
  font-weight: 500;
  color: var(--white);
}
.partnership-main .partnership-htl {
  /* width: 340px; */
  height: 400px;
  padding: var(--large) var(--x-large);
  background-color: var(--white);
  border-radius: var(--partnership-radius);
}
.partnership-main .partnership-htl .wrap-title {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--black);
}
.partnership-main .partnership-htl .wrap-sub-title {
  /* font-size: var(--small); */
  font-weight: 500;
  color: var(--black);
}
.partnership-main .partnership-pen {
  /* width: 340px; */
  height: 400px;
  padding: var(--large) var(--x-large);
  background-color: var(--white);
  border-radius: var(--partnership-radius);
}
.partnership-main .partnership-pen .wrap-title {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--black);
}
.partnership-main .partnership-pen .wrap-sub-title {
  /* font-size: var(--small); */
  font-weight: 500;
  color: var(--black);
}
.partnership-main a {
  flex: 1;
}

/* partnership-list - partnership-sub */
.partnership-section .partnership-list .partnership-sub {
  position: relative;
  display: flex;
  gap: var(--small);
  justify-content: center;
  flex-direction: column;
  flex: 1;
}
/* partnership-list - partnership-sub-top*/
.partnership-sub .partnership-top {
  width: 100%;
  position: relative;
  display: flex;
}
.partnership-sub .partnership-top .partnership-lst {
  /* width: 759px; */
  height: 185px;
  padding: var(--large) var(--x-large);
  background-color: var(--r500);
  border-radius: var(--partnership-radius);
}
.partnership-top .partnership-lst .wrap-title {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--white);
}
.partnership-top .partnership-lst .wrap-sub-title {
  /* font-size: var(--small); */
  font-weight: 500;
  color: var(--white);
}
/* partnership-sub-bot */
.partnership-sub .partnership-bot {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.partnership-sub .partnership-bot .partnership-hnb {
  /* width: 245px; */
  height: 207px;
  padding: var(--large) var(--x-large);
  background-color: var(--white);
  border-radius: var(--partnership-radius);
}
.partnership-bot .partnership-hnb .wrap-title {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--black);
}
.partnership-bot .partnership-hnb .wrap-sub-title {
  /* font-size: var(--small); */
  font-weight: 500;
  color: var(--black);
}
.partnership-sub .partnership-bot .partnership-spr {
  /* width: 245px; */
  height: 207px;
  padding: var(--large) var(--x-large);
  background-color: var(--white);
  border-radius: var(--partnership-radius);
}
.partnership-bot .partnership-spr .wrap-title {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--black);
}
.partnership-bot .partnership-spr .wrap-sub-title {
  /* font-size: var(--small); */
  font-weight: 500;
  color: var(--black);
}
.partnership-sub .partnership-bot .partnership-bus {
  /* width: 245px; */
  height: 207px;
  padding: var(--large) var(--x-large);
  background-color: var(--r500);
  border-radius: var(--partnership-radius);
}
.partnership-bot .partnership-bus .wrap-title {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--white);
}
.partnership-bot .partnership-bus .wrap-sub-title {
  /* font-size: var(--small); */
  font-weight: 500;
  color: var(--white);
}
.partnership-sub a {
  flex: 1;
}
/* .partnership-sticker */
.partnership-section .black-sticker {
  position: absolute;
  top: -20px;
  left: 5px;
}
.partnership-section .black-sticker img {
  width: 41px;
  height: 35px;
}
.partnership-section .spring-sticker {
  position: absolute;
  top: 185px;
  left: -50px;
}
.partnership-section .spring-sticker img {
  width: 120px;
  height: 105px;
}
.partnership-section .arrow-sticker {
  position: absolute;
  z-index: 5;
  top: 70px;
  left: -50px;
}
.partnership-section .arrow-sticker img {
  width: 115px;
  height: 100px;
}
.partnership-section .eye-sticker {
  position: absolute;
  top: 50px;
  left: 830px;
  z-index: 5;
  /* width: 100%; */
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(95%, 50%);
  z-index: 5; */
}
.partnership-section .eye-sticker img {
  width: 97px;
  height: 97px;
}
/* carousel */
.carousel-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.carousel-section .img-inner {
  position: relative;
  width: 100%;
  /* max-width: 1920px; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */

  overflow: hidden;
  z-index: 2;
  /*  */
  background-color: var(--white);
}
.carousel-section .img-track {
  /* 내용 크기만큼 */
  /* width: max-content; */
  /* width: 100%; */
  /* 옆으로 나열 */
  display: flex;
  /* 왼쪽으로 무한 이동 */
  animation: scroll-left 40s linear infinite;
}
.carousel-section .img-line {
  display: flex;
  height: 80px;
  white-space: nowrap;
}
.carousel-section .img-line img {
  position: relative;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* guide */
.guide-section {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.guide-section .guide-img {
  position: relative;
  width: 100%;
}
.guide-section .guide-img img {
  position: relative;
  width: 100%;
  height: 611px;
}
.guide-section .guide-img .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(0%, 50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 60px;

  width: 100%;
  padding: 0 40px;
  z-index: 1;
}
.guide-section .guide-img .info .title {
  position: relative;
}
.guide-section .guide-img .info .title p {
  font-family: "Archivo Black", sans-serif;
  font-size: 64px;
  /* font-weight: 500; */
  line-height: 1.04;
  color: var(--white);
  text-align: center;
}
.guide-section .guide-img .info .btn {
  position: relative;
  display: flex;
  gap: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.guide-section .guide-img .info .btn a {
  position: relative;
}
.guide-section .guide-img .info .btn .team {
  width: var(--btn-width);
  height: var(--btn-height);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 25px;
  background-color: var(--white);
  border-radius: var(--big);
}
.guide-section .guide-img .info .btn .team:hover {
  background-color: var(--n500);
}
.guide-section .guide-img .info .btn .team p {
  font-size: var(--xx-large);
  font-weight: 600;
  text-align: center;
}
.guide-section .guide-img .info .btn .hiring {
  width: var(--btn-width);
  height: var(--btn-height);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 25px;
  background-color: var(--white);
  border-radius: var(--big);
}
.guide-section .guide-img .info .btn .hiring:hover {
  background-color: var(--n500);
}
.guide-section .guide-img .info .btn .hiring p {
  font-size: var(--xx-large);
  font-weight: 600;
  text-align: center;
}

/* footer */
.footer-section {
  position: relative;
  width: 100%;
  /* height: 568px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--black);
  padding: 0 80px;
}
.footer-section .inner {
  /* max-width: 1280px; */
  position: relative;
  display: flex;
  /* width: 1600px; */
  gap: 30px;
  flex-direction: column;
  /* padding: 30px 0; */
}
/* footer - contact */
.footer-section .inner .contact {
  display: flex;
  width: 100%;
  /* height: 300px; */
  gap: 10px;
  flex-direction: column;
}
.footer-section .inner .contact .contact-info {
  display: flex;
  width: 100%;
  gap: 5px;
  flex-direction: column;
  padding: 20px 0px;
}
.footer-section .inner .contact .contact-info .contact-top {
  display: flex;
  width: 100%;
}
.footer-section .inner .contact .contact-info .contact-top .contact-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 55px;
}
.footer-section .inner .contact .contact-info .contact-top .contact-title p {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--white);
}
.footer-section .inner .contact .contact-info .contact-middle {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.footer-section .inner .contact .contact-info .contact-middle .contact-num {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-section .inner .contact .contact-info .contact-middle .contact-num p {
  font-size: 14px;
  /* font-weight: 600; */
  color: var(--white);
}
.footer-section .inner .contact .contact-info .contact-middle .contact-email {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-section .inner .contact .contact-info .contact-middle .contact-email p {
  font-size: 14px;
  /* font-weight: 600; */
  color: var(--white);
}
.footer-section .inner .contact .sns-bottom {
  display: flex;
  gap: 14px;
  flex-direction: column;
}
.footer-section .inner .contact .sns-bottom .sns-title {
  position: relative;
  display: flex;
  width: 100%;
}
.footer-section .inner .contact .sns-bottom .sns-title p {
  font-size: var(--x-large);
  font-weight: 600;
  color: var(--white);
}
.footer-section .inner .contact .sns-bottom .sns-list {
  display: grid;
  grid-column-gap: 50%;
  gap: var(--xx-small);
  font-size: var(--xx-large);
  /* font-weight: 600; */
  /* color: var(--g300); */
  width: 30%;
  grid-template-columns: repeat(3, 1fr); /* 3개씩 한 줄 */
}
.footer-section .inner .contact .sns-bottom .sns-list a {
  /* width: fit-content; */
  display: flex;
  width: 100%;
}
.footer-section .inner .contact .sns-bottom .sns-list .sns {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: row;
  object-fit: cover;
}
.footer-section .inner .contact .sns-bottom .sns-list .sns .sns-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-section .inner .contact .sns-bottom .sns-list .sns img {
  width: var(--large);
  height: var(--large);
}
.footer-section .inner .contact .sns-bottom .sns-list .sns p {
  /* align-items: center; */
  /* justify-content: center; */
  color: var(--white);
  font-size: 14px;
}
/* footer - footer */
.footer-section .inner .footer {
  position: relative;
  display: flex;
  gap: 21px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 20px 0;
}
.footer-section .inner .footer .footer-top {
  display: flex;
  align-items: center;
}
.footer-section .inner .footer .footer-top ul {
  position: relative;
  display: flex;
  /* gap: 12px; */
}
.footer-top li {
  position: relative;
  padding: 0 16px; /* 글자 간격 */
}
.footer-top li:first-child {
  padding-left: 0; /* 맨 왼쪽 딱 붙게 */
}
.footer-top li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #fff; /* 줄 색상 */
}
.footer-section .inner .footer .footer-top a {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.footer-section .inner .footer .footer-middle {
  position: relative;
  display: flex;
  flex-direction: column;
  /* padding: 0 12px; */
}
.footer-section .inner .footer .footer-middle p {
  color: var(--white);
  font-size: 14px;
}
.footer-section .inner .footer .footer-middle .middle-info {
  position: relative;
}
.footer-section .inner .footer .footer-middle .middle-info .line-bar {
  display: none;
}
.footer-section .inner .footer .footer-middle .middle-info .mobile-br {
  display: none;
}
.footer-section .inner .footer .footer-middle .middle-info p {
  color: var(--white);
  font-size: var(--small);
}
.footer-section .inner .footer .footer-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* padding: 0 12px; */
}
.footer-section .inner .footer .footer-bottom .personal {
  position: relative;
}
.footer-section .inner .footer .footer-bottom .personal p {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.footer-section .inner .footer .footer-bottom .copy {
  position: relative;
}
.footer-section .inner .footer .footer-bottom .copy span {
  font-size: 14px;
  color: var(--white);
}
@media (max-width: 1699px) {
  /* .service-section .back-title {
    position: relative;
  } */
  .service-section .pc-br {
    display: block;
  }
  .service-section .pc-tmb-br {
    display: none;
  }
  .service-section .tb-mb-br {
    display: block;
  }
  .service-section .mb-real-br {
    display: none;
  }
  .partnership-section .inner .partnership-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    /* padding: 0 80px; */
    width: 100%;
    gap: 10px;
    /* width: fit-content; */
    /* 오른쪽 정렬 */
    /* margin-left: auto; */
  }
  .partnership-section .inner .partnership-list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .partnership-section .arrow-sticker {
    position: absolute;
    z-index: 5;
    top: 70px;
    left: -50px;
  }
  .partnership-section .arrow-sticker img {
    width: 115px;
    height: 100px;
  }
  .partnership-section .eye-sticker {
    position: absolute;
    top: 0;
    left: 90%;
    transform: translate(50%, 50%);
    z-index: 5;
  }
  .partnership-section .eye-sticker img {
    width: 97px;
    height: 97px;
  }
  .footer-section .inner .contact .sns-bottom .sns-list {
    grid-template-columns: 1fr;
  }
}
/* 태블릿 반응형 */
@media (max-width: 1023px) {
  .header {
    height: 75px;
  }
  .header .nav {
    display: none;
  }
  .header .utils {
    display: block;
  }
  .header .utils img {
    /* background-color: var(--black); */
    width: 39px;
    height: 39px;
  }
  .tal-section .back-title {
    /* position: absolute; */
    /* top: 114px; */
    /* left: 128px; */
    /* left: 0; */
    /* right: 0; */
  }
  .grow-section .black-sticker-big {
    position: absolute;
    top: -12%;
    left: 65%;
    /* transform: translate(50%, 50%); */
    z-index: 10;
  }
  .grow-section .black-sticker-big img {
    width: 30px;
    height: 25px;
  }
  .grow-section .black-sticker-small {
    position: absolute;
    top: -7%;
    left: 70%;
    z-index: 10;
  }
  .grow-section .black-sticker-small img {
    width: 20px;
    height: 20px;
  }
  .tal-section .tal-btn .google-btn {
    width: 160px;
    height: 50px;
  }
  .tal-section .tal-btn .app-btn {
    width: 160px;
    height: 50px;
  }
  .tal-section .tal-btn .google-btn p {
    font-size: var(--x-large);
  }
  .tal-section .tal-btn .app-btn p {
    font-size: var(--x-large);
  }
  .grow-section .inner {
    /* height: 814px; */
  }
  .grow-section .inner .grow-title .title h2 {
    font-size: 24px;
  }
  .grow-section .inner .grow-title .sub-title .cumulative {
    width: 200px;
    height: 110px;
  }
  .grow-section .inner .grow-title .sub-title .monthly {
    width: 200px;
    height: 110px;
  }
  .grow-section .inner .grow-title .sub-title .amount {
    width: 200px;
    height: 110px;
  }
  .grow-section .inner .grow-title .sub-title .cumulative h2 {
    font-size: var(--xx-large);
  }
  .grow-section .inner .grow-title .sub-title .cumulative p {
    font-size: 18px;
  }
  .grow-section .inner .grow-title .sub-title .monthly h2 {
    font-size: var(--xx-large);
  }
  .grow-section .inner .grow-title .sub-title .monthly p {
    font-size: 18px;
  }
  .grow-section .inner .grow-title .sub-title .amount h2 {
    font-size: var(--xx-large);
  }
  .grow-section .inner .grow-title .sub-title .amount p {
    font-size: 18px;
  }
  .service-section {
    gap: 130px;
    /* height: 1654px; */
  }
  .service-section .pc-br {
    display: block;
  }
  .service-section .pc-tmb-br {
    display: none;
  }
  .service-section .tb-mb-br {
    display: block;
  }
  .service-section .mb-real-br {
    display: none;
  }
  .service-section .sub-title {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(0%, 750%);
    width: 90%;
  }
  .service-section .sub-title p {
    font-size: 18px;
    text-align: right;
    line-height: 1.3;
    font-family: "Jalnan Gothic";
    white-space: nowrap;
  }
  .service-section .mb-br {
    display: block;
  }
  .service-section .back-title {
    position: relative;
  }
  .service-section .inner .service-wrap .info-description .info-title-left h3 {
    font-weight: 600;
    font-size: var(--xx-large);
    /* line-height: 150%; */
  }
  .service-section .inner .service-wrap .info-description .info-caption-left p {
    font-size: var(--large);
    line-height: 1.5;
  }
  .service-section .inner .service-wrap .info-description .info-title-right h3 {
    text-align: right;
    font-weight: 600;
    font-size: var(--xx-large);
    /* line-height: 150%; */
  }
  .service-section
    .inner
    .service-wrap
    .info-description
    .info-caption-right
    p {
    text-align: right;
    line-height: 1.5;
    font-size: var(--large);
  }
  .partnership-section .inner .partnership-list .partnership-main {
    display: grid;
    grid-template-columns: 1fr;
  }
  .partnership-main .partnership-mkt {
    height: 207px;
  }
  .partnership-main .partnership-htl {
    height: 207px;
  }
  .partnership-main .partnership-pen {
    height: 207px;
  }
  .partnership-section .inner .partnership-list .partnership-sub {
    display: flex;
    flex-direction: column;
  }
  .partnership-section .inner .partnership-list .partnership-bot {
    display: grid;
    grid-template-columns: 1fr;
  }
  .partnership-section .spring-sticker {
    top: 7%;
  }
  .partnership-section .eye-sticker {
    position: absolute;
    top: 0;
    left: 85%;
    z-index: 5;
    /* transform: translate(50%, 50%); */
  }
  .partnership-section .eye-sticker img {
    width: 100%;
    height: 100%;
  }
  .guide-section .guide-img img {
    height: 375px;
  }
  .guide-section .guide-img .info {
    gap: 40px;
  }
  .guide-section .guide-img .info .title p {
    font-size: var(--xxxx-large);
  }
  .guide-section .guide-img .info .btn .team {
    width: 160px;
    height: 40px;
  }
  .guide-section .guide-img .info .btn .hiring {
    width: 160px;
    height: 40px;
  }
  .guide-section .guide-img .info .btn .team p {
    font-size: var(--large);
    /* white-space: nowrap; */
    width: max-content;
  }
  .guide-section .guide-img .info .btn .hiring p {
    font-size: var(--large);
    /* white-space: nowrap; */
    width: max-content;
  }
  .footer-section .inner .contact .sns-bottom .sns-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 866px) {
  .grow-section .black-sticker-big {
    position: absolute;
    top: -5%;
    left: 85%;
    /* transform: translate(50%, 50%); */
    z-index: 10;
  }
  .grow-section .black-sticker-big img {
    width: 30px;
    height: 25px;
  }
  .grow-section .black-sticker-small {
    position: absolute;
    top: -2%;
    left: 95%;
    z-index: 10;
  }
  .grow-section .black-sticker-small img {
    width: 20px;
    height: 20px;
  }
  .grow-section .inner .grow-title .sub-title {
    flex-direction: column;
  }
  .grow-section .inner .grow-title .title h2 {
    font-size: 18px;
  }
  .grow-section .inner .grow-title .eye-sticker {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    transform: translate(-50%, 80%);
  }
  .grow-section .inner .grow-title .eye-sticker img {
    width: 90px;
    height: 75px;
  }
  .grow-section .inner .grow-title .sub-title .cumulative {
    width: 180px;
    height: 99px;
  }
  .grow-section .inner .grow-title .sub-title .monthly {
    width: 180px;
    height: 99px;
  }
  .grow-section .inner .grow-title .sub-title .amount {
    width: 180px;
    height: 99px;
  }
  .grow-section .inner .grow-title .sub-title .cumulative h2 {
    font-size: 18px;
  }
  .grow-section .inner .grow-title .sub-title .cumulative p {
    font-size: 14px;
  }
  .grow-section .inner .grow-title .sub-title .monthly h2 {
    font-size: 18px;
  }
  .grow-section .inner .grow-title .sub-title .monthly p {
    font-size: 14px;
  }
  .grow-section .inner .grow-title .sub-title .amount h2 {
    font-size: 18px;
  }
  .grow-section .inner .grow-title .sub-title .amount p {
    font-size: 14px;
  }
}
/* 모바일 반응형 */
@media (max-width: 767px) {
  .header .inner {
    padding: 0 100px;
    gap: 233px;
  }
  .header .utils img {
    /* background-color: var(--n300); */
    width: 24px;
    height: 24px;
  }
  .tal-section .tal-btn .google-btn {
    width: 114px;
    height: 30px;
  }
  .tal-section .tal-btn .app-btn {
    width: 114px;
    height: 30px;
  }
  .tal-section .tal-btn .google-btn p {
    font-size: 14px;
  }
  .tal-section .tal-btn .app-btn p {
    font-size: 14px;
  }

  .service-section {
    gap: 70px;
  }
  .service-section .service-wrap {
    gap: 50px;
  }
  .service-section .sub-title {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(0%, 760%);
    width: 90%;
  }
  .service-section .inner .service-wrap .service-info-vip {
    /* display: flex; */
    padding: 0 20px;
    flex-direction: column;
    gap: 72px;
  }
  .service-section .inner .service-wrap .service-info-vip img {
    width: 100%;
    height: 228px;
  }
  .service-section .inner .service-wrap .service-info-premium {
    /* display: flex; */
    padding: 0 20px;
    flex-direction: column;
    gap: 72px;
  }
  .service-section
    .inner
    .service-wrap
    .service-info-premium
    .info-description {
    order: 1;
  }
  .service-section .inner .service-wrap .service-info-premium .service-img {
    order: 2;
  }
  /* service-info, description-right */
  .service-section .inner .service-wrap .info-description .info-title-right {
    position: relative;
    width: 100%;
  }

  .service-section .inner .service-wrap .info-description .info-title-right h3 {
    text-align: left;
    font-weight: 600;
    font-size: var(--xx-large);
    /* line-height: 150%; */
  }
  .service-section .inner .service-wrap .info-description .info-caption-right {
    position: relative;
    width: 100%;
  }

  .service-section
    .inner
    .service-wrap
    .info-description
    .info-caption-right
    p {
    text-align: left;
    line-height: 1.5;
    font-size: var(--large);
  }
  .service-section .inner .service-wrap .service-info-premium img {
    width: 100%;
    height: 228px;
  }
  .service-section .inner .service-wrap .service-info-real {
    /* display: flex; */
    padding: 0 20px;
    flex-direction: column;
    gap: 72px;
  }
  .service-section .inner .service-wrap .service-info-real img {
    width: 100%;
    height: 228px;
  }
  .service-section .back-title {
    position: relative;
  }
  /* .service-section .pc-br {
    display: none;
  } */
  .service-section .mb-br {
    display: none;
  }

  .service-section .mb-real-br {
    display: none;
  }
  .guide-section .guide-img img {
    height: 231px;
  }
  .guide-section .guide-img .info {
    gap: 23px;
  }
  .guide-section .guide-img .info .title p {
    font-size: var(--x-large);
  }
  .guide-section .guide-img .info .btn .team {
    width: 98px;
    height: 21px;
  }
  .guide-section .guide-img .info .btn .hiring {
    width: 98px;
    height: 21px;
  }
  .guide-section .guide-img .info .btn .team p {
    font-size: 10px;
    /* white-space: nowrap; */
    width: max-content;
  }
  .guide-section .guide-img .info .btn .hiring p {
    font-size: 10px;
    /* white-space: nowrap; */
    width: max-content;
  }
  .footer-section .inner .contact .sns-bottom .sns-list {
    grid-template-columns: 1fr;
  }
  /* .footer-section .inner .footer .footer-middle .middle-info {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .footer-section .inner .footer .footer-middle .middle-info .line-bar {
    display: none;
  }
  .footer-section .inner .footer .footer-middle .middle-info .mobile-br {
    display: block;
  } */
}
