@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

html,
body {
  height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

fieldset {
  border: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

input {
  border: 0;
  outline: none;
}

body {
  position: relative;
  font-family: "Pretendard", sans-serif, "돋움", Dotum, "굴림", Gulim, Helvetica, sans-serif;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  -webkit-text-size-adjust: none;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  margin: -1px;
}

.no-scroll {
  overflow: hidden;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* 공통 */
.header-banner {
  position: absolute;
  width: 360px;
  top: 38px;
  right: 60px;
}
@media (max-width: 1539px) {
  .header-banner {
    width: 240px;
  }
}
.header-banner a {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 40px;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(26, 182, 195, 0) 0%, rgba(26, 182, 195, 0) 100%), linear-gradient(130deg, #00d1d2 0%, #107af2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.75rem;
}
@media (max-width: 1539px) {
  .header-banner a {
    padding: 30px 20px;
  }
}
.header-banner a .icon-wrapper {
  position: relative;
  margin-top: 45px;
  width: 30px;
}
.header-banner a .icon-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
}
.header-banner a .icon-wrapper img {
  position: relative;
  height: auto;
  margin: 0 auto;
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.header-banner:hover .icon-wrapper img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.input-area {
  position: relative;
  background: #fff;
  position: relative;
  width: 780px;
  margin: 0 auto;
}
.input-area::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  right: 36px;
  background: url("../svgs/search-icon-black.svg") no-repeat center/cover;
  cursor: pointer;
}
.input-area input {
  width: 100%;
  padding: 24px 70px 24px 24px;
  font-size: 20px;
  letter-spacing: -0.015em;
}

.lang-list .active span, .lang-list li:hover span {
  color: #107af2;
  border-bottom: 1px solid #107af2;
}

.lang-list li a {
  display: block;
  padding: 8px 24px;
  text-align: center;
  font-weight: 600;
  color: #666666;
}
.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url("../svgs/close-icon-black.svg") no-repeat center/100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

/* 스크롤바 */
.mobile-menu::-webkit-scrollbar,
.help-menu::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu::-webkit-scrollbar-track,
.help-menu::-webkit-scrollbar-track {
  background-color: #d9d9d9;
}

.mobile-menu::-webkit-scrollbar-thumb,
.help-menu::-webkit-scrollbar-thumb {
  background-color: #107af2;
  border-radius: 10px;
}

/* 공통 끝 */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 99;
}
@media (max-width: 1399px) {
  header {
    height: 68px;
  }
}
header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1399px) {
  header .header-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 16px 65px;
  }
}
@media (max-width: 1023px) {
  header .header-wrapper {
    padding: 16px 20px;
  }
}
header .header-wrapper.on {
  background-color: #fff;
  border-bottom: 1px solid #bedefc;
}
header .header-wrapper .logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 154px;
  height: 36px;
  background: url("../svgs/logo-white.svg") no-repeat center 100%;
}
header .header-wrapper .logo.on {
  background-image: url("../svgs/logo.svg");
}
header .header-wrapper .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .gnb {
    display: none;
  }
}
.gnb .hidden-menu {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 310px;
  background-color: #fff;
  border-bottom: 1px solid #bedefc;
}
.gnb .hidden-menu .header-banner a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: url("../svgs/symbol-small.svg") no-repeat center/100%;
}
.gnb .gnb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gnb .gnb-list .gnb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.gnb .gnb-list .gnb-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #107af2;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.gnb .gnb-list .gnb-item:hover::after {
  width: 100%;
}
.gnb .gnb-list .gnb-item .gnb-link {
  display: block;
  width: 100%;
  padding: 40px 45px;
  white-space: nowrap;
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  border-width: 3px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.gnb .gnb-list .gnb-item .gnb-link.on {
  color: #333333;
}
.gnb .sub-gnb {
  position: absolute;
  top: 126px;
  opacity: 0;
  pointer-events: none;
}
.gnb .sub-gnb.on {
  pointer-events: auto;
  opacity: 1;
}
.gnb .sub-gnb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.gnb .sub-gnb ul li {
  width: 100%;
}
.gnb .sub-gnb ul li a {
  display: block;
  width: 100%;
  padding: 12px 0;
  letter-spacing: -0.03em;
  color: #333333;
}
.gnb .sub-gnb ul li a:hover {
  color: #107af2;
}
.gnb .sub-gnb ul li a span {
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 0.875rem;
}

header .util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
}
@media (max-width: 1399px) {
  header .util {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
header .util .lang,
header .util .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  padding: 48px 24px;
  cursor: pointer;
}
@media (max-width: 1399px) {
  header .util .lang,
  header .util .search {
    display: none;
  }
}
header .util .search .btn-search {
  width: 24px;
  height: 24px;
  background: url("../svgs/search-icon-white.svg") no-repeat center 100%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
header .util .search .btn-search.on {
  background-image: url("../svgs/search-icon-black.svg");
}
header .util .search .btn-search.open {
  background-image: url("../svgs/close-icon.svg");
}
header .util .search .btn-search.open::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #107af2;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
header .util .search:hover .btn-search {
  background-image: url("../svgs/search-icon-hover.svg");
}
header .util .search:hover .btn-search.open {
  /*hover 했을 때 효과를 덮어씀*/
  background-image: url("../svgs/close-icon.svg");
}
header .util .search .search-dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  cursor: auto;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
header .util .search .search-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 0;
  padding: 64px 60px 54px;
  background-color: #e4f2fe;
  text-align: center;
  cursor: auto;
}
header .util .search .search-menu.open {
  display: block;
  height: 310px;
}
header .util .search .search-menu .keyword-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 48px 0 16px;
  letter-spacing: -0.03em;
  color: #333333;
}
header .util .search .search-menu .keyword-area span {
  font-weight: 600;
  margin-bottom: 16px;
}
header .util .search .search-menu .keyword-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  width: 100%;
}
header .util .search .search-menu .keyword-area ul li a {
  font-size: 26px;
  color: #107af2;
}
header .util .lang .btn-lang {
  width: 24px;
  height: 24px;
  background: url("../svgs/lang-icon-white.svg") no-repeat center 100%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
header .util .lang .btn-lang.on {
  background-image: url("../svgs/lang-icon-black.svg");
}
header .util .lang:hover .btn-lang {
  background-image: url("../svgs/lang-icon-hover.svg");
}
header .util .lang .lang-list {
  display: none;
  position: absolute;
  top: 84px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 8px 0;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #107af2;
}
header .util .lang:hover .lang-list {
  display: block;
}
header .util .help {
  margin-left: 16px;
}
@media (max-width: 1399px) {
  header .util .help {
    position: fixed;
    top: 17px;
    right: 102px;
  }
}
@media (max-width: 1023px) {
  header .util .help {
    right: 60px;
  }
}
header .util .help button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-width: 120px;
  padding: 14px 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  color: #fff;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media (max-width: 1399px) {
  header .util .help button {
    min-width: auto;
    padding: 7px 12px;
  }
}
header .util .help button.on, header .util .help button:hover {
  background-color: #107af2;
}
header .util .help button::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 30px;
  background: url("../svgs/plus-icon.svg") no-repeat center 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (max-width: 1399px) {
  header .util .help button::after {
    margin-left: 6px;
  }
}
header .util .help:hover button::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .mobile-btn {
  display: none;
  position: absolute;
  top: 11px;
  right: 65px;
  width: 40px;
  height: 40px;
  margin-right: -8px;
  background: url("../svgs/menu-icon.svg") no-repeat center/24px;
}
@media (max-width: 1399px) {
  header .mobile-btn {
    display: block;
  }
}
@media (max-width: 1023px) {
  header .mobile-btn {
    right: 20px;
  }
}
header .mobile-btn.on {
  background-image: url("../svgs/menu-icon-black.svg");
}

.help-menu {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 565px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  z-index: 999;
  -webkit-transition: right 0.3s linear;
  transition: right 0.3s linear;
}
@media (max-width: 1399px) {
  .help-menu {
    max-width: 440px;
  }
}
@media (max-width: 767px) {
  .help-menu {
    max-width: 100%;
  }
}
.help-menu.open {
  right: 0;
}
.help-menu .close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 35px;
  height: 35px;
}
@media (max-width: 1399px) {
  .help-menu .close {
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}
.help-menu .close:hover::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
@media (max-width: 1399px) {
  .help-menu .close:hover::after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.help-menu .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 80px 60px 0 50px;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper {
    padding: 65px 20px 0;
  }
}
.help-menu .content-wrapper [class*=box-] {
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper [class*=box-] {
    margin-bottom: 40px;
  }
}
.help-menu .content-wrapper [class*=box-] h3 {
  margin-bottom: 8px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.75rem;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper [class*=box-] h3 {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.125rem;
  }
}
.help-menu .content-wrapper [class*=box-] ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.help-menu .content-wrapper [class*=box-] ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 13px;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.25rem;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper [class*=box-] ul li a {
    padding: 16px 8px 14px;
  }
}
@media (max-width: 1023px) {
  .help-menu .content-wrapper [class*=box-] ul li a {
    font-size: 15px;
    letter-spacing: -0.015em;
    line-height: 1.3125rem;
  }
}
.help-menu .content-wrapper [class*=box-] ul li a:hover {
  color: #107af2;
}
.help-menu .content-wrapper .box-solution {
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-solution {
    margin-bottom: 40px;
  }
}
.help-menu .content-wrapper .box-solution h3 {
  margin-bottom: 24px;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-solution h3 {
    margin-bottom: 16px;
  }
}
.help-menu .content-wrapper .box-solution ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-solution ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
}
.help-menu .content-wrapper .box-solution ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border: 0;
}
.help-menu .content-wrapper .box-solution ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-solution ul li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #d9d9d9;
    text-align: left;
  }
}
.help-menu .content-wrapper .box-solution ul li a .img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90px;
  height: 90px;
  margin-bottom: 29px;
  padding: 17px 0;
  border-radius: 50%;
  background-color: #e4f2fe;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-solution ul li a .img-wrapper {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
  }
}
.help-menu .content-wrapper .box-solution ul li a .img-wrapper img {
  width: 56px;
  height: 56px;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-solution ul li a span {
    padding-left: 16px;
  }
}
.help-menu .content-wrapper .box-library li a {
  position: relative;
}
.help-menu .content-wrapper .box-library li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 17px;
  height: 13px;
  background: url("../svgs/arrow-blue.svg") no-repeat center/cover;
}
.help-menu .content-wrapper .box-library li + li {
  border-top: 1px solid #d9d9d9;
}
.help-menu .content-wrapper .box-faq .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.help-menu .content-wrapper .box-faq .header h3 {
  margin-bottom: 0;
}
.help-menu .content-wrapper .box-faq .header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 84px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 16px;
  color: #333333;
  background-color: #fff;
  border: 1px solid #cacaca;
  border-radius: 99px;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1.125rem;
  -webkit-transition: border 0.25s linear;
  transition: border 0.25s linear;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-faq .header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 26px;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
  }
}
.help-menu .content-wrapper .box-faq .header a:after {
  content: "";
  width: 11px;
  height: 12px;
  margin-left: 16px;
  background: url("../svgs/arrow-more.svg") no-repeat center/cover;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-faq .header a:after {
    margin-left: 0;
  }
}
.help-menu .content-wrapper .box-faq .header a:hover {
  border-color: #000;
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-faq .header a:hover {
    border: 1px solid #cacaca;
  }
}
@media (max-width: 1399px) {
  .help-menu .content-wrapper .box-faq .header a span {
    display: none;
  }
}
.help-menu .content-wrapper .box-faq li + li {
  border-top: 1px solid #d9d9d9;
}
.help-menu .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 40px 165px 40px 50px;
  background-color: #f3f3f3;
}
@media (max-width: 1399px) {
  .help-menu .footer {
    padding: 24px 20px;
  }
}
.help-menu .footer .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.help-menu .footer .center .title {
  width: 100%;
  margin-bottom: 10px;
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.375rem;
}
@media (max-width: 1023px) {
  .help-menu .footer .center .title {
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 1.25rem;
  }
}
.help-menu .footer .center a {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
}
@media (max-width: 1399px) {
  .help-menu .footer .center a {
    font-size: 30px;
  }
}
.help-menu .footer .center span {
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1.375rem;
}
@media (max-width: 1023px) {
  .help-menu .footer .center span {
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 1.25rem;
  }
}
.help-menu .footer .inquiry {
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .help-menu .footer .inquiry {
    right: 20px;
    width: 64px;
    height: 64px;
  }
}
.help-menu .footer .inquiry a {
  display: block;
  width: 95px;
  height: 96px;
  background: url("../svgs/inquiry.svg") no-repeat center/cover;
}
@media (max-width: 1399px) {
  .help-menu .footer .inquiry a {
    width: 100%;
    height: 100%;
  }
}

.mobile-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 440px;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999;
  -webkit-transition: right 0.3s linear;
  transition: right 0.3s linear;
}
@media (max-width: 1399px) {
  .mobile-menu {
    display: block;
  }
}
@media (max-width: 767px) {
  .mobile-menu {
    max-width: 100%;
  }
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu .sticky-header {
  position: sticky;
  top: 0;
  right: 0;
  max-width: 440px;
  width: 100%;
  padding-top: 20px;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .mobile-menu .sticky-header {
    max-width: 100%;
  }
}
.mobile-menu .sticky-header .top-area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  margin-bottom: 13px;
}
.mobile-menu .sticky-header .top-area .lang-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
.mobile-menu .sticky-header .top-area .lang-list li a {
  padding: 6px;
}
.mobile-menu .sticky-header .top-area .close {
  position: relative;
  width: 35px;
  height: 35px;
  z-index: 1;
}
.mobile-menu .sticky-header .input-area {
  max-width: 440px;
  width: 100%;
  padding: 16px 20px;
  background-color: #e4f2fe;
}
@media (max-width: 767px) {
  .mobile-menu .sticky-header .input-area {
    max-width: 100%;
  }
}
.mobile-menu .sticky-header .input-area input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  letter-spacing: 0;
}
.mobile-menu .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin-top: 27px;
  padding: 0 20px;
  overflow-y: auto;
  background-color: #fff;
}
.mobile-menu .content-wrapper .mobile-gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.mobile-menu .content-wrapper .mobile-gnb .mobile-item {
  width: 100%;
  padding: 0 20px;
}
.mobile-menu .content-wrapper .mobile-gnb .mobile-item .mobile-link {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 600;
}
.mobile-menu .content-wrapper .mobile-gnb .mobile-item .mobile-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../svgs/plus-black.svg") no-repeat center/100%;
}
.mobile-menu .content-wrapper .mobile-gnb .mobile-item.on .mobile-link {
  color: #107af2;
}
.mobile-menu .content-wrapper .mobile-gnb .mobile-item.on .mobile-link:after {
  background-image: url("../svgs/minus.svg");
}
.mobile-menu .mobile-sub-gnb {
  display: none;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 12px 24px;
  background-color: #f3f3f3;
  border-top: 1px solid #107af2;
  border-bottom: 1px solid #107af2;
}
.mobile-menu .mobile-sub-gnb li a {
  display: block;
  width: 100%;
  padding: 12px 0;
  letter-spacing: -0.03em;
}
.mobile-menu .mobile-sub-gnb li a:hover {
  color: #107af2;
}
.mobile-menu .mobile-sub-gnb li a span {
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 0.875rem;
}
.mobile-menu .header-banner {
  position: static;
  width: 100%;
  margin-top: 40px;
  opacity: 1;
  visibility: visible;
}
.mobile-menu .header-banner a {
  padding: 20px 65px 20px 24px;
  font-size: 18px;
  letter-spacing: 0em;
  line-height: 1.5rem;
}
.mobile-menu .header-banner a .icon-wrapper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  margin-top: 0;
}
.mobile-menu .header-banner a .icon-wrapper img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 48px 60px;
  border-top: 1px solid #cacaca;
}
@media (max-width: 1399px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 45px 65px;
  }
}
@media (max-width: 1023px) {
  footer {
    padding: 48px 20px;
  }
}
footer .left-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1399px) {
  footer .left-area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
footer .left-area .logo-area {
  width: 270px;
  margin-right: 80px;
}
@media (max-width: 1399px) {
  footer .left-area .logo-area {
    display: none;
  }
}
footer .left-area .logo-area img {
  width: 100%;
}
footer .left-area address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
}
@media (max-width: 1399px) {
  footer .left-area address {
    margin-top: 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
  }
}
footer .left-area address div {
  font-weight: 400;
  color: #555;
}
footer .left-area address .title {
  margin-bottom: 8px;
}
footer .left-area address .address span {
  display: block;
  line-height: 1.4;
  color: #555;
}
footer .left-area address small {
  margin-top: 30px;
  color: #999999;
  line-height: 1.4;
}
@media (max-width: 1399px) {
  footer .left-area address small {
    margin-top: 8px;
  }
}
footer .right-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  position: relative;
}
@media (max-width: 1399px) {
  footer .right-area {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 767px) {
  footer .right-area {
    margin-bottom: 24px;
  }
}
footer .right-area .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 22px;
  color: #107af2;
}
@media (max-width: 1399px) {
  footer .right-area .top {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 32px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  footer .right-area .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .right-area .top .footer-legal {
  margin-right: 30px;
}
footer .right-area .top .footer-legal > * {
  padding: 0 20px;
}
@media (max-width: 1399px) {
  footer .right-area .top .footer-legal > * {
    padding: 0 16px;
  }
}
footer .right-area .top .footer-legal button {
  position: relative;
}
@media (max-width: 1399px) {
  footer .right-area .top .footer-legal button {
    padding-left: 0;
  }
}
footer .right-area .top .footer-legal button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #107af2;
}
@media (max-width: 767px) {
  footer .right-area .top .family-site {
    width: 100%;
    margin-top: 24px;
  }
}
footer .right-area .top .family-site button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 24px;
  background-color: #e4f2fe;
  border-radius: 99px;
}
@media (max-width: 1399px) {
  footer .right-area .top .family-site button {
    min-width: 180px;
    padding: 17px 16px 19px;
  }
}
@media (max-width: 767px) {
  footer .right-area .top .family-site button {
    width: 100%;
  }
}
footer .right-area .top .family-site button::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 16px;
  background: url("../svgs/plus-blue.svg") no-repeat center/100%;
}
footer .right-area .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  footer .right-area .bottom {
    bottom: -86px;
  }
}
@media (max-width: 767px) {
  footer .right-area .bottom {
    position: unset;
  }
}
footer .right-area .bottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #bedefc;
  background-color: #fff;
}

/* 공통 */
.inner {
  width: 100%;
  max-width: 1730px;
  padding: 0 65px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .inner {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.common-header {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1539px) {
  .common-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 1023px) {
  .common-header {
    margin-bottom: 35px;
  }
}

.common-title {
  font-size: 60px;
  letter-spacing: -0.03em;
  line-height: 3.75rem;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1539px) {
  .common-title {
    font-size: 56px;
    line-height: 3.5rem;
  }
}
@media (max-width: 1023px) {
  .common-title {
    font-size: 36px;
    line-height: 2.25rem;
  }
}

.common-description {
  font-size: 26px;
  letter-spacing: -0.03em;
  word-break: keep-all;
  word-wrap: break-word;
  line-height: 1.4;
  font-weight: 400;
  color: #333333;
  margin-top: 30px;
}
@media (max-width: 1539px) {
  .common-description {
    font-size: 24px;
  }
}
@media (max-width: 1023px) {
  .common-description {
    font-size: 18px;
    margin-top: 16px;
  }
}

.shortcut-link {
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  padding: 16px 22px;
  background-color: #fff;
  color: #107af2;
  border: 1px solid #107af2;
  border-radius: 99px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .shortcut-link {
    margin-top: 32px;
    padding: 14px 20px;
    font-size: 16px;
    letter-spacing: -0.015em;
  }
}
.shortcut-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #107af2;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.shortcut-link:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.shortcut-link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.shortcut-link span::after {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
  margin-left: 28px;
  background: url("../svgs/arrow-blue.svg") no-repeat center/cover;
}
@media (max-width: 1023px) {
  .shortcut-link span::after {
    margin-left: 24px;
  }
}
.shortcut-link:hover span {
  color: #fff;
}
.shortcut-link:hover span::after {
  background-image: url("../svgs/arrow-white.svg");
}

/* 공통 끝 */
.container {
  position: relative;
  width: 100%;
}

.sc-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
}
.sc-intro .video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sc-intro .video-wrapper #intro-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc-intro .content-wrapper {
  position: absolute;
  bottom: 100px;
}
@media (max-width: 1539px) {
  .sc-intro .content-wrapper {
    bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .sc-intro .content-wrapper {
    bottom: 48px;
  }
}
.sc-intro .content-wrapper .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-size: 100px;
  line-height: 6.875rem;
  font-weight: 600;
  letter-spacing: 0em;
}
@media (max-width: 1539px) {
  .sc-intro .content-wrapper .title {
    font-size: 84px;
    line-height: 1.1;
  }
}
@media (max-width: 1023px) {
  .sc-intro .content-wrapper .title {
    font-size: 60px;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  .sc-intro .content-wrapper .title {
    font-size: 46px;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
}
.sc-intro .content-wrapper .title .animation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc-intro .content-wrapper .title .animation .ky,
.sc-intro .content-wrapper .title .animation .round {
  display: inline-block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: width 1s;
  transition: width 1s;
}
.sc-intro .content-wrapper .title .animation .round.on {
  width: 413px;
}
@media (max-width: 1539px) {
  .sc-intro .content-wrapper .title .animation .round.on {
    width: 346px;
  }
}
@media (max-width: 1023px) {
  .sc-intro .content-wrapper .title .animation .round.on {
    width: 248px;
  }
}
@media (max-width: 767px) {
  .sc-intro .content-wrapper .title .animation .round.on {
    width: 178px;
  }
}
.sc-intro .content-wrapper .title .animation .ky.on {
  width: 135px;
}
@media (max-width: 1539px) {
  .sc-intro .content-wrapper .title .animation .ky.on {
    width: 114px;
  }
}
@media (max-width: 1023px) {
  .sc-intro .content-wrapper .title .animation .ky.on {
    width: 81px;
  }
}
@media (max-width: 767px) {
  .sc-intro .content-wrapper .title .animation .ky.on {
    width: 58px;
  }
}
.sc-intro .content-wrapper .description {
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1.4;
  color: #fff;
  font-weight: 400;
  margin-top: 30px;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1539px) {
  .sc-intro .content-wrapper .description {
    font-size: 24px;
  }
}
@media (max-width: 1023px) {
  .sc-intro .content-wrapper .description {
    font-size: 20px;
    margin-top: 24px;
  }
}
.sc-intro .content-wrapper .control-area {
  position: relative;
  width: 100%;
}
.sc-intro .content-wrapper .control-area .progress-area {
  margin-top: 96px;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 1539px) {
  .sc-intro .content-wrapper .control-area .progress-area {
    margin-top: 67px;
  }
}
@media (max-width: 1023px) {
  .sc-intro .content-wrapper .control-area .progress-area {
    margin-top: 40px;
  }
}
.sc-intro .content-wrapper .control-area .progress-area #progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background-color: #fff;
}
.sc-intro .content-wrapper .control-area .btn-area {
  position: absolute;
  right: 0;
  bottom: 98px;
  width: 56px;
  height: 56px;
}
@media (max-width: 1539px) {
  .sc-intro .content-wrapper .control-area .btn-area {
    bottom: 70px;
  }
}
@media (max-width: 1023px) {
  .sc-intro .content-wrapper .control-area .btn-area {
    width: 40px;
    height: 40px;
    bottom: 42px;
  }
}
.sc-intro .content-wrapper .control-area .btn-area #video-btn {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../svgs/btn-pause.svg") no-repeat center/cover;
}
.sc-intro .content-wrapper .control-area .btn-area #video-btn.play {
  background-image: url("../svgs/btn-play.svg");
}

.sc-competition {
  background: #fff;
  padding: 200px 0;
  overflow: hidden;
}
@media (max-width: 1539px) {
  .sc-competition {
    padding: 144px 0;
  }
}
@media (max-width: 1023px) {
  .sc-competition {
    padding: 80px 0;
  }
}
@media (max-width: 1023px) {
  .sc-competition .competition-slide {
    width: 98%;
    height: 384px;
    margin: 0 auto;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .sc-competition .competition-slide {
    width: 100%;
    height: 320px;
  }
}
.sc-competition .competition-slide .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.sc-competition .competition-slide .content-wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 640px;
  padding: 0 10px;
  padding-top: 150px;
  z-index: 1;
  background: no-repeat center/cover;
  -webkit-transition: padding 0.5s;
  transition: padding 0.5s;
}
@media (max-width: 1539px) {
  .sc-competition .competition-slide .content-wrapper .content {
    height: 518px;
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .sc-competition .competition-slide .content-wrapper .content {
    width: 100%;
    height: 100%;
    padding-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.sc-competition .competition-slide .content-wrapper .content:hover {
  padding-top: 0;
}
.sc-competition .competition-slide .content-wrapper .content:first-child {
  background-image: url("../images/competition1.jpg");
}
.sc-competition .competition-slide .content-wrapper .content:nth-child(2) {
  background-image: url("../images/competition2.jpg");
}
.sc-competition .competition-slide .content-wrapper .content:last-child {
  background-image: url("../images/competition3.jpg");
}
.sc-competition .competition-slide .content-wrapper .content::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(144deg, rgba(0, 209, 210, 0.7) 0%, rgba(18, 129, 255, 0.7) 100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.sc-competition .competition-slide .content-wrapper .content:hover::before {
  height: 100%;
  opacity: 1;
}
.sc-competition .competition-slide .content-wrapper .content h3 {
  font-size: 40px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0em;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 1539px) {
  .sc-competition .competition-slide .content-wrapper .content h3 {
    font-size: 36px;
  }
}
@media (max-width: 1023px) {
  .sc-competition .competition-slide .content-wrapper .content h3 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .sc-competition .competition-slide .content-wrapper .content h3 {
    font-size: 26px;
  }
}
.sc-competition .competition-slide .content-wrapper .content .hover-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1023px) {
  .sc-competition .competition-slide .content-wrapper .content .hover-content {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.sc-competition .competition-slide .content-wrapper .content .hover-content p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.75rem;
  word-break: keep-all;
  word-wrap: break-word;
  font-weight: 400;
  margin-top: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1539px) {
  .sc-competition .competition-slide .content-wrapper .content .hover-content p {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .sc-competition .competition-slide .content-wrapper .content .hover-content p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.sc-competition .competition-slide .content-wrapper .content:hover .hover-content {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media (max-width: 1023px) {
  .sc-competition .competition-slide .content-wrapper .swiper-slide-active::before {
    height: 100%;
    opacity: 1;
  }
}

.sc-solution {
  background: #fff;
  padding-bottom: 200px;
}
@media (max-width: 1539px) {
  .sc-solution {
    padding-bottom: 144px;
  }
}
@media (max-width: 1023px) {
  .sc-solution {
    padding-bottom: 80px;
  }
}
.sc-solution .solution-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 1023px) {
  .sc-solution .solution-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 64px;
  }
}
@media (max-width: 767px) {
  .sc-solution .solution-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sc-solution .solution-list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.sc-solution .solution-list li .img-wrapper {
  width: 120px;
  height: 120px;
}
@media (max-width: 1023px) {
  .sc-solution .solution-list li .img-wrapper {
    width: 80px;
    height: 80px;
  }
}
.sc-solution .solution-list li .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc-solution .solution-list li h3 {
  display: block;
  margin-top: 35px;
  font-size: 36px;
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.1;
  color: #107af2;
}
@media (max-width: 1539px) {
  .sc-solution .solution-list li h3 {
    margin-top: 32px;
    font-size: 34px;
  }
}
@media (max-width: 1023px) {
  .sc-solution .solution-list li h3 {
    margin-top: 20px;
    font-size: 27px;
  }
}
.sc-solution .solution-list li p {
  margin-top: 15px;
  font-size: 20px;
  letter-spacing: -0.03em;
  word-break: keep-all;
  word-wrap: break-word;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
}
@media (max-width: 1539px) {
  .sc-solution .solution-list li p {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .sc-solution .solution-list li p {
    font-size: 16px;
  }
}

.sc-g-novia {
  position: relative;
  z-index: 1;
  padding: 230px 0;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 1539px) {
  .sc-g-novia {
    padding: 160px 0;
  }
}
@media (max-width: 1023px) {
  .sc-g-novia {
    padding: 151px 0;
  }
}
@media (max-width: 767px) {
  .sc-g-novia {
    padding: 95px 0 85px;
  }
}
.sc-g-novia .bg {
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 160%;
  z-index: -1;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  background: url("../images/g-novia.jpg") no-repeat center/cover;
}
.sc-g-novia .content-wrapper {
  text-align: center;
}
.sc-g-novia .content-wrapper .common-title {
  margin-top: 45px;
  color: #fff;
}
.sc-g-novia .content-wrapper .common-description {
  color: #fff;
}
.sc-g-novia .content-wrapper .shortcut-link {
  color: #fff;
  border: 1px solid #cacaca;
  background: rgba(0, 0, 0, 0.5);
}
.sc-g-novia .content-wrapper .shortcut-link::before {
  background-color: #fff;
}
.sc-g-novia .content-wrapper .shortcut-link span::after {
  margin-left: 18px;
  background: url("../svgs/arrow-white.svg") no-repeat center/cover;
}
.sc-g-novia .content-wrapper .shortcut-link:hover span {
  color: #333333;
}
.sc-g-novia .content-wrapper .shortcut-link:hover span::after {
  background-image: url("../svgs/arrow-black.svg");
}

.sc-synergy {
  width: 100%;
  padding: 200px 0;
}
@media (max-width: 1539px) {
  .sc-synergy {
    padding: 144px 0;
  }
}
@media (max-width: 1023px) {
  .sc-synergy {
    padding: 80px 0;
  }
}
.sc-synergy .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 680px;
  border-radius: 10px;
  will-change: transform;
}
@media (max-width: 1539px) {
  .sc-synergy .content-wrapper {
    height: 556px;
  }
}
@media (max-width: 1023px) {
  .sc-synergy .content-wrapper {
    height: 430px;
  }
}
@media (max-width: 767px) {
  .sc-synergy .content-wrapper {
    height: 712px;
  }
}
.sc-synergy .content-wrapper .video-wrapper {
  position: absolute;
  left: 1%;
  top: 1%;
  width: 98%;
  height: 98%;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}
.sc-synergy .content-wrapper .video-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(15, 122, 242, 0.7);
}
.sc-synergy .content-wrapper .video-wrapper .synergy-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc-synergy .content-wrapper .synergy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 130px;
}
@media (max-width: 1539px) {
  .sc-synergy .content-wrapper .synergy-list {
    padding: 0 53px;
  }
}
@media (max-width: 1199px) {
  .sc-synergy .content-wrapper .synergy-list {
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .sc-synergy .content-wrapper .synergy-list {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .sc-synergy .content-wrapper .synergy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-row-gap: 60px;
  }
}
.sc-synergy .content-wrapper .synergy-list .synergy-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.sc-synergy .content-wrapper .synergy-list .synergy-item:first-child {
  grid-column: span 2;
}
.sc-synergy .content-wrapper .synergy-list .synergy-item img {
  width: 24px;
  height: 24px;
}
.sc-synergy .content-wrapper .synergy-list .synergy-item [class*=digits] {
  display: grid;
  margin: 8px 0;
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .digits4 {
  grid-template-columns: repeat(4, 1fr);
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .digits2 {
  grid-template-columns: repeat(2, 1fr);
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .digits3 {
  grid-template-columns: repeat(3, 1fr);
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .num {
  display: inline-block;
  position: relative;
  height: 100px;
  color: #fff;
  font-size: 100px;
  line-height: 6.25rem;
  font-weight: 400;
  letter-spacing: 0em;
  overflow: hidden;
}
@media (max-width: 1539px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .num {
    height: 80px;
    font-size: 80px;
    line-height: 5rem;
  }
}
@media (max-width: 1199px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .num {
    height: 70px;
    font-size: 70px;
    line-height: 4.375rem;
  }
}
@media (max-width: 1023px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .num {
    height: 48px;
    font-size: 48px;
    line-height: 3rem;
  }
}
@media (max-width: 767px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .num {
    height: 56px;
    font-size: 56px;
    line-height: 3.5rem;
  }
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .num .default-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .num .rolling-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, top;
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .unit,
.sc-synergy .content-wrapper .synergy-list .synergy-item .description {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
@media (max-width: 1539px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .unit,
  .sc-synergy .content-wrapper .synergy-list .synergy-item .description {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .unit,
  .sc-synergy .content-wrapper .synergy-list .synergy-item .description {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .unit,
  .sc-synergy .content-wrapper .synergy-list .synergy-item .description {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .unit,
  .sc-synergy .content-wrapper .synergy-list .synergy-item .description {
    font-size: 16px;
  }
}
.sc-synergy .content-wrapper .synergy-list .synergy-item .description {
  margin-top: 30px;
  font-weight: 600;
  letter-spacing: 0em;
}
@media (max-width: 1023px) {
  .sc-synergy .content-wrapper .synergy-list .synergy-item .description {
    margin-top: 16px;
  }
}

.sc-project {
  padding-bottom: 200px;
  overflow-x: hidden;
}
@media (max-width: 1539px) {
  .sc-project {
    padding-bottom: 144px;
  }
}
@media (max-width: 1023px) {
  .sc-project {
    padding-bottom: 80px;
  }
}
.sc-project .project-slide {
  width: 100%;
  height: 397px;
  overflow: visible;
  will-change: transform;
}
@media (max-width: 1023px) {
  .sc-project .project-slide {
    height: 331px;
  }
}
.sc-project .project-slide .swiper-slide {
  width: 360px;
  height: 340px;
}
@media (max-width: 1023px) {
  .sc-project .project-slide .swiper-slide {
    width: 300px;
    height: 280px;
  }
}
.sc-project .project-slide .swiper-slide .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.sc-project .project-slide .swiper-slide .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.sc-project .project-slide .swiper-slide:hover .img-wrapper img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sc-project .project-slide .swiper-slide .description {
  padding: 16px 0;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.4;
  font-weight: 400;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1539px) {
  .sc-project .project-slide .swiper-slide .description {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .sc-project .project-slide .swiper-slide .description {
    font-size: 16px;
    line-height: 1.2;
  }
}
.sc-project .project-slide .swiper-slide:hover .description {
  color: #107af2;
}
.sc-project .control-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
@media (max-width: 1023px) {
  .sc-project .control-area {
    margin-top: 16px;
  }
}
.sc-project .control-area .progress-area {
  position: relative;
  width: calc(100% - 200px);
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .sc-project .control-area .progress-area {
    width: calc(100% - 112px);
  }
}
.sc-project .control-area .progress-area .swiper-pagination {
  background-color: #d9d9d9;
}
.sc-project .control-area .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 200px;
  padding-left: 80px;
}
@media (max-width: 1023px) {
  .sc-project .control-area .btn-area {
    width: 112px;
    padding-left: 24px;
  }
}
.sc-project .control-area .btn-area button {
  position: relative;
  width: 56px;
  height: 56px;
  border: 1px solid #cacaca;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .sc-project .control-area .btn-area button {
    width: 40px;
    height: 40px;
  }
}
.sc-project .control-area .btn-area .btn-prev {
  background: url("../svgs/btn-prev.svg") no-repeat center/28px;
}
@media (max-width: 1023px) {
  .sc-project .control-area .btn-area .btn-prev {
    background-size: 22px;
  }
}
.sc-project .control-area .btn-area .btn-prev:not(.swiper-button-disabled):hover {
  border-color: #107af2;
  background-image: url("../svgs/btn-prev-hover.svg");
}
.sc-project .control-area .btn-area .btn-next {
  background: url("../svgs/btn-next.svg") no-repeat center/28px;
}
@media (max-width: 1023px) {
  .sc-project .control-area .btn-area .btn-next {
    background-size: 22px;
  }
}
.sc-project .control-area .btn-area .btn-next:not(.swiper-button-disabled):hover {
  border-color: #107af2;
  background-image: url("../svgs/btn-next-hover.svg");
}
.sc-project .control-area .btn-area .swiper-button-disabled {
  cursor: auto;
}

.last-division {
  padding: 120px 0 192px;
  background-color: #f3f3f3;
}
@media (max-width: 1539px) {
  .last-division {
    padding: 104px 0 178px;
  }
}
@media (max-width: 1023px) {
  .last-division {
    padding: 80px 0 96px;
  }
}

.sc-customer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 64px;
}
@media (max-width: 1023px) {
  .sc-customer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 24px;
  }
}
.sc-customer .common-header {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .sc-customer .common-header {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .sc-customer .common-header {
    margin-bottom: 40px;
    text-align: center;
  }
}
.sc-customer .list-area {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 760px;
  margin-left: 10px;
  background-color: #fff;
  padding: 19px 26px;
  border-radius: 10px;
  white-space: nowrap;
}
@media (max-width: 1539px) {
  .sc-customer .list-area {
    padding: 19px 18px;
  }
}
@media (max-width: 1199px) {
  .sc-customer .list-area {
    min-width: 623px;
    padding: 19px 0;
  }
}
@media (max-width: 1023px) {
  .sc-customer .list-area {
    min-width: 0;
    padding: 3px 8px;
  }
}
@media (max-width: 767px) {
  .sc-customer .list-area {
    padding: 8px 0;
  }
}
.sc-customer .list-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .sc-customer .list-area ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.sc-customer .list-area ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.sc-customer .list-area ul li a {
  padding: 20px 40px;
  color: #666;
  text-align: center;
  font-size: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  letter-spacing: 0em;
}
@media (max-width: 1539px) {
  .sc-customer .list-area ul li a {
    padding: 20px 32px;
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .sc-customer .list-area ul li a {
    padding: 20px;
  }
}
@media (max-width: 1023px) {
  .sc-customer .list-area ul li a {
    font-size: 18px;
    line-height: 1.125rem;
  }
}
@media (max-width: 767px) {
  .sc-customer .list-area ul li a {
    padding: 12px 23px;
    text-align: center;
  }
}
.sc-customer .list-area ul li a:hover {
  color: #107af2;
  font-weight: 600;
}
@media (min-width: 768px) {
  .sc-customer .list-area ul li + li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2px;
    height: 26px;
    background-color: #d9d9d9;
    border-radius: 2px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sc-customer .list-area ul li + li a::before {
    width: 1px;
    height: 16px;
  }
}
@media (max-width: 767px) {
  .sc-customer .list-area ul li:nth-child(2n):before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2px;
    height: 26px;
    background-color: #d9d9d9;
    border-radius: 2px;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .sc-customer .list-area ul li:nth-child(2n):before {
    width: 1px;
    height: 16px;
  }
}

.sc-recruit {
  width: 100%;
  background-color: #1ab5c3;
  border-radius: 10px;
  overflow: hidden;
}
.sc-recruit a {
  display: block;
  position: relative;
  padding: 44px 40px;
}
@media (max-width: 1539px) {
  .sc-recruit a {
    padding: 42px 40px;
  }
}
@media (max-width: 1023px) {
  .sc-recruit a {
    padding: 26px 24px;
  }
}
.sc-recruit a::before {
  content: "";
  position: absolute;
  left: 100px;
  top: -12px;
  width: 276px;
  height: 289px;
  background: url("../svgs/symbol.svg") no-repeat center/100%;
}
@media (max-width: 1539px) {
  .sc-recruit a::before {
    left: 38px;
  }
}
@media (max-width: 1023px) {
  .sc-recruit a::before {
    width: 187px;
    height: 197px;
    left: -8px;
    top: -13px;
  }
}
.sc-recruit a .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  padding-left: 300px;
  color: #fff;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  .sc-recruit a .content-wrapper {
    padding-left: 170px;
  }
}
@media (max-width: 767px) {
  .sc-recruit a .content-wrapper {
    padding-left: 0;
  }
}
.sc-recruit a .content-wrapper::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url("../svgs/arrow.svg") no-repeat center/100%;
}
@media (max-width: 1023px) {
  .sc-recruit a .content-wrapper::before {
    width: 30px;
    height: 30px;
  }
}
.sc-recruit a .content-wrapper .title {
  margin: 26px 0 15px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1539px) {
  .sc-recruit a .content-wrapper .title {
    font-size: 34px;
  }
}
@media (max-width: 1023px) {
  .sc-recruit a .content-wrapper .title {
    font-size: 24px;
    margin: 14px 0 16px;
  }
}
@media (max-width: 767px) {
  .sc-recruit a .content-wrapper .title {
    line-height: 1.5;
    margin: 40px 0 16px;
  }
}
.sc-recruit a .content-wrapper .description {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 1539px) {
  .sc-recruit a .content-wrapper .description {
    font-size: 24px;
  }
}
@media (max-width: 1023px) {
  .sc-recruit a .content-wrapper .description {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sc-recruit a .content-wrapper .description {
    line-height: 1.5;
  }
}
.sc-recruit a .content-wrapper .line-break {
  display: none;
}
@media (max-width: 1023px) {
  .sc-recruit a .content-wrapper .line-break {
    display: block;
  }
}

.top-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  bottom: 0;
  margin-right: 60px;
  z-index: 98;
}
@media (max-width: 1023px) {
  .top-btn-wrapper {
    margin-right: 20px;
  }
}
.top-btn-wrapper .top-btn {
  position: absolute;
  bottom: 64px;
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #cacaca;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media (max-width: 1023px) {
  .top-btn-wrapper .top-btn {
    width: 48px;
    height: 48px;
    bottom: 32px;
  }
}
.top-btn-wrapper .top-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: url("../svgs/top-btn.svg") no-repeat center/cover;
}/*# sourceMappingURL=style.css.map */