@charset "utf-8";

/* 기본 설정 */
* {
  box-sizing: border-box;
  font-family: Pretendard;
}

html {
  scroll-behavior: smooth;
}

/* 기본값: 일반 스크롤 */
body {
  height: auto;
  overflow-y: auto;
  background-color: #fdfdfd;
}

/* 공통 리셋 */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
dl,
dd,
dt,
address,
small,
a,
span,
br,
hr,
button,
img {
  margin: 0;
  padding: 0;
  word-break: keep-all;
}

a {
  text-decoration: none;
  color: #000;
}

.hideText {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background-color: #fff;
  transition: all 0.25s ease;
  font-weight: 300;
  z-index: 9999;
}

.header-container {
  width: 100%;
  height: 80px;
  padding: 0 140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-container h1 {
  width: 150px;
  height: auto;
  background: url(../img/BFlogo.png) no-repeat center / contain;
}

#header h1 > a {
  display: block;
  width: 100%;
  height: 100%;
}

.header-right {
  display: flex;
  align-items: center;
}

/* GNB */
#gnb {
  display: flex;
  justify-content: center;
}

#gnb a {
  cursor: pointer;
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  transition: color 0.5s ease;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%; /* 23.8px */
  letter-spacing: -0.425px;
}

#gnb a:hover,
#gnb a.active {
  color: #ff0000;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.toggle div {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menuToggle {
  display: none;
}

/* contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 20000;
  pointer-events: none;
}

.contact-modal.open {
  pointer-events: auto;
}

.contact-modal-card {
  position: fixed;
  inset: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 80px 160px;
  opacity: 0;
  transform: translateY(-6%);
  transition:
    transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 480ms ease;
  z-index: 20001;
  overflow: auto;
}

.contact-modal.open .contact-modal-card {
  transform: translateY(0);
  opacity: 1;
}

.contact-modal-card .contact-close {
  position: absolute;
  right: 166px;
  top: 86px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.contact-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-card-content img {
  width: 150px;
  margin-bottom: 20px;
}

.contact-card-content h2 {
  margin-bottom: 8px;
  color: #f00;
  font-size: 60px;
  font-weight: 700;
  line-height: 140%; /* 84px */
  letter-spacing: -1.5px;
}

.contact-card-content h3 {
  margin-bottom: 40px;
  color: #313131;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.6px;
}

.contact-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #313131;
}

.contact-columns-text {
  display: flex;
  gap: 8px;
}

.contact-columns-text h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.45px;
}

.contact-columns-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.45px;
}

/* lang modal */
.lang-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 100000;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.lang-modal.open {
  display: block;
}

.lang-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 100001;
  cursor: pointer;
}

.lang-modal-card {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: none;
  z-index: 100002; /* above overlay */
}

.lang-modal-card::before,
.lang-modal-card::after {
  content: "";
  position: absolute;
  left: var(--arrow-left, 50%);
  transform: translateX(-50%);
}

.lang-modal-card::after {
  top: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.lang-modal-card::before {
  top: -10px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  z-index: -1;
}

.lang-modal-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-option {
  background: transparent;
  border: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%; /* 27.2px */
  letter-spacing: -0.425px;
  cursor: pointer;
}

.lang-option:focus,
.lang-option:focus-visible {
  outline: none;
  box-shadow: none;
}

.lang-option {
  color: #111;
}

body.lang-en .lang-option[data-lang="en"],
body.lang-ko .lang-option[data-lang="ko"],
body.lang-ru .lang-option[data-lang="ru"],
body.lang-uz .lang-option[data-lang="uz"] {
  color: #f00;
}

.lang-divider {
  width: 1px;
  height: 24px;
  background: #e0e0e0;
}

.no-chrome header,
.no-chrome #footer {
  display: none !important;
}

.no-chrome body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* menu modal */
.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 120000;
  pointer-events: none;
}

.menu-modal.open {
  pointer-events: auto;
}

.menu-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 200ms ease;
}

.menu-modal.open .menu-modal-overlay {
  opacity: 1;
}

.menu-modal-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(580px, 90%);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.3, 1);
  z-index: 120001;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu-modal.open .menu-modal-card {
  transform: translateX(0);
}

.menu-close {
  background: transparent;
  border: none;
  align-self: flex-end;
  cursor: pointer;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #111;
}

.menu-list a {
  font-size: 28px;
  font-weight: 500;
  line-height: 120%; /* 42px */
  letter-spacing: -0.7px;
}

.menu-item {
  display: flex;
  flex-direction: column;
}

.menu-item .menu-guide-toggle {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #111;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%; /* 42px */
  letter-spacing: -0.7px;
}

.menu-guide-toggle svg {
  transform-origin: center;
  transition: transform 200ms ease;
}

.menu-guide-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Prevent blue default color on click/focus in some browsers */
.menu-item .menu-guide-toggle:focus,
.menu-item .menu-guide-toggle:active,
.menu-item .menu-guide-toggle:hover {
  color: #111;
  -webkit-tap-highlight-color: transparent;
}

/* accessible focus-visible indicator */
.menu-item .menu-guide-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
  border-radius: 8px;
}

.menu-sub {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.menu-sub a {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.5px;
}

.menu-sub.open {
  display: flex;
}

/* Footer */
#footer {
  width: 100%;
  background: #ffffff;
}

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

.footer-copyright {
  color: #6f6f6f;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.4px;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.35px;
}

.footer-bottom a {
  color: #969696;
}

.footer-bottom a:first-child,
.footer-bottom a:nth-child(3) {
  color: #555;
}

.footer-socialWrap {
  display: flex;
  gap: 12px;
}

.footer-socialWrap img {
  width: 24px;
  height: auto;
}

/* terms */
.terms {
  padding: 160px 160px 80px 160px;
  color: #111;
}

.terms h1 {
  margin-bottom: 54px;
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  line-height: 140%; /* 49px */
  letter-spacing: -0.875px;
}

.terms h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.6px;
}

.terms h5 {
  margin: 32px 0 20px 0;
  color: #555;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.5px;
}

.terms h2 {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%; /* 32px */
  letter-spacing: -0.5px;
}

.terms div {
  margin-left: 24px;
  color: #555;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.5px;
}

/* top button */
.btn-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  padding: 10px;
  background: #111;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 9999px;
  box-shadow: 0 5.3px 10.6px 0 rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  z-index: 99999;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.btn-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-top .btn-top-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -0.5px;
}

/* Main Scroll Page 설정 */
body {
  height: auto;
  overflow-y: auto;
}

.slide-wrapper {
  width: 100%;
  margin-top: -75px;
  display: block;
}

.slide {
  width: 100%;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* mainHome */
#mainHome {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mainHome-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
}

.mainHome-title {
  color: #121212;
  text-align: center;
  font-size: 80px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -2px;
}

.mainHome-red-letter {
  color: #e60000;
}

.mainHome-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 54px;
}

.mainHome-store-btn a img {
  height: 55px;
}

.mainHome-buyfuture-text {
  z-index: 2;
}

.mainHome-buyfuture-text img {
  height: 132.29px;
}

/* mainIntro */
#mainIntro {
  width: 100%;
  position: relative;
  background: none;
}

#mainIntro.fadeUp {
  background: url(../img/mainIntroBg.png) no-repeat center center;
  background-size: cover;
  animation: fadeUp 1s ease-in-out;
}

.mainIntro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  text-align: center;
}

.mainIntro-subtitle {
  color: #121212;
  text-align: center;
  font-size: 54px;
  font-weight: 400;
  line-height: 160%; /* 86.4px */
  letter-spacing: -1.35px;
  opacity: 0;
}

.mainIntro-title {
  color: #121212;
  text-align: center;
  font-size: 72px;
  font-weight: 600;
  line-height: 160%; /* 115.2px */
  letter-spacing: -1.8px;
  opacity: 0;
}

/* mainAbout */
#mainAbout {
  width: 100%;
  height: 400vh;
  position: relative;
  padding: 80px 0 0 0;
}

.mainAbout-container {
  max-width: 1440px;
  height: calc(100vh - 80px);
  margin: 0 auto;
  position: sticky;
  overflow: hidden;
  position: relative;
}

.mainAbout-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.mainAbout-slide {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 120px 0 220px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
  z-index: 0;
}

.mainAbout-txt {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-top: 80px;
}

.mainAbout-txt h2 {
  color: #f00;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%; /* 56px */
  letter-spacing: -0.32px;
}

.mainAbout-txt h3 {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -0.4px;
}

.mainAbout-txt p {
  margin-top: 12px;
  color: #555;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.mainAbout-img {
  position: relative;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  margin-right: 100px;
  transform: scale(0.8) translateX(100px);
}

.mainAbout-img img {
  width: 360px;
}

.mainAbout-slide.active {
  z-index: 10;
  pointer-events: auto;
}

.mainAbout-slide.active .mainAbout-txt {
  opacity: 1;
  transform: translateY(0);
}

.mainAbout-slide.active .mainAbout-img {
  opacity: 1;
  transform: scale(1) translateX(0);
  filter: blur(0);
  z-index: 10;
}

.mainAbout-slide.prev .mainAbout-img {
  opacity: 0.4;
  transform: scale(0.85) translateX(-170px);
  filter: blur(2px);
  z-index: 5;
}

.mainAbout-slide.next .mainAbout-img {
  opacity: 0.4;
  transform: scale(0.85) translateX(170px);
  filter: blur(2px);
  z-index: 4;
}

.mainAbout-controls {
  position: absolute;
  left: 220px;
  bottom: 200px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.mainAbout-controls button {
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #dadada;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #121212;
  font-size: 14px;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.35px;
}

.mainAbout-controls button:disabled {
  cursor: not-allowed;
  background: #f4f4f4;
  color: #b1b1b1;
}

.mainAbout-controls-mobile {
  display: none;
}

/* mainBffs */
#mainBffs {
  width: 100%;
}

.mainBffs-container {
  max-width: 1440px;
  padding: 100px 220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mainBffs-img img {
  width: 440px;
}

.mainBffs-text {
  padding: 20px 0;
}

.mainBffs-text h2 {
  color: #f00;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.32px;
}

.mainBffs-text h3 {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -0.4px;
}

.mainBffs-text p {
  margin-top: 16px;
  color: #555;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.mainBffs-img-mobile img {
  display: none;
}

.mainBffs-view-detail {
  width: fit-content;
  margin-top: 32px;
  padding: 6px 20px 6px 28px;
  border-radius: 9999px;
  background: #e60000;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.4px;
}

.mainBffs-view-detail a {
  color: #fff;
}

/* mainBiz */
#mainBiz {
  width: 100%;
}

.mainBiz-container {
  max-width: 1440px;
  padding: 100px 220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.mainBiz-column {
  display: flex;
  flex-direction: column;
}

.mainBiz-column img {
  width: 400px;
}

.mainBiz-text {
  margin-bottom: 160px;
  padding: 40px 0;
}

.mainBiz-text h2 {
  color: #f00;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.32px;
}

.mainBiz-text h3,
.mainBiz-text-second h3 {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -0.4px;
}

.mainBiz-text p,
.mainBiz-text-second p {
  margin-top: 16px;
  color: #555;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.mainBiz-text-second {
  padding: 80px 0 100px 0;
}

.mainBiz-view-detail {
  width: fit-content;
  margin-top: 32px;
  padding: 6px 20px 6px 28px;
  border-radius: 9999px;
  background: #e60000;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.4px;
}

.mainBiz-view-detail a {
  color: #fff;
}

.mainBiz-container-mobile {
  display: none;
}

/* mainContact */
#mainContact {
  width: 100%;
}

.mainContact-container {
  max-width: 1440px;
  padding: 100px 120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mainContact-container img {
  width: 210px;
}

.mainContact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.mainContact-title {
  color: #111;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.32px;
}

.mainContact-subtitle {
  color: #555;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.mainContact-button {
  width: fit-content;
  padding: 8px 20px;
  border-radius: 9999px;
  background: #ffdada;
}

.mainContact-button p {
  color: #e60000;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.4px;
}

/* bffsMain */
#bffsMain {
  width: 100%;
}

.bffsMain-container {
  max-width: 1440px;
  padding: 200px 240px 70px 240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bffsMain-container img {
  width: 480px;
  margin-bottom: 32px;
}

.bffsMain-container h3 {
  color: #121212;
  font-size: 54px;
  font-weight: 600;
  line-height: 160%; /* 86.4px */
  letter-spacing: -1.35px;
}

.bffsMain-container h2 {
  color: #e60000;
  font-size: 72px;
  font-weight: 600;
  line-height: 160%; /* 115.2px */
  letter-spacing: -1.8px;
}

.bffsMain-desc {
  margin-top: 32px;
  color: #555;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.bffsMain-desc-mobile {
  display: none;
}

/* bffsCharacter */
#bffsCharacter {
  width: 100%;
}

.bffsCharacter-container {
  max-width: 1440px;
  padding: 36px 220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.bffsCharacter-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.bffsCharacter-top video {
  width: 480px;
}

.bffsCharacter-text {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
}

.bffsCharacter-text h3 {
  color: #f00;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.24px;
}

.bffsCharacter-text h2 {
  color: #121212;
  font-size: 72px;
  font-weight: 700;
  line-height: 120%; /* 86.4px */
  letter-spacing: -0.72px;
}

.bffsCharacter-has {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bffsCharacter-kr-tags {
  margin: 18px 0 40px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bffsCharacter-kr-tags span,
.bffsCharacter-kr-tags-mobile span {
  width: fit-content;
  padding: 2px 12px;
  border-radius: 9999px;
  background: #ff7e14;
  color: #fff;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.bffsCharacter-kr-tags-mobile {
  display: none;
}

.bffsCharacter-has p {
  color: #555;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.bffsCharacter-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bffsCharacter-bottom-tags {
  margin: 18px 0 22px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bffsCharacter-bottom-tags span,
.bffsCharacter-bottom-tags-mobile span {
  padding: 2px 12px;
  border-radius: 9999px;
  background: #dadada;
  color: #121212;
  font-size: 16px;
  font-weight: 450;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.16px;
}

.bffsCharacter-bottom-tags-mobile {
  display: none;
}

.bffsCharacter-img {
  display: flex;
  gap: 30px;
}

.bffsCharacter-img img {
  width: 182px;
}

.bffsCharacter-img-mobile {
  display: none;
}

/* biz */
.biz-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* bizIntro */
#bizIntro {
  width: 100%;
}

.bizIntro-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bizIntro-logo {
  width: 200px;
  margin: 116px 0;
  align-self: center;
}

.bizIntro-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 10;
}

.bizIntro-text h2 {
  color: #313131;
  font-size: 44px;
  font-weight: 400;
  line-height: 160%; /* 102.4px */
  letter-spacing: -1.6px;
}

.bizIntro-text p {
  color: #121212;
  font-size: 64px;
  font-weight: 500;
  line-height: 120%; /* 117.6px */
  letter-spacing: -2.45px;
}

.bizIntro-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* bizRecommend */
.bizRecommend {
  width: 100%;
}

.bizRecommend-container {
  width: 100%;
  margin: 0 auto;
  padding: 82px 0 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bizRecommend-intro {
  margin-bottom: 84px;
}

.bizRecommend-intro h1 {
  color: #121212;
  font-size: 44px;
  font-weight: 600;
  line-height: 120%; /* 76.8px */
  letter-spacing: -1.6px;
}

.bizRecommend-problems {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bizRecommend-problems div {
  border-radius: 99px;
  border: 2.5px solid #cacaca;
  background: #fff;
  padding: 10px 32px;
  color: #313131;
  font-size: 28px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.4px;
}

.bizRecommend-problems div strong {
  font-weight: 700;
}

.bizRecommend-dot {
  margin: 100px 0;
  width: 8px;
}

.bizRecommend-question {
  margin-bottom: 130px;
  display: flex;
  align-items: start;
}

.bizRecommend-question img {
  width: 50px;
}

.bizRecommend-question h2 {
  color: #313131;
  font-size: 40px;
  font-weight: 400;
  line-height: 140%; /* 89.6px */
  letter-spacing: -1.6px;
}

.bizRecommend-cta {
  background: url(../img/BizRecommendBg.png) no-repeat center center / cover;
  width: 100%;
  padding: 200px 40px;
}

.bizRecommend-cta-text {
  color: #fff;
}

.bizRecommend-cta-text h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
}

.bizRecommend-cta-text h2 {
  margin: 20px 0 8px 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%; /* 76.8px */
  letter-spacing: -1.6px;
}

.bizRecommend-cta-text h1 {
  font-size: 58px;
  font-weight: 600;
  line-height: 120%; /* 100.8px */
  letter-spacing: -2.1px;
}

.bizRecommend-scroll-track {
  width: 100%;
  height: 300vh;
  position: relative;
  margin: 100px 0;
}

.bizRecommend-comparison {
  display: flex;
  position: sticky;
  top: 40px;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.bizRecommend-before,
.bizRecommend-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 60px;
}

.bizRecommend-before {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.bizRecommend-img-wrapper {
  width: 100%;
  position: relative;
}

.bizRecommend-img-wrapper img {
  max-width: 400px;
  width: 100%;
}

.bizRecommend-before .bizRecommend-comparison-text {
  will-change: opacity, transform;
}

.bizRecommend-comparison-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.bizRecommend-comparison-text h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.8px;
}

.bizRecommend-comparison-text h2 {
  margin: 32px 0 34px 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -1.2px;
}

.bizRecommend-comparison-text p {
  font-size: 25.116px;
  font-weight: 400;
  line-height: 140%; /* 35.163px */
  letter-spacing: -0.628px;
}

.bizRecommend-after {
  z-index: 2;
  pointer-events: none;
}

.bizRecommend-after-mask {
  width: 0%;
  overflow: hidden;
  position: relative;
  will-change: width;
  padding: 40px 0 0 0;
}

.bizRecommend-after-mask .bizRecommend-img-wrapper {
  width: 100%;
}

.bizRecommend-after-text {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.bizRecommend-pricing {
  color: #fff;
}

.bizRecommend-pricing h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 120%; /* 76.8px */
  letter-spacing: -1.6px;
}

.bizRecommend-pricing h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 120%; /* 100.8px */
  letter-spacing: -2.1px;
  margin: 8px 0 28px 0;
}

.bizRecommend-pricing p {
  font-size: 28px;
  font-weight: 400;
  line-height: 140%; /* 50.4px */
  letter-spacing: -0.9px;
}

.bizRecommend-download {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 54px;
}

.bizRecommend-download img {
  height: 60px;
}

/* bizInfo */
#bizInfo {
  width: 100%;
  height: 500vh;
  position: relative;
}

.bizInfo-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bizInfo-title-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.bizInfo-title-text h2 {
  color: #121212;
  font-size: 40px;
  font-weight: 600;
  line-height: 140%; /* 70px */
  letter-spacing: -1.25px;
}

.bizInfo-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bizInfo-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 100px;
  position: relative;
}

.bizInfo-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  margin-top: 80px;
  padding: 40px 0;
}

.bizInfo-block:last-child {
  padding: 40px 0 0 0;
}

.bizInfo-block-content {
  display: flex;
  flex-direction: column;
}

.bizInfo-block h3 {
  color: #e41b22;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}

.bizInfo-block h2 {
  margin: 4px 0 20px 0;
  color: #e41b22;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}

.bizInfo-block-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.bizInfo-block-text img {
  width: 18px;
}

.bizInfo-block-text p {
  color: #313131;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}

.bizInfo-block-img-first {
  margin-top: 30px;
  align-self: center;
  width: 400px;
}

.bizInfo-block-img-second {
  margin-top: 10px;
  align-self: center;
  width: 350px;
}

.bizInfo-block-img-third {
  margin-top: 20px;
  align-self: center;
  width: 400px;
}

.bizInfo-block-img-fourth {
  margin-top: 20px;
  align-self: center;
  width: 350px;
}

/* bizWhy */
#bizWhy {
  width: 100%;
  height: 1000vh;
  position: relative;
}

.bizWhy-container {
  width: 100%;
  margin: 0 auto;
  padding: 240px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.bizWhy-container h1 {
  margin-bottom: 80px;
  color: #121212;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%; /* 78px */
  letter-spacing: -1.5px;
  transition: opacity 0.3s ease;
  text-align: center;
}

.bizWhy-sticky {
  position: sticky;
  top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  z-index: 5;
}

.bizWhy-img-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transform-origin: center center;
  -webkit-font-smoothing: antialiased;
}

.bizWhy-img-first {
  max-width: 380px;
  max-height: 200px;
}

.bizWhy-img-center-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.bizWhy-img-second-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bizWhy-img-second {
  max-width: 120px;
  max-height: 222px;
}

.bizWhy-img-fourth {
  max-width: 120px;
  max-height: 140px;
}

.bizWhy-img-third-wrapper {
  max-width: 250px;
  max-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  will-change: border-radius;
  transform: translateZ(0);
}

.bizWhy-img-third {
  width: 300%;
  height: 300%;
  transform: scale(0.333333);
  transform-origin: top left;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.bizWhy-img-bottom-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.bizWhy-img-fifth {
  max-width: 280px;
  max-height: 180px;
}

.bizWhy-img-sixth {
  max-width: 160px;
  max-height: 180px;
}

.bizWhy-desc-first {
  position: absolute;
  top: 54px;
  left: 32px;
  z-index: 20;
  pointer-events: none;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%; /* 54px */
  letter-spacing: -0.9px;
}

.bizWhy-content-second {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(../img/BizWhy9.png) lightgray 50% / cover no-repeat;
  transform: translateY(0);
  opacity: 0;
  will-change: opacity;
}

.bizWhy-desc-second {
  position: absolute;
  top: 54px;
  left: 32px;
  transform: translate(0, 0);
  transition: opacity 0.5s ease;
  pointer-events: none;
  opacity: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%; /* 54px */
  letter-spacing: -0.9px;
}

.bizWhy-content-third {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(../img/BizWhy10.png) lightgray 50% / cover no-repeat;
  transform: translateY(0);
  opacity: 0;
  will-change: opacity;
}

.bizWhy-desc-third,
.bizWhy-desc-fourth {
  position: absolute;
  transform: translate(0, 0);
  transition: opacity 0.5s ease;
  pointer-events: none;
  opacity: 0;
  color: #fff;
}

.bizWhy-desc-third {
  top: 54px;
  left: 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
}

.bizWhy-desc-fourth {
  top: 176px;
  left: 32px;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.6px;
}

/* bizDownload */
#bizDownload {
  width: 100%;
}

.bizDownload-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #121212;
}

.bizDownload-container h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%; /* 76.8px */
  letter-spacing: -1.6px;
}

.bizDownload-container h1 {
  margin-top: 8px;
  font-size: 54px;
  font-weight: 600;
  line-height: 130%; /* 96.2px */
  letter-spacing: -1.85px;
}

.bizDownload-guide {
  position: relative;
  width: 100%;
  margin: 120px 0 60px 0;
}

.bizDownload-guide img {
  width: 100%;
}

.bizDownload-guide-btn {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: floatUpDown 2s ease-in-out infinite;
  white-space: nowrap;
}

.bizDownload-guide a {
  padding: 8px 20px 8px 24px;
  border-radius: 9999px;
  border: 2.5px solid #e41b22;
  background: #fff;
  box-shadow: 10.909px 16.364px 27.273px 0 rgba(0, 0, 0, 0.25);
  color: #e41b22;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}

.bizDownload-container h3 {
  margin-top: 18px;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%; /* 83.2px */
  letter-spacing: -1.6px;
}

.bizDownload-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bizDownload-btn a img {
  height: 48px;
}

/* bizFaq */
#bizFaq {
  width: 100%;
}

.bizFaq-container {
  width: 100%;
  margin: 0 auto;
  padding: 160px 16px 60px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.bizFaq-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bizFaq-title {
  color: #e41b22;
  font-size: 40px;
  font-weight: 500;
  line-height: 120%; /* 64.8px */
  letter-spacing: -1.35px;
}

.bizFaq-list {
  padding: 32px 24px;
  border-top: 2.5px solid #555;
}

.bizFaq-item {
  padding: 30px 0;
  border-bottom: 1px solid #d9d9d9;
}

.bizFaq-item:last-child {
  border-bottom: none;
}

.bizFaq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.bizFaq-toggle h3 {
  color: #313131;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.8px;
}

.bizFaq-chevron-down,
.bizFaq-chevron-up {
  transition: transform 0.3s ease;
}

.bizFaq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bizFaq-content p {
  margin-top: 10px;
  color: #313131;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 44.8px */
  letter-spacing: -0.7px;
}

.bizFaq-item.open .bizFaq-content p {
  opacity: 1;
}

.bizFaq-item.active .bizFaq-chevron-down {
  display: none;
}

.bizFaq-item.active .bizFaq-chevron-up {
  display: block !important;
}

.bizFaq-item:not(.active) .bizFaq-chevron-up {
  display: none;
}

.bizFaq-item:not(.active) .bizFaq-chevron-down {
  display: block;
}

/* userGuide */
.user-guide-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* userGuideMain */
#userGuideMain {
  width: 100%;
  padding: 60px 0 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-background, #fdfeff);
}

.userGuideMain-container {
  display: flex;
  flex-direction: column;
  color: #111;
}

.userGuideMain-container h2 {
  color: #e60000;
  font-size: 40px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}

.userGuideMain-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
}

.userGuideMain-sub h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}

.userGuideMain-container p {
  margin: 10px 0 20px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.userGuideMain-container img {
  width: 400px;
}

/* userGuideFirst */
#userGuideFirst {
  width: 100%;
  padding: 70px 0;
  background: linear-gradient(
    180deg,
    var(--bg-background, #fdfeff) 0%,
    var(--bg-surface-variant, #f7f8fa) 100%
  );
}

.userGuideFirst-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #111;
}

.userGuideFirst-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.userGuideFirst-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.8px;
}

.userGuideFirst-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideFirst-container img {
  margin-bottom: 40px;
  width: 300px;
}

.userGuideFirst-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideFirst-tip h4 {
  font-weight: 700;
}

/* userGuideSecond */
#userGuideSecond {
  width: 100%;
  padding: 60px 0 80px 0;
  background: var(--bg-surface-variant, #f7f8fa);
}

.userGuideSecond-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #111;
}

.userGuideSecond-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.userGuideSecond-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.8px;
}

.userGuideSecond-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideSecond-videoWrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.userGuideSecond-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.userGuideSecond-video video {
  border-radius: 16px;
  position: absolute;
  width: 200px;
  object-fit: cover;
  z-index: 2;
  opacity: 1;
}

.userGuideSecond-video img {
  position: relative;
  height: 448px;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.userGuideSecond-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideSecond-tip h4 {
  font-weight: 700;
}

/* userGuideThird */
#userGuideThird {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    var(--bg-surface-variant, #f7f8fa) 0%,
    var(--bg-background, #fdfeff) 100%
  );
}

.userGuideThird-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #111;
}

.userGuideThird-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.userGuideThird-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.8px;
}

.userGuideThird-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideThird-container img {
  margin-bottom: 40px;
  width: 300px;
}

.userGuideThird-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideThird-tip h4 {
  font-weight: 700;
}

/* userGuideFourth */
#userGuideFourth {
  width: 100%;
  padding: 50px 0;
  background: var(--bg-background, #fdfeff);
}

.userGuideFourth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #111;
}

.userGuideFourth-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.userGuideFourth-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.8px;
}

.userGuideFourth-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideFourth-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
}

.userGuideFourth-video video {
  border-radius: 16px;
  position: absolute;
  width: 268px;
  object-fit: cover;
  z-index: 2;
  opacity: 1;
}

.userGuideFourth-video img {
  position: relative;
  width: 300px;
  height: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.userGuideFourth-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideFourth-tip h4 {
  font-weight: 700;
}

/* userGuideFinal */
#userGuideFinal {
  width: 100%;
  padding: 60px 0 40px 0;
}

.userGuideFinal-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: #111;
}

.userGuideFinal-container h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.userGuideFinal-download {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.userGuideFinal-download img {
  height: 60px;
}

.userGuideFinal-container p {
  color: #999;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 16px */
  letter-spacing: -0.25px;
}

/* bizGuide */
.biz-guide-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* bizGuideMain */
#bizGuideMain {
  width: 100%;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-background, #fdfeff);
}

.bizGuideMain-bg {
  position: absolute;
  inset: 0;
  background: url(../img/BizGuideMainBg.png) center / cover no-repeat;
  opacity: 1;
  z-index: 1;
  height: 580px;
  align-self: flex-end;
}

.bizGuideMain-container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  color: #111;
}

.bizGuideMain-container h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}

.bizGuideMain-container h3 {
  color: #e60000;
  font-size: 40px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}

.bizGuideMain-container p {
  margin: 10px 0 34px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.bizGuideMain-container img {
  width: 350px;
}

/* bizGuideFirst */
#bizGuideFirst {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    var(--bg-background, #fdfeff) 0%,
    var(--bg-surface-variant, #f7f8fa) 100%
  );
}

.bizGuideFirst-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #111;
}

.bizGuideFirst-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.bizGuideFirst-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}

.bizGuideFirst-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideFirst-container img {
  width: 300px;
}

.bizGuideFirst-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideFirst-tip h4 {
  font-weight: 700;
}

/* bizGuideSecond */
#bizGuideSecond {
  width: 100%;
  padding: 80px 0;
  background: var(--bg-surface-variant, #f7f8fa);
}

.bizGuideSecond-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #111;
}

.bizGuideSecond-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.bizGuideSecond-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}

.bizGuideSecond-top p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideSecond-figure {
  display: flex;
  gap: 10px;
  margin: 40px 0 60px 0;
}

.bizGuideSecond-figure img {
  width: 200px;
}

.bizGuideSecond-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideSecond-tip h4 {
  font-weight: 700;
}

/* bizGuideThird */
#bizGuideThird {
  width: 100%;
  padding: 80px 0;
  background: var(--bg-surface-variant, #f7f8fa);
}

.bizGuideThird-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #111;
}

.bizGuideThird-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.bizGuideThird-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}

.bizGuideThird-top p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideThird-figure {
  display: flex;
  gap: 10px;
  margin: 40px 0 60px 0;
}

.bizGuideThird-figure img {
  width: 200px;
}

.bizGuideThird-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideThird-tip h4 {
  font-weight: 700;
}

/* bizGuideFourth */
#bizGuideFourth {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    var(--bg-surface-variant, #f7f8fa) 0%,
    var(--bg-background, #fdfeff) 100%
  );
}

.bizGuideFourth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  color: #111;
}

.bizGuideFourth-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.bizGuideFourth-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}

.bizGuideFourth-top p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideFourth-container img {
  width: 300px;
}

.bizGuideFourth-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideFourth-tip h4 {
  font-weight: 700;
}

/* bizGuideFifth */
#bizGuideFifth {
  width: 100%;
  padding: 50px 0;
  background: var(--bg-background, #fdfeff);
}

.bizGuideFifth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #111;
}

.bizGuideFifth-top h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.bizGuideFifth-top h3 {
  margin: 6px 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}

.bizGuideFifth-container p {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideFifth-container img {
  width: 300px;
}

.bizGuideFifth-tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e60000;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideFifth-tip h4 {
  font-weight: 700;
}

/* bizGuideFinal */
#bizGuideFinal {
  width: 100%;
  padding: 60px 0 40px 0;
}

.bizGuideFinal-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: #111;
}

.bizGuideFinal-container h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.bizGuideFinal-download {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.bizGuideFinal-download img {
  height: 60px;
}

.bizGuideFinal-container p {
  color: #999;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 16px */
  letter-spacing: -0.25px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUpDown {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: -12px;
  }
  100% {
    margin-top: 0px;
  }
}

@media (max-width: 1118px) {
  .header-container {
    padding: 0 16px;
  }

  .contact-modal-card {
    padding: 32px 16px;
  }

  .contact-modal-card .contact-close {
    right: 26px;
    top: 32px;
  }

  .contact-card-content img {
    width: 100px;
    margin-bottom: 12px;
  }

  .contact-card-content h2 {
    font-size: 22px;
    letter-spacing: -0.55px;
  }

  .contact-card-content h3 {
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: -0.325px;
  }

  .contact-columns-text h4 {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .contact-columns-text p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .footer-over {
    padding: 40px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-wrap {
    gap: 16px;
  }

  .footer-copyright {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    letter-spacing: -0.325px;
  }

  .terms {
    padding: 160px 80px 80px 80px;
  }

  .mainHome-title {
    font-size: 70px;
    letter-spacing: -1.75px;
  }

  .mainHome-buyfuture-text img {
    height: 86.331px;
  }

  .mainAbout-slide {
    height: auto;
    top: 0px;
    padding: 0px 16px;
    flex-direction: column;
    align-items: center;
  }

  .mainAbout-txt {
    padding-top: 0px;
    text-align: center;
  }

  .mainAbout-txt h2 {
    font-size: 18px;
    letter-spacing: -0.18px;
  }

  .mainAbout-txt h3 {
    font-size: 24px;
    letter-spacing: -0.24px;
  }

  .mainAbout-txt p {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .mainAbout-img {
    margin-right: -8px;
  }

  .mainAbout-img img {
    width: 270px;
  }

  .mainAbout-slide.prev .mainAbout-img {
    transform: scale(0.85) translateX(-70px);
  }

  .mainAbout-slide.next .mainAbout-img {
    transform: scale(0.85) translateX(70px);
  }

  .mainAbout-controls {
    display: none;
  }

  .mainAbout-controls-mobile {
    position: absolute;
    left: 0px;
    bottom: 30%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
  }

  .mainAbout-controls-mobile button {
    border: none;
    background: none;
  }

  .mainAbout-controls-mobile button:disabled {
    cursor: not-allowed;
  }

  .mainBffs-container {
    padding: 100px 16px;
    justify-content: center;
  }

  .mainBffs-img img {
    display: none;
  }

  .mainBffs-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mainBffs-text h2 {
    font-size: 18px;
    letter-spacing: -0.18px;
  }

  .mainBffs-text h3 {
    margin-top: 2px;
    font-size: 24px;
    letter-spacing: -0.24px;
  }

  .mainBffs-text p {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .mainBffs-img-mobile img {
    display: flex;
    width: 240px;
    margin: 56px 0;
  }

  .mainBffs-view-detail {
    margin-top: 0;
  }

  .mainBiz-container {
    display: none;
  }

  .mainBiz-container-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .mainBiz-container-mobile img {
    height: 681px;
    width: auto;
    max-width: none;
    position: relative;
  }

  .mainBiz-text {
    margin-bottom: 24px;
    text-align: center;
  }

  .mainBiz-text h2 {
    font-size: 18px;
    letter-spacing: -0.18px;
  }

  .mainBiz-text h3,
  .mainBiz-text-second h3 {
    font-size: 24px;
    letter-spacing: -0.24px;
  }

  .mainBiz-text p,
  .mainBiz-text-second p {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .mainBiz-text-second {
    padding: 100px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mainBiz-view-detail {
    width: fit-content;
    margin-top: 24px;
    padding: 6px 20px 6px 28px;
    border-radius: 9999px;
    background: #e60000;
    font-size: 16px;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.4px;
  }

  .mainBiz-view-detail a {
    color: #fff;
  }

  #mainContact {
    width: 100%;
    padding: 44px 16px;
  }

  .mainContact-container {
    padding: 40px 0;
  }

  .mainContact-container img {
    width: 150px;
  }

  .mainContact-title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }

  .mainContact-subtitle {
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .bffsMain-container {
    padding: 124px 16px 60px 16px;
  }

  .bffsMain-container img {
    width: 240px;
    margin-bottom: 24px;
  }

  .bffsMain-container h3 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }

  .bffsMain-container h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .bffsMain-desc {
    display: none;
  }

  .bffsMain-desc-mobile {
    display: inline;
    margin-top: 40px;
    color: #555;
    font-size: 16px;
    font-weight: 450;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
  }

  .bffsCharacter-container {
    padding: 0px 16px;
    gap: 0px;
  }

  .bffsCharacter-top {
    padding: 60px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bffsCharacter-top video {
    width: 240px;
  }

  .bffsCharacter-text {
    padding: 24px 0;
  }

  .bffsCharacter-text h2 {
    font-size: 54px;
    letter-spacing: -0.54px;
  }

  .bffsCharacter-has {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .bffsCharacter-kr-tags {
    display: none;
  }

  .bffsCharacter-kr-tags-mobile {
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .bffsCharacter-kr-tags-mobile span {
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .bffsCharacter-bottom {
    padding: 60px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bffsCharacter-bottom h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 120%; /* 48px */
    letter-spacing: -0.4px;
  }

  .bffsCharacter-bottom-tags {
    display: none;
  }

  .bffsCharacter-bottom-tags-mobile {
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .bffsCharacter-bottom-tags-mobile span {
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .bffsCharacter-img {
    display: none;
  }

  .bffsCharacter-img-mobile {
    display: flex;
    padding: 0 15px;
    gap: 35px;
  }

  .bffsCharacter-img-mobile img {
    width: 138px;
  }
}

@media (max-width: 898px) {
  #gnb {
    display: none;
  }

  #menuToggle {
    display: flex;
  }

  .terms {
    padding: 160px 48px 80px 48px;
  }

  .terms h1 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }

  .terms h3 {
    font-size: 20px;
    letter-spacing: -0.5px;
  }

  .terms h5 {
    font-size: 16px;
    letter-spacing: -0.4px;
  }

  .terms h2 {
    font-size: 16px;
    letter-spacing: -0.4px;
  }

  .terms div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }

  .terms p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }

  .mainHome-title {
    font-size: 35px;
    letter-spacing: -0.875px;
  }

  .mainHome-store-btn {
    gap: 6.4px;
  }

  .mainHome-store-btn a img {
    height: 44.536px;
  }

  .mainHome-buyfuture-text img {
    height: 55.311px;
  }
}

@media (max-width: 578px) {
  .terms {
    padding: 130px 16px 80px 16px;
  }

  .terms h1 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }

  .terms h3 {
    font-size: 16px;
    letter-spacing: -0.4px;
  }

  .terms h5 {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .terms h2 {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .terms div {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .terms p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .mainHome-title {
    font-size: 24px;
    letter-spacing: -0.6px;
  }

  .mainHome-buyfuture-text img {
    height: 32.844px;
  }

  .mainIntro-subtitle {
    font-size: 24px;
    letter-spacing: -0.6px;
  }

  .mainIntro-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .bizIntro-logo {
    width: 160px;
    margin: 76px 0;
  }

  .bizIntro-text {
    top: 32%;
  }

  .bizIntro-text h2 {
    margin-top: 35px;
    font-size: 28px;
  }

  .bizIntro-text p {
    font-size: 40px;
  }

  .bizRecommend-container {
    padding: 62px 0 80px 0;
  }

  .bizRecommend-intro {
    margin-bottom: 64px;
  }

  .bizRecommend-intro h1 {
    font-size: 28px;
  }

  .bizRecommend-problems {
    gap: 20px;
  }

  .bizRecommend-problems div {
    font-size: 18px;
  }

  .bizRecommend-dot {
    margin: 70px 0;
    width: 6px;
  }

  .bizRecommend-question {
    margin-bottom: 100px;
  }

  .bizRecommend-question img {
    width: 40px;
  }

  .bizRecommend-question h2 {
    font-size: 28px;
  }

  .bizRecommend-cta {
    padding: 160px 16px;
  }

  .bizRecommend-cta-text h3 {
    font-size: 20px;
  }

  .bizRecommend-cta-text h2 {
    margin: 16px 0 8px 0;
    font-size: 32px;
  }

  .bizRecommend-cta-text h1 {
    font-size: 40px;
  }

  .bizRecommend-scroll-track {
    margin: 0;
  }

  .bizRecommend-before,
  .bizRecommend-after {
    display: flex;
    flex-direction: column;
  }

  .bizRecommend-comparison-text h3 {
    font-size: 24px;
  }

  .bizRecommend-comparison-text h2 {
    margin: 24px 0 28px 0;
    font-size: 32px;
  }

  .bizRecommend-comparison-text p {
    font-size: 18px;
  }

  .bizRecommend-pricing h3 {
    font-size: 28px;
  }

  .bizRecommend-pricing h2 {
    font-size: 36px;
    margin: 8px 0 24px 0;
  }

  .bizRecommend-pricing p {
    font-size: 20px;
  }

  .bizRecommend-download {
    margin-top: 34px;
  }

  .bizRecommend-download img {
    height: 40px;
  }

  .bizInfo-container {
    padding: 0 16px;
    gap: 50px;
  }

  .bizInfo-title-text {
    gap: 14px;
  }

  .bizInfo-title-text h2 {
    font-size: 26px;
  }

  .bizInfo-blocks {
    gap: 60px;
  }

  .bizInfo-block h2 {
    font-size: 24px;
  }

  .bizInfo-block-text p {
    font-size: 14px;
  }

  .bizInfo-block-img-first {
    margin-top: 20px;
    width: 240px;
  }

  .bizInfo-block-img-second {
    margin-top: 20px;
    width: 240px;
  }

  .bizInfo-block-img-third {
    margin-top: 20px;
    width: 240px;
  }

  .bizInfo-block-img-fourth {
    margin-top: 20px;
    width: 240px;
  }

  .bizWhy-container {
    padding: 84px 0 120px 0;
  }

  .bizWhy-container h1 {
    margin-top: 20px;
    font-size: 28px;
  }

  .bizWhy-img-first {
    max-width: 370px;
    max-height: 150px;
  }

  .bizWhy-img-second {
    max-width: 90px;
    max-height: 120px;
  }

  .bizWhy-img-third-wrapper {
    max-width: 170px;
    max-height: 320px;
  }

  .bizWhy-img-third {
    width: 300%;
    height: 300%;
  }

  .bizWhy-img-fourth {
    max-width: 90px;
    max-height: 120px;
  }

  .bizWhy-img-fifth {
    max-width: 240px;
    max-height: 140px;
  }

  .bizWhy-img-sixth {
    max-width: 110px;
    max-height: 140px;
  }

  .bizWhy-container p {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .bizDownload-container h2 {
    margin-top: 16px;
    font-size: 26px;
  }

  .bizDownload-container h1 {
    font-size: 34px;
  }

  .bizDownload-guide {
    margin: 80px 0 30px 0;
  }

  .bizDownload-guide a {
    padding: 6px 10px 6px 14px;
    border-radius: 9999px;
    font-size: 14px;
  }

  .bizDownload-container h3 {
    margin-top: 14px;
    font-size: 28px;
  }

  .bizDownload-btn {
    margin-top: 30px;
  }

  .bizDownload-btn a img {
    height: 40px;
  }

  .bizFaq-container {
    padding: 100px 16px 40px 16px;
  }

  .bizFaq-title {
    font-size: 28px;
  }

  .bizFaq-list {
    padding: 20px 16px;
  }

  .bizFaq-item {
    padding: 22px 0;
  }

  .bizFaq-toggle h3 {
    font-size: 18px;
  }

  .bizFaq-content p {
    margin-top: 8px;
    font-size: 16px;
  }

  .userGuideMain-container h2 {
    font-size: 32px;
  }

  .userGuideMain-sub h3 {
    font-size: 32px;
  }

  .userGuideMain-container p {
    font-size: 16px;
  }

  .userGuideMain-container img {
    width: 100%;
  }

  #userGuideFirst {
    padding: 50px 0;
  }

  .userGuideFirst-top h2 {
    font-size: 24px;
  }

  .userGuideFirst-top h3 {
    font-size: 32px;
  }

  .userGuideFirst-container p {
    font-size: 14px;
  }

  .userGuideFirst-container img {
    width: 200px;
  }

  .userGuideFirst-tip {
    font-size: 14px;
  }

  .userGuideSecond-top h2 {
    font-size: 24px;
  }

  .userGuideSecond-top h3 {
    font-size: 32px;
  }

  .userGuideSecond-container p {
    font-size: 14px;
  }

  .userGuideSecond-video video {
    width: 137.145px;
  }

  .userGuideSecond-video img {
    height: 307.897px;
  }

  .userGuideSecond-tip {
    font-size: 14px;
  }

  .userGuideThird-top h2 {
    font-size: 24px;
  }

  .userGuideThird-top h3 {
    font-size: 32px;
  }

  .userGuideThird-container p {
    font-size: 14px;
  }

  .userGuideThird-container img {
    width: 200px;
  }

  .userGuideThird-tip {
    font-size: 14px;
  }

  .userGuideFourth-top h2 {
    font-size: 24px;
  }

  .userGuideFourth-top h3 {
    font-size: 32px;
  }

  .userGuideFourth-container p {
    font-size: 14px;
  }

  .userGuideFourth-video {
    width: 200px;
  }

  .userGuideFourth-video video {
    width: 180px;
  }

  .userGuideFourth-video img {
    width: 200px;
  }

  .userGuideFourth-tip {
    font-size: 14px;
  }

  .userGuideFinal-container h3 {
    font-size: 14px;
  }

  .userGuideFinal-download img {
    height: 40px;
  }

  .userGuideFinal-container p {
    font-size: 10px;
  }

  .bizGuideMain-bg {
    height: 545px;
  }

  .bizGuideMain-container h2 {
    font-size: 32px;
  }

  .bizGuideMain-container h3 {
    font-size: 32px;
  }

  .bizGuideMain-container p {
    font-size: 16px;
  }

  .bizGuideMain-container img {
    width: 300px;
  }

  .bizGuideFirst-top h2 {
    font-size: 24px;
  }

  .bizGuideFirst-top h3 {
    font-size: 28px;
  }

  .bizGuideFirst-container p {
    font-size: 14px;
  }

  .bizGuideFirst-container img {
    width: 200px;
  }

  .bizGuideFirst-tip {
    font-size: 14px;
  }

  .bizGuideSecond-top h2 {
    font-size: 24px;
  }

  .bizGuideSecond-top h3 {
    font-size: 28px;
  }

  .bizGuideSecond-top p {
    font-size: 14px;
  }

  .bizGuideSecond-figure img {
    width: 149px;
  }

  .bizGuideSecond-tip {
    font-size: 14px;
  }

  .bizGuideThird-top h2 {
    font-size: 24px;
  }

  .bizGuideThird-top h3 {
    font-size: 28px;
  }

  .bizGuideThird-top p {
    font-size: 14px;
  }

  .bizGuideThird-figure img {
    width: 149px;
  }

  .bizGuideThird-tip {
    font-size: 14px;
  }

  .bizGuideFourth-top h2 {
    font-size: 24px;
  }

  .bizGuideFourth-top h3 {
    font-size: 28px;
  }

  .bizGuideFourth-top p {
    font-size: 14px;
  }

  .bizGuideFourth-container img {
    width: 200px;
  }

  .bizGuideFourth-tip {
    font-size: 14px;
  }

  .bizGuideFifth-top h2 {
    font-size: 24px;
  }

  .bizGuideFifth-top h3 {
    font-size: 28px;
  }

  .bizGuideFifth-container p {
    font-size: 14px;
  }

  .bizGuideFifth-container img {
    width: 200px;
  }

  .bizGuideFifth-tip {
    font-size: 14px;
  }

  .bizGuideFinal-container h3 {
    font-size: 14px;
  }

  .bizGuideFinal-download img {
    height: 40px;
  }

  .bizGuideFinal-container p {
    font-size: 10px;
  }
}
