/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s !important; 
}

/*
font
*/
body {
  font-family: 'Noto Sans KR', sans-serif;
}

.btn-headertop {
  height: 45px;
  line-height: 43px;
  border-radius: 26px;
  font-size: 16px;
  padding: 0 18px;
}

.btn-sm {
  min-width: 115px;
  height: 50px;
  line-height: 47px;
  border-radius: 26px;
  font-size: 20px;
  padding: 0 24px;
  text-align: center;
}

.btn-md {
  height: 60px;
  line-height: 58px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 500;
  padding: 0 35px;
}

.btn-lg {
  height: 70px;
  line-height: 68px;
  border-radius: 36px;
  font-size: 30px;
  font-weight: 600;
  padding: 0 50px;
}

.btn-download {
  height: 52px;
  line-height: 50px;
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding-right: 30px;
  padding-left: 40px;
  border-radius: 26px;
  display: inline-block;
  border-color: #191f28;
  color: #ffffff;
  cursor: pointer;
  background-color: #191f28;
  margin: 0 5px;
}

.btn-download:hover {
  background-color: #000;
}

.btn-download img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 14px;
}

.btn-download.apple img {
  position: relative;
  top: -3px;
}

.btn-main-round {
  display: inline-block;
  border-color: #6e4dff;
  background-color: #6e4dff;
  color: #ffffff;
  cursor: pointer;
}

.btn-secondary-round {
  display: inline-block;
  border-color: #561dbe;
  background-color: #561dbe;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.btn-secondary-round:before{
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background-color: #4208ae;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-secondary-round:hover:before{
  top: 0;
}


.btn-dark-round {
  display: inline-block;
  border: 2px solid #191f28;
  background-color: #191f28;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.btn-dark-round:before {
	content: "";
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: -100%;
	left: 0;
	background-color: #6e4dff;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.btn-dark-round:hover {
	color: #191f28;
	background-color: #fff;
}

.btn-dark-round:hover:before {
	top: 0;
}

.btn-main-border {
  display: inline-block;
  border: 2px solid #6e4dff;
  background: #ffffff;
  color: #6e4dff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.btn-main-border:before {
	content: "";
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: -100%;
	left: 0;
	background-color: #6e4dff;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.btn-main-border:hover {
	color: #fff;
	background-color: #6e4dff;
}

.btn-main-border:hover:before {
	top: 0;
}

.btn-border {
  display: inline-block;
  border: 1px solid #bfc3c9;
  background: #ffffff;
  color: #191f28;
  cursor: pointer;
}

.page-link {
  color: #6e4dff;
  font-size: 16px;
  white-space: nowrap;
}

.page-link::after {
  content: url("../img/icon/icon_arrow_upright.png");
  margin-left: 7px;
}

.underline-link {
  color: #6e4dff;
  font-size: 18px;
  padding: 4px 0;
  border-bottom: 1px solid #6e4dff;
}

input:focus, select:focus, textarea:focus {
  outline: 1px solid #561dbe;
}

.form-control {
  width: 100%;
  height: 40px;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px;
  font-size: 1rem;
  color: #4e5968;
}

.form-control.half {
  width: 50%;
}

.breadcrumb {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb span {
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #8b95a1;
  font-weight: 500;
}

.breadcrumb span::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8b95a1;
  margin: 0 8px;
  vertical-align: middle;
}

.breadcrumb span.current {
  color: #191f28;
}

.breadcrumb span.current::after {
  display: none;
}

.pagination {
  margin-top: 40px;
  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;
}

.pagination a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: #888888;
  cursor: pointer;
  margin: 0 3px;
  -webkit-transition: .12s;
  transition: .12s;
  font-family: 'Lato', sans-serif;
}

.pagination a.active span, .pagination a:hover span {
  border-bottom: solid 1px #888888;
  color: #191f28;
}

.pagination a.nav-prev, .pagination a.nav-next {
  background: #f7f8f9;
  border-radius: 2px;
  color: #191f28;
  font-size: 13px;
}

.pagination a.nav-prev.disabled, .pagination a.nav-next.disabled {
  color: #ced0d2;
  cursor: default;
  pointer-events: none;
}

.pagination-mobile {
  display: none;
}

.btn-container {
  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;
}

.btn-container button, .btn-container a {
  margin: 0 4px;
}

.underline-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.underline-container button, .underline-container a {
  margin: 0 8px;
}

@media screen and (max-width: 768px) {
  .btn-lg {
    height: 50px;
    line-height: 48px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 35px;
  }
  .btn-md {
    height: 46px;
    line-height: 43px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
  }
  .btn-sm {
    font-size: 16px;
  }
  .page-link {
    font-size: 14px;
  }
  .section-app b span {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .btn-sm {
    min-width: 135px;
    height: 44px;
    line-height: 41px;
    font-size: 16px;
  }
  .form-control {
    height: 50px;
    padding: 0 10px;
    font-size: 15px;
  }
  .form-control.half {
    width: 100%;
  }
  .pagination {
    display: none;
  }
  .pagination-mobile {
    display: block;
    text-align: center;
    margin-top: 60px;
  }
  .pagination-mobile .btn-sm {
    min-width: 110px;
  }
}

@media screen and (max-width: 480px) {
  .breadcrumb {
    margin-bottom: 35px;
  }
  .breadcrumb span {
    font-size: 14px;
  }
  .section-app {
    padding: 70px 0;
  }
  .section-app b {
    font-size: 5.2vw;
  }
  .btn-download {
    width: 40vw;
    height: 46px;
    line-height: 44px;
    padding-left: 5px;
    padding-right: 0;
    text-align: center;
    font-size: 15px;
  }
  .btn-download img {
    margin-right: 8px;
  }
}

.container {
  width: 1285px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.contents-section {
  padding: 90px 0;
}

.section-top {
  margin-bottom: 100px;
}

.section-top .title h1, .section-top .title b {
  display: inline-block;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.269em;
  letter-spacing: -0.03em;
  color: #191f28;
  position: relative;
}

.section-top .title .point {
  color: #561dbe;
}

.section-top .title-top {
  display: block;
  margin-bottom: 15px;
  color: #561dbe;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.section-top .title-sub {
  display: inline-block;
  margin-top: 30px;
  letter-spacing: -0.02em;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  color: #4e5968;
  word-break: keep-all;
}

.section-inner {
  padding-bottom: 100px;
}

.section-app {
  background: #fafafa;
  text-align: center;
  padding: 90px 0;
}

.section-app b {
  display: inline-block;
  font-size: 25px;
  font-weight: 600;
  color: #191f28;
  margin-bottom: 38px;
  line-height: 1.35em;
}

.section-app a {
  margin: 0 8px;
}

.section-app .btn-sm {
  width: 160px;
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .section-top {
    margin-bottom: 100px;
  }
  .section-top .title h1, .section-top .title b {
    display: inline-block;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.269em;
    letter-spacing: -0.03em;
    color: #191f28;
    position: relative;
  }
  .section-top .title .point {
    color: #561dbe;
  }
  .section-top .title-top {
    display: block;
    margin-bottom: 15px;
    color: #561dbe;
    font-size: 24px;
    letter-spacing: -0.02em;
  }
  .section-top .title-sub {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .contents-section {
    padding: 70px 0;
  }
  .section-top .title h1 {
    font-size: 42px;
  }
  .section-top .title-sub {
    margin-top: 20px;
  }
  .section-app b span {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .section-top .title-sub {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .contents-section {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .section-top {
    margin-bottom: 80px;
  }
  .section-top .title h1 {
    font-size: 10vw;
    font-weight: 800;
    line-height: 1.345em;
  }
  .section-app {
    padding: 70px 0;
  }
  .section-app b {
    font-size: 5.2vw;
  }
}

.wrap {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding-top: 90px;
  overflow-x: hidden;
}

.header-wrap {
  width: 100%;
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  border-bottom: 1px solid #e3e8ec;
  padding: 0 70px;
  background: #ffffff;
  z-index: 99;
}

header {
  width: 100%;
  height: 100%;
  max-width: 2000px;
  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;
  margin: 0 auto;
}

header .brand {
  margin-right: 30px;
}

header .brand img {
  max-width: 100%;
}

header .menu-close,
header .menu-open {
  display: none;
}

header .menu-close i,
header .menu-open i {
  display: none;
}

header nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 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-right: 30px;
}

header nav .main-menu-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  height: 100%;
}

header nav .main-menu {
  display: inline-block;
  height: 100%;
}

header nav .main-menu > li {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 35px;
  position: relative;
  padding: 0 10px;
}

header nav .main-menu > li > a, header nav .main-menu > li span {
  font-size: 22px;
  font-weight: 400;
  color: #191f28;
  -webkit-transition: .14s;
  transition: .14s;
  cursor: pointer;
}

header nav .main-menu > li.active > a, header nav .main-menu > li.active span, header nav .main-menu > li:hover > a, header nav .main-menu > li:hover span {
  color: #6e4dff;
}

header nav .main-menu > li:hover .sub-menu {
  display: block;
}

header nav .sub-menu {
  width: 130px;
  position: absolute;
  left: 50%;
  top: 73px;
  margin-left: -65px;
  padding: 16px 20px;
  border-radius: 16px;
  background-color: #6e4dff;
  text-align: left;
  display: none;
  text-align: center;
}

header nav .sub-menu li {
  width: 100%;
  color: #ffffff;
  padding: 6px 0;
}

header nav .sub-menu li a {
  display: inline-block;
  white-space: nowrap;
  -webkit-transition: .12s;
  transition: .12s;
  border-bottom: solid 1px transparent;
  padding-bottom: 3px;
}

header nav .sub-menu li a:hover {
  border-color: #ffffff;
}

header nav .sub-menu li.active a {
  border-color: #ffffff;
}

header .btn-sign {
  font-size: 16px;
}

@media screen and (max-width: 1385px) {
  .header-wrap {
    padding: 0 20px;
  }
  header nav .main-menu > li {
    margin-right: 20px;
  }
}

@media screen and (max-width: 820px) {
  .wrap {
    padding-top: 70px;
  }
  .header-wrap {
    height: 70px;
    padding: 0 20px;
    border-bottom: 0;
  }
  header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .brand {
    width: 100px;
  }
  header nav {
    width: 280px;
    height: 100vh;
    position: fixed;
    right: -280px;
    top: 0;
    display: block;
    background: #ffffff;
    padding: 70px 30px 12px 30px;
    -webkit-transition: .22s ease-out;
    transition: .22s ease-out;
  }
  header nav .main-menu {
    display: block;
    text-align: left;
  }
  header nav .main-menu > li {
    display: block;
    height: auto;
    margin-right: 0;
    padding: 15px 0;
    margin-bottom: 15px;
  }
  header nav .sub-menu {
    width: 100px;
    position: relative;
    left: 0;
    top: 0;
    margin-left: 0;
    margin-top: 30px;
    background: #ffffff;
    padding: 0;
    display: block !important;
    text-align: left;
  }
  header nav .sub-menu li {
    color: #868a94;
    margin-bottom: 33px;
    padding: 0;
  }
  header nav .sub-menu li.active a {
    text-decoration: none;
    color: #561dbe;
  }
  header nav.open {
    right: 0;
  }
  header nav.open::before {
    content: '';
    width: calc( 100% - 280px);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-animation: darkBg .1s forwards;
            animation: darkBg .1s forwards;
    background: rgba(0, 0, 0, 0);
  }
  header .btn-sign {
    position: absolute;
    right: 20px;
    top: 80px;
    font-size: 14px;
    color: #868a94;
  }
  header .btn-main-round.btn-headertop {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    border-radius: 26px;
    padding: 0px 14px;
  }
  header .menu-open {
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    display: inline-block;
    margin-left: 12px;
    vertical-align: middle;
    cursor: pointer;
    width: 28px;
    height: 22px;
    background: url("../img/icon/icon_menu.png") no-repeat;
    background-position: center center;
    background-size: 27px 17px;
  }
  header .menu-close {
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    width: 30px;
    height: 28px;
    display: inline-block;
    margin-bottom: 40px;
    padding: 10px;
    background: transparent;
    height: 40px;
    position: relative;
    left: -10px;
    cursor: pointer;
    background: url("../img/icon/icon_close.png") no-repeat;
    background-position: center center;
    background-size: 18px 18px;
  }
}

@-webkit-keyframes darkBg {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.7);
  }
}

@keyframes darkBg {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.7);
  }
}

.footer-wrap {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 65px;
  background: #000000;
}

.footer-title {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 45px;
}

.footer-flex {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  color: #787d83;
  font-size: 15px;
  line-height: 20px;
}

.footer-flex .related-box {
  position: absolute;
  right: 0;
  top: 0;
}

.footer-flex .related {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #787d83;
  cursor: pointer;
}

.footer-flex .related-list {
  display: none;
  position: absolute;
  right: 0px;
  top: -10px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 12px 18px;
  border-radius: 10px;
  background: #565c63;
}

.footer-flex .related-list a {
  display: block;
  font-size: 13px;
  line-height: 1.846em;
  color: #b1b8c0;
  white-space: nowrap;
  -webkit-transition: .2s;
  transition: .2s;
}

.footer-flex .related-list a:hover {
  color: #ffffff;
}

.footer-flex .open .related i::before {
  content: '\f13a';
}

.footer-flex .open .related-list {
  display: block;
}

.footer-right {
  width: 225px;
  padding-top: 50px;
}

.footer-right .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-right .sns-list a {
  margin-left: 25px;
}

.footer-left {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.footer-left p {
  margin-bottom: 7px;
}

.copyright {
  display: inline-block;
  padding-top: 15px;
  margin-bottom: 45px;
  font-family: 'Lato', sans-serif;
  color: #565c63 !important;
}

.terms-list li {
  display: inline-block;
  margin-right: 20px;
}

@media screen and (max-width: 600px) {
  .footer-wrap {
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .footer-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
  }
  .footer-flex {
    display: block;
  }
  .footer-flex .related-box {
    top: -50px;
  }
  .footer-left p span {
    display: block;
    margin-top: 7px;
  }
  .footer-right {
    padding-top: 0;
    margin-bottom: 45px;
  }
  .footer-right .sns-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-right .sns-list a {
    margin-right: 25px;
    margin-left: 0;
  }
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.286em;
  color: #191f28;
  color: #191f28;
  line-height: -0.03em;
  margin-bottom: 40px;
}

.section-title .point {
  display: inline;
  color: #561dbe;
}

.section-title.small {
  font-size: 36px;
  font-weight: 600;
}

.main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.main-flex .img-box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.main-flex .img-box img {
  max-width: 100%;
}

.main-flex .desc-box {
  width: 50%;
}

.main-flex .desc-box .section-title {
  margin-bottom: 40px;
  display: block;
}

.main-flex .desc-txt {
  display: inline-block;
  font-size: 20px;
  line-height: 1.5em;
  color: #4e5968;
  margin-bottom: 40px;
  word-break: keep-all;
}

.main-1 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.main-1 .main-flex {
  position: relative;
}

.main-1 .visual-box {
  width: 50%;
  padding: 0;
  position: relative;
  z-index: 1;
}

.main-1 .visual-title {
  margin-bottom: 40px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.25em;
  color: #191f28;
  white-space: nowrap;
}

.main-1 .visual-title .point {
  color: #561dbe;
}

.main-1 .visual-title h1 {
  display: inline;
}

.main-1 .visual-title .pc-block {
  display: block;
}

.main-1 .rolling-text {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
  font-weight: 800;
  color: #561dbe;
}

.main-1 .rolling-text .item-1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: rolling 3s ease-in-out infinite;
          animation: rolling 3s ease-in-out infinite;
}

.main-1 .rolling-text .item-2 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: rolling2 3s ease-in-out infinite;
          animation: rolling2 3s ease-in-out infinite;
}

.main-1 .desc-txt {
  margin-bottom: 72px !important;
}

.main-1 .visual-img-box {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-1 .visual-img-box img {
  position: relative;
  left: 40px;
  max-width: none;
}

.main-1 [data-aos^=zoom][data-aos^=zoom] {
  -webkit-transition-duration: .5s !important;
          transition-duration: .5s !important;
}

.main-1 .main-particle1 {
  position: absolute;
  right: -40px;
  bottom: 28%;
  -webkit-animation: floating-particle-up 4.4s 1s infinite;
          animation: floating-particle-up 4.4s 1s infinite;
}

.main-1 .main-particle2 {
  position: absolute;
  left: 96%;
  top: -190px;
  -webkit-animation: floating-particle-down 5.2s 1s infinite;
          animation: floating-particle-down 5.2s 1s infinite;
}

.main-1 .main-particle3 {
  position: absolute;
  right: -308px;
  top: -50px;
  -webkit-animation: floating-particle-up 6s 1s infinite;
          animation: floating-particle-up 6s 1s infinite;
}

.main-1 .main-particle4 {
  position: absolute;
  right: -120px;
  top: 50%;
  -webkit-animation: floating-particle-up 4.8s 1s infinite;
          animation: floating-particle-up 4.8s 1s infinite;
}

.main-1 .main-particle5 {
  position: absolute;
  left: 55%;
  top: -24px;
  -webkit-animation: floating-particle-down 5s 1s infinite;
          animation: floating-particle-down 5s 1s infinite;
}

.main-1 .main-particle6 {
  position: absolute;
  left: -65px;
  bottom: -20px;
  -webkit-animation: floating-particle-down 4.2s 1s infinite;
          animation: floating-particle-down 4.2s 1s infinite;
}

@-webkit-keyframes rolling {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  42% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  91% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  92% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes rolling {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  42% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  91% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  92% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes rolling2 {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  42% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  92% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 1;
  }
}

@keyframes rolling2 {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  42% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  92% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 1;
  }
}

@-webkit-keyframes floating-particle-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floating-particle-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes floating-particle-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floating-particle-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.main-2 {
  padding: 100px 0;
}

.main2-list {
  margin-left: -10px;
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main2-list > div {
  width: 25%;
  padding: 0 10px;
}

.main2-item {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  padding: 32px;
  background: #eff2f4;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: .18s;
  transition: .18s;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main2-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.main2-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2em;
  color: #191f28;
}

.main2-title span {
  color: #561dbe;
}

.main2-img {
  padding-bottom: 10px;
  text-align: center;
}

.main2-img img {
  max-width: 100%;
}

.main-bg-1 {
  background: #ede1ff;
}

.main-3 {
  padding: 100px 0;
}

.main-4 {
  padding: 158px 0;
}

.main-4 .img-bg {
  width: 580px;
  height: 450px;
  border-radius: 26px;
  background: #dce5f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}

.main-4 .img-bg img {
  margin-right: 13px;
}

.main-4 .desc-box {
  padding-left: 42px;
}

.main-5 {
  padding-bottom: 160px;
}

.news-flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-item {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.news-item:first-of-type {
  padding-right: 90px;
}

.news-item:last-of-type {
  padding-left: 40px;
  padding-right: 50px;
}

.news-item .news-title {
  margin-bottom: 3px;
}

.news-item .news-title span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
  color: #191f28;
  margin-bottom: 12px;
}

.news-item .news-title.new span::after {
  content: 'N';
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  color: #ffffff;
  background: #ef6b25;
  margin-left: 10px;
  vertical-align: middle;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
}

.news-item .date {
  display: inline-block;
  color: #8b95a1;
  font-size: 15px;
  margin-bottom: 28px;
}

.news-item p {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: keep-all;
  color: #4e5968;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

.main-bg-2 {
  background: #f5f4ee;
}

.main-6 {
  padding-top: 95px;
  padding-bottom: 115px;
  text-align: center;
}

.main-6 span {
  font-size: 72px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #191f28;
}

.main-6 .main-6-line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 75px;
  margin-top: 18px;
}

.main-6 .ani-circle {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  margin: 0 15px;
  background: #ede1ff;
  overflow: hidden;
  position: relative;
}

.main-6 .ani-circle img {
  position: absolute;
  top: 13px;
  left: 0;
  -webkit-transition: .24s ease-in-out;
  transition: .24s ease-in-out;
  max-width: 100%;
}

.main-6 .ani-circle:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 1200px) {
  .main-1 .visual-title {
    font-size: 54px;
  }
  .main-1 .rolling-text {
    height: 68px;
  }
  .main-1 .visual-img-box img {
    width: 86vw;
  }
}

@media screen and (max-width: 860px) {
  .main-1 {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .main-1 .desc-txt {
    margin-bottom: 40px !important;
  }
  .main-1 .main-flex {
    display: block;
  }
  .main-1 .main-flex .visual-box {
    width: 100%;
  }
  .main-1 .main-flex .img-box {
    width: 100%;
  }
  .main-1 .visual-img-box {
    margin-top: 10vw;
  }
  .main-1 .visual-img-box img {
    width: 120vw;
    left: -6vw;
  }
  .main-1 .main-particle1 {
    width: 14vw;
    right: 5vw;
    bottom: 41%;
  }
  .main-1 .main-particle4 {
    right: 5vw;
    width: 4vw;
    top: 84%;
  }
  .main-1 .main-particle5 {
    width: 5.5vw;
    left: 6vw;
    top: 56%;
  }
  .main-1 .main-particle2,
  .main-1 .main-particle3,
  .main-1 .main-particle6 {
    display: none;
  }
  .main2-item {
    padding: 24px;
    height: 260px;
  }
  .main2-title {
    font-size: 22px;
  }
  .main-flex .desc-box .desc-title {
    font-size: 36px;
  }
  .main-6 {
    padding-top: 75px;
    padding-bottom: 95px;
  }
  .main-6 span {
    font-size: 8.1vw;
  }
  .main-6 .ani-circle {
    width: 14.4vw;
    height: 14.4vw;
    margin: 0 10px;
  }
  .main-6 .main-6-line {
    margin-top: 10px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .section-title.small {
    font-size: 26px;
  }
  .main-flex {
    display: block;
  }
  .main-flex .desc-box, .main-flex .img-box, .main-flex .visual-box {
    width: 100%;
    padding: 0;
  }
  .main-flex .desc-box {
    margin-bottom: 50px;
  }
  .main-flex .desc-box .desc-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .main-flex .desc-txt {
    font-size: 16px;
  }
  .main-1 .visual-title {
    font-size: 42px;
  }
  .main-1 .visual-title .pc-block {
    display: inline;
  }
  .main-1 .rolling-text {
    height: 54px;
  }
  .main-1 .visual-img-box img {
    width: 130vw;
    left: -6vw;
  }
  .main2-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
  }
  .main2-list > div {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .main2-item:hover {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .news-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news-item {
    width: 100%;
    padding: 0;
  }
  .news-item:first-of-type {
    padding: 0;
  }
  .news-item:last-of-type {
    padding: 0;
    margin-top: 60px;
  }
  .main-5 .section-title {
    margin-bottom: 40px;
  }
  .main-6 span {
    font-size: 8.1vw;
  }
}

@media screen and (max-width: 480px) {
  .main-flex .desc-box .section-title {
    margin-bottom: 16px;
  }
  .main-flex .desc-txt {
    margin-bottom: 30px;
    line-height: 1.6em;
  }
  .main-1 {
    padding-top: 30px;
  }
  .main-1 .visual-title {
    font-size: 8vw;
    margin-bottom: 20px;
  }
  .main-1 .rolling-text {
    height: 42px;
  }
  .main-1 .visual-img-box {
    margin-top: 20vw;
  }
  .main-1 .visual-img-box img {
    width: 145vw;
    left: -6vw;
  }
  .main-1 .desc-txt {
    margin-bottom: 35px !important;
  }
  .main-2 {
    padding: 70px 0;
  }
  .main-3 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .main-3 .main-flex .img-box img {
    max-width: 90%;
    position: relative;
    left: -3%;
  }
  .main-4 {
    padding: 80px 0;
  }
  .main-4 .img-bg {
    padding-top: 18px;
    height: auto;
  }
  .main-4 .img-bg img {
    max-width: 55%;
  }
  .main2-item {
    height: 45vw;
  }
  .main2-item .main2-title {
    margin-bottom: 15px;
  }
  .main2-item .main2-img1 img {
    max-width: 78%;
  }
  .main2-title {
    font-size: 18px;
  }
  .main2-img {
    padding-bottom: 0;
    text-align: center;
  }
  .main2-img img {
    max-width: 70%;
  }
  .main-5 {
    padding-bottom: 100px;
  }
  .main-5 .news-item:last-of-type {
    display: none;
  }
  .main-6 {
    padding-top: 65px;
    padding-bottom: 70px;
  }
  .main-6 .ani-circle {
    width: 18.4vw;
    height: 18.4vw;
  }
  .main-6 span {
    font-weight: 800;
  }
  .main-6 .main-6-line {
    margin-bottom: 25px;
  }
}

.notice-title {
  display: inline-block;
  width: auto;
  position: relative;
}

.notice-title .floating-icon {
  position: absolute;
  left: 100%;
  top: -45px;
  margin-left: 16px;
  -webkit-animation: bounce1 1s 3.5;
          animation: bounce1 1s 3.5;
}

.list-tab-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.list-tab-btns .tab-btn {
  height: 48px;
  line-height: 48px;
  padding: 0 23px;
  border: 0;
  border-radius: 23px;
  color: #4e5968;
  background: #eff2f4;
  margin-right: 12px;
  font-size: 18px;
  letter-spacing: -0.02em;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

.list-tab-btns .tab-btn:hover {
  background: #191f28;
  color: #ffffff;
}

.list-tab-btns .tab-btn.active {
  background: #191f28;
  color: #ffffff;
}

.list-select {
  display: none;
}

.list-container {
  border-top: 1px solid #e9edef;
  position: relative;
}

.list-container .underline-link {
  position: absolute;
  left: 20px;
  bottom: -70px;
}

.acc-item {
  border-bottom: 1px solid #e9edef;
}

.acc-item .acc-header {
  width: 100%;
  height: 90px;
  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-left: 75px;
  padding-right: 15px;
  color: #191f28;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}

.acc-item .acc-header::before {
  content: 'Q';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #191f28;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  left: 30px;
  top: 32px;
  text-align: center;
  line-height: 23px;
}

.acc-item .acc-header i {
  font-size: 18px;
  color: #191f28;
  margin-left: 10px;
}

.acc-item .acc-header .q {
  line-height: 1.3em;
}

.acc-item .acc-inner {
  border-top: 1px solid #e9edef;
  background: #f7f8f9;
  padding: 28px 15px 30px 70px;
  position: relative;
  display: none;
}

.acc-item .acc-inner::before {
  content: 'A';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #6e4dff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  left: 30px;
  top: 32px;
  text-align: center;
  line-height: 23px;
}

.acc-item .acc-inner pre {
  color: #4e5968;
  line-height: 1.64em;
  white-space: pre-wrap;
}

.acc-item.open .acc-header {
  color: #561dbe;
}

.acc-item.open .acc-header::before {
  background: #6e4dff;
}

.acc-item.open .acc-header i::before {
  content: '\f077';
}

.acc-item.open .acc-inner {
  display: block;
}

.notice-list {
  width: 100%;
}

.notice-list li {
  width: 100%;
  height: 90px;
  border-bottom: 1px solid #e9edef;
}

.notice-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -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;
  background: #ffffff;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 18px;
  color: #191f28;
}

.notice-list li a:hover {
  background: #f8f7fd;
}

.notice-list li a .date {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #4e5968;
}

.notice-write {
  border-top: 1px solid #e9edef;
}

.notice-write .notice-item {
  min-height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e9edef;
  padding: 0 20px;
}

.notice-write .notice-item .label {
  width: 160px;
  font-size: 18px;
  color: #191f28;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.notice-write .notice-item .input-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.notice-write .notice-item.editor {
  padding: 20px 0;
}

.notice-write .notice-item.editor .editor-wrap {
  width: 100%;
  height: 500px;
  background: #f7f7f7;
}

.notice-write .btn-container {
  margin-top: 40px;
}

.input-file {
  display: none;
}

.input-file + label {
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border-radius: 23px;
  padding: 0 25px;
  background: #e9ecef;
  font-size: 16px;
  font-weight: 500;
  color: #191f28;
  cursor: pointer;
  margin-right: 16px;
  white-space: nowrap;
}

.file-list {
  font-size: 16px;
  font-weight: 300;
  color: #4e5968;
}

.file-list .file-item {
  display: inline-block;
  padding: 2px;
  margin-right: 16px;
  position: relative;
  padding-right: 15px;
  font-weight: 400;
}

.file-list .file-del {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  padding: 2px 4px;
  color: #ff3600;
  font-size: 12px;
  position: absolute;
  right: -1px;
  top: 3px;
  cursor: pointer;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 12px;
  height: 12px;
}

.file-list .file-del::before {
  content: '\f00d';
}

.file-list .file-down {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  padding: 2px 0px;
  color: #182d7c;
  font-size: 17px;
  position: absolute;
  right: -1px;
  top: 3px;
  cursor: pointer;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 12px;
  height: 12px;
}

.file-list .file-down::before {
  content: '\f019';
}

.section-inner.notice-view {
  padding-bottom: 0px;
}

.notice-header {
  width: 100%;
  padding-bottom: 60px;
  border-bottom: 1px solid #e9edef;
}

.notice-header h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: -0.02em;
  color: #191f28;
  margin-bottom: 10px;
}

.notice-header .date {
  font-family: 'Lato', sans-serif;
  width: 16px;
  color: #4e5968;
}

.notice-text-wrap {
  padding: 55px 20px;
  color: #4e5968;
  font-size: 17px;
  line-height: 1.8em;
}

.notice-bottom {
  padding-bottom: 100px;
}

.notice-bottom .notice-nav {
  border-top: 1px solid #e9edef;
}

.notice-bottom .notice-item {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e9edef;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.3em;
  color: #191f28;
}

.notice-bottom .notice-item b {
  margin-right: 60px;
  white-space: nowrap;
}

.notice-bottom .notice-item b span {
  font-weight: 500;
}

.notice-bottom .notice-item b i {
  display: none;
}

.notice-bottom .notice-item a {
  font-weight: 400;
}

.notice-bottom .btn-container {
  margin-top: 40px;
}

.notice-bottom .underline-container {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .fileupload-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .fileupload-wrap .input-file + label {
    margin-top: 15px;
  }
  .fileupload-wrap .file-list {
    padding: 10px 0;
  }
}

@media screen and (max-width: 600px) {
  .floating-icon {
    zoom: .7;
    margin-left: 20px;
  }
  .notice-list li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 25px 10px;
    font-size: 16px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
  }
  .notice-list li a span {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
  }
  .notice-list li a .date {
    font-size: 14px;
    padding-top: 10px;
  }
  .notice-list li a::before {
    content: '\f054';
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 12px;
    margin-top: -4px;
    color: #b7bec6;
  }
  .acc-item .acc-header {
    font-size: 16px;
    padding: 0 10px;
  }
  .acc-item .acc-header::before {
    display: none;
  }
  .acc-item .acc-header i {
    font-size: 14px;
  }
  .acc-item .acc-inner {
    padding: 28px 15px 30px 15px;
  }
  .acc-item .acc-inner::before {
    display: none;
  }
  .acc-item.open .acc-header {
    color: #561dbe;
  }
  .notice-write {
    border-top: 0;
  }
  .notice-write .notice-item {
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
  .notice-write .notice-item .label {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .notice-write .notice-item .input-wrap {
    width: 100%;
    display: block;
  }
  .notice-write .btn-container {
    margin-top: 40px;
  }
  .file-list {
    font-size: 14px;
    margin-top: 10px;
  }
  .notice-header {
    padding-bottom: 30px;
  }
  .notice-header h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .notice-header .date {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #8d94a0;
  }
  .notice-text-wrap {
    padding: 25px 0px 50px 0;
    font-size: 15px;
    line-height: 1.6em;
  }
  .notice-bottom .container {
    padding: 0;
  }
  .notice-bottom .notice-item {
    height: auto;
    font-size: 16px;
    padding: 20px;
  }
  .notice-bottom .notice-item b {
    margin-right: 20px;
  }
  .notice-bottom .notice-item b span {
    display: none;
  }
  .notice-bottom .notice-item b i {
    display: inline-block;
  }
  .notice-bottom .btn-container {
    margin-top: 40px;
  }
  .list-container .underline-link {
    font-size: 15px;
    left: 10px;
    bottom: -30px;
  }
}

@media screen and (max-width: 480px) {
  .list-tab-btns {
    display: none;
  }
  .list-select {
    display: block;
  }
  .list-select {
    display: block;
    margin-bottom: 60px;
    cursor: pointer;
  }
  .list-select .selected-text {
    font-size: 18px;
    font-weight: 600;
    color: #191f28;
  }
  .list-select .selected-text i {
    margin-left: 10px;
    font-size: 12px;
    position: relative;
    top: -3px;
  }
  .select-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    background: rgba(0, 0, 0, 0.1);
    display: none;
  }
  .select-wrap.open {
    display: block;
  }
  .select-wrap .select-list {
    width: 100%;
    padding: 40px 20px 40px 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ffffff;
    border-radius: 20px 20px 0 0;
  }
  .select-wrap .select-list .select-btn {
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    width: 100%;
    font-size: 16px;
    width: 100%;
    color: #4e5968;
    padding: 10px;
    margin-bottom: 15px;
    text-align: left;
    cursor: pointer;
  }
  .select-wrap .select-list .select-btn i {
    float: right;
    color: #ffffff;
  }
  .select-wrap .select-list .select-btn.active i {
    color: #561dbe;
  }
}

@-webkit-keyframes bounce1 {
  0%, to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounce1 {
  0%, to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate(0, -18px);
            transform: translate(0, -18px);
  }
  19% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  32% {
    -webkit-transform: translate(0, -16px);
            transform: translate(0, -16px);
  }
  47% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  61% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
  85% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, -18px);
            transform: translate(0, -18px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translate(0, -18px);
            transform: translate(0, -18px);
  }
  19% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  32% {
    -webkit-transform: translate(0, -16px);
            transform: translate(0, -16px);
  }
  47% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  61% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
  85% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, -18px);
            transform: translate(0, -18px);
  }
}

.section-visual {
  background-color: #f2f4f6 !important;
}

.section-visual .visual-box {
  padding: 90px 0 110px 0;
}

.section-visual .section-top {
  margin-bottom: 70px;
}

.section-visual .btn-sm {
  font-size: 18px;
}

.desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6em;
  color: #4e5968;
  word-break: keep-all;
}

.desc .point {
  color: #6e4dff;
}

.about-visual {
  background: url("../img/bg/about_visual.png") no-repeat;
  background-position: right center;
}

.about-bg1 {
  background: #f7f8f9;
}

.about1 {
  padding-top: 175px;
  padding-bottom: 75px;
  border-bottom: 1px solid #e9edef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about1 .section-title {
  margin-right: 170px;
  white-space: nowrap;
}

.about1 .desc {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.about2 {
  padding-top: 125px;
  padding-bottom: 190px;
}

.about2 .info-desc {
  display: inline-block;
  margin-bottom: 42px;
  color: #4e5968;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.32em;
}

.about2 .info-desc i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #242a32;
  margin-right: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #242a32;
}

.about2 .info-list {
  width: 100%;
  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-top: 50px;
  padding-bottom: 120px;
}

.about2 .info-list .circle {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  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;
}

.about2 .info-list .circle.c1 {
  background: #182d7c;
}

.about2 .info-list .circle.c2 {
  border: 1px solid #e7e8eb;
}

.about2 .info-list .circle.c3 {
  background: #fe7e00;
}

.about2 .info-list .arr {
  width: 63px;
  height: 1px;
  margin: 0 12px;
  border-top: 2px dotted #9c9d9f;
  position: relative;
}

.about2 .info-list .arr-left i {
  position: absolute;
  left: -4px;
  top: -11px;
  font-size: 20px;
  color: #191f28;
}

.about2 .info-list .arr-right i {
  position: absolute;
  right: -4px;
  top: -11px;
  font-size: 20px;
  color: #191f28;
}

.about2 .info-list.info-box {
  background: #f7f8fa;
  border-radius: 26px;
  padding-top: 60px;
  padding-bottom: 65px;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.about2 .info-list.info-box .arr-right {
  width: 70px;
  height: 160px;
  background: url("../img/icon/icon_arr_right.png") no-repeat;
  background-position: center center;
}

.about2 .info-list .circle-wrap {
  width: 180px;
}

.about2 .info-list .circle-wrap .circle-desc {
  border-top: 1px solid #e2e6ed;
  min-height: 110px;
  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;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.5em;
  color: #4e5968;
}

.about2 .info-list .circle-s {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #ffffff;
  padding-top: 40%;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.32em;
  margin-bottom: 30px;
}

.about2 .info-list .circle-s .text-sm {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

.about2 .info-list .circle-s.cs1 {
  background: url(../img/icon/icon_circle1.png) no-repeat;
  background-position: center 30px;
  background-color: #767f91;
}

.about2 .info-list .circle-s.cs2 {
  background: url(../img/icon/icon_circle2.png) no-repeat;
  background-position: center 30px;
  background-color: #535d71;
}

.about2 .info-list .circle-s.cs3 {
  background: url(../img/icon/icon_circle3.png) no-repeat;
  background-position: center 30px;
  background-color: #767f91;
}

.about2 .info-list .circle-s.cs4 {
  background: url(../img/icon/icon_circle4.png) no-repeat;
  background-position: center 30px;
  background-color: #535d71;
}

.about2 .info-list .circle-s.cs5 {
  background: url(../img/icon/icon_circle5.png) no-repeat;
  background-position: center 30px;
  background-color: #767f91;
}

.about3 {
  padding: 110px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: -40px;
  background: url("../img/bg/co2_bg.png") no-repeat;
  background-position: left -15px;
}

.about3 .about3-container {
  width: 50%;
  padding-left: 80px;
}

.about4 {
  padding: 180px 0;
}

.about4 .about4-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 80px;
}

.about4 .about4-item {
  width: 45%;
  text-align: center;
}

.about4 .about4-item img {
  max-width: 66vw;
}

.about4 .about4-item h3 {
  padding-top: 50px;
  padding-bottom: 35px;
  font-size: 38px;
  font-weight: 600;
  color: #191f28;
}

.about4 .about4-item .desc {
  margin-bottom: 15px;
}

@media screen and (max-width: 1100px) {
  .about2 .info-list.info-box {
    background: #f7f8fa;
    border-radius: 26px;
    padding-top: 60px;
    padding-bottom: 65px;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .about2 .info-list.info-box .arr-right {
    width: 30px;
    height: 120px;
    background: url("../img/icon/icon_arr_right.png") no-repeat;
    background-position: center center;
    background-size: 12px;
  }
  .about2 .info-list .circle-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about2 .info-list .circle-s {
    width: 120px;
    height: 120px;
    color: #ffffff;
    padding-top: 34%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 30px;
  }
  .about2 .info-list .circle-s .text-sm {
    font-size: 14px;
  }
  .about2 .info-list .circle-s.cs1 {
    background-size: 28%;
    background-position: center 20%;
  }
  .about2 .info-list .circle-s.cs2 {
    background-size: 20%;
    background-position: center 20%;
  }
  .about2 .info-list .circle-s.cs3 {
    background-size: 26%;
    background-position: center 20%;
  }
  .about2 .info-list .circle-s.cs4 {
    background-size: 26%;
    background-position: center 20%;
  }
  .about2 .info-list .circle-s.cs5 {
    background-size: 23%;
    background-position: center 20%;
  }
}

@media screen and (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }
  .desc {
    font-size: 16px;
  }
  .about1 {
    display: block;
  }
  .info-list-wrap {
    overflow-x: auto;
    margin-right: -20px;
    -ms-touch-action: pan-x;
        touch-action: pan-x;
  }
  .info-list-wrap::-webkit-scrollbar {
    width: 3px;
  }
  .about2 .info-desc {
    font-size: 16px;
  }
  .about2 .info-list .circle {
    width: 100px;
    height: 100px;
    max-width: 25vw;
    max-height: 25vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 18px;
  }
  .about2 .info-list .circle.c2 img {
    max-width: 60%;
  }
  .about2 .info-list .arr {
    width: 40px;
    height: 1px;
    margin: 0 12px;
    border-top: 2px dotted #9c9d9f;
    position: relative;
  }
  .about2 .info-list .arr i {
    font-size: 16px;
    top: -9px !important;
  }
  .about2 .info-list.info-box {
    width: 950px;
    padding-top: 30px;
    padding-bottom: 35px;
    margin-right: 20px;
  }
  .about2 .info-list .circle-wrap .circle-desc {
    border-top: 1px solid #e2e6ed;
    min-height: 90px;
    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;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.3em;
    color: #4e5968;
  }
  .about2 .info-list .circle-s {
    width: 100px;
    height: 100px;
    max-width: 25vw;
    max-height: 25vw;
    padding-top: 0;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.32em;
    margin-bottom: 30px;
  }
  .about2 .info-list .circle-s .text-sm {
    display: block;
    font-size: 12px;
    font-weight: 400;
  }
  .about2 .info-list .circle-s.cs1 {
    background: #767f91 !important;
  }
  .about2 .info-list .circle-s.cs2 {
    background: #535d71 !important;
  }
  .about2 .info-list .circle-s.cs3 {
    background: #767f91 !important;
  }
  .about2 .info-list .circle-s.cs4 {
    background: #535d71 !important;
  }
  .about2 .info-list .circle-s.cs5 {
    background: #767f91 !important;
  }
  .about3 {
    margin-left: 0;
  }
  .about3 .about3-container {
    width: 100%;
    padding-left: 0;
  }
  .about4 .about4-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;
  }
  .about4 .about4-item {
    width: 100%;
  }
  .about4 .about4-item:first-of-type {
    margin-bottom: 100px;
  }
  .about4 .about4-item h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 820px) {
  .section-visual .container {
    padding-right: 0;
  }
  .about-visual {
    background-position: 110% 100%;
    background-size: 72vw;
    padding: 90px 0 100px 0;
  }
}

@media screen and (max-width: 768px) {
  .about1 {
    padding-top: 80px;
    padding-bottom: 20px;
    border: 0;
  }
  .about2 {
    padding-top: 125px;
    padding-bottom: 190px;
  }
  .about2 .info-desc {
    margin-bottom: 26px;
  }
  .about2 .info-desc i {
    width: 26px;
    height: 26px;
    border: 0;
    background: #9d9df8;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .about2 .info-list {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 600px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .about-visual {
    background-position: 150% 100%;
    background-size: 80vw;
  }
  .section-visual .section-top {
    margin-bottom: 45px;
  }
  .section-visual .section-top .title h1 {
    font-size: 38px;
  }
  .section-visual .section-top .title-top {
    font-size: 18px;
  }
  .section-visual .btn-sm {
    font-size: 14px;
    height: 42px;
    line-height: 40px;
  }
  .about1 {
    padding-bottom: 0;
  }
  .about2 {
    padding-top: 100px;
    padding-bottom: 45px;
  }
  .desc,
  .about2 .info-desc {
    font-size: 15px;
  }
  .about3 {
    padding-top: 70px;
    padding-bottom: 86%;
    background-size: 90%;
    background-position: center 115%;
  }
  .about4 {
    padding: 80px 0;
  }
  .about4 .about4-item:first-of-type {
    margin-bottom: 70px;
  }
  .about4 .about4-item h3 {
    padding-top: 40px;
    padding-bottom: 32px;
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .about1 {
    padding-top: 65px;
  }
  .section-visual .visual-box {
    padding: 50px 0 105px 0;
  }
  .section-visual .section-top {
    margin-bottom: 31px;
  }
}

.sub1-visual {
  background: url("../img/bg/sub_visual.png") no-repeat;
  background-position: right 20%;
}

.pc-show {
  display: inline;
}

.mobile-show {
  display: none;
}

.sub-flex {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sub-flex p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  color: #4e5968;
  word-break: keep-all;
}

.sub-flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sub-flex.reverse .img-container {
  padding-left: 0;
  padding-right: 50px;
}

.sub-flex.reverse .text-container {
  padding-left: 50px;
}

.sub-flex > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sub-flex .img-container {
  padding-left: 50px;
}

.sub-flex .img-box {
  width: 100%;
  height: 450px;
  border-radius: 26px;
}

.sub-flex .img-box.box1 {
  background: url("../img/bg/sub1.png") no-repeat;
  background-position: center center;
  background-color: #f0f3f5;
}

.sub-flex .img-box.box2 {
  background: url("../img/bg/sub2.png") no-repeat;
  background-position: center center;
  background-color: #ffe8a7;
}

.sub-flex .img-box.box3 {
  background: url("../img/bg/sub3.png") no-repeat;
  background-position: center center;
  background-color: #f4eff5;
}

.sub-flex .img-box.box4 {
  background: url("../img/bg/sub4.png") no-repeat;
  background-position: center center;
  background-color: #e7e9fb;
}

.section-sub {
  padding: 40px 0;
}

@media screen and (max-width: 991px) {
  .section-visual .container {
    padding-right: 0;
  }
  .sub1-visual {
    background-size: 500px;
    background-position: 405px 130px;
  }
  .sub-flex {
    padding: 65px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sub-flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .sub-flex.reverse .img-container {
    padding-left: 0;
    padding-right: 30px;
  }
  .sub-flex.reverse .text-container {
    padding-left: 20px;
  }
  .sub-flex > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sub-flex .img-container {
    padding-left: 50px;
  }
  .sub-flex .img-box {
    height: 40vw;
  }
  .sub-flex .img-box.box1 {
    background-size: 64%;
  }
  .sub-flex .img-box.box2 {
    background-size: 45%;
  }
  .sub-flex .img-box.box3 {
    background-size: 45%;
  }
  .sub-flex .img-box.box4 {
    background-size: 55%;
  }
}

@media screen and (max-width: 768px) {
  .sub1-visual {
    background-size: 468px;
    background-position: 140% 145px;
  }
  .mobile-block {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .sub1-visual {
    background-size: 360px;
    background-position: 150% 179px;
  }
  .sub-flex {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .sub-flex p {
    font-size: 16px;
  }
  .sub-flex .text-container {
    padding: 0 !important;
    width: 100%;
    margin-bottom: 50px;
  }
  .sub-flex .img-container {
    padding: 0 !important;
    width: 100%;
  }
  .sub-flex .img-box {
    height: 64vw;
  }
  .section-sub [data-aos=fade-right],
  .section-sub [data-aos=fade-left] {
    -webkit-transform: translate3d(0, 100px, 0) !important;
            transform: translate3d(0, 100px, 0) !important;
  }
  .section-sub [data-aos^=fade][data-aos^=fade].aos-animate {
    -webkit-transform: translateZ(0) !important;
            transform: translateZ(0) !important;
  }
}

@media screen and (max-width: 480px) {
  .pc-show {
    display: none;
  }
  .mobile-show {
    display: inline;
  }
  .mobile-point {
    color: #561dbe;
  }
  .section-sub {
    padding-top: 0;
    padding-bottom: 65px;
  }
  .sub1-visual {
    background-size: contain;
    background-position: 32vw 115px;
  }
  .sub-flex {
    padding-top: 65px;
    padding-bottom: 30px;
  }
  .sub-flex p {
    font-size: 15px;
  }
}

.car-visual {
  background: url("../img/bg/car_visual.png") no-repeat;
  background-position: right 20%;
}

.car-visual .mobile-hide {
  display: block;
}

.car1 {
  padding: 170px 0;
}

.car1 .section-title {
  line-height: 1.386em;
}

.car1 .desc .block {
  display: block;
}

.line-bg {
  position: relative;
}

.line-bg::before {
  content: '';
  position: absolute;
  left: 0px;
  top: -14px;
  z-index: 0;
  background: url("../img/bg/line_bg.png");
  width: 100%;
  height: 150%;
  background-size: cover;
}

.line-bg b {
  position: relative;
  z-index: 1;
}

.img-flex-box {
  margin-left: -5px;
  margin-right: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 80px;
  position: relative;
}

.img-flex-box .rocket {
  position: absolute;
  right: 20px;
  top: -145px;
  -webkit-animation: bounce1 1s infinite;
          animation: bounce1 1s infinite;
  z-index: 2;
}

.img-flex-box .rocket::after {
  content: url("../img/icon/rocket_icon.png");
}

.img-flex-box .box-item {
  padding: 5px;
}

.img-flex-box .box-item > div {
  border-radius: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-flex-box .box-item > div img {
  max-width: 100%;
  margin-left: 5px;
}

.img-flex-box .flex-2 {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.img-flex-box .flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.img-flex-box .flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.img-flex-box .img-box-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.img-flex-box .img-box-1 {
  width: 100%;
  height: 450px;
  background: #fceaa8;
}

.img-flex-box .img-box-2 {
  width: 100%;
  height: 252px;
  background: #e3e8f3;
}

.img-flex-box .img-box-3 {
  width: 100%;
  height: 100%;
  background: #f2efe8;
  overflow: hidden;
}

.img-flex-box .img-box-4 {
  width: 100%;
  height: 450px;
  background: #eff2f4;
}

.img-flex-box .flowing-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 20px;
  margin-top: -20px;
  text-shadow: -1px -1px 0 #191f28, 1px -1px 0 #191f28, -1px 1px 0 #191f28, 1px 1px 0 #191f28;
  color: #f2efe8;
  -webkit-animation: marquee 10.5s linear infinite;
          animation: marquee 10.5s linear infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  will-change: transform;
}

.img-flex-box .flowing-text span {
  color: #191f28;
  text-shadow: none;
  font-weight: 800;
}

.car2 {
  padding-bottom: 160px;
}

.car2 .img-box {
  margin-top: 75px;
  border-radius: 26px;
  background: #f3f5f9;
  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: 80px 30px;
}

.car2 .img-box img {
  max-width: 100%;
}

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

.car-bg-1 {
  background: #f9f5f7;
}

.car3 {
  padding-top: 105px;
  overflow: hidden;
}

.car3 .tab-container {
  width: 100%;
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.car3 .tab-btns {
  margin-bottom: 125px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.car3 .tab-btns li {
  text-align: center;
}

.car3 .tab-btns .tab-btn {
  display: inline-block;
  width: 123px;
  padding-top: 100px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

.car3 .tab-btns .tab-btn b {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3em;
  color: #847d92;
  margin-bottom: 10px;
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
}

.car3 .tab-btns .tab-btn b .mobile-block {
  display: inline;
}

.car3 .tab-btns .tab-btn span {
  font-size: 17px;
  line-height: 1.3em;
  color: #4e5968;
}

.car3 .tab-btns .tab-btn.tab-btn1 {
  background: url("../img/bg/car_tab_icon_1.png") no-repeat;
  background-position: center top;
}

.car3 .tab-btns .tab-btn.tab-btn2 {
  background: url("../img/bg/car_tab_icon_2.png") no-repeat;
  background-position: center top;
}

.car3 .tab-btns .tab-btn.tab-btn3 {
  background: url("../img/bg/car_tab_icon_3.png") no-repeat;
  background-position: center top;
}

.car3 .tab-btns .tab-btn.tab-btn4 {
  background: url("../img/bg/car_tab_icon_4.png") no-repeat;
  background-position: center top;
}

.car3 .tab-btns .tab-btn:hover b, .car3 .tab-btns .tab-btn.active b {
  color: #191f28;
}

.car3 .tab-btns .tab-btn:hover.tab-btn1, .car3 .tab-btns .tab-btn.active.tab-btn1 {
  background: url("../img/bg/car_tab_icon_1_active.png") no-repeat;
  background-position: center top;
}

.car3 .tab-btns .tab-btn:hover.tab-btn2, .car3 .tab-btns .tab-btn.active.tab-btn2 {
  background: url("../img/bg/car_tab_icon_2_active.png") no-repeat;
  background-position: center top;
}

.car3 .tab-btns .tab-btn:hover.tab-btn3, .car3 .tab-btns .tab-btn.active.tab-btn3 {
  background: url("../img/bg/car_tab_icon_3_active.png") no-repeat;
  background-position: center top;
}

.car3 .tab-btns .tab-btn:hover.tab-btn4, .car3 .tab-btns .tab-btn.active.tab-btn4 {
  background: url("../img/bg/car_tab_icon_4_active.png") no-repeat;
  background-position: center top;
}

.car3 .tab-panels {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 385px;
  height: 100%;
  padding-left: 36px;
  padding-right: 49px;
  padding-top: 35px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: url("../img/bg/car_tab_bg.png") no-repeat;
}

.car3 .tab-panels .panels-list {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.car3 .tab-panels .tab-panel-img {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.car3 .tab-panels .tab-panel-img.active {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  display: block;
  -webkit-animation: fadeUp .22s .12s ease-in-out;
          animation: fadeUp .22s .12s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.car3 .tab-panels .tab-panel-img.prev {
  display: block;
  -webkit-animation: fadeUp2 .22s .12s ease-in-out;
          animation: fadeUp2 .22s .12s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.car3 .text-line {
  position: relative;
  display: inline-block;
  background: #e3d6ff;
  background: -webkit-gradient(linear, left bottom, left top, from(#e3d6ff), color-stop(50%, #e3d6ff), color-stop(50.2%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #e3d6ff 0%, #e3d6ff 50%, rgba(0, 0, 0, 0) 50.2%, rgba(0, 0, 0, 0) 100%);
}

.car4 {
  padding: 150px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.car4 .img-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.car4 .img-box img {
  max-width: 100%;
}

.car4 .text-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
}

@media screen and (max-width: 1200px) {
  .car-visual {
    background-position: 100% 110%;
    background-size: 500px;
  }
  .img-flex-box {
    margin-top: 130px;
  }
  .car3 .tab-container {
    margin-top: 100px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 991px) {
  .car-visual .mobile-hide {
    display: none;
  }
  .car-visual .mobile-point {
    color: #561dbe;
  }
  .car-visual .mobile-block {
    display: block;
  }
  .car1 .desc .block {
    display: inline;
  }
  .img-flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .img-flex-box .rocket {
    zoom: .8;
  }
  .img-flex-box .box-item > div img {
    max-width: 90%;
  }
  .img-flex-box .flex-2 {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .img-flex-box .flex-1 {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .img-flex-box .img-box-1 {
    height: 400px;
    background: #fceaa8;
  }
  .img-flex-box .img-box-2 {
    height: 260px;
  }
  .img-flex-box .img-box-4 {
    height: 400px;
  }
  .car3 .tab-btns {
    padding-right: 60px;
    margin-bottom: 45px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .car3 .tab-btns li {
    width: 50%;
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 768px) {
  .car-visual {
    background-position: 100% 110%;
    background-size: 70vw;
    padding-bottom: 90px;
  }
  .car1 {
    padding: 100px 0;
  }
  .car2 {
    padding-bottom: 90px;
  }
  .car2 .img-box {
    padding: 40px 0;
  }
  .car2 .img-box img {
    max-width: 80%;
  }
  .car2 .pc-img {
    display: none;
  }
  .car2 .mobile-img {
    display: block;
  }
  .car3 {
    padding-top: 90px;
  }
  .car3 .tab-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .car3 .tab-btns {
    width: 100%;
    padding-right: 0;
    margin-bottom: 45px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .car3 .tab-btns li {
    width: auto;
    margin-bottom: 0;
    margin-right: 8px;
  }
  .car3 .tab-btns li:last-of-type {
    margin-right: 0;
  }
  .car3 .tab-btns .tab-btn {
    height: 100%;
    padding-bottom: 10px;
    border-radius: 12px;
    background-color: #ece7ee !important;
    border: 1px solid #ece7ee;
    background-size: 90% !important;
    background-position: center 1vw !important;
  }
  .car3 .tab-btns .tab-btn b {
    font-size: 16px;
  }
  .car3 .tab-btns .tab-btn span {
    display: none;
  }
  .car3 .tab-btns .tab-btn:hover, .car3 .tab-btns .tab-btn.active {
    background-color: transparent !important;
  }
  .car3 .tab-panels {
    height: 572px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 600px) {
  .img-flex-box {
    margin-top: 150px;
  }
  .img-flex-box .rocket {
    zoom: .7;
  }
  .img-flex-box .img-box-1 {
    height: 66vw;
  }
  .img-flex-box .img-box-2 {
    height: 40vw;
  }
  .img-flex-box .img-box-3 {
    height: 100%;
  }
  .img-flex-box .img-box-4 {
    height: 66vw;
  }
  .car3 .tab-btns li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .car3 .tab-btns .tab-btn {
    width: 100%;
    padding-top: 17vw;
  }
  .car3 .tab-panels {
    width: 50vw;
    height: 74.2vw;
    background-size: contain;
    padding-left: 4.8vw;
    padding-right: 6.26vw;
    padding-top: 4.3vw;
  }
  .car3 .tab-panels .tab-panel-img {
    max-width: 100%;
  }
  .car4 {
    padding-top: 130px;
    padding-bottom: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .car4 .img-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .car4 .img-box img {
    max-width: 80%;
  }
  .car4 .text-box {
    width: 100%;
    text-align: left;
    padding-left: 0;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .car-visual {
    background: url("../img/bg/car_visual_mobile.png") no-repeat;
    background-size: contain;
    background-position: right 25px;
  }
  .car1 {
    padding-top: 65px;
  }
  .img-flex-box .box-item > div {
    border-radius: 18px;
  }
  .img-flex-box .flowing-text {
    font-size: 21px;
    margin-top: -10px;
    -webkit-animation: marquee-s 10.5s linear infinite;
            animation: marquee-s 10.5s linear infinite;
  }
  .tab-btn {
    padding-bottom: 0px !important;
  }
  .tab-btn b {
    font-size: 14px !important;
  }
  .tab-btn .mobile-block {
    display: block !important;
  }
  .line-bg::before {
    top: -5px;
    height: 127%;
    background-size: 100% 100%;
  }
  .car3 .tab-btns {
    margin-bottom: 20px;
  }
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(280px);
            transform: translateX(280px);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(280px);
            transform: translateX(280px);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes marquee-s {
  from {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee-s {
  from {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeUp2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    opacity: 1;
  }
}

@keyframes fadeUp2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    opacity: 1;
  }
}

.mobile .list-tab-btns {
  display: none;
}
/*# sourceMappingURL=styles.css.map */

#spinner:not([hidden]) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#spinner::after {
  content: "";
  width: 80px;
  height: 80px;
  border: 2px solid #f3f3f3;
  border-top: 3px solid #f25a41;
  border-radius: 100%;
  will-change: transform;
  animation: spin 1s infinite linear
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/**********************
	차량안내 관련 inner
***********************/
.inner_p{
  width: 1286px;
  margin:0 auto;
}

.padding_100{
  padding-top:100px;
}

h2.h_title_1{
  text-align: center;
  font-size:36px;
  font-weight: 700;
  color: #000;
  font-family: "NotoSansR", sans-serif;
  /*    border-bottom: 4px solid #ec1f27;*/
  padding-bottom: 25px;
}
