@charset "UTF-8";
@import url("./reset.css");
@import url("./font.css");
/* font*/
/* GmarketSans EsaManru 300 500 700 변경 *GongGothicMedium */
/* font*/
html {
  font-size: 20px;
}

body {
  font-family: 'GmarketSansLight';
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
  position: relative;
}

/*common*

/*레이아웃*/
.container {
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 64.5rem;
}

.content_tt {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  font-family: "GmarketSansBold";
  font-weight: 700;
  color: #0054A5;
}

.content_bg {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  z-index: 998;
  top: -4rem;
}

.content_desc {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 3rem;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*상단 헤더 레이아웃*/
.main_wrap {
  padding: 0 1.5rem;
  background-color: #0054A5;
  position: relative;
  min-height: 100vh;
  max-width: 100%;
  overflow: hidden;
}

.move {
  display: none;
}

.btn_on {
  display: block;
}

header {
  /*color: #1d2088;*/
  width: 100%;
  padding: 1rem 2rem;
  position: fixed;
  left: 0;
  right: 0;
  color: #000;
  font-family: "GmarketSansMedium";
  z-index: 1000;
}

header.bg_fff {
  background: #fff;
}

.header_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header_wrap.move {
  display: none;
}

.header_wrap .header_logo {
  margin-right: 2rem;
  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-top: 0px;
  width: 2.1rem;
}

.header_wrap .header_logo img {
  width: 100%;
}

.header_wrap .header_logo h2 {
  display: none;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
}

.header_wrap .nav_wrap {
  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-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.header_wrap .nav_wrap .nav_top p {
  width: 15rem;
  font-size: .8rem;
  color: #000;
  font-weight: 500;
  margin-bottom: .5rem;
  letter-spacing: -0.1em;
}

.header_wrap .nav_wrap .nav_top p .col {
  display: inline-block;
  margin: .15rem .15rem;
  width: .10rem;
  height: .10rem;
  background-color: #000;
  border-radius: 30%;
}

.header_wrap .nav_wrap .header_nav {
  border-top: 1.4px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.header_wrap .nav_wrap .header_nav .header_left {
  margin-top: .4rem;
}

.header_wrap .nav_wrap .header_nav .header_left p {
  font-size: .5rem;
  font-weight: 500;
  line-height: 1.3;
}

.header_wrap .nav_wrap .header_nav .header_right {
  margin-top: .5rem;
  color: #000;
}

.header_wrap .nav_wrap .header_nav .header_right .header_btn {
  display: none;
  width: 2.5rem;
}

.header_wrap .nav_wrap .header_nav .header_right .header_btn.btn_on {
  display: block;
}

.header_wrap .nav_wrap .header_nav .header_right .header_btn img {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #000;
}

.header_wrap .nav_wrap .header_nav .header_right nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  text-align: right;
}

.header_wrap .nav_wrap .header_nav .header_right nav ul li a {
  text-transform: uppercase;
  display: inline-block;
  text-align: right;
  font-size: .9rem;
  font-weight: 400;
  color: #000;
  line-height: 2;
  position: relative;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.header_wrap .nav_wrap .header_nav .header_right nav ul li a::after {
  display: block;
  content: '';
  width: 100%;
  border-bottom: solid 1px #000;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}

.header_wrap .nav_wrap .header_nav .header_right nav ul li a:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.hd {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  height: 100%;
  top: -120%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.hd.open {
  top: 0%;
}

.hd .header_logo {
  margin-right: 2rem;
  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-top: 0px;
  width: 2.1rem;
}

.hd .header_logo img {
  width: 100%;
}

.hd .header_logo h2 {
  display: none;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
}

.hd .nav_wrap {
  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-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.hd .nav_wrap .nav_top p {
  width: 15rem;
  font-size: .8rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: .5rem;
  letter-spacing: -0.1em;
}

.hd .nav_wrap .nav_top p .col {
  display: inline-block;
  margin: .15rem .15rem;
  width: .10rem;
  height: .10rem;
  background-color: #fff;
  border-radius: 30%;
}

.hd .nav_wrap .header_nav {
  border-top: 1.4px solid #fff;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.hd .nav_wrap .header_nav .header_left {
  margin-top: .4rem;
}

.hd .nav_wrap .header_nav .header_left p {
  font-size: .5rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.hd .nav_wrap .header_nav .header_right {
  margin-top: .5rem;
  color: #fff;
}

.hd .nav_wrap .header_nav .header_right .close_btn {
  position: absolute;
  display: block;
  right: 2rem;
  background-color: transparent;
  border: 0;
  width: 2.5rem;
  z-index: 999;
}

.hd .nav_wrap .header_nav .header_right .close_btn.btn_on {
  display: block;
}

.hd .nav_wrap .header_nav .header_right .close_btn img {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #000;
}

.hd .nav_wrap .header_nav .header_right .hd_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.hd .nav_wrap .header_nav .header_right .hd_nav ul li {
  margin-bottom: 1.5rem;
}

.hd .nav_wrap .header_nav .header_right .hd_nav ul li a {
  text-transform: uppercase;
  display: inline-block;
  text-align: right;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  line-height: 2;
  position: relative;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.hd .nav_wrap .header_nav .header_right .hd_nav ul li a::after {
  display: block;
  content: '';
  width: 100%;
  border-bottom: solid 1px #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}

.hd .nav_wrap .header_nav .header_right .hd_nav ul li a:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.team_title {
  padding: 10rem 0 3.75rem;
  width: 100%;
  height: 100vh;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team_title h2 {
  font-size: 12vw;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0px;
  font-family: "GongGothicBold";
}

.team_title h3 {
  min-width: 70%;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -1px;
  font-weight: 500;
  font-style: normal;
  font-family: "GmarketSansMedium";
}

.team_title img {
  width: 3.5rem;
}

/*history 레이아웃*/
#history .history_wrap {
  position: relative;
}

#history .history_wrap .title_wrap {
  position: -webkit-sticky;
  position: sticky;
  max-width: 64.5rem;
  margin: 0 auto;
  margin-left: 18.4rem;
  top: 3.45rem;
  z-index: 2;
}

#history .history_wrap .title_wrap .title {
  position: absolute;
  padding-top: 4.25rem;
  font-weight: 700;
  font-size: 3.5rem;
  font-family: "GmarketSansBold";
  color: #fff;
}

#history .history_wrap .contents {
  background-color: #000;
  padding: 0 0.75rem;
  color: #fff;
}

#history .history_wrap .contents.gr {
  background-color: #2A2A2A;
}

#history .history_wrap .contents .inner {
  padding-left: 29.2rem;
  max-width: 95%;
  margin: 0 auto;
}

#history .history_wrap .contents .inner .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.56);
}

#history .history_wrap .contents .inner .con .month {
  position: relative;
  width: 8.3rem;
  padding: 5rem 0;
  padding-left: 0.65rem;
  font-size: 1.4rem;
  line-height: 1.75rem;
}

#history .history_wrap .contents .inner .con .month h2 {
  font-family: "GmarketSansMedium";
  font-weight: 500;
}

#history .history_wrap .contents .inner .con .month:before {
  content: '';
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #fff;
  border-radius: 50%;
  left: -5px;
  top: 5.6rem;
}

#history .history_wrap .contents .inner .con .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "GmarketSanLight";
  padding: 5rem 0;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.75rem;
  vertical-align: top;
}

#history .history_wrap .contents .inner .con .txt p {
  font-family: "GmarketSansLight";
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 2.5rem;
}

/*footer*/
footer {
  border-top: 1px solid #999;
  width: 100%;
  padding: 2.75rem 3rem 2.5rem;
  clear: both;
  bottom: 0;
  left: 0;
}

footer .footer_wrap {
  width: 100%;
  max-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;
  margin: 0;
}

footer .footer_wrap .footer01 {
  margin-right: 10rem;
}

footer .footer_wrap .footer01 .desc_wrap {
  padding-top: 1.25rem;
}

footer .footer_wrap .footer01 .desc_wrap:first-child {
  padding-top: 0;
}

footer .footer_wrap .footer01 .desc_wrap .footer_title {
  line-height: 1.2;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "GmarketSansBold";
  color: #0054A7;
  margin-bottom: 0.5rem;
}

footer .footer_wrap .footer01 .desc_wrap .footer_desc {
  font-size: .8rem;
  font-family: "GmarketSansMedium";
  font-weight: 500;
  color: #0054A7;
  line-height: 1.4;
}

footer .footer_wrap .footer01 .desc_wrap .footer_desc br {
  display: none;
}

footer .footer_wrap .footer01 .desc_wrap .footer_desc span {
  font-family: "GmarketSansBold";
  display: inline-block;
  margin-top: .2rem;
  font-weight: 700;
  margin-right: .25rem;
}

footer .footer_wrap .footer01 .desc_wrap .footer_desc span.e_mail {
  margin-left: .5rem;
}

footer .footer_wrap .footer02 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer .footer_wrap .footer02 ul li {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  font-weight: 900;
  color: #0054A5;
  font-family: "GmarketSansBold";
}

footer .footer_wrap .footer02 ul li:first-child {
  margin-top: 0;
}

footer .footer_wrap .footer02 ul li .col {
  width: .5rem;
  height: .5rem;
  display: inline-block;
  border-radius: 50%;
  margin-right: 1.1rem;
}

footer .footer_wrap .footer02 ul li .col.col_1 {
  background-color: #00a0e9;
}

footer .footer_wrap .footer02 ul li .col.col_2 {
  background-color: #e4017f;
}

footer .footer_wrap .footer02 ul li .col.col_3 {
  background-color: #fff101;
}

@media screen and (max-width: 1190px) {
  html {
    font-size: 15px;
  }
  img {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  .container {
    max-width: 100%;
  }
  .header_wrap .header_logo {
    width: 3.3rem;
  }
  .header_wrap .nav_wrap .nav_top p {
    width: 20rem;
    font-size: 1rem;
  }
  .header_wrap .nav_wrap .header_nav .header_left p {
    font-size: 1rem;
  }
  .header_wrap .nav_wrap .header_nav .header_right .header_btn {
    width: 5.5rem;
  }
  .header_wrap .nav_wrap .header_nav .header_right nav ul li a {
    font-size: 1.5rem;
    line-height: 2;
  }
  .hd {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    height: 100%;
    top: -120%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .hd.open {
    top: 0%;
  }
  .hd .header_logo {
    margin-right: 2rem;
    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-top: 0px;
    width: 3.3rem;
  }
  .hd .header_logo img {
    width: 100%;
  }
  .hd .header_logo h2 {
    display: none;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 300;
    text-transform: uppercase;
  }
  .hd .nav_wrap {
    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-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .hd .nav_wrap .nav_top p {
    width: 15rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: .5rem;
    letter-spacing: -0.1em;
  }
  .hd .nav_wrap .nav_top p .col {
    display: inline-block;
    margin: .15rem .15rem;
    width: .10rem;
    height: .10rem;
    background-color: #fff;
    border-radius: 30%;
  }
  .hd .nav_wrap .header_nav {
    border-top: 1.4px solid #fff;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .hd .nav_wrap .header_nav .header_left {
    margin-top: .4rem;
  }
  .hd .nav_wrap .header_nav .header_left p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .hd .nav_wrap .header_nav .header_right {
    margin-top: .5rem;
    color: #fff;
  }
  .hd .nav_wrap .header_nav .header_right .close_btn {
    position: absolute;
    display: block;
    right: 2rem;
    top: 3rem;
    background-color: transparent;
    border: 0;
    width: 5.5rem;
    z-index: 999;
  }
  .hd .nav_wrap .header_nav .header_right .close_btn.btn_on {
    display: block;
  }
  .hd .nav_wrap .header_nav .header_right .close_btn img {
    width: 100%;
    height: 100%;
    display: inline-block;
    color: #000;
  }
  .hd .nav_wrap .header_nav .header_right .hd_nav {
    margin-top: 10rem;
  }
  .hd .nav_wrap .header_nav .header_right .hd_nav ul {
    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;
    text-align: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .hd .nav_wrap .header_nav .header_right .hd_nav ul li {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .hd .nav_wrap .header_nav .header_right .hd_nav ul li a {
    text-transform: uppercase;
    display: inline-block;
    text-align: right;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    line-height: 2;
    position: relative;
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
  }
  .hd .nav_wrap .header_nav .header_right .hd_nav ul li a::after {
    display: block;
    content: '';
    width: 100%;
    border-bottom: solid 1px #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 250ms ease-in-out;
    transition: -webkit-transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
  .hd .nav_wrap .header_nav .header_right .hd_nav ul li a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .team_title {
    padding: 0rem;
  }
  .team_title h2 {
    font-size: 15vw;
  }
  .team_title h3 {
    font-size: 3.6vw;
    width: 90%;
  }
  .team_title img {
    width: 6rem;
  }
  #history .history_wrap {
    position: relative;
  }
  #history .history_wrap .title_wrap {
    position: -webkit-sticky;
    position: sticky;
    border-top: 4px solid #000;
    max-width: 100%;
    margin: 0 auto;
    margin-left: 0rem;
    box-sizing: border-box;
    /* margin-top: 1px; */
    width: 100%;
    background-color: #fff;
    height: 86px;
    top: 9.45rem;
    z-index: 2;
  }
  #history .history_wrap .title_wrap .title {
    position: absolute;
    padding-top: 2.5rem;
    padding-left: 1rem;
    font-weight: 700;
    font-size: 3.5rem;
    font-family: "GmarketSansBold";
    color: #000;
  }
  #history .history_wrap .contents {
    background-color: #000;
    padding: 0 0.75rem;
    color: #fff;
    font-family: "GmarketSansBold";
  }
  #history .history_wrap .contents.gr {
    background-color: #2A2A2A;
  }
  #history .history_wrap .contents .inner {
    padding-left: 2rem;
    max-width: 64.5rem;
    margin: 0 auto;
  }
  #history .history_wrap .contents .inner .con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.56);
  }
  #history .history_wrap .contents .inner .con .month {
    position: relative;
    padding: 3rem 0 2rem;
    padding-left: 1rem;
    padding-right: 0rem;
    font-size: 2rem;
    display: inline-block;
    line-height: 2.5rem;
  }
  #history .history_wrap .contents .inner .con .month h2 {
    font-family: "GmarketSansMedium";
    font-weight: 500;
  }
  #history .history_wrap .contents .inner .con .month:before {
    content: '';
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    background-color: #fff;
    border-radius: 50%;
    left: -2.5px;
    top: 4rem;
  }
  #history .history_wrap .contents .inner .con .txt {
    font-family: "GmarketSansLight";
    padding: 2rem 0;
    padding-left: 1rem;
    font-size: 1.2rem;
    font-weight: 300;
    vertical-align: top;
  }
  #history .history_wrap .contents .inner .con .txt p {
    font-family: "GmarketSansMedium";
    line-height: 2.5rem;
    font-weight: 300;
  }
  footer {
    width: 100%;
    padding: 2.75rem 1rem 2.5rem 2rem;
  }
  footer .footer_wrap {
    width: 100%;
    max-width: 100%;
    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: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  footer .footer_wrap .footer01 {
    margin-right: 0rem;
  }
  footer .footer_wrap .footer01 .desc_wrap {
    padding-top: 1rem;
  }
  footer .footer_wrap .footer01 .desc_wrap.fx_tt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  footer .footer_wrap .footer01 .desc_wrap.fx_tt:first-child {
    margin-right: 5rem;
  }
  footer .footer_wrap .footer01 .desc_wrap:first-child {
    padding-top: 0;
  }
  footer .footer_wrap .footer01 .desc_wrap .footer_title {
    line-height: 1.4;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "GmarketSansBold";
    color: #0054A7;
    margin-bottom: 0.2rem;
  }
  footer .footer_wrap .footer01 .desc_wrap .footer_desc {
    font-size: 1.2rem;
    font-family: "GmarketSansMedium";
    font-weight: 500;
    color: #0054A7;
    line-height: 1.6;
  }
  footer .footer_wrap .footer01 .desc_wrap .footer_desc br {
    display: block;
  }
  footer .footer_wrap .footer01 .desc_wrap .footer_desc span {
    font-family: "GmarketSansBold";
    display: inline-block;
    margin-top: .2rem;
    font-weight: 700;
    margin-right: .25rem;
  }
  footer .footer_wrap .footer01 .desc_wrap .footer_desc span.e_mail {
    margin-left: .5rem;
  }
  footer .footer_wrap .footer02 {
    width: 100%;
    height: 100%;
    padding-top: 2rem;
  }
  footer .footer_wrap .footer02 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .footer_wrap .footer02 ul li {
    font-size: 1.6rem;
    margin-top: 2rem;
    font-family: "GmarketSansBold";
    font-weight: 700;
    color: #0054A5;
  }
  footer .footer_wrap .footer02 ul li:first-child {
    margin-top: 0;
  }
  footer .footer_wrap .footer02 ul li .col {
    width: .5rem;
    height: .5rem;
    display: inline-block;
    border-radius: 50%;
    margin-right: .5rem;
    margin-bottom: .2rem;
  }
  footer .footer_wrap .footer02 ul li .col.col_1 {
    background-color: #00a0e9;
  }
  footer .footer_wrap .footer02 ul li .col.col_2 {
    background-color: #e4017f;
  }
  footer .footer_wrap .footer02 ul li .col.col_3 {
    background-color: #fff101;
  }
}
/*# sourceMappingURL=history.css.map */