@charset "UTF-8";
@import url("./reset.css");
@import url("./font.css");
@font-face {
  font-family: 'GongGothicMedium';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/GongGothicMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* font*/
/* GmarketSans EsaManru 300 500 700 변경 *GongGothicMedium */
/* font*/
html {
  font-size: 20px;
}

body {
  background-color: #000;
  font-family: 'GmarketSansLight';
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
}

/*common*

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

.content_tt {
  color: #0054A5;
  font-weight: 900;
  font-size: 2.3rem;
  margin-bottom: 5rem;
  position: relative;
}

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

.move {
  display: none;
}

.btn_on {
  display: block;
}

/*상단 헤더 레이아웃*/
header {
  /*color: #1d2088;*/
  width: 100%;
  padding: 1rem 2rem;
  position: fixed;
  left: 0;
  right: 0;
  color: #fff;
  background: transparent;
  font-family: "GmarketSansMedium";
  z-index: 1000;
}

.header_wrap {
  position: relative;
  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: #fff;
  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: #fff;
  border-radius: 30%;
}

.header_wrap .nav_wrap .header_nav {
  border-top: 1.4px solid #fff;
  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: #fff;
}

.header_wrap .nav_wrap .header_nav .header_right .header_btn {
  display: none;
  background-color: transparent;
  border: 0;
  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: #fff;
  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 #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%;
}

.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";
  color: #fff;
}

.team_title h3 {
  display: none;
  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;
}

.contact_bg {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.contact_bg .bg {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.contact_bg .bg img {
  width: 100%;
  max-width: 100%;
}

.contact_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 3.5rem 5rem 5rem 5rem;
  background-color: #262626;
}

.contact_wrap .container .contact_title {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  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: end;
}

.contact_wrap .container .contact_title h3 {
  font-size: 4rem;
  font-family: "GmarketSansMedium";
  color: #fff;
  font-weight: 500;
}

.contact_wrap .container .contact_title p {
  width: 50%;
  text-align: right;
  font-size: 1.5rem;
  color: #fff;
  font-family: "GmarketSansLight";
  font-weight: 300;
  letter-spacing: -0.1em;
}

.contact_wrap .container .contact_title p .col {
  display: inline-block;
  margin: .5rem 1rem;
  width: .3rem;
  height: .3rem;
  background-color: #fff;
  border-radius: 30%;
}

.contact_wrap .container .contact_text {
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact_wrap .container .contact_text .text_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-top: 3rem;
}

.contact_wrap .container .contact_text .text_box:before {
  display: none;
  content: "";
  position: absolute;
  width: .9rem;
  height: .9rem;
  top: -1.5rem;
  background-color: #fff;
  border-radius: 50%;
}

.contact_wrap .container .contact_text .text_box h3 {
  width: 30%;
  color: #fff;
  letter-spacing: .1em;
  font-size: 2.6rem;
  margin-right: 1rem;
}

.contact_wrap .container .contact_text .text_box p {
  text-align: justify;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  width: 50%;
}

footer {
  background-color: #fff;
  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-family: "GmarketSansBold";
  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: 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 nav {
    margin-top: 10rem;
  }
  .hd .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: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .hd .nav_wrap .header_nav .header_right nav ul li {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .hd .nav_wrap .header_nav .header_right 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 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 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;
  }
  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: flex;
  }
  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";
    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=contact.css.map */