@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "SUIT";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "WavvePADO-Regular";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2404@1.0/WavvePADO-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
address,
em,
img,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
footer,
header,
nav,
section,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "SUIT", sans-serif;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  font-family: "Pretendard";
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: top;
}

em {
  font-style: normal;
}

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

html,
body,
.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.mo {
  display: none;
}

.fix_btn {
  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;
  position: fixed;
  right: 56px;
  bottom: 30px;
  z-index: 20;
  gap: 30px;
}
.fix_btn .btn_contact {
  -webkit-animation: contactAni 10s linear infinite;
          animation: contactAni 10s linear infinite;
}
.fix_btn .btn_contact img {
    filter: brightness(0);
}
.fix_btn .btn_contact.type_main img {
    filter: none;
}
.fix_btn .btn_top {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
}
.fix_btn .btn_top:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 22px;
  height: 12px;
  background: url("../image/btn_top.svg") center/cover no-repeat;
  content: "";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.fix_btn .btn_top:hover:before {
  -webkit-transform: translate(-50%, calc(-50% - 6px));
      -ms-transform: translate(-50%, calc(-50% - 6px));
          transform: translate(-50%, calc(-50% - 6px));
  background-image: url(../image/btn_top_hover.svg);
}

.sec_roll {
  overflow: hidden;
  padding-bottom: 150px;
}
.sec_roll .box_roll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-animation: rollAni1 20s linear infinite;
          animation: rollAni1 20s linear infinite;
}
.sec_roll .link_roll {
  white-space: nowrap;
  font-size: 100px;
  font-weight: 700;
  font-family: "Poppins";
  color: #e9e9e9;
}
.sec_roll .link_roll em {
  font-family: "Poppins";
  color: #212121;
}

@-webkit-keyframes rollAni1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes rollAni1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes contactAni {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes contactAni {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .mo {
    display: block;
  }
  .fix_btn {
    right: 20px;
    bottom: 25px;
    gap: 15px;
  }
  .fix_btn .btn_contact {
    width: 45px;
    height: 45px;
  }
  .fix_btn .btn_contact img {
    width: 100%;
    height: 100%;
  }
  .fix_btn .btn_top {
    width: 30px;
    height: 30px;
  }
  .fix_btn .btn_top:before {
    display: block;
    width: 11px;
    height: 6px;
    background: url("../image/btn_top.svg") center/cover no-repeat;
    content: "";
  }
  .sec_roll {
    padding-bottom: 100px;
  }
  .sec_roll .box_roll {
    gap: 25px;
  }
  .sec_roll .link_roll {
    font-size: 50px;
  }
}
.header {
  background: #fff;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #e0e0e0;
  z-index: 100;
}
.header.type_main {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.header.type_main .logo a:before {
  background-image: url(../image/logo_white.svg);
}
.header.type_main .nav_item {
  color: #d7d7d7;
}
.header.type_main .nav_item:after {
  background: #fff;
}
.header.type_main .nav_item:hover {
  color: #fff;
}
.header.type_main .btn_menu:before {
  background-image: url(../image/icon_menu_white.svg);
}
.header.type_main .btn_menu:hover:before {
  background-image: url(../image/icon_menu_white_hover.svg);
}
.header_inner {
  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;
  height: 80px;
  padding: 0 102px 0 98px;
}
.header .box_right {
  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;
}
.header .logo a:before {
  display: block;
  width: 35px;
  height: 51px;
  background: url("../image/logo.svg") center/cover no-repeat;
  content: "";
}
.header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.header .nav_item {
  position: relative;
  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;
  font-family: "Poppins";
  font-size: 18px;
  color: #363636;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.header .nav_item:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -32px;
  background: #333;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.header .nav_item:hover {
  font-weight: 700;
  color: #333;
}
.header .nav_item:hover:after {
  width: 100%;
}
.header .nav_item:first-child {
  width: 63px;
}
.header .nav_item:nth-child(2) {
  width: 75px;
}
.header .nav_item:nth-child(3) {
  width: 97px;
}
.header .nav_item:nth-child(4) {
  width: 90px;
}
.header .btn_menu {
  margin-left: 65px;
}
.header .btn_menu:before {
  display: block;
  width: 31px;
  height: 31px;
  background: url("../image/icon_menu.svg") center/cover no-repeat;
  content: "";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.header .btn_menu:hover:before {
  background-image: url(../image/icon_menu_hover.svg);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.header .box_menu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 650px;
  background: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.header .box_menu.is_show {
  visibility: visible;
  opacity: 100;
}
.header .btn_menu_close {
  position: absolute;
  top: 25px;
  right: 101px;
}
.header .btn_menu_close:before {
  display: block;
  width: 31px;
  height: 31px;
  background: url("../image/icon_menu_white_hover.svg") center/cover no-repeat;
  content: "";
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .list_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  position: absolute;
  top: 181px;
  left: 40px;
}
.header .list_menu .menu_item {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 500;
  color: #666;
}
.header .list_menu .menu_item:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  color: #fff;
}

.swiper {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .header_inner {
    height: 40px;
    padding: 0 20px;
  }
  .header .logo a:before {
    width: 18px;
    height: 26px;
  }
  .header .nav {
    display: none;
  }
  .header .btn_menu:before {
    width: 15px;
    height: 15px;
  }
  .header .box_menu {
    width: auto;
    left: 75px;
    bottom: 0;
  }
  .header .btn_menu_close {
    position: absolute;
    top: 12px;
    right: 20px;
  }
  .header .btn_menu_close:before {
    display: block;
    width: 15px;
    height: 15px;
    background: url("../image/icon_menu_white_hover.svg") center/cover no-repeat;
    content: "";
  }
  .header .list_menu {
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(calc(-50% - 70px));
        -ms-transform: translateY(calc(-50% - 70px));
            transform: translateY(calc(-50% - 70px));
    gap: 25px;
  }
  .header .list_menu .menu_item {
    font-size: 20px;
  }
}
.footer {
  background: #000;
}
.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 20px 52px;
  max-width: 1320px;
  margin: 0 auto;
}
.footer .logo:before {
  display: block;
  width: 35px;
  height: 51px;
  background: url("../image/logo_footer.svg") center/cover no-repeat;
  content: "";
}
.footer .box_text {
  margin-left: 165px;
  font-size: 15px;
  line-height: 28px;
}
.footer .footer_info {
  color: #888;
}
.footer .copyright {
  margin-top: 14px;
  color: #aaa;
}

@media screen and (max-width: 1024px) {
  .footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 25px 0;
  }
  .footer .logo:before {
    display: block;
    width: 18px;
    height: 26px;
    background: url("../image/logo_footer.svg") center/cover no-repeat;
    content: "";
  }
  .footer .box_text {
    margin-left: 0;
    font-size: 7px;
    line-height: 14px;
    text-align: center;
  }
}
.page_main {
  margin-top: -80px;
}

.visual_swiper {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.visual_swiper .box_visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 20px;
}
.visual_swiper .box_visual .box_text {
  position: relative;
  z-index: 10;
}
.visual_swiper .box_visual .title {
  font-family: "WavvePADO-Regular";
  font-size: 70px;
  color: #fff;
  font-weight: 400;
}
.visual_swiper .box_visual .desc {
  margin-top: 20px;
  color: #ccc;
  line-height: 26px;
  font-size: 16px;
}
.visual_swiper .box_visual .link {
  display: block;
  margin-top: 100px;
  color: #ccc;
  font-size: 16px;
  font-family: "Poppins";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.visual_swiper .box_visual .link em {
  font-weight: 700;
}
.visual_swiper .box_visual .link .icon {
  display: inline-block;
  margin-left: 20px;
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.visual_swiper .box_visual .link:hover {
  color: #fff;
}
.visual_swiper .box_visual .link:hover .icon {
  margin-left: 40px;
}
.visual_swiper .box_visual .text {
  color: #fff;
  opacity: 0.08;
  font-size: 100px;
  font-family: "Poppins";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
}
.visual_swiper .box_visual img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.visual_swiper .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1580px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  left: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  bottom: 45px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  gap: 25px;
}
.visual_swiper .swiper-pagination .swiper-pagination-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  font-family: "Poppins";
  color: #666;
  font-weight: 700;
  opacity: 1;
  margin: 0 !important;
  gap: 25px;
  font-size: 16px;
}
.visual_swiper .swiper-pagination .swiper-pagination-bullet-active {
  color: #fff;
}
.visual_swiper .swiper-pagination .swiper-pagination-bullet-active .progress {
  display: block;
}
.visual_swiper .swiper-pagination .swiper-pagination-bullet-active .progress:before {
  -webkit-animation: progressAni 3s linear forwards;
          animation: progressAni 3s linear forwards;
}
.visual_swiper .swiper-pagination .progress {
  position: relative;
  display: none;
  height: 2px;
  width: 70px;
  background: #666;
}
.visual_swiper .swiper-pagination .progress:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  height: 100%;
  width: 0;
}

@-webkit-keyframes progressAni {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressAni {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .page_main {
    margin-top: -42px;
  }
  .visual_swiper .box_visual .text {
    font-size: 20px;
  }
  .visual_swiper .box_visual .title {
    font-size: 35px;
  }
  .visual_swiper .box_visual .desc {
    margin-top: 10px;
    font-size: 8px;
    line-height: 13px;
  }
  .visual_swiper .box_visual .link {
    margin-top: 50px;
    font-size: 8px;
  }
  .visual_swiper .swiper-pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
  .visual_swiper .swiper-pagination .swiper-pagination-bullet {
    font-size: 8px;
    gap: 12px;
  }
  .visual_swiper .swiper-pagination .progress {
    width: 35px;
    height: 1px;
  }
}
.box_main_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
}
.box_main_title .sub {
  font-size: 16px;
  line-height: 26px;
  color: #212121;
}
.box_main_title .title {
  font-family: "Poppins";
  font-size: 80px;
  font-weight: 600;
  line-height: 120px;
  margin-top: -10px;
}
.box_main_title .desc {
  text-align: center;
  margin-top: 100px;
  color: #212121;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}
.box_main_title .desc em {
  font-weight: 700;
}
.box_main_title .desc:before {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
  background: #707070;
  margin: 0 auto 47px;
}
.box_main_title .sub_desc {
  margin-top: 18px;
  font-size: 18px;
  color: #666;
  line-height: 28px;
  text-align: center;
}
.box_main_title .sub_desc em {
  font-weight: 700;
}

.sec_about {
  padding-top: 200px;
  background: url(../image/about/bg_about.png) center top 326px no-repeat;
}
.sec_about .list_bsfi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 150px;
}
.sec_about .list_bsfi .item_bsfi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: rgba(255, 255, 255, 0.6);
  font-family: "Poppins";
  font-size: 25px;
  color: #888;
}
.sec_about .list_bsfi .item_bsfi em {
  font-weight: 700;
  color: #212121;
}
.sec_about .list_bsfi .item_bsfi + .item_bsfi {
  margin-left: -27px;
  background: none;
}
.sec_about .list_bsfi .item_bsfi:nth-child(1) {
  -webkit-animation: circleAni 3s ease-in infinite;
          animation: circleAni 3s ease-in infinite;
}
.sec_about .list_bsfi .item_bsfi:nth-child(2) {
  -webkit-animation: circleAni 3s ease-in 0.8s infinite;
          animation: circleAni 3s ease-in 0.8s infinite;
}
.sec_about .list_bsfi .item_bsfi:nth-child(3) {
  -webkit-animation: circleAni 3s ease-in 1.6s infinite;
          animation: circleAni 3s ease-in 1.6s infinite;
}
.sec_about .list_bsfi .item_bsfi:nth-child(4) {
  -webkit-animation: circleAni 3s ease-in 2.4s infinite;
          animation: circleAni 3s ease-in 2.4s infinite;
}
.sec_about .box_brand {
  margin-top: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  gap: 30px;
}
.sec_about .list_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-animation: rollAni1 20s linear infinite;
          animation: rollAni1 20s linear infinite;
}
.sec_about .item_brand {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sec_about .item_brand img {
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
.sec_about .item_brand:nth-child(even) {
  margin-top: 50px;
}
.sec_about .box_company {
  padding: 225px 20px 375px;
  background: url(../image/about/bg_company.png) left bottom no-repeat;
}
.sec_about .box_company .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1720px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  width: 100%;
  margin: 0 auto;
}
.sec_about .box_company .sub_title {
  display: block;
  margin-top: 10px;
  font-family: "Poppins";
  font-size: 25px;
  font-weight: 700;
  color: #212121;
}
.sec_about .box_company .company_desc {
  font-size: 45px;
  line-height: 60px;
}
.sec_about .box_company .company_desc em {
  font-weight: 700;
  text-decoration: underline;
}
.sec_about .box_company .list_company {
  margin-top: 150px;
}
.sec_about .box_company .list_company .item_company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 110px;
  text-align: left;
}
.sec_about .box_company .list_company .item_company + .item_company {
  margin-top: 100px;
}
.sec_about .box_company .list_company .item_title {
  font-size: 25px;
  font-weight: 600;
  display: block;
  color: #212121;
}
.sec_about .box_company .list_company .item_desc {
  font-size: 16px;
  line-height: 26px;
  margin-top: 20px;
  color: #666;
}
.sec_about .box_company .list_company .item_desc em {
  font-weight: 700;
}
.sec_about .box_company .box_right {
  max-width: 1210px;
  width: 100%;
}

.sec_history {
  margin-top: -145px;
  padding: 0 20px 230px;
}
.sec_history .inner {
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
}
.sec_history .box_visual img {
  width: 100%;
}
.sec_history .box_title {
  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-top: 50px;
}
.sec_history .box_title .title {
  font-family: "Poppins";
  font-size: 80px;
  line-height: 120px;
  color: #212121;
}
.sec_history .box_title .desc {
  font-size: 18px;
  line-height: 26px;
  color: #666;
}
.sec_history .box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  margin-top: 150px;
  color: #212121;
}
.sec_history .box_content .sub_title {
  display: block;
  font-family: "Poppins";
  font-size: 15px;
}
.sec_history .box_content .sub_desc {
  margin-top: 9px;
  font-size: 16px;
}
.sec_history .box_company_history,
.sec_history .box_launch_history {
  max-width: 1210px;
  width: 100%;
}
.sec_history .box_company_history {
  position: relative;
  overflow: hidden;
}
.sec_history .box_company_history .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}
.sec_history .box_company_history .box_img {
  width: 370px;
  height: 370px;
}
.sec_history .box_company_history .box_img img {
  width: 100%;
}
.sec_history .box_company_history .box_history_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 30px 0 0 -55px;
}
.sec_history .box_company_history .box_history_text .year {
  font-family: "Poppins";
  font-size: 55px;
  font-weight: 600;
  color: #212121;
  -webkit-text-stroke: 1px white;
}
.sec_history .box_company_history .box_history_text .list_history {
  margin-top: 10px;
}
.sec_history .box_company_history .box_history_text .item_history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 84px;
}
.sec_history .box_company_history .box_history_text .item_history + .item_history {
  margin-top: 40px;
}
.sec_history .box_company_history .box_history_text .item_history .month {
  width: 26px;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
  color: #aaa;
}
.sec_history .box_company_history .box_history_text .item_history .history_desc {
  font-size: 18px;
  color: #212121;
  line-height: 1.3;
}
.sec_history .box_company_history .swiper-pagination {
  position: static;
  margin-top: 64px;
  background: rgba(0, 0, 0, 0.2);
}
.sec_history .box_company_history .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #121212;
}
.sec_history .box_launch_history .list_launch_history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.sec_history .box_launch_history .list_launch_history.mo {
  display: none;
}
.sec_history .box_launch_history .list_launch_history + .list_launch_history {
  margin-top: 15px;
}
.sec_history .box_launch_history .list_launch_history:nth-child(1) .item_launch_history:hover:nth-child(1) {
  background: #453830;
}
.sec_history .box_launch_history .list_launch_history:nth-child(1) .item_launch_history:hover:nth-child(2) {
  background: #0123b4;
}
.sec_history .box_launch_history .list_launch_history:nth-child(1) .item_launch_history:hover:nth-child(3) {
  background: #fafafa;
  color: #000;
}
.sec_history .box_launch_history .list_launch_history:nth-child(1) .item_launch_history:hover:nth-child(4) {
  background: #212121;
}
/* .sec_history .box_launch_history .list_launch_history:nth-child(1) .item_launch_history:hover:nth-child(5) {
  background: #212121;
} */
.sec_history .box_launch_history .list_launch_history:nth-child(2) .item_launch_history:hover:nth-child(1) {
  background: #b28147;
}
.sec_history .box_launch_history .list_launch_history:nth-child(2) .item_launch_history:hover:nth-child(2) {
  background: #97181A;
}
.sec_history .box_launch_history .list_launch_history:nth-child(2) .item_launch_history:hover:nth-child(3) {
  background: #600F12;
}
.sec_history .box_launch_history .list_launch_history:nth-child(2) .item_launch_history:hover:nth-child(4) {
  background: #C0A909;
}
/* .sec_history .box_launch_history .list_launch_history:nth-child(2) .item_launch_history:hover:nth-child(5) {
  background: #971819;
} */
.sec_history .box_launch_history .item_launch_history {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  border-radius: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.sec_history .box_launch_history .item_launch_history:hover {
  border-color: transparent;
  -webkit-box-flex: 6.81;
      -ms-flex: 6.81;
          flex: 6.81;
}
.sec_history .box_launch_history .item_launch_history:hover .box_logo {
  opacity: 0;
}
.sec_history .box_launch_history .item_launch_history:hover .box_inner {
  opacity: 1;
}
.sec_history .box_launch_history .item_launch_history .box_logo {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
}
.sec_history .box_launch_history .item_launch_history .box_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.sec_history .box_launch_history .item_launch_history .box_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  height: 100%;
}
.sec_history .box_launch_history .item_launch_history .box_inner .box_img {
  border-radius: 20px;
  width: 50%;
  height: 100%;
}
.sec_history .box_launch_history .item_launch_history .box_inner .box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_history .box_launch_history .item_launch_history .box_inner .box_brand_text {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding-left: 30px;
}
.sec_history .box_launch_history .item_launch_history .box_inner .box_brand_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.sec_history .box_launch_history .item_launch_history .box_inner .brand_title {
  font-size: 25px;
  font-weight: 700;
}
.sec_history .box_launch_history .item_launch_history .box_inner .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}
.sec_history .box_launch_history .item_launch_history .box_inner .category:before {
  display: block;
  width: 1px;
  height: 18px;
  background: currentColor;
  opacity: 0.5;
  margin: 0 15px 0 6px;
  content: "";
}
.sec_history .box_launch_history .item_launch_history .box_inner .list_brand_info {
  margin-top: 30px;
}
.sec_history .box_launch_history .item_launch_history .box_inner .item_brand_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  opacity: 0.8;
  line-height: 24px;
}
.sec_history .box_launch_history .item_launch_history .box_inner .item_brand_info:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid currentColor;
  margin: 4px 5px 0 0;
}
.sec_history .box_launch_history .item_launch_history .box_inner .item_brand_info + .item_brand_info {
  margin-top: 13px;
}

.sec_vision {
  position: relative;
  padding: 200px 20px 100px;
}
.sec_vision:before {
  position: absolute;
  width: 100%;
  height: 900px;
  background: #fafafa;
  left: 0;
  top: 0;
  z-index: 0;
  content: "";
}
.sec_vision .inner {
  position: relative;
  z-index: 1;
  max-width: 1720px;
  margin: 0 auto;
}
.sec_vision .box_title {
  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;
  color: #212121;
}
.sec_vision .box_title .title {
  font-family: "Poppins";
  font-size: 80px;
  font-weight: 700;
}
.sec_vision .box_title .desc {
  font-size: 16px;
}
.sec_vision .box_vision {
  margin: 38px -20px 0 0;
  border-radius: 20px;
  background: #fff;
  padding: 87px 87px 0;
}
.sec_vision .list_vision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 106px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec_vision .item_vision {
  width: 100%;
  padding: 0 30px 30px 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.sec_vision .item_vision:hover {
  border-color: #121212;
  background: url(../image/about/icon_search.svg) right bottom 30px no-repeat;
}
.sec_vision .item_vision .vision_title {
  font-size: 20px;
  font-weight: 700;
  display: block;
  color: #212121;
}
.sec_vision .item_vision .vision_desc {
  margin-top: 10px;
  font-size: 15px;
  color: #888;
  font-family: "Poppins";
}
.sec_vision .item_vision .box_img {
  max-width: 310px;
  width: 100%;
  margin-top: 20px;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}
.sec_vision .item_vision .box_img img {
  width: 100%;
}
.sec_vision .btn_more {
  width: 160px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #63666e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  color: #63666e;
  margin: 100px auto 0;
  background: url(../image/about/icon_more.svg) center right 20px no-repeat;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sec_vision .btn_more:hover {
  color: #fff;
  background: #000 url(../image/about/icon_more_hover.svg) center right 20px no-repeat;
}

.sec_brands {
  padding: 100px 20px 150px;
}
.sec_brands .inner {
  max-width: 1720px;
  margin: 0 auto;
}
.sec_brands .box_title {
  text-align: center;
  color: #212121;
}
.sec_brands .box_title .title {
  font-family: "Poppins";
  font-size: 80px;
  line-height: 120px;
  font-weight: 600;
}
.sec_brands .box_title .desc {
  margin-top: 25px;
  font-size: 45px;
}
.sec_brands .box_title .desc em {
  font-weight: 700;
}
.sec_brands .box_title .arrow {
  width: 56px;
  height: 120px;
  margin: 180px auto 0;
  -webkit-animation: arrowAni 1.5s ease-in-out infinite;
          animation: arrowAni 1.5s ease-in-out infinite;
}
.sec_brands .box_title .arrow img {
  width: 100%;
}
.sec_brands .list_main_brand {
  padding: 300px 0 100px;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.sec_brands .list_main_brand .item_main_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 350px;
  overflow: hidden;
  border-radius: 0 20px 20px 20px;
  cursor: pointer;
}
.sec_brands .list_main_brand .item_main_brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sec_brands .list_main_brand .item_main_brand:before {
  content: "";
  display: block;
  width: 100%;
  height: 175px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.sec_brands .list_main_brand .item_main_brand:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
      -ms-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}
.sec_brands .list_main_brand .item_main_brand:hover .box_text .desc,
.sec_brands .list_main_brand .item_main_brand:hover .box_text .name {
  font-weight: 700;
}
.sec_brands .list_main_brand .box_text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 30px 20px;
  color: #fff;
  z-index: 10;
}
.sec_brands .list_main_brand .box_text .desc {
  font-family: "Poppins";
  font-size: 18px;
}
.sec_brands .list_main_brand .box_text .desc em {
  font-weight: 700;
}
.sec_brands .list_main_brand .box_text .name {
  font-size: 30px;
  font-weight: 400;
}
.sec_brands .list_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px 37px;
  margin-top: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec_brands .list_brand .item_brand {
  width: calc(50% - 37px);
}
.sec_brands .list_brand .box_thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
.sec_brands .list_brand .box_thumb .swiper-slide:hover img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.sec_brands .list_brand .box_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sec_brands .list_brand .box_img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
.sec_brands .list_brand .box_img:hover img:not(.ico) {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.sec_brands .list_brand .box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sec_brands .list_brand .box_img .ico {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    top: 50%;
    left: 50%;
    max-width: 8rem;
    transform: translate(-50%, -50%);
}
.sec_brands .list_brand .box_logo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 150px;
  border-radius: 0 80px 0 0;
  z-index: 1;
  background: #fff;
}
.sec_brands .list_brand .brand_title {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 700;
  color: #212121;
}
.sec_brands .list_brand .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  padding-right: 30px;
  bottom: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 7px;
}
.sec_brands .list_brand .swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background: #fff;
  width: 12px;
  height: 12px;
}
.sec_brands .list_brand .box_brand_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 37px 0 16px;
  border-bottom: 1px solid #ccc;
}
.sec_brands .list_brand .box_brand_info .box_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec_brands .list_brand .box_brand_info .name {
  font-size: 30px;
  font-weight: 600;
  margin-right: 8px;
}
.sec_brands .list_brand .box_brand_info .sns {
  font-size: 16px;
  color: #666;
}
.sec_brands .list_brand .box_brand_info .link:hover:before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.sec_brands .list_brand .box_brand_info .link:before {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  display: block;
  width: 31px;
  height: 31px;
  background: url("../image/icon_menu.svg") center/cover no-repeat;
  content: "";
}

.sec_branding {
  padding: 200px 0 200px;
}
.sec_branding .box_main_title {
  border-bottom: 1px solid #ccc;
  padding: 0 20px 300px;
}
.sec_branding .list_branding {
  max-width: 1720px;
  margin: 0 auto;
  padding: 200px 20px 0;
}
.sec_branding .list_branding .item_branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec_branding .list_branding .item_branding:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sec_branding .list_branding .item_branding:nth-child(even) .item_title {
  margin-right: 90px;
  margin-left: 0;
}
.sec_branding .list_branding .item_branding:nth-child(even) .item_desc {
  margin-right: 130px;
  margin-left: 0;
}
.sec_branding .list_branding .box_icon {
  width: 200px;
  height: 200px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.sec_branding .list_branding .box_icon img {
  width: 100%;
  height: 100%;
}
.sec_branding .list_branding .item_title {
  max-width: 460px;
  width: 100%;
  margin-left: 90px;
  font-family: "Poppins";
  font-size: 50px;
  font-weight: 700;
  color: #212121;
}
.sec_branding .list_branding .item_desc {
  margin-left: 130px;
  font-size: 20px;
  line-height: 33px;
  color: #666;
}
.sec_branding .list_branding .item_desc em {
  font-weight: 700;
  color: #212121;
  text-decoration: underline;
}
.sec_branding .list_category {
  padding-top: 250px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #e7e7e7;
}
.sec_branding .list_category .item_category {
  position: relative;
  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;
  height: 87px;
  gap: 25px;
  border-top: 1px solid #e7e7e7;
  font-family: serif;
}
.sec_branding .list_category .item_category:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #212121;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sec_branding .list_category .item_category:hover:before {
  height: 100%;
}
.sec_branding .list_category .item_category:hover .category_name {
  color: #fff;
}
.sec_branding .list_category .item_category:hover .en {
  color: #fff;
  opacity: 0.6;
}
.sec_branding .list_category .item_category.type_link {
  background: #212121;
}
.sec_branding .list_category .item_category:hover.type_link a {
  font-weight: bold;
}
.sec_branding .list_category .category_name {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: #121212;
}
.sec_branding .list_category .en {
  position: relative;
  z-index: 1;
  font-family: "Poppins";
  font-size: 20px;
  color: #ccc;
}
.sec_branding .list_category .link {
  font-family: "Poppins";
  font-size: 20px;
  color: #fff;
  z-index: 1;
}

.sec_contact {
  background: url(../image/about/bg_company.png) right bottom -74px/390px 487px no-repeat;
  padding: 200px 0;
}
.sec_contact .box_main_title .title {
  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-bottom: 100px;
}
.sec_contact .box_main_title .title:after {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
  background: #707070;
  margin: 100px auto 0;
}
.sec_contact .box_map {
  max-width: 1522px;
  height: 500px;
  border-radius: 20px;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}
.sec_contact .box_map .root_daum_roughmap_landing {
  width: 100% !important;
  height: 100% !important;
}
.sec_contact .box_map .wrap_controllers,
.sec_contact .box_map .wrap_btn_zoom,
.sec_contact .box_map .map_border {
  display: none !important;
}
.sec_contact .box_map .wrap_map {
  height: 100% !important;
}
.sec_contact .list_map {
  max-width: 1522px;
  margin: 27px auto 0;
  padding: 0 20px;
}
.sec_contact .list_map .item_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #212121;
}
.sec_contact .list_map .item_map + .item_map {
  margin-top: 18px;
  font-weight: 400;
}

.sec_cooperation {
  padding: 150px 20px;
  background: #fafafa;
  text-align: center;
}
.sec_cooperation .title {
  font-size: 30px;
}
.sec_cooperation .title em {
  font-weight: 700;
}
.sec_cooperation .desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 28px;
}
.sec_cooperation .list_cooperation {
  max-width: 1523px;
  margin: 100px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 85px;
}
.sec_cooperation .list_cooperation .item_cooperation {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: 1px solid #212121;
  padding-top: 13px;
}
.sec_cooperation .list_cooperation .box_info {
  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;
  font-size: 15px;
  color: #aaa;
  font-family: "Poppins";
}
.sec_cooperation .list_cooperation .box_info .info {
  font-size: 18px;
  font-weight: 700;
  color: #363636;
}
.sec_cooperation .list_cooperation .box_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 80px;
  color: #aaa;
}
.sec_cooperation .list_cooperation .box_num .num {
  font-family: "Poppins";
  font-weight: 600;
  color: #212121;
}

.sec_inquiry {
  padding: 200px 20px;
}
.sec_inquiry .inner {
  max-width: 1521px;
  margin: 0 auto;
}
.sec_inquiry .title {
  font-family: "Poppins";
  font-size: 80px;
  font-weight: 600;
  color: #212121;
}
.sec_inquiry .box_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 60px;
}
.sec_inquiry .box_row + .box_row {
  margin-top: 48px;
}
.sec_inquiry .box_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_inquiry .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #212121;
}
.sec_inquiry .label.is_required:after {
  display: block;
  margin-left: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #212121;
  content: "";
}
.sec_inquiry .input {
  width: 100%;
  height: 82px;
  padding: 0 20px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  color: #212121;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec_inquiry .input:focus {
  border-color: #212121;
  outline: none;
}
.sec_inquiry .input::-webkit-input-placeholder {
  color: #aaa;
}
.sec_inquiry .input::-moz-placeholder {
  color: #aaa;
}
.sec_inquiry .input:-ms-input-placeholder {
  color: #aaa;
}
.sec_inquiry .input::-ms-input-placeholder {
  color: #aaa;
}
.sec_inquiry .input::placeholder {
  color: #aaa;
}
.sec_inquiry .wrap_dropdown {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_inquiry .wrap_dropdown .box_dropdown {
  margin-top: 11px;
  position: relative;
}
.sec_inquiry .wrap_dropdown .btn_dropdown {
  text-align: left;
  width: 100%;
  height: 82px;
  padding: 0 20px;
  font-size: 16px;
  color: #aaa;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff url(../image/contact/icon_arrow.svg) center right 20px no-repeat;
}
.sec_inquiry .wrap_dropdown .btn_dropdown.is_active {
  border-radius: 15px 15px 0 0;
  border-color: #212121;
  background-image: url(../image/contact/icon_arrow_on.svg);
}
.sec_inquiry .wrap_dropdown .btn_dropdown.is_active + .list_dropdown {
  max-height: 360px;
  border: 1px solid #212121;
  border-top: 0;
  -webkit-transition: max-height 0.2s ease-in;
  transition: max-height 0.2s ease-in;
}
.sec_inquiry .wrap_dropdown .list_dropdown {
  overflow: hidden;
  width: 100%;
  z-index: 0;
  max-height: 0;
  background: #fff;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  bottom: 0;
  -webkit-transform: translateY(calc(100% - 1px));
      -ms-transform: translateY(calc(100% - 1px));
          transform: translateY(calc(100% - 1px));
  border-radius: 0 0 15px 15px;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  z-index: 10;
}
.sec_inquiry .wrap_dropdown .list_dropdown .item_dropdown {
  height: 70px;
  text-align: left;
  padding: 0 20px;
  color: #aaa;
  font-size: 18px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sec_inquiry .wrap_dropdown .list_dropdown .item_dropdown:hover {
  background: #212121;
  color: #fff;
}
.sec_inquiry .box_textarea {
  margin-top: 48px;
}
.sec_inquiry .box_textarea .textarea {
  margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  width: 100%;
  border-radius: 12px;
  height: 250px;
  font-size: 16px;
  resize: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec_inquiry .box_textarea .textarea:focus {
  border-color: #212121;
}
.sec_inquiry .box_privacy {
  margin-top: 48px;
}
.sec_inquiry .box_privacy .privacy_title {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.sec_inquiry .box_privacy .privacy_content {
  margin-top: 15px;
  border: 1px solid #e0e0e0;
  background: #f5f5f5;
  padding: 30px 20px;
  border-radius: 20px;
  font-size: 15px;
  color: #797979;
  line-height: 25px;
}
.sec_inquiry .box_privacy .privacy_content strong {
  font-weight: 700;
}
.sec_inquiry .box_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec_inquiry .box_checkbox input:checked + .checkbox_label:before {
  background-image: url(../image/contact/icon_checkbox_on.svg);
}
.sec_inquiry .box_checkbox .checkbox_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
  font-size: 15px;
  color: #363636;
}
.sec_inquiry .box_checkbox .checkbox_label:before {
  display: block;
  width: 14px;
  height: 14px;
  background: url("../image/contact/icon_checkbox.svg") center/cover no-repeat;
  content: "";
  margin-right: 10px;
}
.sec_inquiry .btn_inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  height: 80px;
  border-radius: 50px;
  background: #121212;
  font-size: 20px;
  color: #fff;
  margin: 30px 0 0 auto;
}
.sec_inquiry .btn_inquiry:hover {
  font-weight: 700;
}

.layer_vision {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
}
.layer_vision.is_show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer_vision .layer_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 610px;
  margin: 0 auto;
  position: relative;
  padding: 50px 50px 54px;
  border: 1px solid #212121;
  background: #fff;
  border-radius: 5px;
}
.layer_vision .layer_content .btn_close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.layer_vision .box_img {
  border: 1px solid #f0f0f0;
}
.layer_vision .box_img img {
  width: 100%;
}
.layer_vision .title {
  display: block;
  margin-top: 27px;
  font-size: 30px;
  font-weight: 700;
  color: #212121;
}
.layer_vision .desc {
  margin-top: 9px;
  font-size: 16px;
  color: #797979;
}

.layer_brand {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
}
.layer_brand.is_show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer_brand .layer_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 50px;
  border: 1px solid #212121;
  background: #fff;
  border-radius: 5px;
  position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.layer_brand .layer_content .btn_close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.layer_brand .box_thumb {
  position: relative;
  overflow: hidden;
  max-width: 890px;
  width: 100%;
}
.layer_brand .box_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.layer_brand .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  padding-right: 30px;
  bottom: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 7px;
}
.layer_brand .swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background: #fff;
  width: 12px;
  height: 12px;
}
.layer_brand .box_title {
  margin-top: 27px;
  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-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.layer_brand .box_title .name {
  font-size: 30px;
  font-weight: 700;
  color: #212121;
}
.layer_brand .desc {
  margin-top: 28px;
  color: #212121;
  font-size: 18px;
}
.layer_brand .sub_desc {
  margin-top: 20px;
  color: #797979;
  font-size: 16px;
  line-height: 26px;
}

@keyframes rollAni1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes circleAni {
  0% {
    border-color: #212121;
  }
  33% {
    border-color: #e0e0e0;
  }
  66% {
    border-color: #e0e0e0;
  }
  100% {
    border-color: #e0e0e0;
  }
}
@keyframes circleAni {
  0% {
    border-color: #212121;
  }
  33% {
    border-color: #e0e0e0;
  }
  66% {
    border-color: #e0e0e0;
  }
  100% {
    border-color: #e0e0e0;
  }
}
@-webkit-keyframes arrowAni {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes arrowAni {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@media screen and (max-width: 1455px) {
  .sec_branding .list_branding .item_branding:nth-child(even) .item_title {
    margin-right: 50px;
    margin-left: 0;
  }
  .sec_branding .list_branding .item_branding:nth-child(even) .item_desc {
    margin-right: 90px;
    margin-left: 0;
  }
  .sec_branding .list_branding .box_icon {
    width: 150px;
    height: 150px;
  }
  .sec_branding .list_branding .item_title {
    margin-left: 50px;
    font-size: 40px;
  }
  .sec_branding .list_branding .item_desc {
    margin-left: 90px;
  }
  .sec_branding .list_category .item_category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .box_main_title .sub {
    font-size: 8px;
    line-height: 13px;
  }
  .box_main_title .title {
    font-size: 40px;
    line-height: 60px;
    margin-top: -5px;
  }
  .box_main_title .desc {
    margin-top: 50px;
    font-size: 15px;
    line-height: 20px;
  }
  .box_main_title .desc:before {
    height: 35px;
    margin: 0 auto 23px;
  }
  .box_main_title .sub_desc {
    margin-top: 14px;
    font-size: 9px;
    line-height: 14px;
  }
  .sec_about {
    padding-top: 100px;
    background: url(../image/about/bg_about_mo.png) center top 380px no-repeat;
    background-size: 100% auto;
  }
  .sec_about .list_bsfi {
    margin-top: 75px;
  }
  .sec_about .list_bsfi .item_bsfi {
    width: 90px;
    height: 90px;
    font-size: 11px;
  }
  .sec_about .list_bsfi .item_bsfi + .item_bsfi {
    margin-left: -15px;
  }
  .sec_about .box_brand {
    margin-top: 60px;
    gap: 15px;
  }
  .sec_about .list_brand {
    gap: 15px;
  }
  .sec_about .item_brand {
    width: 175px;
  }
  .sec_about .item_brand img {
    width: 100%;
  }
  .sec_about .item_brand:nth-child(even) {
    margin-top: 25px;
  }
  .sec_about .box_company {
    padding: 117px 20px 160px;
    background-size: 250px 312px;
  }
  .sec_about .box_company .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 23px;
  }
  .sec_about .box_company .sub_title {
    margin-top: 0;
    font-size: 13px;
  }
  .sec_about .box_company .company_desc {
    font-size: 23px;
    line-height: 32px;
  }
  .sec_about .box_company .list_company {
    margin-top: 50px;
  }
  .sec_about .box_company .list_company .item_company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 14px;
  }
  .sec_about .box_company .list_company .item_company + .item_company {
    margin-top: 50px;
  }
  .sec_about .box_company .list_company .item_company .box_img {
    width: 75px;
    height: 75px;
  }
  .sec_about .box_company .list_company .item_company .box_img img {
    width: 100%;
  }
  .sec_about .box_company .list_company .item_title {
    font-size: 13px;
  }
  .sec_about .box_company .list_company .item_desc {
    font-size: 8px;
    line-height: 13px;
    margin-top: 10px;
  }
  .sec_about .box_company .box_right {
    max-width: 1210px;
    width: 100%;
  }
  .sec_history {
    margin-top: -70px;
    padding: 0 20px 78px;
  }
  .sec_history .box_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 25px;
  }
  .sec_history .box_title .title {
    font-size: 40px;
    line-height: 60px;
  }
  .sec_history .box_title .desc {
    margin-top: 14px;
    font-size: 9px;
    line-height: 13px;
  }
  .sec_history .box_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 50px;
  }
  .sec_history .box_content + .box_content {
    margin-top: 75px;
  }
  .sec_history .box_content .sub_title {
    font-size: 13px;
  }
  .sec_history .box_content .sub_desc {
    margin-top: 4px;
    font-size: 8px;
  }
  .sec_history .box_company_history,
  .sec_history .box_launch_history {
    max-width: 1210px;
    width: 100%;
  }
  .sec_history .box_company_history {
    margin: 50px -20px 0 0;
    width: auto;
  }
  .sec_history .box_company_history .box_img {
    width: 150px;
    height: 150px;
  }
  .sec_history .box_company_history .box_img img {
    width: 100%;
  }
  .sec_history .box_company_history .box_history_text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 0 15px;
    gap: 0;
  }
  .sec_history .box_company_history .box_history_text .year {
    font-size: 20px;
    -webkit-text-stroke: 0;
  }
  .sec_history .box_company_history .box_history_text .list_history {
    margin-top: 15px;
  }
  .sec_history .box_company_history .box_history_text .item_history {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
  }
  .sec_history .box_company_history .box_history_text .item_history + .item_history {
    margin-top: 10px;
  }
  .sec_history .box_company_history .box_history_text .item_history .month {
    width: 13px;
    font-size: 10px;
  }
  .sec_history .box_company_history .box_history_text .item_history .history_desc {
    font-size: 9px;
  }
  .sec_history .box_company_history .swiper-pagination {
    margin-top: 32px;
    height: 1px;
  }
  .sec_history .box_launch_history {
    margin-top: 25px;
  }
  .sec_history .box_launch_history .list_launch_history {
    gap: 10px 7px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec_history .box_launch_history .list_launch_history.pc {
    display: none;
  }
  .sec_history .box_launch_history .list_launch_history.mo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sec_history .box_launch_history .item_launch_history {
    width: calc(33.3333333333% - 7px);
    height: 150px;
    border-radius: 10px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .sec_history .box_launch_history .item_launch_history:hover {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .sec_history .box_launch_history .item_launch_history:hover .box_logo {
    opacity: 1;
    border-color: #f0f0f0;
  }
  .sec_vision {
    padding: 75px 20px 100px;
  }
  .sec_vision:before {
    height: 300px;
  }
  .sec_vision .box_title {
    -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;
  }
  .sec_vision .box_title .title {
    font-size: 40px;
  }
  .sec_vision .box_title .desc {
    margin-top: 14px;
    font-size: 8px;
  }
  .sec_vision .box_vision {
    margin: 32px -20px 0;
    border-radius: 10px;
    padding: 7px 20px 0;
  }
  .sec_vision .list_vision {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
  .sec_vision .item_vision {
    width: 100%;
    padding: 0 0 15px 0;
  }
  .sec_vision .item_vision .vision_title {
    font-size: 10px;
  }
  .sec_vision .item_vision .vision_desc {
    margin-top: 5px;
    font-size: 8px;
  }
  .sec_vision .item_vision .box_img {
    margin-top: 10px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  }
  .sec_vision .btn_more {
    width: 80px;
    height: 25px;
    border-radius: 17px;
    padding: 0 10px;
    font-size: 9px;
    margin: 50px auto 0;
    background-position: center right 10px;
    background-size: 5px;
  }
  .sec_vision .btn_more:hover {
    background-position: center right 10px;
    background-size: 5px;
  }
  .sec_brands {
    padding: 100px 20px 75px;
  }
  .sec_brands .box_title .title {
    font-size: 40px;
    line-height: 60px;
  }
  .sec_brands .box_title .desc {
    margin-top: 13px;
    font-size: 23px;
    line-height: 30px;
  }
  .sec_brands .box_title .arrow {
    width: 28px;
    height: 60px;
    margin: 60px auto 0;
  }
  .sec_brands .list_main_brand {
    padding: 75px 0 66px;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 0;
  }
  .sec_brands .list_main_brand .item_main_brand {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 175px;
    border-radius: 0 10px 10px 10px;
  }
  .sec_brands .list_main_brand .item_main_brand:before {
    height: 88px;
  }
  .sec_brands .list_main_brand .box_text {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px 15px;
    gap: 85px;
  }
  .sec_brands .list_main_brand .box_text .desc {
    font-weight: 700;
    font-size: 9px;
  }
  .sec_brands .list_main_brand .box_text .name {
    font-size: 15px;
    font-weight: 700;
  }
  .sec_brands .list_brand {
    margin-top: 0;
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec_brands .list_brand .item_brand {
    width: 100%;
  }
  .sec_brands .list_brand .box_thumb {
    position: relative;
    width: 100%;
    border-radius: 0 10px 10px 0;
  }
  .sec_brands .list_brand .box_thumb .brand_swiper {
    height: 275px;
  }
  .sec_brands .list_brand .box_logo {
    width: 75px;
    height: 75px;
    border-radius: 0 40px 0 0;
  }
  .sec_brands .list_brand .box_logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec_brands .list_brand .brand_title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .sec_brands .list_brand .swiper-pagination {
    padding-right: 15px;
    bottom: 15px;
    gap: 3px;
  }
  .sec_brands .list_brand .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .sec_brands .list_brand .box_brand_info {
    padding: 18px 0 8px;
  }
  .sec_brands .list_brand .box_brand_info .name {
    font-size: 15px;
  }
  .sec_brands .list_brand .box_brand_info .sns {
    font-size: 8px;
  }
  .sec_brands .list_brand .box_brand_info .link:before {
    width: 15px;
    height: 15px;
  }
  .sec_branding {
    padding: 100px 0;
  }
  .sec_branding .box_main_title {
    border-bottom: 1px solid #ccc;
    padding: 0 20px 116px;
  }
  .sec_branding .list_branding {
    padding: 100px 20px 0;
    text-align: center;
  }
  .sec_branding .list_branding .item_branding {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec_branding .list_branding .item_branding:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec_branding .list_branding .item_branding + .item_branding {
    margin-top: 77px;
  }
  .sec_branding .list_branding .box_icon {
    width: 100px;
    height: 100px;
  }
  .sec_branding .list_branding .item_title {
    max-width: 100%;
    margin: 30px 0 0 !important;
    font-size: 25px;
  }
  .sec_branding .list_branding .item_desc {
    margin: 9px 0 0 !important;
    font-size: 10px;
    line-height: 16px;
  }
  .sec_branding .list_category {
    padding-top: 100px;
    grid-template-columns: repeat(2, 1fr);
  }
  .sec_branding .list_category .item_category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 50px;
    gap: 12px;
  }
  .sec_branding .list_category .item_category:nth-child(even) {
    border-left: 1px solid #e7e7e7;
  }
  .sec_branding .list_category .category_name {
    font-size: 10px;
  }
  .sec_branding .list_category .en {
    font-size: 10px;
  }
  .sec_branding .list_category .link {
    font-size: 10px;
  }
  .sec_contact {
    background: url(../image/about/bg_company.png) right bottom 100px/130px 162.5px no-repeat;
    padding: 100px 0 135px;
  }
  .sec_contact .box_main_title .title {
    margin-bottom: 15px;
  }
  .sec_contact .box_main_title .title:after {
    height: 35px;
    margin-top: 50px;
  }
  .sec_contact .box_map {
    height: 250px;
    border-radius: 10px;
    padding: 0 20px;
  }
  .sec_contact .list_map .item_map {
    gap: 10px;
    font-size: 15px;
  }
  .sec_contact .list_map .item_map .icon {
    width: 10px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .sec_contact .list_map .item_map .icon img {
    width: 100%;
  }
  .sec_contact .list_map .item_map + .item_map {
    margin-top: 9px;
  }
  .sec_cooperation {
    padding: 75px 20px;
  }
  .sec_cooperation .title {
    font-size: 15px;
  }
  .sec_cooperation .desc {
    margin-top: 9px;
    font-size: 9px;
    line-height: 14px;
  }
  .sec_cooperation .list_cooperation {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .sec_cooperation .list_cooperation .item_cooperation {
    padding-top: 7px;
  }
  .sec_cooperation .list_cooperation .box_info {
    font-size: 7px;
  }
  .sec_cooperation .list_cooperation .box_info .info {
    font-size: 9px;
  }
  .sec_cooperation .list_cooperation .box_num {
    margin-top: 10px;
    font-size: 40px;
  }
  .sec_inquiry {
    padding: 100px 20px;
  }
  .sec_inquiry .title {
    font-size: 40px;
  }
  .sec_inquiry .box_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-top: 29px;
  }
  .sec_inquiry .box_row + .box_row {
    margin-top: 24px;
  }
  .sec_inquiry .box_input {
    gap: 5px;
  }
  .sec_inquiry .label {
    font-size: 9px;
  }
  .sec_inquiry .label.is_required:after {
    margin-left: 3px;
    width: 3px;
    height: 3px;
  }
  .sec_inquiry .input {
    height: 41px;
    padding: 0 10px;
    border-radius: 7px;
    font-size: 8px;
  }
  .sec_inquiry .wrap_dropdown {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec_inquiry .wrap_dropdown .box_dropdown {
    margin-top: 5px;
  }
  .sec_inquiry .wrap_dropdown .btn_dropdown {
    height: 41px;
    padding: 0 10px;
    font-size: 8px;
    border-radius: 7px;
    background-position: center right 10px;
  }
  .sec_inquiry .wrap_dropdown .btn_dropdown.is_active {
    border-radius: 7px 7px 0 0;
  }
  .sec_inquiry .wrap_dropdown .list_dropdown {
    -webkit-transform: translateY(calc(100% - 1px));
        -ms-transform: translateY(calc(100% - 1px));
            transform: translateY(calc(100% - 1px));
    border-radius: 0 0 7px 7px;
  }
  .sec_inquiry .wrap_dropdown .list_dropdown .item_dropdown {
    height: 35px;
    padding: 0 10px;
    font-size: 9px;
  }
  .sec_inquiry .box_textarea {
    margin-top: 24px;
  }
  .sec_inquiry .box_textarea .textarea {
    margin-top: 8px;
    padding: 0 10px;
    border-radius: 6px;
    height: 125px;
    font-size: 8px;
  }
  .sec_inquiry .box_privacy {
    margin-top: 24px;
  }
  .sec_inquiry .box_privacy .privacy_title {
    font-size: 8px;
  }
  .sec_inquiry .box_privacy .privacy_content {
    margin-top: 7px;
    padding: 15px 10px;
    border-radius: 10px;
    font-size: 7px;
    line-height: 13px;
  }
  .sec_inquiry .box_checkbox .checkbox_label {
    margin-top: 7px;
    font-size: 7px;
  }
  .sec_inquiry .box_checkbox .checkbox_label:before {
    display: block;
    width: 7px;
    height: 7px;
    background: url("../image/contact/icon_checkbox.svg") center/cover no-repeat;
    content: "";
    margin-right: 5px;
  }
  .sec_inquiry .btn_inquiry {
    width: 125px;
    height: 40px;
    border-radius: 25px;
    font-size: 10px;
    margin: 50px auto 0;
  }
  .layer_vision .layer_content {
    padding: 25px;
    border-radius: 5px;
  }
  .layer_vision .layer_content .btn_close {
    width: 15px;
    height: 15px;
    right: 10px;
    top: 10px;
  }
  .layer_vision .layer_content .btn_close img {
    width: 100%;
    height: 100%;
  }
  .layer_vision .title {
    margin-top: 13px;
    font-size: 15px;
  }
  .layer_vision .desc {
    margin-top: 4px;
    font-size: 8px;
  }
  .layer_brand .layer_content {
    padding: 25px;
    border-radius: 5px;
    max-width: 90%;
  }
  .layer_brand .layer_content .btn_close {
    width: 15px;
    height: 15px;
    right: 10px;
    top: 10px;
  }
  .layer_brand .layer_content .btn_close img {
    width: 100%;
    height: 100%;
  }
  .layer_brand .swiper-pagination {
    padding-right: 15px;
    bottom: 15px;
    gap: 4px;
  }
  .layer_brand .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .layer_brand .box_title {
    margin-top: 13px;
    padding-bottom: 10px;
  }
  .layer_brand .box_title .name {
    font-size: 15px;
  }
  .layer_brand .desc {
    margin-top: 14px;
    font-size: 8px;
  }
  .layer_brand .sub_desc {
    margin-top: 10px;
    font-size: 8px;
    line-height: 13px;
  }

  .sec_brands .list_brand .box_img .ico {
      max-width: 3.5rem;
  }
}
