@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

:root {
  --swiper-theme-color: #007aff;
  --blue: rgb(0, 153, 255);
  --red: rgb(255, 91, 91);
  --purple: rgb(170, 110, 255);
  --yellow: rgb(255, 175, 45);
  --green: rgb(50, 193, 24);

  --text-gray: rgb(130, 130, 130);
  --text: rgb(44, 44, 44);

  --primary-light: #fff5fa;
  --box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1);
  --text-color: #323232;
  --gray: #ededed;
  --input-border: 1px solid #ccc;
  --border: 1px solid #ccc;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  line-height: 1;
  font-size: 16px;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  overflow: visible;
  border-radius: 0;
}

input,
select,
textarea {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  -webkit-text-size-adjust: none;
  font-size: 100%;
  vertical-align: middle;
  border: none;
  background: none;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

fieldset,
img {
  border: 0 none;
}

#components-reconnect-modal {
  display: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.ally-hidden {
  overflow: hidden;
  display: block;
  position: absolute;
  border: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*============ MainLayout ===============*/
.intro {
  position: relative;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
}

.page {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  border: 0px;
  font: inherit;
  vertical-align: baseline;
  overflow: hidden;
}

.main-layout {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 30px 40px;
  gap: 28px;
  overflow-y: auto;
}

.nav {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 12px 0px;
  z-index: 200;
  margin: 0px;
  padding: 0px;
  border: 0px;
  font: inherit;
  vertical-align: baseline;
}

.nav__wrapper {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.nav-list {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.nav__item {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
}

.nav__item--login {
  display: flex;
  color: #0099ff;
  cursor: pointer;
  gap: 6px;
}

.nav__item--logo {
  display: flex;
  align-items: center;
  height: 40px;
  margin-right: 20px;
  padding: 0;
}

.nav__arrow{
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.nav__arrow.open{
  transform: rotate(180deg);
}

.nav-sub{
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 200px;
  transform: translateY(100%);
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 12px 0px;
  gap: 16px;
  overflow: hidden;
}

.nav-sub__item{
  display: flex;
  align-items: center;
  font-size: 16px;
  text-align: left;
  gap: 6px;
}

.nav-sub__item--mail{
  display: inline-block;
  width: 100%;
  padding-bottom: 16px;
  font-size: 14px;
  border-bottom: 1px solid #0099ff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-sub__item--logout{

}

.nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  margin-bottom: auto;
  background-color: #ff4444;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  line-height: 1;
}

.nav-sub__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  margin-left: auto;
  background-color: #ff4444;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  line-height: 1;
}

.m-nav-list {
  display: none;
}

.m-nav-menu {
  display: none;
}

.m-nav-close {
  display: none;
}

/* .nav__item:hover {
  color: var(--swiper-theme-color);
}

.nav__item.active {
  color: var(--swiper-theme-color);
  font-weight: 700;
} */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 60px 16px;
  background-color: rgb(44, 44, 44);
}

.footer--wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.footer--nav {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 40px 0;
  font-size: 16px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.logo--wrapper {
  max-width: 88px;
  display: flex;
  padding-bottom: 40px;
}

.address-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.address-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  color: rgb(255, 255, 255);
  line-height: 19px;
  margin-bottom: 12px;
}

.stick {
  padding: 0px 16px;
}

@media (max-width: 1100px) {
  .nav {
    position: relative;
    justify-content: space-between;
  }

  .nav__wrapper {
    height: 50px;
    padding: 0 20px;
  }

  .nav-list {
    display: none;
  }

    .nav-list {
    display: none;
  }

  .nav-sub{
    display: none;
  }

  .m-nav-list {
    position: fixed;
    display: none;
    right: 0;
    top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    transition: 0.3s;
    background-color: #ffffff;
    z-index: 300;
  }

  .m-nav-list.active {
    display: block;
    transform: translateX(0px);
  }

  .m-nav-list .m_nav__item {
    display: block;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    padding: 20px;
    border-bottom: 1px solid rgb(238, 238, 238);
  }

  .nav__item--logo > img {
    display: flex;
    width: 63px;
    height: 30px;
  }

  .m-nav-menu {
    display: flex;
  }

  .m-nav-menu.active {
    display: none;
  }

  .m-nav-close.active {
    display: flex;
  }
}

@media only screen and (max-width: 768px) {
  .logo--wrapper {
    padding-bottom: 20px;
  }

  .logo--wrapper > img {
    max-width: 64px;
  }

  .footer--nav {
    font-size: 8px;
    line-height: 10px;
    padding: 20px 0;
  }

  .address-box {
    flex-wrap: wrap;
    font-size: 8px;
    line-height: 10px;
  }

  .stick {
    padding: 0px 8px;
  }
}

/*=======================*/
.tmp-container {
  width: 100%;
}

/* section1 - 스윙만의 특별함 */
.first-section {
  display: flex;
  width: 100%;
  padding: 120px 16px;
  background-color: rgb(249, 249, 249);
}

/* section2 - 통합 경영관리 서비스 */
.second-section {
  width: 100%;
  padding: 120px 0;
}

/* section3 - 컨시어지 서비스 */
.third-section {
  width: 100%;
  padding: 120px 16px;
  background-color: rgb(249, 249, 249);
}

/* SaaS section */
.section-container {
  padding: 120px 0px;
  text-align: center;
}

.section--wrapper {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.main-title {
  font-size: 44px; /* 메인 타이틀 크기 */
  font-weight: 800;
  margin-bottom: 20px; /* 서브 타이틀과 간격 */
  line-height: 53px;
}

.sub-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}

.title {
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  color: var(--blue);
}

.description {
  font-size: 20px;
  line-height: 24px;
  color: var(--text);
}

.section--title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.section--title.saas-title {
  padding-bottom: 12px;
}

.section--subtitle {
  font-size: 20px;
  line-height: 24px;
  color: var(--text-gray);
}

.section--subtitle.second {
  font-weight: 700;
  color: var(--blue);
}

.section--subtitle.third {
  font-weight: 600;
  color: var(--blue);
}

.section--subtitle.fourth {
  font-weight: 600;
  color: var(--text-gray);
  margin-top: 12px;
}

.box--div {
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.box--title {
  line-height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

.box--text {
  /* flex-shrink: 0;
  font-weight: 700; */
  font-size: 16px;
  line-height: 24px;
}

.box--content {
  font-size: 16px;
  line-height: 19px;
  color: #898989;
}

.title--wrapper {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0px auto 60px;
}

.wrapper--flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box--long {
  width: 100%;
  display: flex;
  gap: 72px;
  padding: 32px 60px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 12px;
}

@media only screen and (max-width: 1100px) {
  .section-container {
    padding: 40px 16px;
  }

  .section--title.saas-title {
    font-size: 20px;
    line-height: 24px;
  }

  .section--subtitle.saas-subtitle {
    font-size: 12px;
    line-height: 14px;
  }

  .saaspage > .section--title.saas-title {
    font-size: 40px;
    line-height: 48px;
  }

  .saaspage > .section--subtitle.saas-subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .first-section {
    height: auto;
    padding: 40px 16px;
  }

  .third-section {
    padding: 40px 16px;
    height: auto;
  }

  .section--wrapper {
    width: 100%;
  }

  .main-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 24px;
  }

  .sub-title {
    font-size: 12px;
    line-height: 14px;
  }

  .wrapper--flex {
    gap: 12px;
  }

  .text-wrapper {
    gap: 8px;
    -webkit-box-align: center;
    align-items: center;
    white-space: pre-wrap;
    text-align: center;
  }

  .text-wrapper .title {
    font-size: 16px;
    line-height: 19px;
  }

  .text-wrapper .description {
    font-size: 12px;
    line-height: 14px;
  }

  .box--long {
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .box--text {
    font-size: 12px;
    line-height: 14px;
  }

  .box--content {
    font-size: 12px;
    line-height: 14px;
  }

  .saaspage > .section--title.saas-title {
    font-size: 20px;
    line-height: 24px;
  }

  .saaspage > .section--subtitle.saas-subtitle {
    font-size: 12px;
    line-height: 14px;
  }
}

/*============ 상단 타이틀 ===============*/
.top--title--section {
  width: 100%;
  padding: 120px 0 80px;
  background: linear-gradient(
    360deg,
    rgb(206, 235, 255) 0%,
    rgb(255, 255, 255) 100%
  );
  position: relative;
  overflow: hidden;
}

.top--title--wrapper {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  text-align: center;
  margin-bottom: 120px;
  color: var(--blue);
}

/* SaaS 상단 타이틀 */
.top--title--section.saas {
  padding: 120px 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(170, 110, 255, 0.3) 100%
  );
  color: rgb(170, 110, 255);
}

.top--title--wrapper.saas {
  color: rgb(170, 110, 255);
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .top--title--section {
    height: auto;
    padding: 80px 0px;
  }

  .top--title--wrapper {
    margin-bottom: 80px;
  }

  .top--title--section.saas {
    padding: 80px 0px;
  }
}
/*============= 통합 경영관리 서비스 ===========*/

.service {
  padding: 0px 16px;
}

.service-content {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 22px 0;
}

.service-description {
  font-size: 24px;
  line-height: 36px;
}

.service-description > span {
  font-weight: 600;
  color: var(--blue);
}

.service-description.end {
  text-align: end;
}

.service-caption {
  font-size: 16px;
  line-height: 24px;
  text-align: end;
  margin-top: 60px;
}

.service-caption > a {
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
}

.service-content-box {
  display: flex;
}

.service-content > .service-content-box > .text-icon {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
}

.service-content > .service-content-box > .text-icon > p {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.service-content > .service-content-box > .reverse-margin {
  margin-right: -30px;
}

.service-content > .service-content-box > .margin {
  margin-right: 34px;
}

.service-content > .service-content-box > div image {
  display: flex;
}

@media only screen and (max-width: 1100px) {
  .second-section {
    height: auto;
    padding: 40px 16px;
  }

  .service-content {
    flex-direction: column;
    margin: 20px 0px;
    padding: 0px;
  }

  .service-description {
    font-size: 12px;
    line-height: 18px;
    white-space: pre-wrap;
    text-align: center;
  }

  .service-description.end {
    text-align: center;
  }

  .service-caption {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-top: 40px;
  }
  .service-content > .service-content-box > .text-icon {
    width: 112.5px;
    height: 120px;
  }

  .service-content-box.arrow .margin > img {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }

  .service-content > .service-content-box > .text-icon > p {
    font-size: 9px;
    line-height: 11px;
  }

  .service-content > .service-content-box > .text-icon > img {
    width: 75px;
    height: 75px;
  }

  .service-content > .service-content-box > .reverse-margin {
    margin-right: 0;
  }
  .service-content > .service-content-box > .margin {
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .title--wrapper {
    margin: 0px auto 40px;
  }

  .section--title {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    white-space: pre-wrap;
  }

  .section--subtitle {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
  }
}

/*=========== Concierge =============*/
.four-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.four-card-list > button {
  height: 120px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: var(--blue);
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--blue);
  border-radius: 4px;
  cursor: pointer;
  overflow-wrap: break-word;
  white-space: pre-line;
}

.four-card-list > button.active {
  background-color: var(--blue);
  color: rgb(255, 255, 255);
}

.four-card-list > button:hover {
  background-color: var(--blue);
  color: rgb(255, 255, 255);
}

@media only screen and (max-width: 768px) {
  .four-card-list {
    gap: 8px;
  }
  .four-card-list > button {
    height: 60px;
    font-size: 12px;
    line-height: 14px;
  }
}

/*============ SaaS할인 서비스 =================*/
.saas-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  /*height: 548px;*/
  padding: 120px 0;
  overflow: hidden;
}

.saas-container.saaspage {
  background-color: rgb(249, 249, 249);
}

.saas-container > .horizontal-wrapper {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 60px 0;
}

.saas-container > a {
  max-width: 206px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 40px;
  color: rgb(255, 255, 255);
  background-color: rgb(44, 44, 44);
  border-radius: 4px;
}

.saas-container > .horizontal-wrapper > .horizontal-content {
  display: flex;
  height: 48px;
  -webkit-box-align: center;
  align-items: center;
  flex-shrink: 0;
  gap: 80px;
  animation: 10000ms linear 0s infinite normal backwards running animation-saas;
  padding-left: 80px;
}

.saas-content {
  max-width: 1180px;
  width: 100%;
  height: 700px;
  display: flex;
  gap: 20px;
  margin: 60px auto;
  overflow: hidden;
  mask-image: linear-gradient(
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1)
  );
}

.consultant-btn {
  max-width: 206px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 40px;
  border-radius: 4px;
  background-color: rgb(170, 110, 255);
  color: rgb(255, 255, 255);
}

@media only screen and (max-width: 1100px) {
  .saas-content {
    max-width: fit-content;
    height: 400px;
    gap: 8px;
  }

  .consultant-btn {
    font-size: 12px;
    line-height: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .saas-container {
    height: auto;
    padding: 40px 16px;
  }

  .saas-container > .section--subtitle {
    white-space: pre-wrap;
  }

  .saas-container > .horizontal-wrapper {
    margin: 40px 0px;
  }

  .saas-container > a {
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
  }

  .saas-container > .horizontal-wrapper > .horizontal-content {
    height: 21px;
    gap: 40px;
    padding-left: 40px;
  }

  .saas-container > .horizontal-wrapper > .horizontal-content .saas-img-item {
    height: 14px;
  }
}

@keyframes animation-saas {
  0% {
    transform: translate(0px);
  }
  100% {
    transform: translate(-100%);
  }
}

/*============= 자가 진단 ==============*/
.selfcheck-container {
  /* height: 808px; */
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 120px 16px;
  background-color: rgb(44, 44, 44);
  color: rgb(255, 255, 255);
}

.selfcheck-container > div {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 16px;
  margin: 60px 0;
}

.selfcheck-container > div > p {
  font-size: 24px;
  line-height: 34px;
  white-space: pre-wrap;
  text-align: center;
}

.selfcheck-container > div > p > span {
  font-weight: 700;
  color: var(--blue);
}

.selfcheck-container > button {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 40px;
  color: rgb(44, 44, 44);
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .selfcheck-container {
    height: auto;
    padding: 40px 16px;
  }

  .selfcheck-container > div {
    gap: 12px;
    margin: 40px 0;
  }

  .selfcheck-container > div > p {
    font-size: 12px;
    line-height: 14px;
    white-space: pre-wrap;
    text-align: center;
  }

  .selfcheck-container > button {
    width: 100%;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
  }
}
/*============ Modal ===============*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);

  &.active {
    display: flex;
  }
}

@media only screen and (max-width: 1100px) {
  .modal-overlay {
    padding: 0 16px;
  }
}

/* section6 - 고객 성장 사례  */
.carousel-section {
  display: flex;
  flex-direction: column;
  padding: 120px 0;
  background-color: rgb(249, 249, 249);
}

.carousel-section .carousel-section-title {
  padding: 0px 16px;
}

.swiper {
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1)
  );
}

.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper .swiper-wrapper .swiper-slide {
  min-height: 240px;
  height: auto;
  padding: 31px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 4px;
}

.swiper-slide > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.swiper-slide > div > .swiper-slide__title {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.swiper-slide > div > .swiper-slide__author {
  line-height: 24px;
}

.swiper-slide .swiper-slide__description {
  line-height: 19px;
  color: rgb(137, 137, 137);
}

@media only screen and (max-width: 768px) {
  .carousel-section {
    height: auto;
    padding: 40px 0px;
  }

  .swiper {
    mask-image: none;
  }

  .swiper .swiper-wrapper .swiper-slide {
    min-height: 160px;
    padding: 16px;
  }

  .swiper-slide > div {
    margin-bottom: 16px;
  }

  .swiper-slide > div > .swiper-slide__title {
    font-size: 16px;
    line-height: 19px;
  }

  .swiper-slide > div > .swiper-slide__author {
    font-size: 12px;
    line-height: 14px;
  }

  .swiper-slide .swiper-slide__description {
    font-size: 12px;
    line-height: 14px;
  }
}

/*============ 기존 -> 스윙.. ===============*/
.eight-section {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  height: 522px;
  background-color: rgb(249, 249, 249);
  padding: 60px 16px 120px;
}

.eight-section-card {
  padding: 36px 32px;
  border-radius: 60px;
}

.eight-section-wrapper {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
}

.eight-section-white {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 153, 255);
  border: 1px solid rgb(192, 229, 255);
}

.eight-section-white > p {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.eight-section-blue {
  background-color: rgb(0, 153, 255);
  color: rgb(255, 255, 255);
}

.eight-section-blue > p {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.eight-section-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin-top: 32px;
}

.eight-section-list > li > span {
  margin-right: 12px;
}

@media only screen and (max-width: 1100px) {
  .eight-section {
    height: auto;
    padding: 40px 16px;
  }

  .eight-section-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .eight-section-wrapper > img {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }

  .eight-section-white {
    padding: 20px 25px;
  }

  .eight-section-white > p {
    font-size: 20px;
    line-height: 24px;
  }

  .eight-section-blue > p {
    font-size: 20px;
    line-height: 24px;
  }

  .eight-section-list {
    margin-top: 20px;
    font-size: 12px;
    line-height: 14px;
    gap: 8px;
  }
}

/*=================*/

.ninth-section {
  height: 520px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: linear-gradient(
    93.92deg,
    rgb(123, 54, 235) 0%,
    rgb(101, 154, 255) 100.91%
  );
}

.ninth-section > img {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.ninth-section > p {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: rgb(255, 255, 255);
  margin: 40px 0;
}

.ninth-section > button {
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ninth-section {
    height: auto;
    padding: 40px 16px;
  }

  .ninth-section > img {
    width: 120px;
    height: 120px;
  }

  .ninth-section > p {
    font-size: 16px;
    line-height: 19px;
    margin: 20px 0px;
    white-space: pre-wrap;
    text-align: center;
  }

  .ninth-section > button {
    width: 100%;
    font-size: 12px;
    line-height: 14px;
  }
}

/* ninth section 꿀팁 - swiper */
.swiper2 {
  width: 100%;
}

.swiper2 > .swiper-wrapper {
  width: 100%;
}

.swiper2 > .swiper-wrapper > .swiper-slide {
  width: 100%;
  max-width: 1000px;
  min-width: 600px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 60px 20px;
  background-color: rgb(255, 255, 255);
}

.swiper2 > .swiper-wrapper > .swiper-slide > .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  padding-bottom: 40px;
  color: #000000;
}

.swiper2 > .swiper-wrapper > .swiper-slide > img {
  width: 100%;
  height: 100%;
}

/*========= 가격 안내 ===========*/

.tenth-section {
  padding: 120px 16px 0;
}

.tenth-wrapper {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.price-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

.price-sub-title {
  font-size: 20px;
  color: rgb(130, 130, 130);
  line-height: 24px;
  text-align: center;
  margin-top: 12px;
}

.price-info-list {
  /* min-height: 500px; */
  display: flex;
  gap: 40px;
  white-space: pre-wrap;
  margin: 40px 0;
}

.price-info-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  border: 1px solid rgba(0, 153, 255, 0.8);
  border-radius: 16px;
}

.price-info-item-title-wrapper {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 20px 0;
  color: #ffffff;
  background-color: #0099ff;
  border-radius: 14px 14px 0 0;
}
.price-info-item-title-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 153, 255, 0.8);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.price-info-item-sub-title-wrapper {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 30px 0;
}
.price-info-item-sub-title-wrapper::after {
    content: "";
    position: absolute;
    left: 24px;      /* 원하는 여백(px) */
    right: 24px;     /* 원하는 여백(px) */
    bottom: 0;
    height: 0;
    border-bottom: 1px solid rgba(0, 153, 255, 0.8);
    pointer-events: none;
}

.spacing {
  flex: 0 0 auto;
  height: 19px;
}

.price-info-item-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 0;
  line-height: 19px;
  flex: 1 1 0%;
}

.price-info-item-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.price-info-item-content {
  font-size: 20px;
}

.price-info-item-content2 {
  font-size: 16px;
  line-height: 24px;
  color: rgb(130, 130, 130);
}

.price-info-item-content-wrapper2 {
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  gap: 12px;
  padding: 30px 0;
  line-height: 19px;
  flex: 1 1 0%;
}

.price-info-item-content3 {
  margin-left: 5%;
  font-size: 14px;
  line-height: 24px;
  color: rgb(130, 130, 130);
}

.price-info-item-price {
  background-color: #0099ff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  margin-top: auto;
  padding: 20px 0px;
  border-radius: 0 0 14px 14px;
}

.price-info-item-price > span {
  font-size: 12px;
  font-weight: 400;
  padding-left: 8px;
}

.price-info-item-price2 {
  background-color: #7200b0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  margin-top: auto;
  padding: 20px 0px;
  border-radius: 0 0 14px 14px;
}
.price-info-item-price2 > span {
  font-size: 12px;
  font-weight: 400;
  padding-left: 8px;
}

.price-description {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 22px;
  color: rgb(130, 130, 130);
  margin: 0 auto 120px;
}

.price-description > p {
  width: 100%;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .tenth-section {
    padding: 40px 16px;
  }

  .price-info-list {
    flex-direction: column;
    margin: 40px 0px 12px;
    gap: 20px;
  }

  .price-title {
    font-size: 20px;
    line-height: 24px;
  }

  .price-sub-title {
    font-size: 12px;
    line-height: 14px;
  }
  .price-info-item-sub-title-wrapper {
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    padding: 16px 14px;
  }

  .price-info-item-content-wrapper {
    min-height: 80px;
    justify-content: center;
    -webkit-box-pack: center;
    padding: 16px 14px;
    gap: 4px;
  }
  .price-info-item-content-wrapper2 {
    min-height: 80px;
    justify-content: center;
    -webkit-box-pack: center;
    padding: 16px 14px;
    gap: 4px;
  }

  .price-info-item-content,
  .price-info-item-content2 {
    font-size: 12px;
    line-height: 14px;
  }

  .price-info-item-title {
    font-size: 16px;
    line-height: 19px;
  }

  .price-info-item-price {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 0px;
  }

  .price-info-item-price2 {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 0px;
  }

  .price-description {
    margin: 0 auto 40px;
    font-size: 12px;
  }
}

.apply-section {
  display: flex;
  justify-content: center;
  padding: 40px 0 120px;
}
.consultation-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.consultation-title {
  background: linear-gradient(
    90deg,
    rgb(123, 54, 235) 0%,
    rgb(101, 154, 255) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  margin-bottom: 12px;
}

.consultation-title > span {
  color: white;
}

.consultation-description {
  color: rgb(44, 44, 44);
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.consultation-form {
  position: relative;
  width: 100%;
  max-width: 544px;
  padding: 47px 40px 40px;
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  border: 1px solid rgb(204, 204, 204);
  margin-top: 40px;
  gap: 20px;
}

.consultation-form > div > .counsultation-wrapper2 {
  width: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px;
  font: inherit;
  vertical-align: baseline;
  padding-bottom: 20px;
}

/* .consultation-wrapper > .counsultation-wrapper2 > label {
  display: flex;
  flex-direction: column;
} */

.consultation-wrapper > .counsultation-wrapper2 > label > span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: rgb(136, 136, 136);
}

.consultation-input {
  width: 100%;
  padding: 10.5px 0px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid rgb(204, 204, 204);
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 16px;
}

.consultation-wrapper > .counsultation-wrapper2 > .textarea {
  width: 100%;
  height: 160px;
  padding: 20px;
  border: 1px solid rgb(204, 204, 204);
  margin-top: 10px;
  resize: none;
}

.consultation-button {
  width: 100%;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: white;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgb(123, 54, 235) 0%,
    rgb(101, 154, 255) 100%
  );
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .apply-section {
    padding: 0;
  }

  .consultation-wrapper {
    gap: 8px;
  }

  .consultation-title {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    white-space: pre-wrap;
  }

  .consultation-description {
    font-size: 12px;
    line-height: 14px;
  }

  .consultation-form {
    padding: 24px 20px;
  }
}

/*======= 스크롤 ======*/

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-container.horizontal {
  display: flex;
  white-space: nowrap;
}

.scroll-content.horizontal {
  display: flex;
  gap: 20px;
}

.scroll-left {
  margin-bottom: 20px;
}

/* 상하 스크롤 스타일 */
.scroll-container.vertical {
  display: block;
}

.scroll-content.vertical {
  display: block;
  /* min-width: 380px; */
}

/* 개별 아이템 스타일 */
.scroll-item {
  border-radius: 20px;
}

.scroll-item:nth-last-child(1) {
  margin-right: 20px;
}

.scroll-item.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  font-size: 20px;
  line-height: 19px;
  background-color: rgb(255, 255, 255);
  padding: 13px 20px;
}

.scroll-item.text {
  font-size: 19px;
  line-height: 25px;
  padding: 10px 20px;
  color: rgb(0, 101, 169); /* 텍스트 컬러 */
  background-color: rgba(255, 255, 255, 0.48); /* 텍스트 배경 */
  white-space: nowrap;
}

.scroll-content-item {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0px;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 20px;
}

.scroll-content-item .partner-icon {
  display: flex;
}

.scroll-content-item .partner-icon-m {
  display: none;
}

.scroll-content-item .partner {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 10px;
}

.scroll-content-item .partner .partner-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

.scroll-content-item .partner .partner-desc {
  font-size: 16px;
  line-height: 19px;
  color: rgb(42, 42, 42);
}

.scroll-left .scroll-content {
  animation: 20000ms linear 0s infinite normal backwards running scrollLeft;
}

.scroll-right .scroll-content {
  animation: 20000ms linear 0s infinite normal backwards running scrollRight;
}

.scroll-up .scroll-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  animation: 10000ms linear 0s infinite normal backwards running scrollUp;
}

.scroll-down .scroll-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  animation: 10000ms linear 0s infinite normal backwards running scrollDown;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1100px) {
  .scroll-up .scroll-content {
    gap: 8px;
    padding-top: 8px;
  }

  .scroll-wrapper.pc {
    display: none;
  }

  .scroll-content-item {
    padding: 16px 8px;
    border-radius: 8px;
    gap: 16px;
  }

  .scroll-content-item .partner-icon {
    display: none;
  }

  .scroll-content-item .partner-icon-m {
    display: flex;
  }
  .scroll-content-item .partner {
    gap: 8px;
  }

  .scroll-content-item .partner .partner-title {
    font-size: 12px;
    line-height: 14px;
  }

  .scroll-content-item .partner .partner-desc {
    font-size: 10px;
    line-height: 12px;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 768px) {
  .scroll-item {
    height: 28px;
    border-radius: 14px;
  }

  .scroll-item.text {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 12px;
  }

  .scroll-item.icon {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 12px;
  }

  .scroll-left {
    margin-bottom: 12px;
  }

  .scroll-content.horizontal {
    gap: 12px;
  }
}

/*========== 모달 알림 ============*/
.modal-notification {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease-out;
  white-space: pre-wrap;
}

.modal-notification-btn {
  background: white;
  color: black;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
  font-weight: bold;
}

@keyframes slideDown {
  from {
    top: -50px;
    opacity: 0;
  }
  to {
    top: 20px;
    opacity: 1;
  }
}

/*======= 모달 스크롤 ======*/
.slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  visibility: hidden;
}

.modal-slider-wrapper {
  /*position: relative;*/
  width: 100%;
  height: 150px;
  overflow: hidden;
  padding: 3px 0;
  cursor: grab;

  &.active {
    cursor: grabbing;
  }
}

.modal-slider-items {
  display: flex;
  position: absolute;
  width: 500%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.modal-slider-items.active {
  transition: 0.3s;
}

.modal-slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  pointer-events: none;
  position: relative;
  padding: 60px 20px;
  margin-right: 40px;
  background-color: #ffffff;
  .content {
    width: 100%;
    height: 430px; /* You can adjust this as needed */
    /* border: 1px solid #c8c8c8; */
    /* box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05); */
    border-radius: 4px;
    /* background-color: #fff; */
    font-weight: 700;
    font-size: 50px;
    color: black;
    background-size: contain; /* Ensures the image covers the entire content area */
    background-position: center; /* Centers the image within the container */
    background-repeat: no-repeat; /* Prevents the image from repeating */
  }
}

.modal-slider-item > .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  color: #000000;
  padding-bottom: 40px;
}

@media only screen and (max-width: 1100px) {
  .slider {
    padding: 0px 16px;
  }
}

/* faq page */
.faq-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(-305px + 100dvh);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgb(238, 238, 238);
  padding: 40px 80px;
  z-index: 10;
}

.faq-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 40px 140px 54px;
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 12px;
}

.faq-inner > h2 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(0, 153, 255);
}

.expander > button {
  display: flex;
  align-items: center;
  text-align: start;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  padding: 30px 0;
  gap: 4px;
  cursor: pointer;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.expander > button > img {
  display: flex;
  width: 28px;
  height: 28px;
}

.expander > button > img:last-of-type {
  margin-left: auto;
}

.expander-content {
  display: flex;
  flex-direction: column;
  max-height: 0;
  line-height: 24px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  padding: 0 32px;
  gap: 4px;
  border-bottom: 0px;
  background-color: rgb(238, 238, 238);
  white-space: pre-line;
}

.expander-content.active {
  max-height: 500px;
  padding: 20px 32px;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.expander-content > .faq-list__title {
  margin-bottom: 6px;
}

.faq-list__contents {
  display: flex;
  flex-direction: column;
}

.faq-list__contents > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.expander-content > img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgb(204, 204, 204);
  margin-top: 10px;
}

.expander-icon {
  transition: transform 0.2s ease;
}

.expander-icon.rotated {
  transform: scaleY(-1);
}

@media only screen and (max-width: 1100px) {
  .faq-inner {
    padding: 40px 60px 54px;
  }

  .faq-inner > h2 {
    font-size: 20px;
    font-weight: 600;
  }
}

@media only screen and (max-width: 768px) {
  .faq-wrapper {
    padding: 0;
  }

  .faq-inner {
    min-height: calc(-50px + 100dvh);
    border-radius: 0px;
    padding: 20px 20px 40px;
  }

  .expander > button {
    font-size: 15px;
    line-height: 20px;
    padding: 20px 0px;
  }

  .expander-content {
    max-height: 0;
    padding: 0 20px;
    font-size: 14px;
  }

  .expander-content.active {
    max-height: 1000px;
    padding: 20px;
  }

  .expander > button > img {
    width: 20px;
    height: 20px;
  }
}

/* 개인정보 및 이용약관 상단 nav */
.terms-privacy-nav {
  display: flex;
  max-width: 1440px;
  padding: 20px;
  margin: 0 auto;
}

.terms-privacy-nav .nav__item--logo > img {
  width: 60px;
  height: 60px;
}

/* 개인정보 및 이용약관 - layout */
.terms-privacy-main {
  width: 100%;
  /* height: calc(100vh - 80px); */
  background-color: #f9f9f9;
  padding: 40px 0;
}

.terms-privacy-wrap {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* 개인정보 및 이용약관 - 목차 */
.terms-privacy-sidenav {
  position: fixed;
  width: 100%;
  max-width: 300px;
  height: fit-content;
  padding: 20px;
  border-radius: 16px;
  background-color: #ffffff;
  /* box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1); */
}

.terms-privacy-sidenav__title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 12px;
}

.terms-privacy-sidenav__list {
  display: flex;
  flex-direction: column;
  line-height: 20px;
  gap: 6px;
}

.terms-privacy-sidenav__list > li > a:hover {
  color: #3498db;
  font-weight: 600;
}

/* 개인정보 및 이용약관 - 메인 컨텐츠 */
.terms-privacy-contents {
  line-height: 24px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 16px;
  margin-left: 320px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-privacy-contents__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  padding-bottom: 40px;
}

.terms-privacy-contents__subtitle {
  font-size: 20px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #3b4fbf;
}

.terms-privacy-contents__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-privacy-contents__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-privacy-contents__items > ul {
  list-style-type: disc;
  padding-left: 16px;
}

.terms-privacy-contents__items > ul > li > span {
  font-weight: 600;
}

.terms-privacy-contents__items .text-indent1 {
  padding-left: 16px;
}

.terms-privacy-contents__items .text-indent2 {
  padding-left: 24px;
}

/* 개인정보 및 이용약관 - 표 */
.terms-privacy-table {
  font-size: 15px;
  text-align: center;
  border: 1px solid #f5f5f5;
}

.terms-privacy-table > thead {
  font-weight: 500;
  background-color: #f5f5f5;
}

.terms-privacy-table > tbody > tr {
  border-bottom: 1px solid #f5f5f5;
}

.terms-privacy-table > thead > tr > th {
  padding: 4px 0;
}

.terms-privacy-table > tbody > tr > td {
  padding: 4px 0;
}

/* 토커 챗봇 버튼 */
.talker-button {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: #b1deff;
  border: 2px solid #fff;
  z-index: 10;
  right: 40px;
  bottom: 40px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.talker-button:hover {
  transform: scale(1.1);
}

.talker-button__chatbot {
  position: absolute;
  /* content: ""; */
  width: 58px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.talker-button__background {
  width: 116px;
  height: 116px;
}
@keyframes talkerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 토커 챗봇 모달 */
.talker-modal {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 400px;
  height: 64vh;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000;
}

.talker-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.talker-modal__close-container {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  justify-content: flex-end;
  align-items: center;
  /* background-color: #f8fafc; */
  padding: 8px;
}

.talker-modal__close {
  width: 24px;
  height: 24px;
  background-image: url(/img/icon_close_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1440px) {
  .talker-modal {
    width: 380px;
    height: 80vh;
  }
}

@media only screen and (max-width: 1100px) {
  /* 토커 챗봇 버튼 */
  .talker-button {
    width: 96px;
    height: 96px;
  }

  .talker-button__chatbot {
    width: 46px;
    height: 46px;
  }

  .talker-button__background {
    width: 92px;
    height: 92px;
  }
}

@media only screen and (max-width: 768px) {
  /* 토커 챗봇 버튼 */
  .talker-button {
    width: 84px;
    height: 84px;
    right: 20px;
    bottom: 20px;
  }

  .talker-button__chatbot {
    width: 40px;
    height: 40px;
  }

  .talker-button__background {
    width: 80px;
    height: 80px;
  }

  /* 토커 챗봇 모달 */
  .talker-modal {
    width: 100%;
    max-width: 420px;
    /* height: calc(100dvh - 39px); */
    height: 100dvh;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
  }

  .talker-modal__close {
    width: 20px;
    height: 20px;
  }
}


.loading-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    gap: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}