@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-nav {
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
  height: fit-content;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.nav-bar {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 0;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-y: visible;
}

.nav-drop-down {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  display: none;
  background-color: #ffffff;
  padding: 0 16px 16px;
  top: 64px;
  width: 100%;
  height: fit-content;
  overflow-y: visible;
}
.nav-drop-down a {
  color: #666666;
}
.nav-drop-down p {
  color: #666666;
}

.nav-drop-down.visible {
  display: flex;
}

.nav-drop-down-item {
  width: inherit;
  height: fit-content;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-items: start;
  justify-content: center;
  font-size: 14px;
  line-height: 16px;
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
}
.nav-drop-down-item:hover {
  cursor: pointer;
  background-color: #ebebeb;
}
.nav-drop-down-item:active {
  background-color: #e0e0e0;
}
.nav-drop-down-item .nav-item {
  height: fit-content;
}

.nav-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 40px;
  padding: 12px 20px;
  margin: 0 10px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  color: #666666;
}

.nav-item-tab {
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
}
.nav-item-tab:hover {
  cursor: pointer;
  background-color: #ebebeb;
}
.nav-item-tab:active {
  background-color: #e0e0e0;
}

.nav-item-dropdown {
  position: relative;
}

.language-options-at-drop-down {
  position: fixed;
  top: 256px;
}

.brand-logo-area {
  height: 24px;
}

.brand-logo-img {
  height: 100%;
}

.drop-down-options {
  background-color: #ffffff;
  position: absolute;
  top: 64px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
}

.drop-down-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 4px;
  height: 36px;
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
}
.drop-down-item:hover {
  cursor: pointer;
  background-color: #ebebeb;
}
.drop-down-item:active {
  background-color: #e0e0e0;
}

.lang-display {
  width: 136px;
  height: fit-content;
  gap: 8px;
  padding: 8px 8px 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
}

.language-option {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: fit-content;
  padding: 12px 8px 12px 12px;
  gap: 8px;
  transition: all 0.1s ease-in-out;
}
.language-option:hover > p {
  color: #279df4;
}

.selected-language * {
  color: #279df4 !important;
}

.drop-down-icon {
  margin: 0;
}

.drop-down-text {
  margin: 0;
  width: fit-content;
  white-space: nowrap;
  color: #666666;
}

.drop-down-btn {
  margin-left: auto;
  border: none;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
}
.drop-down-btn:hover {
  transform: scale(1.2);
}

#download-options {
  width: 138px;
}

.download-option {
  width: fit-content;
  padding: 8px 10px 8px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.drop-down-btn-img {
  width: 21px;
  height: 12px;
}

.topnav-display-drop-downs {
  display: none;
  position: absolute;
  width: fit-content;
  height: fit-content;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0px 11px 15px 0px rgba(174, 179, 190, 0.22),
    0px 9px 44px 0px rgba(174, 179, 190, 0.2399999946),
    0px 24px 38px 0px rgba(174, 179, 190, 0.1199999973);
  width: 136px;
  top: 52px;
}

.topnav-button-drop-downs {
  position: absolute;
  display: none;
  position: absolute;
  width: fit-content;
  height: fit-content;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0px 11px 15px 0px rgba(174, 179, 190, 0.22),
    0px 9px 44px 0px rgba(174, 179, 190, 0.2399999946),
    0px 24px 38px 0px rgba(174, 179, 190, 0.1199999973);
  top: 52px;
  z-index: 5;
  right: 20px;
  box-shadow: 0px 11px 15px 0px rgba(174, 179, 190, 0.22),
    0px 9px 44px 0px rgba(174, 179, 190, 0.2399999946),
    0px 24px 38px 0px rgba(174, 179, 190, 0.1199999973);
}

.button-drop-down-img-area {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
}

.button-drop-down-img {
  width: 20px;
  height: 20px;
}

.button {
  background-color: #279df4;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  background-color: #2597ea;
}
.button:active {
  background-color: #2491e1;
}

.button-drop-down-text {
  font-size: 14px;
  line-height: 24px;
}

.nav-item-hamburger {
  height: 64px;
  padding: 8px;
  display: none;
}

.hamburger-btn-container {
  height: 100%;
  padding: 8px;
  cursor: pointer;
}
.hamburger-btn-container:hover > .hamburger-btn-img {
  transform: scale(0.95);
}

.hamburger-btn-img {
  height: 100%;
}

.nav-item-logo {
  margin-right: auto;
}

.lang-display-at-hamburger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
}

.language-options-at-hamburger {
  width: 100%;
}

.drop-down-btn-img.at-hamburger {
  width: 100%;
  height: 20px;
}

#footer-container {
  height: 292px;
}

.footer-area {
  position: absolute;
  margin: 0 auto;
  padding: 80px 30px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 1080px;
}
.footer-area p {
  color: #969696;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.22;
}

.footer-policy-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  gap: 8px;
}

.terms-and-conditions-area {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
}
.terms-and-conditions-area > a {
  color: #969696;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.22;
  transition: all 0.1s ease-in-out;
}
.terms-and-conditions-area > a:hover {
  color: #279df4;
}

.footer-contact-notice {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 6px;
}
.footer-contact-notice > a {
  color: #969696;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.22;
  transition: all 0.1s ease-in-out;
}
.footer-contact-notice > a:hover {
  color: #279df4;
}

.footer-logo-area {
  display: flex;
  width: fit-content;
  margin-top: 16px;
}

.footer-logo-button {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  padding: 4px;
  background-color: #ffffff;
  border: #e2e2e2 1px solid;
  border-radius: 8px;
  transition: all 0.1s ease-in-out;
}
.footer-logo-button:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.footer-logo-button > img {
  width: 100%;
}

@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#terms .description {
  margin-top: 16px;
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#terms h1,
#terms h2,
#terms li {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#terms .container {
  left: 0;
  right: 0;
  margin: 64px auto 0;
  padding: 0 30px;
  max-width: 1080px;
}
#terms .page-title {
  margin: 0 auto 0 0;
  color: #202020;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.5%;
}
#terms .article-container {
  width: inherit;
  padding: 40px 0 24px;
  border-bottom: 1px solid #e2e2e2;
}
#terms .article-container:last-child {
  border-bottom: none;
}
#terms .article {
  color: #202020;
  font-weight: 700;
}
#terms .paragraph {
  margin: 16px 0;
}
#terms .item-container {
  margin: 16px 0;
}
#terms .item {
  font-size: 14px;
}

@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#privacy h1,
#privacy h2,
#privacy li {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#privacy .container {
  left: 0;
  right: 0;
  margin: 64px auto 0;
  padding: 0 30px;
  max-width: 1080px;
}
#privacy .page-title {
  margin: 0 auto 0 0;
  color: #202020;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.5%;
}
#privacy .privacy-ol {
  list-style-type: decimal;
  list-style-position: inside;
}
#privacy .article-container {
  font-weight: 700;
  font-size: 16px;
  line-height: 48px;
  color: #202020;
  width: inherit;
  padding: 25px 0 40px 0;
  border-bottom: 1px solid #e2e2e2;
}
#privacy .description {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#privacy .article-container:last-child {
  border-bottom: none;
}
#privacy .article {
  color: #202020;
  font-weight: 700;
}
#privacy .paragraph {
  list-style-type: decimal;
  width: 95%;
  transform: translateX(18px);
  margin: 16px 0;
}
#privacy .paragraph:last-child {
  margin-bottom: 0;
}
#privacy .item-container {
  margin: 16px 0;
  padding: 0 4px;
}
#privacy .item {
  list-style-type: lower-alpha;
  list-style-position: inside;
  font-size: 14px;
}

@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1440px) {
  .top-nav {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .nav-drop-down {
    display: none !important;
  }
}
@media (min-width: 1240px) and (max-width: 1440px) {
  .top-nav {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .nav-drop-down {
    display: none !important;
  }
  .default-section {
    padding: 0 50px;
  }
  #footer-container {
    height: 292px;
  }
  .footer-area {
    padding: 80px 30px;
  }
}
@media (min-width: 905px) and (max-width: 1240px) {
  .top-nav {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 40px;
  }
  .nav-drop-down {
    display: none !important;
  }
  .default-section {
    padding: 0 40px;
  }
  .hero {
    width: auto;
    height: 100%;
  }
  .awards-container {
    padding: 40px 5px;
    height: 263px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .content-area {
    padding: 40px;
  }
  .content-area-card {
    padding: 60px 24px;
  }
  .text-area-card {
    max-width: 32vw;
  }
  .card {
    min-width: 418.5px;
    min-height: 418.5px;
  }
  #footer-container {
    height: 292px;
  }
  .footer-area {
    padding: 80px 64px;
  }
}
@media (min-width: 600px) and (max-width: 905px) {
  .nav-bar {
    padding: 3% 4%;
  }
  .nav-drop-down .nav-item {
    padding: 0;
  }
  .topnav-button-drop-downs {
    right: 0;
  }
  .nav-item-logo {
    padding: 0;
  }
  .nav-bar
    .nav-item:not(.nav-item-logo, .nav-item-dropdown, .nav-item-hamburger) {
    display: none;
  }
  .nav-item-dropdown {
    padding: 0;
  }
  .nav-item-hamburger {
    display: flex;
  }
  .hero-container {
    height: calc(100vh - 64px);
  }
  .hero {
    height: 100%;
  }
  .overlay {
    height: calc(100vh - 64px);
  }
  .default-section {
    padding: 0 64px;
  }
  .section01 {
    padding: 0;
  }
  .section01 {
    padding: 0;
  }
  .awards-container {
    padding: 40px 5px;
    height: 263px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
  }
  .award-img {
    height: 8vh;
  }
  .content-area {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: center;
  }
  .mockup-area {
    height: 70vh;
  }
  .card {
    width: calc(100vw - 128px);
    height: calc(100vw - 128px);
  }
  .section03 .content-area,
  .section07 .content-area,
  .section09 .content-area {
    flex-direction: column-reverse;
  }
  .text-area {
    width: 100%;
    max-width: 730px;
    padding: 40px 30px;
    align-items: center;
    text-align: center;
  }
  .mockups.at-large-view {
    display: none;
  }
  .device-sync-mockups-at-small-view {
    display: block;
  }
  .section10 {
    padding: 0;
  }
  .device-sync {
    gap: 50px;
    padding: 64px 64px 128px 64px;
  }
  #footer-container {
    height: 260px;
  }
  .footer-area {
    padding: 64px 47px;
  }
}
@media (max-width: 600px) {
  .nav-bar {
    padding: 3% 4%;
  }
  .nav-drop-down .nav-item {
    padding: 0;
  }
  .nav-item-logo {
    padding: 0;
  }
  .nav-bar
    .nav-item:not(.nav-item-logo, .nav-item-dropdown, .nav-item-hamburger) {
    display: none;
  }
  .topnav-button-drop-downs {
    right: 0;
  }
  .nav-item-dropdown {
    padding: 0;
  }
  .nav-item-hamburger {
    display: block;
  }
  .default-section {
    padding: 0 12px;
  }
  .hero-container {
    height: calc(100vh - 64px);
  }
  .hero {
    width: 100%;
    height: 100%;
  }
  .overlay {
    height: calc(100vh - 64px);
  }
  .section01 {
    padding: 0;
    margin-bottom: 15px;
  }
  .section02 {
    margin-top: 25px;
  }
  .awards-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4vw 0 1vw 0;
    gap: 14vw;
  }
  .award-img {
    height: 7vh;
  }
  .common-section {
    padding: 1vw 0;
  }
  .content-area {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: center;
  }
  .content-area-vertical {
    padding: 0;
  }
  .section03 .content-area,
  .section07 .content-area,
  .section09 .content-area {
    flex-direction: column-reverse;
  }
  .text-area {
    width: 100%;
    max-width: 352px;
    padding: 40px 0;
    margin: 0;
    align-items: center;
    text-align: center;
  }
  .text-area-alone {
    margin: 0;
    width: 100%;
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }
  .section05 > .text-area {
    padding: 100px 12px 0;
  }
  .sticker3 {
    top: 43vh;
    left: 3vh;
  }
  .sticker4 {
    right: 6vh;
  }
  .sticker5 {
    right: 4vh;
  }
  .mockup-area {
    width: 100%;
    height: 70vh;
    padding: 12px;
  }
  .mockup-area-left {
    width: 100%;
    padding: 0;
  }
  .phone-mockup {
    z-index: 1;
    height: 100%;
    border-radius: 32px;
  }
  .mockup-screen {
    transform: scale(0.94) translate(0, 6%);
  }
  .mockup-screen-left {
    transform: scale(1) translate(0, 10%);
  }
  .content-area-card {
    padding: 12px;
  }
  .card {
    width: 100%;
    height: 100%;
  }
  .calendar-logos {
    width: 100%;
    transform: translate(0);
  }
  .mockups.at-large-view {
    display: none;
  }
  .device-sync-mockups-at-small-view {
    display: block;
  }
  .device-sync {
    padding: 2vw 1vw 8vw 1vw;
    gap: 0;
  }
  #footer-container {
    height: 212px;
  }
  .footer-area {
    padding: 40px 24px;
  }
}
@media (min-width: 1240px) {
  .large-title {
    font-size: 56px;
    line-height: 84px;
  }
  .title1 {
    font-size: 44px;
    line-height: 66px;
  }
  .title2 {
    font-size: 24px;
    line-height: 36px;
  }
  .paragraph {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (min-width: 600px) and (max-width: 1240px) {
  .large-title {
    font-size: 48px;
    line-height: 72px;
  }
  .title1 {
    font-size: 36px;
    line-height: 54px;
  }
  .title2 {
    font-size: 20px;
    line-height: 30px;
  }
  .paragraph {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .large-title {
    font-size: 32px;
    line-height: 48px;
  }
  .title1 {
    font-size: 28px;
    line-height: 42px;
  }
  .title2 {
    font-size: 16px;
    line-height: 24px;
  }
  .paragraph {
    font-size: 14px;
    line-height: 21px;
  }
  .small-paragraph {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (min-width: 905px) {
  .under-tablet-large {
    display: none;
  }
  .over-tablet-large {
    display: block;
  }
}
@media (max-width: 904px) {
  .under-tablet-large {
    display: block;
  }
  .over-tablet-large {
    display: none;
  }
  .section09 .content-area .text-area-card {
    max-width: 550px;
    padding-bottom: 0;
  }
}
#notice {
  display: flex;
  justify-content: center;
}
#notice * {
  color: #202020;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#notice #notice-container {
  max-width: 1080px;
  width: 100%;
  margin-top: 64px;
  padding: 0 32px 64px 32px;
}
#notice .page-title {
  color: #279df4;
  margin: 16px 0;
}
#notice .notice-title {
  font-size: 40px;
  line-height: 52px;
  margin: 16px 0;
}
#notice #notice-date {
  color: #969696;
  margin-bottom: 8px 0;
}
#notice hr {
  margin: 16px 0;
  border: 0.5px solid #e2e2e2;
}
#notice #notice-content {
  margin: 8px 0;
}
#notice #notice-content p {
  color: #333333;
  margin-bottom: 10px;
  line-height: 28px;
}
#notice #notice-content span {
  font-size: 18px;
  line-height: 32px;
}
#notice #notice-content img {
  max-width: 100%;
}
@media (max-width: 600px) {
  #notice #notice-title {
    font-size: 32px;
    line-height: 42px;
  }
}

@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#refund .items {
  margin-top: 16px;
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#refund h1,
#refund h2,
#refund li {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#refund .container {
  left: 0;
  right: 0;
  margin: 64px auto 0;
  padding: 0 30px;
  max-width: 1080px;
}
#refund .page-title {
  margin: 0 auto 0 0;
  color: #202020;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.5%;
}
#refund .article-container {
  width: inherit;
  padding: 40px 0 24px;
  border-bottom: 1px solid #e2e2e2;
}
#refund .article-container:last-child {
  border-bottom: none;
}
#refund .article {
  color: #202020;
  font-weight: 700;
}
#refund .paragraph {
  margin: 16px 0;
}
#refund .item-container {
  margin: 16px 0;
}
#refund .item {
  font-size: 14px;
}

@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#whatsNews h1,
#whatsNews h2,
#whatsNews li {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#whatsNews .container {
  left: 0;
  right: 0;
  margin: 64px auto 0;
  padding: 0 30px;
  max-width: 1080px;
}
#whatsNews .page-title-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}
#whatsNews .page-title {
  color: #202020;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.5%;
}
#whatsNews .tabs {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  border-bottom: 1px solid #e2e2e2;
}
#whatsNews .tab {
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
}
#whatsNews .tab.selected {
  border-bottom: 2px solid #279df4;
  padding-bottom: 10px;
  transform: translateY(1px);
}
#whatsNews .tab.selected .tab-text {
  color: #202020;
}
#whatsNews .tab-text-container {
  border-radius: 8px;
  padding: 8px;
  transition: ease-in-out 0.1s;
}
#whatsNews .tab-text-container:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
#whatsNews .tab-text {
  color: #969696;
  font-size: 16px;
  line-height: 24px;
}
#whatsNews #whats-new-list-container {
  width: 100%;
}
#whatsNews .what-new-ul {
  width: 100%;
}
#whatsNews .whats-new-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
  padding: 16px 8px;
  transition: ease-in-out 0.1s;
  cursor: pointer;
}
#whatsNews .whats-new-item:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
#whatsNews .whats-new-item:active {
  background-color: rgba(0, 0, 0, 0.12);
}
#whatsNews .whats-new-title {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
#whatsNews hr {
  border: 0.5px solid #e2e2e2;
  margin: 0;
}
#whatsNews #pagination-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 64px;
}
#whatsNews .pagination {
  display: flex;
  gap: 2px;
}
#whatsNews .pagination-btn {
  color: #202020;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
}
#whatsNews .pagination-btn img {
  padding: 4px;
}
#whatsNews .pagination-btn.clickable {
  transition: ease-in-out 0.1s;
}
#whatsNews .pagination-btn.clickable:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
#whatsNews .pagination-btn.clickable:active {
  background-color: rgba(0, 0, 0, 0.12);
}
#whatsNews .pagination-btn.selected {
  background-color: #279df4;
  color: #ffffff;
}
#whatsNews .pagination-btn.selected:hover {
  background-color: #279df4;
}
#whatsNews .pagination-btn.disabled {
  cursor: not-allowed;
}
#whatsNews .pagination-btn.disabled:hover {
  background-color: transparent;
}
#whatsNews .elipsis {
  width: 12px;
  height: 32px;
  padding-top: 7px;
}

@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#whatsNew {
  display: flex;
  justify-content: center;
}
#whatsNew * {
  color: #202020;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#whatsNew h1,
#whatsNew h2,
#whatsNew li {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#whatsNew .container {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 64px;
  padding: 0 30px;
  max-width: 1080px;
}
#whatsNew .container img {
  max-width: 100%;
  margin: 0 auto;
}
#whatsNew .page-title {
  margin: 16px 0 24px;
  color: #666666;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
#whatsNew .badge {
  padding: 4px 8px;
  border-radius: 6px;
  background-color: #e1f1fd;
}
#whatsNew .badge-title {
  color: #279df4;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
#whatsNew .title {
  color: #202020;
  font-size: 40px;
  line-height: 52px;
  font-style: normal;
  font-weight: 700;
  margin: 12px 0;
}
#whatsNew .date {
  color: #969696;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 16px;
}
#whatsNew #content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  color: #333333;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}
#whatsNew #content p {
  color: #333333;
  margin-bottom: 10px;
  line-height: 28px;
}
#whatsNew hr {
  border: 0.5px solid #e2e2e2;
  width: 100%;
  margin: 40px 0;
}
#whatsNew .to-list-btn-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#whatsNew .to-list-btn {
  border-radius: 8px;
  border: none;
  background-color: #efefef;
  color: #202020;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 12px 16px;
  margin: 40px 0;
}
@media (max-width: 600px) {
  #whatsNew .title {
    font-size: 32px;
    line-height: 42px;
  }
}

.main {
  margin-top: 64px;
}

.hero-container {
  position: relative;
  width: auto;
  height: calc(100vh - 64px);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero {
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: rgba(0, 0, 0, 0.16);
}

.title-container {
  padding: 10px;
  text-align: center;
}

.container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-items: center;
}
.container::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.default-section {
  padding: 0 100px;
}

.section01 {
  width: 100%;
  height: fit-content;
  background: #ffffff;
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.awards-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1240px;
  max-height: 271px;
  padding: 100px;
}

.award-img {
  height: 10vh;
  max-height: 72px;
  opacity: 0;
  visibility: hidden;
}

.award-img.animate {
  animation-name: scale;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.common-section {
  width: 100%;
  height: fit-content;
  background: #ffffff;
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.content-area {
  width: 100%;
  max-width: 1080px;
  padding: 60px 30px;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section02 .content-area {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.section03 .content-area {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.text-area {
  width: 44%;
  max-width: 443px;
  height: fit-content;
  max-height: 668px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  padding: 20px 0;
  overflow: hidden;
}

.sub-title {
  width: fit-content;
  margin-bottom: 10px;
  transform: translateY(30px);
  opacity: 0;
}

.animate-on-scroll.animate .sub-title {
  animation-name: slide-up;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
}
.animate-on-scroll.animate .main-title {
  animation-name: slide-up;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
  animation-delay: 0.15s;
}
.animate-on-scroll.animate .paragraph-area {
  animation-name: slide-up;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
  animation-delay: 0.3s;
}

.main-title {
  width: fit-content;
  margin-bottom: 20px;
  transform: translateY(30px);
  opacity: 0;
}

.paragraph-area {
  transform: translateY(30px);
  opacity: 0;
}

.mockup-area {
  position: relative;
  width: fit-content;
  height: 92vh;
  max-height: 844px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
}

.mockup-area.animate {
  animation-name: scale;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.phone-mockup {
  z-index: 1;
  height: 100%;
  border-radius: 32px;
}

.mockup-screen {
  position: absolute;
  transform: scale(0.97) translate(0, 8%);
  height: 86%;
  border-radius: 4%;
}

.content-area-vertical {
  width: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.text-area-alone {
  align-items: center;
  width: 100%;
  max-width: 1000px;
  padding: 100px;
  max-width: 1040px;
}

.section04-video {
  width: 100vw;
}

.text-area-right {
  max-width: 505px;
}

#patent-text {
  pointer-events: none;
}

.section05 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: fit-content;
}

.section05 > .text-area {
  padding: 100px 100px 0 100px;
}

.artwork-area {
  width: 100%;
  height: 100vh;
}

.slides-wrapper {
  position: static;
  margin: auto;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 90vw;
  height: 100vh;
  padding: 0 5vh;
  display: none;
  cursor: pointer;
}

.visible {
  display: flex;
  justify-content: center;
}

.theme-video {
  position: absolute;
  height: 75vh;
  border-radius: 3vh;
  z-index: 3;
}

.theme-back {
  position: absolute;
  height: 75vh;
  border-radius: 3vh;
  z-index: 3;
  transform: scale(0.99);
}

.theme-back-for-the-first {
  transform: scale(0.99);
}

.sticky {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: 32px;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.slide:last-child.visible {
  bottom: 0;
}

.active > .theme-video {
  animation-name: spin;
  transform-style: preserve-3d;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  backface-visibility: hidden;
}

.active > .theme-back {
  animation-name: spin-back;
  transform-style: preserve-3d;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  backface-visibility: hidden;
}

.bg-pink {
  background-color: #fceff4;
  transition: all 0.5s ease-in-out;
  color: #202020;
}
.bg-pink .small-paragraph {
  color: #666666;
}

.bg-skyblue {
  background-color: #d0e2e5;
  transition: all 0.5s ease-in-out;
  color: #202020;
}
.bg-skyblue .small-paragraph {
  color: #666666;
}

.bg-avocado {
  background-color: #e6f4cf;
  transition: all 0.5s ease-in-out;
  color: #202020;
}
.bg-avocado .small-paragraph {
  color: #666666;
}

.bg-black {
  transition: all 0.5s ease-in-out;
  background-color: #000000;
}
.bg-black * {
  color: #fcfcfc !important;
}

.visible .sticker1 {
  animation-name: bubble-up-left;
  animation-delay: 1s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.visible .sticker2 {
  animation-name: bubble-up-right;
  animation-delay: 1s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.visible .sticker3 {
  animation-name: bubble-up-left;
  animation-delay: 1s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.visible .sticker4 {
  animation-name: bubble-up-right;
  animation-delay: 1s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.visible .sticker5 {
  animation-name: bubble-up-right-and-left-deg;
  animation-delay: 1s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.sticker-area {
  position: absolute;
  width: 75vh;
  max-width: 110vw;
  height: 75vh;
}

.theme-sticker {
  position: absolute;
  width: 20vh;
  z-index: 4;
  opacity: 0;
}

.sticker1 {
  width: 12.5vh;
  top: 9vh;
  left: 3vh;
  z-index: 3;
}
.sticker1:hover {
  transform: rotate(-20deg);
}

.sticker2 {
  width: 15vh;
  right: 3vh;
  top: 16vh;
  z-index: 3;
}
.sticker2:hover {
  transform: rotate(20deg);
}

.sticker3 {
  width: 15vh;
  left: 9.5vh;
  bottom: 19.95vh;
  z-index: 3;
}
.sticker3:hover {
  transform: rotate(-20deg);
}

.sticker4 {
  width: 7.5vh;
  right: 13.675vh;
  bottom: 6.25vh;
  z-index: 1;
}
.sticker4:hover {
  transform: rotate(20deg);
}

.sticker5 {
  width: 7.5vh;
  right: 9.5vh;
  bottom: 10vh;
  z-index: 0;
}
.sticker5:hover {
  transform: rotate(20deg);
}

.content-area-card {
  padding: 60px 20px;
}

.text-area-card {
  max-width: 398px;
}

.card {
  max-width: 560px;
  max-height: 560px;
  width: 47vw;
  min-width: 150px;
  height: 47vw;
  min-height: 150px;
  overflow: hidden;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: end;
  box-shadow: 0px 16px 24px 0px rgba(174, 179, 190, 0.14),
    0px 6px 30px 0px rgba(174, 179, 190, 0.12),
    0px 8px 10px 0px rgba(174, 179, 190, 0.2);
  opacity: 0;
}

.card.animate {
  animation-name: scale;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
}

.video-card {
  display: block;
  box-shadow: 0px 16px 24px 0px rgba(174, 179, 190, 0.14),
    0px 6px 30px 0px rgba(174, 179, 190, 0.12),
    0px 8px 10px 0px rgba(174, 179, 190, 0.2);
}

.width100pcnt {
  width: 100%;
}

.section08 {
  position: relative;
}

.widget-mockup {
  position: relative;
  width: 53.5%;
  transform: translateY(13%);
}

.widget-phone-mockup {
  width: 100%;
  transform: scale(1.5) translate(0, 9%);
}

.widget-screen-ele {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2vw;
}

.widget-bg {
  z-index: -1;
  transform: scale(1.1) translate(-0.5%, 1.1%);
}

.widget-img {
  position: absolute;
  left: 0;
  width: 100%;
  transform: scale(0.95);
}

.widgets.animate-up {
  transform: scale(0.95) translate(-0.5%, 0.7%);
  /* Move the element up by 10% of its height when the `animate-up` class is added */
}

.card-img {
  opacity: 0;
  transform: scale(0.5);
  width: 50%;
}

.card-img.animate {
  animation-name: scale;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.calendar-logos {
  transform: translateX(-9%);
}

.device-sync {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 72px;
  justify-self: start;
  width: 100%;
  height: fit-content;
  padding: 0 100px 100px 100px;
  margin-bottom: 0;
  background-color: #f5f5f5;
}

.text-area-device-sync {
  padding: 64px;
}

.mockups {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 85vh;
  max-height: min(740px, 42vw);
}

.mockup {
  display: relative;
  width: 100%;
  height: 210px;
  opacity: 0;
  transform: translateY(5vw);
}

.animate-on-scroll.animate .mockup {
  animation-name: slide-up;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
  animation-name: slide-up-mockup;
}
.animate-on-scroll.animate .device-sync-tablet {
  animation-delay: 0.15s;
}
.animate-on-scroll.animate .device-sync-laptop {
  animation-delay: 0s;
  animation-name: slide-up-laptop;
}
.animate-on-scroll.animate .device-sync-iphone {
  animation-delay: 0.4s;
}

.mockup-at-all-together {
  position: absolute;
  border-radius: 12px;
  width: fit-content;
  height: fit-content;
}

.device-sync-tablet {
  z-index: 1;
  left: 0;
  bottom: 30px;
  width: 31%;
}

.device-sync-laptop {
  z-index: 0;
  left: 50%;
  transform: translate(-50%, 5vw);
  width: 70%;
  margin-bottom: 86px;
}

.device-sync-iphone {
  z-index: 1;
  right: 0;
  bottom: 30px;
  width: 18%;
}

.device-sync-mockup-frame {
  position: absolute;
  width: 100%;
}

.mockup-frame-ipad {
  bottom: 0;
  left: 0;
  transform: translate(-8%, 7%);
}

.mockup-frame-laptop {
  width: 100%;
  left: 60%;
  transform: translate(-50%, -85%);
  border-radius: 12px 12px 0 0;
}

.mockup-frame-iphone {
  right: 0;
  bottom: 0;
  transform: translate(12%, 7%);
}

.device-sync-mockup-screen {
  position: absolute;
}

.device-sync-mockups-at-small-view {
  display: none;
  width: 100%;
}
.device-sync-mockups-at-small-view .mockup-screen-at-small-view {
  width: 100%;
}
.device-sync-mockups-at-small-view .laptop-mockup-area {
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 2.8%;
}
.device-sync-mockups-at-small-view .mockup-area-at-small-view {
  opacity: 0;
  transform: translateY(5vw);
}
.device-sync-mockups-at-small-view .mockup-screen-laptop-at-small-view {
  transform: translate(0, -2%);
  width: 100%;
  border-radius: 0 0 6px 6px;
  box-shadow: 0px 16px 24px 0px rgba(174, 179, 190, 0.14),
    0px 6px 30px 0px rgba(174, 179, 190, 0.12),
    0px 8px 10px 0px rgba(174, 179, 190, 0.2);
}
.device-sync-mockups-at-small-view .mockup-frame-laptop-at-small-view {
  width: 99.96%;
  border-radius: 6px 6px 0 0;
  box-shadow: 0px 16px 24px 0px rgba(174, 179, 190, 0.14),
    0px 6px 30px 0px rgba(174, 179, 190, 0.12),
    0px 8px 10px 0px rgba(174, 179, 190, 0.2);
}
.device-sync-mockups-at-small-view .mockup-screen-ipad {
  width: 20%;
}
.device-sync-mockups-at-small-view .ipad-iphone-mockup-area {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  align-items: start;
  gap: 8px;
  height: fit-content;
}
.device-sync-mockups-at-small-view .device-sync-mockup-screen {
  width: 100%;
}
.device-sync-mockups-at-small-view .ipad-mockup-area {
  position: relative;
  width: 50%;
}
.device-sync-mockups-at-small-view .mockup-screen-ipad-at-small-view {
  width: 85%;
  transform: translate(9%, 8%);
  border-radius: 8px;
}
.device-sync-mockups-at-small-view .mockup-frame-ipad-at-small-view {
  position: absolute;
  width: 100%;
}
.device-sync-mockups-at-small-view .iphone-mockup-area {
  position: relative;
  width: 30%;
}
.device-sync-mockups-at-small-view .mockup-frame-iphone-at-small-view {
  position: absolute;
  width: 94%;
}
.device-sync-mockups-at-small-view .mockup-screen-iphone-at-small-view {
  transform: translate(18%, 10%);
  width: 70%;
  border-radius: 8px;
}

.animate-on-scroll.animate .mockup-area-at-small-view {
  animation-name: slide-up;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
  animation-name: slide-up-mockup;
  animation-delay: 0.1s;
}
.animate-on-scroll.animate .ipad-mockup-area {
  animation-delay: 0.4s;
}
.animate-on-scroll.animate .iphone-mockup-area {
  animation-delay: 0.7s;
}

.mockup-screen-ipad {
  width: 83%;
  bottom: 0;
  left: 0;
}

.mockup-screen-laptop {
  width: 100%;
  left: 50%;
  transform: translateX(-40%);
  box-shadow: 0px 16px 24px 0px rgba(174, 179, 190, 0.14),
    0px 6px 30px 0px rgba(174, 179, 190, 0.12),
    0px 8px 10px 0px rgba(174, 179, 190, 0.2);
}

.mockup-screen-iphone {
  width: 75%;
  right: 0;
  bottom: 0;
  border-radius: 8%;
}

@font-face {
  font-family: "NotoSansCJKkR-Regular";
  src: url("/asset/fonts/NotoSansCJKkR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Medium";
  src: url("/asset/fonts/NotoSansCJKkR-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansCJKkR-Bold";
  src: url("/asset/fonts/NotoSansCJKkR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Regular";
  src: url("/asset/fonts/PretendardJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Bold";
  src: url("/asset/fonts/PretendardJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PretendardJP-Medium";
  src: url("/asset/fonts/PretendardJP-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}
* button {
  cursor: pointer;
  padding: 0;
}

:lang(ko),
:lang(en),
:lang(ja) {
  font-family: "PretendardJP-Regular";
}

:lang(zh) {
  font-family: "NotoSansCJKkR-Regular";
}

.bold-font {
  font-family: "PretendardJP-Bold";
}

:lang(zh) .bold-font {
  font-family: "NotoSansCJKkR-Bold";
}

.medium-font {
  font-family: "PretendardJP-Medium";
}

:lang(zh) .medium-font {
  font-family: "NotoSansCJKkR-Medium";
}

a {
  color: #202020;
  text-decoration: none;
  font-size: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.display-none {
  display: none !important;
}

.large-title {
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
}

.title1 {
  color: #202020;
  font-size: 44px;
  line-height: 66px;
}

.title2 {
  font-weight: 400;
  color: #666666;
  font-size: 28px;
  line-height: 44px;
}

.paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 18px;
  line-height: 27px;
}

.small-paragraph {
  font-weight: 400;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

.text-center {
  text-align: center;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes bubble-up-left {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right {
  0% {
    opacity: 0;
    transform: rotate(14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes bubble-up-right-and-left-deg {
  0% {
    opacity: 0;
    transform: rotate(-14deg) translate(-1vh, 5vh) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: rotate(-14deg) translate(0vh, 0vh) scale(1);
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-mockup {
  0% {
    opacity: 0;
    transform: translateY(5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up-laptop {
  0% {
    opacity: 0;
    transform: translate(-50%, 5vw);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes spin {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spin-back {
  from {
    transform: scale(1) rotateY(0deg);
  }
  to {
    transform: scale(0.99) rotateY(180deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1440px) {
  .top-nav {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .nav-drop-down {
    display: none !important;
  }
}
@media (min-width: 1240px) and (max-width: 1440px) {
  .top-nav {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .nav-drop-down {
    display: none !important;
  }
  .default-section {
    padding: 0 50px;
  }
  #footer-container {
    height: 292px;
  }
  .footer-area {
    padding: 80px 30px;
  }
}
@media (min-width: 905px) and (max-width: 1240px) {
  .top-nav {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 40px;
  }
  .nav-drop-down {
    display: none !important;
  }
  .default-section {
    padding: 0 40px;
  }
  .hero {
    width: auto;
    height: 100%;
  }
  .awards-container {
    padding: 40px 5px;
    height: 263px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .content-area {
    padding: 40px;
  }
  .content-area-card {
    padding: 60px 24px;
  }
  .text-area-card {
    max-width: 32vw;
  }
  .card {
    min-width: 418.5px;
    min-height: 418.5px;
  }
  #footer-container {
    height: 292px;
  }
  .footer-area {
    padding: 80px 64px;
  }
}
@media (min-width: 600px) and (max-width: 905px) {
  .nav-bar {
    padding: 3% 4%;
  }
  .nav-drop-down .nav-item {
    padding: 0;
  }
  .topnav-button-drop-downs {
    right: 0;
  }
  .nav-item-logo {
    padding: 0;
  }
  .nav-bar
    .nav-item:not(.nav-item-logo, .nav-item-dropdown, .nav-item-hamburger) {
    display: none;
  }
  .nav-item-dropdown {
    padding: 0;
  }
  .nav-item-hamburger {
    display: flex;
  }
  .hero-container {
    height: calc(100vh - 64px);
  }
  .hero {
    height: 100%;
  }
  .overlay {
    height: calc(100vh - 64px);
  }
  .default-section {
    padding: 0 64px;
  }
  .section01 {
    padding: 0;
  }
  .section01 {
    padding: 0;
  }
  .awards-container {
    padding: 40px 5px;
    height: 263px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
  }
  .award-img {
    height: 8vh;
  }
  .content-area {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: center;
  }
  .mockup-area {
    height: 70vh;
  }
  .card {
    width: calc(100vw - 128px);
    height: calc(100vw - 128px);
  }
  .section03 .content-area,
  .section07 .content-area,
  .section09 .content-area {
    flex-direction: column-reverse;
  }
  .text-area {
    width: 100%;
    max-width: 730px;
    padding: 40px 30px;
    align-items: center;
    text-align: center;
  }
  .mockups.at-large-view {
    display: none;
  }
  .device-sync-mockups-at-small-view {
    display: block;
  }
  .section10 {
    padding: 0;
  }
  .device-sync {
    gap: 50px;
    padding: 64px 64px 128px 64px;
  }
  #footer-container {
    height: 260px;
  }
  .footer-area {
    padding: 64px 47px;
  }
}
@media (max-width: 600px) {
  .nav-bar {
    padding: 3% 4%;
  }
  .nav-drop-down .nav-item {
    padding: 0;
  }
  .nav-item-logo {
    padding: 0;
  }
  .nav-bar
    .nav-item:not(.nav-item-logo, .nav-item-dropdown, .nav-item-hamburger) {
    display: none;
  }
  .topnav-button-drop-downs {
    right: 0;
  }
  .nav-item-dropdown {
    padding: 0;
  }
  .nav-item-hamburger {
    display: block;
  }
  .default-section {
    padding: 0 12px;
  }
  .hero-container {
    height: calc(100vh - 64px);
  }
  .hero {
    width: 100%;
    height: 100%;
  }
  .overlay {
    height: calc(100vh - 64px);
  }
  .section01 {
    padding: 0;
    margin-bottom: 15px;
  }
  .section02 {
    margin-top: 25px;
  }
  .awards-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4vw 0 1vw 0;
    gap: 14vw;
  }
  .award-img {
    height: 7vh;
  }
  .common-section {
    padding: 1vw 0;
  }
  .content-area {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: center;
  }
  .content-area-vertical {
    padding: 0;
  }
  .section03 .content-area,
  .section07 .content-area,
  .section09 .content-area {
    flex-direction: column-reverse;
  }
  .text-area {
    width: 100%;
    max-width: 352px;
    padding: 40px 0;
    margin: 0;
    align-items: center;
    text-align: center;
  }
  .text-area-alone {
    margin: 0;
    width: 100%;
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }
  .section05 > .text-area {
    padding: 100px 12px 0;
  }
  .sticker3 {
    top: 43vh;
    left: 3vh;
  }
  .sticker4 {
    right: 6vh;
  }
  .sticker5 {
    right: 4vh;
  }
  .mockup-area {
    width: 100%;
    height: 70vh;
    padding: 12px;
  }
  .mockup-area-left {
    width: 100%;
    padding: 0;
  }
  .phone-mockup {
    z-index: 1;
    height: 100%;
    border-radius: 32px;
  }
  .mockup-screen {
    transform: scale(0.94) translate(0, 6%);
  }
  .mockup-screen-left {
    transform: scale(1) translate(0, 10%);
  }
  .content-area-card {
    padding: 12px;
  }
  .card {
    width: 100%;
    height: 100%;
  }
  .calendar-logos {
    width: 100%;
    transform: translate(0);
  }
  .mockups.at-large-view {
    display: none;
  }
  .device-sync-mockups-at-small-view {
    display: block;
  }
  .device-sync {
    padding: 2vw 1vw 8vw 1vw;
    gap: 0;
  }
  #footer-container {
    height: 212px;
  }
  .footer-area {
    padding: 40px 24px;
  }
}
@media (min-width: 1240px) {
  .large-title {
    font-size: 56px;
    line-height: 84px;
  }
  .title1 {
    font-size: 44px;
    line-height: 66px;
  }
  .title2 {
    font-size: 24px;
    line-height: 36px;
  }
  .paragraph {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (min-width: 600px) and (max-width: 1240px) {
  .large-title {
    font-size: 48px;
    line-height: 72px;
  }
  .title1 {
    font-size: 36px;
    line-height: 54px;
  }
  .title2 {
    font-size: 20px;
    line-height: 30px;
  }
  .paragraph {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .large-title {
    font-size: 32px;
    line-height: 48px;
  }
  .title1 {
    font-size: 28px;
    line-height: 42px;
  }
  .title2 {
    font-size: 16px;
    line-height: 24px;
  }
  .paragraph {
    font-size: 14px;
    line-height: 21px;
  }
  .small-paragraph {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (min-width: 905px) {
  .under-tablet-large {
    display: none;
  }
  .over-tablet-large {
    display: block;
  }
}
@media (max-width: 904px) {
  .under-tablet-large {
    display: block;
  }
  .over-tablet-large {
    display: none;
  }
  .section09 .content-area .text-area-card {
    max-width: 550px;
    padding-bottom: 0;
  }
}

/*# sourceMappingURL=index.css.map */
