@charset "UTF-8";
:root {
  --fPrtdd: "Pretendard", sans-serif;
  --cBlack: #303030;
  --cBlue: #053288;
  --cRed: #B90010;
  --cSky: #C2DAFF;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
}

body,
textarea,
select,
input,
button,
pre {
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--fPrtdd);
  font-weight: normal;
  color: var(--cBlack);
  word-break: keep-all;
  letter-spacing: -0.01em;
}

img {
  border: none;
  vertical-align: top;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
input::-ms-clear {
  display: none;
}

/* input type number 에서 화살표 제거 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* IE 에서 Select box 화살표 제거 */
select::-ms-expand {
  display: none;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

::selection {
  background-color: rgba(194, 218, 255, 0.3);
}

::-moz-selection {
  background-color: rgba(194, 218, 255, 0.3);
}

::-webkit-selection {
  background-color: rgba(194, 218, 255, 0.3);
}

/* 스크롤바 설정*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 스크롤바 막대 설정*/
::-webkit-scrollbar-thumb {
  height: 15%;
  background-color: var(--cBlue);
  transition: all 0.3s;
}

/* 스크롤바 뒷 배경 설정*/
::-webkit-scrollbar-track {
  background-color: rgba(234, 234, 234, 0.3);
}

/* 공통클래스  */
.forSR {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  position: absolute;
  top: 0;
  left: 0;
}

[class*=btn-] {
  display: block;
  transition: all 0.3s;
  cursor: pointer;
}
[class*=btn-] * {
  transition: all 0.3s;
}

.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .map_border {
  display: none;
}

.root_daum_roughmap_landing {
  width: 100% !important;
  height: 100%;
}

.root_daum_roughmap .wrap_map {
  height: 100% !important;
}

figure.map iframe {
  width: 100% !important;
  height: 100% !important;
}

.forScroll {
  overflow-x: auto;
  width: 100%;
  cursor: grab;
}
.forScroll::-webkit-scrollbar-thumb {
  background: rgba(234, 234, 234, 0.8);
  border-radius: 8px;
}

.iconRot {
  transform: rotate(-45deg);
}

/* 공통 */
.forPC {
  display: block;
}

.forMOB {
  display: none;
}

.inner {
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
}

.header .inner,
.footer .inner {
  max-width: unset;
  padding: 0 100px;
}

#wrap {
  width: 100%;
  min-width: 320px;
  position: relative;
}

.logo a {
  width: 292px;
  height: 42px;
  background: url(/asset/images/logo.svg) no-repeat left top/contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  transition: all 0.3s ease;
  z-index: 2000;
}
.header .inner {
  height: 100%;
}
.header .logo {
  width: fit-content;
  padding-top: 40px;
  margin-right: 58px;
  position: relative;
  z-index: 2000;
}
.header .utility {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-left: auto;
  position: absolute;
  right: 100px;
  top: 50px;
  z-index: 1200;
}
.header .utility .changeLang {
  position: relative;
  cursor: pointer;
}
.header .utility .changeLang.on i {
  margin-left: 13px;
}
.header .utility .changeLang ul {
  display: none;
  top: 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #f5f5f5;
  width: fit-content;
  padding: 12px;
}
.header .utility .changeLang ul li {
  text-align: center;
}
.header .utility .changeLang ul li:not(:last-child) {
  margin-bottom: 6px;
}
.header .utility .changeLang ul li:hover {
  text-decoration: underline;
  color: var(--cBlue);
}
.header .utility .btn-vina {
  margin-left: 40px;
  margin-right: 46px;
  color: #8e8e8e;
}
.header .utility .btn-vina i {
  margin-left: 8px;
}
.header .utility .btn-vina:hover i {
  color: var(--cBlack);
}
.header .utility .btn-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.header .utility .btn-hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--cBlack);
  transition: 0.3s ease;
}
.header .utility .btn-hamburger:hover span:nth-child(2) {
  background: var(--cBlue);
  width: 20px;
}
.header .utility .btn-hamburger:hover span:nth-child(3) {
  background: #8e8e8e;
}
.header .utility .btn-hamburger.open span {
  background-color: #e9e9e9;
}
.header .utility .btn-hamburger.open span:nth-child(1) {
  background: transparent;
}
.header .utility .btn-hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header .utility .btn-hamburger.open span:nth-child(3) {
  transform: rotate(135deg) translate(-6px, 6px);
}
.header .forPC .gnb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
}
.header .forPC .gnb__wrap {
  display: flex;
  gap: 90px;
  transition: all 0.3s;
}
.header .forPC .gnb__list {
  position: relative;
}
.header .forPC .gnb__list:hover .gnb__dep1 {
  color: var(--cBlue);
}
.header .forPC .gnb__dep1 {
  padding-bottom: 50px;
  font-size: 18px;
  font-weight: 600;
}
.header .forPC .gnb__dep2 {
  display: none;
  padding: 46px 0 44px;
  position: absolute;
  top: 68px;
  left: 0;
  white-space: nowrap;
}
.header .forPC .gnb__dep2 li:not(:last-child) {
  margin-bottom: 25px;
}
.header .forPC .gnb__dep2 li:hover {
  font-weight: 600;
  color: var(--cBlue);
}
.header__family {
  font-size: 14px;
  text-align: center;
  display: flex;
  gap: 4px;
  align-items: center;
}
.header__family i {
  font-size: 16px;
}
.header__family:hover i {
  color: var(--cBlue);
}
.header.index {
  background: transparent;
  border-bottom: 0;
}
.header.index .logo {
  filter: brightness(0) invert(1);
}
.header.index .forPC .gnb .gnb__dep1 {
  color: #fff;
}
.header.index .utility .changeLang p {
  color: #fff;
}
.header.index .utility .btn-hamburger span {
  background: #fff;
}
.header.index .utility .btn-vina:hover i {
  color: var(--cSky);
}
.header.index .header__family {
  color: #fff;
}
.header.hover {
  height: 320px;
  background: #fff;
}
.header.hover::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #f5f5f5;
  top: 120px;
  left: 0;
}
.header.hover .gnb__wrap {
  gap: 130px;
}

/* 🚀 스크롤 시 헤더 숨김 */
.header.hidden {
  top: -120px;
}

/* 🚀 사이트맵 스타일 */
.sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(/asset/images/sitemap.jpg) no-repeat center/cover;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 1100;
  padding: 40px;
}
.sitemap .gnb__wrap {
  display: flex;
  justify-content: center;
  gap: 202px;
  text-align: center;
  color: #fff;
}
.sitemap .gnb__list:last-of-type .gnb__dep1::after {
  display: none;
}
.sitemap .gnb__dep1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 60px;
  position: relative;
}
.sitemap .gnb__dep1::after {
  display: block;
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: #fff;
  right: -100px;
  top: 10px;
}
.sitemap .gnb__dep2 {
  font-size: 20px;
}
.sitemap .gnb__dep2 li {
  position: relative;
}
.sitemap .gnb__dep2 li:not(:last-child) {
  margin-bottom: 44px;
}
.sitemap .gnb__dep2 li:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
.sitemap .gnb__dep2 li:hover {
  text-decoration: underline;
}

/* 🚀 사이트맵 활성화 */
.sitemap.active {
  display: flex;
}

.footer {
  margin-top: 135px;
  position: relative;
  z-index: 1;
}
.footer__contents {
  padding: 58px 0;
  background: #f9f9f9;
}
.footer__contents .inner {
  display: flex;
}
.footer__contents .logo {
  margin: auto 126px auto 0;
}
.footer__contents .logo a {
  width: 389px;
  height: 56px;
}
.footer__div-tit {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.54px;
  color: var(--cBlue);
  margin-bottom: 24px;
}
.footer__contact {
  font-size: 18px;
  margin-right: 75px;
}
.footer__contact-item span {
  font-weight: 500;
}
.footer__contact-item--oneLine {
  margin-bottom: 21px;
}
.footer__contact-item--oneLine strong {
  display: block;
}
.footer__contact-item--twoLines:not(:last-child) {
  margin-bottom: 12px;
}
.footer__sitemap {
  margin-right: 20px;
}
.footer__sitemap-list {
  font-size: 18px;
}
.footer__sitemap-list:not(:last-child) {
  margin-bottom: 12px;
}
.footer__sitemap-list:hover {
  text-decoration: underline;
}
.footer__end {
  margin-left: auto;
  margin-top: auto;
}
.footer__sns {
  display: flex;
  gap: 16px;
}
.footer__sns-item {
  text-align: center;
  align-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #707070;
  border-radius: 11px;
  font-size: 18px;
  padding-top: 2px;
}
.footer__sns-item:hover {
  background: var(--cBlue);
  color: #fff;
}
.footer__copy {
  background: var(--cBlack);
  color: #fff;
  font-weight: 100;
  text-align: center;
  padding: 16px 0;
}
.footer__btn-top {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  align-content: center;
  text-align: center;
  font-size: 30px;
  color: #fff;
  background: var(--cBlue);
  position: absolute;
  right: 100px;
  top: -35px;
}

#indexPage .mainVisual {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
}
#indexPage .mainVisual__contents {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  right: 0;
}
#indexPage .mainVisual__text {
  text-align: right;
  color: var(--cBlue);
  margin-bottom: 17px;
}
#indexPage .mainVisual__subText {
  font-weight: bold;
  font-size: 30px;
}
#indexPage .mainVisual__mainText {
  font-size: 70px;
}
#indexPage .mainVisual__pagination {
  position: unset;
  text-align: right;
}
#indexPage .mainVisual__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 11px;
  background: #f5f5f5;
  opacity: 1;
}
#indexPage .mainVisual__pagination .swiper-pagination-bullet-active {
  background: var(--cBlue);
}
#indexPage .mainVisual__slider {
  width: 100%;
  height: 100%;
}
#indexPage .mainVisual__slider img {
  object-fit: cover;
}
#indexPage .mainVisual__wrapper {
  width: 100%;
}
#indexPage .company {
  background: #f5f5f5;
  padding: 124px 0 115px;
  overflow: hidden;
}
#indexPage .company__visual {
  height: 561px;
  position: relative;
}
#indexPage .company__visual img {
  position: absolute;
  height: auto;
}
#indexPage .company__visual--kp {
  width: 952px;
  top: 136px;
  left: 171px;
}
#indexPage .company__visual--vietnam {
  width: 583px;
  top: 273px;
  left: 670px;
  z-index: 2;
}
#indexPage .company__visual--plane {
  width: 712px;
  top: 0;
  left: 1016px;
}
#indexPage .company__visual--cloud {
  width: 100%;
  top: 82px;
  left: 0;
  animation: cloud 1s ease alternate infinite;
}
@keyframes cloud {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}
#indexPage .company__btn-more {
  position: relative;
  z-index: 1;
  background: var(--cBlue);
  color: #fff;
  border: 1px solid var(--cBlue);
  border-radius: 23px;
  padding: 14px 26px;
  margin: -74px auto 0;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
#indexPage .company__btn-more i {
  margin-left: 10px;
  font-size: 20px;
  transition: all 0.3s;
}
#indexPage .company__btn-more:hover {
  background: #fff;
  color: var(--cBlue);
}
#indexPage .company__btn-more:hover i {
  transform: rotate(360deg);
}
#indexPage .newsroom {
  padding: 130px 0;
}
#indexPage .newsroom__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 69px;
}
#indexPage .newsroom .swiper-button-next,
#indexPage .newsroom .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--cBlue);
  color: var(--cBlue);
}
#indexPage .newsroom .swiper-button-next::after,
#indexPage .newsroom .swiper-button-prev::after {
  font-size: 30px;
  font-family: "xeicon";
}
#indexPage .newsroom .swiper-button-next:hover,
#indexPage .newsroom .swiper-button-prev:hover {
  background: var(--cBlue);
  color: #fff;
}
#indexPage .newsroom .swiper-button-prev {
  left: 140px;
}
#indexPage .newsroom .swiper-button-prev::after {
  content: "\e93c";
}
#indexPage .newsroom .swiper-button-next {
  right: 140px;
}
#indexPage .newsroom .swiper-button-next::after {
  content: "\e93f";
}
#indexPage .newsroom__slide {
  width: 450px;
}
#indexPage .newsroom__slide-img {
  height: 300px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  margin-bottom: 20px;
  text-align: center;
}
#indexPage .newsroom__slide-img img {
  object-fit: cover;
}
#indexPage .newsroom__slide-img .noImg {
  width: 60%;
  object-fit: scale-down;
}
#indexPage .newsroom__slide-cont {
  position: relative;
}
#indexPage .newsroom__slide-tit {
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-bottom: 20px;
  border-bottom: 2px solid #d4d4d4;
  margin-bottom: 10px;
}
#indexPage .newsroom__slide-date {
  font-weight: 600;
  color: #b4b4b4;
}
#indexPage .newsroom__slide-btn-more {
  font-weight: 600;
  color: #b4b4b4;
  position: absolute;
  right: 0;
  bottom: 0;
}
#indexPage .newsroom__slide:hover .newsroom__slide-tit {
  border-bottom-color: var(--cBlue);
}

.subPage {
  padding-top: 120px;
}
.subPage .subVisual {
  width: 100%;
}
.subPage .subVisual__title {
  text-align: center;
  align-content: center;
  height: 240px;
  font-size: 52px;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.subPage .subVisual__title.bg-company {
  background-image: url(/asset/images/subvisual/bg-company.jpg);
}
.subPage .subVisual__title.bg-business {
  background-image: url(/asset/images/subvisual/bg-business.jpg);
}
.subPage .subVisual__title.bg-future {
  background-image: url(/asset/images/subvisual/bg-future.jpg);
}
.subPage .subVisual__title.bg-media {
  background-image: url(/asset/images/subvisual/bg-media.jpg);
}
.subPage .subVisual__breadcrumb {
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  z-index: 2;
}
.subPage .subVisual__breadcrumb .inner {
  display: flex;
}
.subPage .subVisual__breadcrumb .inner > div {
  border-right: 1px solid #f5f5f5;
}
.subPage .subVisual__breadcrumb-home {
  border-left: 1px solid #f5f5f5;
}
.subPage .subVisual__breadcrumb-home a {
  width: 60px;
  height: 60px;
  text-align: center;
  align-content: center;
}
.subPage .subVisual__breadcrumb-home a i {
  font-size: 20px;
}
.subPage .subVisual__breadcrumb-group {
  position: relative;
}
.subPage .subVisual__breadcrumb-title, .subPage .subVisual__breadcrumb-list li a {
  padding: 20px 30px;
  font-size: 18px;
  width: 300px;
  height: 60px;
  align-content: center;
  background: #fff;
  transition: all 0.3s;
}
.subPage .subVisual__breadcrumb-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subPage .subVisual__breadcrumb-title i {
  font-size: 20px;
  transition: all 0.3s;
}
.subPage .subVisual__breadcrumb-title.active {
  border-bottom: 1px solid #f5f5f5;
}
.subPage .subVisual__breadcrumb-title.active i {
  transform: rotate(180deg);
}
.subPage .subVisual__breadcrumb-list {
  position: absolute;
  top: 60px;
  left: 0;
  display: none;
}
.subPage .subVisual__breadcrumb-list li {
  border: 1px solid #f5f5f5;
  border-top: 0;
}
.subPage .subVisual__breadcrumb-list li:hover a {
  background: var(--cBlue);
  color: #fff;
}
.subPage main {
  padding-top: 80px;
}
.subPage main .inner {
  padding: 0 200px;
}
.subPage main .pageTit {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 50px;
  text-align: center;
}
.subPage .tabWrapper {
  height: 60px;
  margin-bottom: 100px;
}
.subPage .tabMenu {
  display: flex;
  justify-content: center;
}
.subPage .tabMenu li {
  width: 300px;
  height: 60px;
  background: #f9f9f9;
  font-size: 18px;
  font-weight: 500;
  color: var(--cBlue);
  text-align: center;
  align-content: center;
  cursor: pointer;
}
.subPage .tabMenu li:not(:last-child) {
  border-right: 1px solid #fff;
}
.subPage .tabMenu li:hover, .subPage .tabMenu li.on {
  background: var(--cBlue);
  color: #fff;
}
.subPage .tabMenu--scroll.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(50px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.subPage .panelWrap--display .panel {
  display: none;
}
.subPage .panelWrap--display .panel.on {
  display: block;
}
.subPage .img-boxshadow img {
  width: 40.6vw;
  height: 18.2vw;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 22px 20px rgba(5, 51, 136, 0.1);
  object-fit: cover;
}
.subPage .text-paragraph:not(:last-child) {
  margin-bottom: 59px;
}
.subPage .text-paragraph__tit {
  font-size: 24px;
  color: var(--cBlue);
  margin-bottom: 12px;
}
.subPage .text-paragraph__desc {
  font-size: 18px;
}
.subPage .text-paragraph__desc p:not(:last-child) {
  margin-bottom: 20px;
}

#history .history__banner {
  background: url(/asset/images/company/history_banner.jpg) no-repeat center/cover;
  width: 100%;
  padding: 96px;
  text-align: center;
  color: #fff;
  margin-bottom: 70px;
}
#history .history__banner-title {
  font-size: 50px;
  margin-bottom: 15px;
}
#history .history__banner-desc {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 22px;
}
#history .history__banner-company {
  font-size: 18px;
  font-weight: 700;
}
#history .history .panel {
  display: flex;
}
#history .history .panel:not(:last-child) {
  margin-bottom: 70px;
}
#history .history__contents-year {
  width: 500px;
  border-top: 2px solid var(--cBlue);
  padding-top: 8px;
  color: var(--cBlue);
  font-size: 40px;
  font-weight: 800;
  margin-right: 60px;
  flex-shrink: 0;
}
#history .history__contents-list {
  border-top: 2px solid #f5f5f5;
  flex: auto;
}
#history .history__entry {
  border-bottom: 2px solid #f5f5f5;
  padding: 30px;
  display: flex;
}
#history .history__entry-month {
  width: 88px;
  font-size: 18px;
  font-weight: 800;
  padding-right: 40px;
}
#history .history__entry-details p {
  font-size: 18px;
}
#history .history__entry-details p:not(:last-child) {
  margin-bottom: 30px;
}

#competence .panel--certification-cont {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: end;
}
#competence .panel--certification-img {
  width: 246px;
  height: auto;
  border: 14px solid #f5f5f5;
}
#competence .panel--certification-name {
  font-size: 40px;
  font-weight: 800;
  color: var(--cBlue);
  padding-bottom: 10px;
  padding-left: 94px;
  border-bottom: 2px solid var(--cBlue);
}
#competence .panel--facilities {
  max-width: 1200px;
  margin: 0 auto;
}
#competence .panel--facilities-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
}
#competence .panel--facilities-slider .swiper-pagination {
  margin-top: 48px;
  position: unset;
  text-align: center;
}
#competence .panel--facilities-slider .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 10px;
  background: #f5f5f5;
  opacity: 1;
}
#competence .panel--facilities-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--cBlue);
}
#competence .panel--training-mainSlider {
  max-width: 644px;
  height: auto;
  margin: 0 auto 100px;
  position: relative;
}
#competence .panel--training-mainSlider .swiper-wrapper {
  align-items: center;
}
#competence .panel--training-mainSlider .swiper-wrapper .swiper-slide {
  height: 100%;
}
#competence .panel--training-mainSlider .swiper-wrapper .swiper-slide img {
  object-fit: cover;
}
#competence .panel--training-mainSlider .swiper-button-next,
#competence .panel--training-mainSlider .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--cBlue);
  color: var(--cBlue);
}
#competence .panel--training-mainSlider .swiper-button-next::after,
#competence .panel--training-mainSlider .swiper-button-prev::after {
  font-size: 30px;
  font-family: "xeicon";
}
#competence .panel--training-mainSlider .swiper-button-next:hover,
#competence .panel--training-mainSlider .swiper-button-prev:hover {
  background: var(--cBlue);
  color: #fff;
}
#competence .panel--training-mainSlider .swiper-button-prev {
  left: -130px;
}
#competence .panel--training-mainSlider .swiper-button-prev::after {
  content: "\e93c";
}
#competence .panel--training-mainSlider .swiper-button-next {
  right: -130px;
}
#competence .panel--training-mainSlider .swiper-button-next::after {
  content: "\e93f";
}
#competence .panel--training-subSlider {
  display: flex;
  gap: 100px;
  justify-content: center;
}
#competence .panel--training-subSlider > div {
  width: 600px;
  position: relative;
}
#competence .panel--training-subSlider .swiper-slide figure {
  height: 340px;
}
#competence .panel--training-subSlider .swiper-slide figure img {
  object-fit: cover;
}
#competence .panel--training-subSlider .swiper-slide figcaption {
  background: #f5f5f5;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 700;
}
#competence .panel--training-subSlider-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
#competence .panel--training-subSlider-btn .swiper-button-next,
#competence .panel--training-subSlider-btn .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: rgba(5, 51, 136, 0.3);
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  color: var(--cBlue);
}
#competence .panel--training-subSlider-btn .swiper-button-next::after,
#competence .panel--training-subSlider-btn .swiper-button-prev::after {
  font-size: 30px;
  font-family: "xeicon";
}
#competence .panel--training-subSlider-btn .swiper-button-next:hover,
#competence .panel--training-subSlider-btn .swiper-button-prev:hover {
  background: var(--cBlue);
  color: #fff;
}
#competence .panel--training-subSlider-btn .swiper-button-prev::after {
  content: "\e93c";
}
#competence .panel--training-subSlider-btn .swiper-button-next::after {
  content: "\e93f";
}
#location main {
  padding-bottom: 36px;
}
#location .pageTit {
  margin-bottom: 118px;
}
#location .mapWrap {
  background: url(/asset/images/company/location-map.svg) no-repeat left top/contain, #f5f5f5;
  border-radius: 50px;
  position: relative;
  width: 1512px;
  height: 600px;
  margin-bottom: 32px;
}
#location .mapWrap__pin {
  text-align: center;
}
#location .mapWrap__pin-label {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 3px;
}
#location .mapWrap__pin-city {
  font-size: 18px;
}
#location .mapWrap__cont {
  position: absolute;
}
#location .mapWrap__cont-img {
  width: 500px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
}
#location .mapWrap__cont-desc {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 27px;
  margin: -25px 0 18px -30px;
  padding: 14px 56px;
  position: relative;
  z-index: 1;
  width: fit-content;
}
#location .mapWrap__cont-desc::before, #location .mapWrap__cont-desc::after {
  display: block;
  content: "";
  position: absolute;
  border-top: 2px dotted var(--cBlue);
  height: 1px;
}
#location .mapWrap__cont-desc::before {
  width: 224px;
  left: -238px;
  top: -24px;
}
#location .mapWrap__cont-desc::after {
  width: 45px;
  transform: rotate(50deg);
  left: -22px;
  top: -7px;
}
#location .mapWrap__cont-adrs {
  font-size: 18px;
  font-weight: 500;
}
#location .mapWrap__location {
  position: absolute;
}
#location .mapWrap__location--korea {
  top: 129px;
  left: 413px;
}
#location .mapWrap__location--korea .mapWrap__pin-icon {
  font-size: 36px;
  margin-bottom: 3px;
  color: var(--cBlue);
}
#location .mapWrap__location--korea .mapWrap__cont {
  top: -197px;
  left: 385px;
}
#location .mapWrap__location--korea .mapWrap__cont-desc {
  background: var(--cBlue);
}
#location .mapWrap__location--vietnam {
  top: 399px;
  left: 266px;
}
#location .mapWrap__location--vietnam .mapWrap__pin-icon {
  font-size: 50px;
  margin-bottom: 1px;
  color: var(--cRed);
}
#location .mapWrap__location--vietnam .mapWrap__cont {
  top: -72px;
  left: 558px;
}
#location .mapWrap__location--vietnam .mapWrap__cont-desc {
  background: var(--cRed);
}
#location .mapWrap__location--vietnam .mapWrap__cont-desc::before, #location .mapWrap__location--vietnam .mapWrap__cont-desc::after {
  border-color: var(--cRed);
}
#location .mapWrap__location--vietnam .mapWrap__cont-desc::before {
  width: 312px;
  left: -436px;
  top: -140px;
}
#location .mapWrap__location--vietnam .mapWrap__cont-desc::after {
  width: 218px;
  left: -162px;
  top: -57px;
}

#aerostructure .banner {
  margin-bottom: 88px;
  background: #e5eaf3;
  width: 100%;
  height: 650px;
  position: relative;
}
#aerostructure .banner img {
  position: absolute;
  height: auto;
}
#aerostructure .banner__cloud {
  top: 125px;
  right: 1500px;
  width: 410px;
}
#aerostructure .banner__wing {
  width: 470px;
  top: 259px;
  right: 1054px;
}
#aerostructure .banner__plane {
  width: 903px;
  top: 28px;
  right: 0;
}
#aerostructure .banner__point {
  position: absolute;
  top: 442px;
  right: 797px;
}
#aerostructure .banner__point--pulse {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(closest-side at 50% 50%, rgba(5, 64, 153, 0.5) 0%, rgba(255, 255, 255, 0.5) 72%, rgba(5, 64, 153, 0.5) 100%);
  animation: pulse 2s infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#aerostructure .banner__point--pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  background: radial-gradient(closest-side at 50% 50%, rgba(5, 64, 153, 0.5) 0%, rgba(255, 255, 255, 0.5) 72%, rgba(5, 64, 153, 0.5) 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  /* 초기 상태 */
  animation: pulse 2s infinite;
  opacity: 1;
}
#aerostructure .banner__point--pulse::after {
  display: block;
  content: "";
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(226, 226, 226, 0.5);
  border-radius: 50%;
}
#aerostructure .banner__point::before {
  display: block;
  content: "";
  position: absolute;
  width: 237px;
  border-top: 2px dashed var(--cBlue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -247px;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    /* 확대 크기 */
    opacity: 0;
    /* 투명도 */
  }
}
#aerostructure .contents .inner {
  display: flex;
  gap: 60px;
}
#aerostructure .contents__text {
  padding-top: 21px;
}

#investment .panel--machining-image {
  display: flex;
  gap: 60px;
  margin-bottom: 70px;
}
#investment .panel--machining-image img {
  object-fit: cover;
}
#investment .panel__flexWrap {
  display: flex;
  gap: 60px;
}
#investment .panel__flexWrap .img-boxshadow img {
  height: 230px;
}

.VIEver #history .history__banner-title {
  font-size: 48px;
}
.VIEver #history .history__entry-month {
  width: 118px;
}
@media screen and (max-width: 768px) {
  .VIEver #history .history__banner-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .VIEver #history .history__banner-title {
    font-size: 20px;
  }
  .VIEver #history .history__entry-month {
    width: 96px;
  }
  .VIEver .sitemap .gnb__dep1 {
    font-size: 15px;
    width: 110px;
  }
}

.JPNver * {
  font-family: "Pretendard JP", "Pretendard", sans-serif;
}
@media screen and (max-width: 1700px) {
  .inner,
  .header .inner,
  .footer .inner {
    padding: 0 80px;
  }
  .header .utility {
    right: 80px;
  }
  .header.hover .gnb__wrap {
    gap: 100px;
  }
  .footer__btn-top {
    right: 80px;
  }
  .scaleWrapper {
    width: 100%;
  }
  .mapWrap {
    transform-origin: top left;
    transition: transform 0.3s ease;
  }
  .bannerWrap {
    transform-origin: top right;
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 1440px) {
  .inner,
  .header .inner,
  .footer .inner,
  .subPage main .inner {
    padding: 0 40px;
  }
  .header .inner {
    padding: 0 40px;
  }
  .header .utility {
    right: 40px;
    gap: 20px;
  }
  .header .forPC .gnb__wrap {
    gap: 50px;
  }
  .header .logo {
    padding-top: 44px;
  }
  .header .logo a {
    width: 212px;
    height: 31px;
  }
  .header.hover .gnb__wrap {
    gap: 72px;
  }
  .footer .inner {
    padding: 0 40px;
  }
  .footer__btn-top {
    right: 40px;
  }
  .footer__contents .inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer__end {
    margin: 0;
  }
  .footer__family {
    width: fit-content;
  }
  .subPage main .inner {
    padding: 0 40px;
  }
  .company__visual {
    transform-origin: top left;
    transition: transform 0.3s ease;
  }
  .company__visual--cloud {
    display: none;
  }
  .company__btn-more {
    margin: -194px auto 0;
  }
  #indexPage .company {
    padding: 74px 0 115px;
  }
  #indexPage .company__btn-more {
    margin: -194px auto 0;
  }
  .sitemap .gnb__wrap {
    gap: 92px;
  }
  .sitemap .gnb__dep1::after {
    right: -46px;
  }
  #competence .panel--training-subSlider {
    flex-direction: column;
    align-items: center;
  }
  #aerostructure .contents .inner {
    flex-direction: column;
  }
  #aerostructure .banner {
    height: 45.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .forPC {
    display: none;
  }
  .forMOB {
    display: block;
  }
  .header {
    height: 90px;
  }
  .header.hover {
    height: 290px;
  }
  .header.hover::after {
    top: 90px;
  }
  .header.hidden {
    top: -90px;
  }
  .header .logo {
    padding-top: 30px;
  }
  .header .utility {
    gap: 30px;
    top: 36px;
  }
  .subPage {
    padding-top: 90px;
  }
  .sitemap {
    background: var(--cBlue);
  }
  .sitemap .gnb {
    width: 100%;
  }
  .sitemap .gnb__wrap {
    flex-direction: column;
    text-align: left;
    gap: 30px;
  }
  .sitemap .gnb__list {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
  }
  .sitemap .gnb__dep1 {
    margin-bottom: 0;
    width: 200px;
  }
  .sitemap .gnb__dep1::after {
    display: none;
  }
  .sitemap .gnb__dep2 {
    align-content: center;
  }
  .sitemap .gnb__dep2 li:not(:last-child) {
    margin-bottom: 24px;
  }
  .sitemap .gnb__dep2 li:not(:last-child)::after {
    display: none;
  }
  #history .history .panel {
    flex-direction: column;
    gap: 20px;
  }
  #history .history__contents-year {
    width: 100%;
  }
  #history .history__banner-title {
    font-size: 40px;
  }
  #competence .panel--training-mainSlider .swiper-button-prev {
    left: 0;
  }
  #competence .panel--training-mainSlider .swiper-button-next {
    right: 0;
  }
  #location .mapWrap {
    transform: scale(1) !important;
    width: 100%;
    padding-top: 600px;
    background-image: url(/asset/images/company/location-map-mob.png);
    background-color: transparent;
    height: auto;
    background-size: 600px;
  }
  #location .mapWrap__cont {
    position: unset;
  }
  #location .mapWrap__location {
    position: unset;
  }
  #location .mapWrap__location--korea .mapWrap__cont {
    margin-bottom: 40px;
  }
  #location .mapWrap__pin {
    display: none;
  }
  #location .mapWrap__cont-desc {
    margin: -25px auto 18px;
  }
  #location .mapWrap__cont-desc::before, #location .mapWrap__cont-desc::after {
    display: none;
  }
  #location .mapWrap__cont-img {
    margin: 0 auto;
  }
  #location .mapWrap__cont-adrs {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .header__family {
    display: none;
  }
  #indexPage .newsroom .swiper-button-prev {
    left: 40px;
  }
  #indexPage .newsroom .swiper-button-next {
    right: 40px;
  }
  #indexPage .mainVisual__subText {
    font-size: 18px;
  }
  #indexPage .mainVisual__mainText {
    font-size: 58px;
  }
  #indexPage .company {
    padding: 74px 0 85px;
  }
  #indexPage .company__btn-more {
    margin: -354px auto 0;
  }
  .footer__btn-top {
    right: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer__contents .logo {
    margin: 0 auto;
  }
  .footer__div {
    text-align: center;
  }
  .footer__div-tit {
    margin-bottom: 7px;
  }
  .footer__contact {
    margin-right: 0;
  }
  .footer__sitemap-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  .footer__end {
    margin: 0 auto;
  }
  #history .history__banner-title {
    font-size: 24px;
  }
  #history .history__banner-desc {
    font-size: 16px;
  }
  #history .history__contents-list {
    border-top: 0;
  }
  .subPage .subVisual__breadcrumb-title, .subPage .subVisual__breadcrumb-list li a {
    width: 200px;
    font-size: 16px;
  }
  .subPage .tabWrapper {
    margin-bottom: 70px;
  }
  .subPage .img-boxshadow img {
    width: 100%;
    height: 37.2vw;
  }
  #competence .panel--training-subSlider > div {
    width: 100%;
  }
  #competence .panel--certification-cont {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  #competence .panel--certification-name {
    padding-left: 0;
    font-size: 20px;
  }
  #location .mapWrap {
    background-size: 100%;
    padding-top: 80.1vw;
  }
  #aerostructure .banner {
    height: 105.1vw;
    margin-bottom: 48px;
  }
  #aerostructure .banner img {
    width: 80%;
  }
  #aerostructure .banner__cloud {
    display: none;
  }
  #aerostructure .banner__point {
    top: 39.9vw;
    right: 67.9vw;
  }
  #aerostructure .banner__point--pulse {
    width: 26px;
    height: 26px;
  }
  #aerostructure .banner__point::before {
    display: none;
  }
  #aerostructure .banner__wing {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50.8vw;
  }
  #investment .panel--machining-image {
    flex-direction: column;
    margin-bottom: 40px;
  }
  #investment .panel__flexWrap {
    flex-direction: column;
    gap: 0;
  }
  .bannerWrap {
    transform: scale(1) !important;
  }
}
@media screen and (max-width: 500px) {
  .header {
    height: 80px;
  }
  .header.hover {
    height: 280px;
  }
  .header.hover::after {
    top: 80px;
  }
  .header.hidden {
    top: -80px;
  }
  .header .inner {
    padding: 0 16px;
  }
  .header .logo {
    padding-top: 27px;
  }
  .header .logo a {
    width: 190px;
    height: 40px;
  }
  .header .utility {
    top: 29px;
    gap: 20px;
    right: 16px;
  }
  .header .utility .btn-hamburger span {
    width: 26px;
  }
  .header .utility .changeLang {
    font-size: 14px;
  }
  .subPage {
    padding-top: 80px;
  }
  .subPage main {
    padding-top: 30px;
  }
  .subPage main .inner {
    padding: 0 16px;
  }
  .subPage main .pageTit {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .subPage .subVisual__title {
    height: 80px;
    font-size: 22px;
  }
  .subPage .subVisual__breadcrumb-title, .subPage .subVisual__breadcrumb-list li a {
    padding: 10px 14px;
    font-size: 12px;
    width: 150px;
    height: 36px;
  }
  .subPage .subVisual__breadcrumb-home a {
    width: 36px;
    height: 36px;
  }
  .subPage .subVisual__breadcrumb-home a i {
    font-size: 12px;
  }
  .subPage .subVisual__breadcrumb-list {
    top: 36px;
  }
  .subPage .tabWrapper {
    height: 38px;
    margin-bottom: 40px;
  }
  .subPage .tabMenu li {
    width: 100%;
    height: 38px;
    font-size: 13px;
  }
  .subPage .text-paragraph__tit {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .subPage .text-paragraph__desc {
    font-size: 13px;
  }
  .subPage .text-paragraph:not(:last-child) {
    margin-bottom: 40px;
  }
  .subPage .img-boxshadow img {
    box-shadow: 8px 8px rgba(5, 51, 136, 0.1);
  }
  .inner,
  .footer .inner,
  .subPage main .inner {
    padding: 0 16px;
  }
  #indexPage .newsroom {
    padding: 50px 0;
  }
  #indexPage .newsroom .swiper-button-prev {
    left: 16px;
  }
  #indexPage .newsroom .swiper-button-next {
    right: 16px;
  }
  #indexPage .newsroom .swiper-button-next,
  #indexPage .newsroom .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  #indexPage .newsroom__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  #indexPage .newsroom__slide {
    width: 260px;
  }
  #indexPage .newsroom__slide-img {
    height: 150px;
    margin-bottom: 12px;
  }
  #indexPage .newsroom__slide-tit {
    font-size: 13px;
    padding-bottom: 3px;
    border-bottom: none;
    margin-bottom: 0;
  }
  #indexPage .newsroom__slide-date {
    font-size: 10px;
  }
  #indexPage .newsroom__slide-btn-more {
    display: none;
  }
  #indexPage .company {
    padding: 0 0 28px;
  }
  #indexPage .company__visual {
    height: 514px;
    transform-origin: top center;
  }
  #indexPage .company__visual--kp, #indexPage .company__visual--vietnam {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #indexPage .company__visual--plane {
    width: 712px;
    top: 110px;
    left: 180px;
  }
  #indexPage .company__btn-more {
    padding: 12px 20px;
    font-size: 12px;
    margin: -404px auto 0;
  }
  #indexPage .company__btn-more i {
    font-size: 14px;
  }
  #indexPage .mainVisual__subText {
    font-size: 12px;
  }
  #indexPage .mainVisual__mainText {
    font-size: 40px;
  }
  #indexPage .mainVisual__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  .footer {
    margin-top: 75px;
  }
  .footer__btn-top {
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: -20px;
  }
  .footer__contents .inner {
    gap: 20px;
  }
  .footer__contents .logo a {
    width: 300px;
    height: 56px;
  }
  .footer__div-tit {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .footer__contact {
    font-size: 13px;
  }
  .footer__copy {
    font-size: 12px;
  }
  .footer__sitemap-list {
    font-size: 13px;
  }
  .sitemap .gnb__wrap {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .sitemap .gnb__dep1 {
    font-size: 15px;
    width: 100px;
  }
  .sitemap .gnb__dep2 {
    font-size: 13px;
  }
  .sitemap .gnb__dep2 li:not(:last-child) {
    margin-bottom: 14px;
  }
  #history .history__banner {
    padding: 67px 32px;
    margin-bottom: 40px;
  }
  #history .history__banner-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  #history .history__banner-desc {
    font-size: 11px;
    margin-bottom: 12px;
  }
  #history .history__banner-company {
    font-size: 13px;
  }
  #history .history__contents-year {
    font-size: 26px;
  }
  #history .history .panel {
    gap: 0;
  }
  #history .history .panel:not(:last-child) {
    margin-bottom: 10px;
  }
  #history .history__entry {
    padding: 20px 0;
  }
  #history .history__entry:last-child {
    border-bottom: 0;
  }
  #history .history__entry-month {
    width: 56px;
    font-size: 13px;
  }
  #history .history__entry-details p {
    font-size: 13px;
  }
  #history .history__entry-details p:not(:last-child) {
    margin-bottom: 10px;
  }
  #competence .panel--certification-name {
    font-size: 18px;
  }
  #competence .panel--training-mainSlider {
    margin: 0 auto 30px;
  }
  #competence .panel--training-mainSlider .swiper-button-next,
  #competence .panel--training-mainSlider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #competence .panel--training-subSlider {
    gap: 30px;
  }
  #competence .panel--training-subSlider .swiper-slide figure {
    height: 185px;
  }
  #competence .panel--training-subSlider .swiper-slide figcaption {
    padding: 0 20px;
    align-content: center;
    font-size: 13px;
    height: 30px;
  }
  #competence .panel--training-subSlider-btn .swiper-button-next,
  #competence .panel--training-subSlider-btn .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #competence .panel--training-subSlider-btn .swiper-button-next::after,
  #competence .panel--training-subSlider-btn .swiper-button-prev::after {
    font-size: 16px;
  }
  #location .pageTit {
    margin-bottom: 30px;
  }
  #location .mapWrap {
    border-radius: 20px;
    padding-top: 92.1vw;
  }
  #location .mapWrap__cont-img {
    width: 100%;
    height: 260px;
  }
  #location .mapWrap__cont-desc {
    font-size: 16px;
    margin: -25px auto 16px;
    padding: 14px 22px;
  }
  #location .mapWrap__cont-adrs {
    font-size: 14px;
  }
}
.more_opt li {
  width: 104px;
}

.pg_wrap {
  float: unset !important;
  display: flex !important;
  justify-content: center !important;
  padding-top: 50px !important;
}

.pg_page,
.pg_current {
  border: 0 !important;
}

.pg_current {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--cBlue);
  align-content: center;
  line-height: 1;
  min-width: unset;
  padding: 0;
}

.pg_page {
  background-color: transparent !important;
}

.bo_v_nb {
  line-height: 1.2;
}

.bo_v_nb li {
  display: flex;
  font-size: 1em;
}

.bo_v_nb li .nb_tit {
  white-space: nowrap;
}

.bo_v_nb li .nb_date {
  display: block;
  margin-left: auto;
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

#bo_list tbody tr {
  border-left: 0;
}
#bo_list tbody tr:hover {
  border-left: 0;
}

/* 링크 부분 */
#bo_v_link li::after {
  display: block;
  content: "";
  clear: both;
}

#bo_v img {
  width: auto;
}

/* 공통2 */
.imgClick {
  font-size: 1rem;
  text-align: center;
  color: #ccc;
  margin-top: 20px;
}

.board .btnArea {
  width: 100%;
  position: relative;
  font-weight: 600;
  margin-top: 32px;
  display: flex;
  gap: 20px;
}

.board .btnArea .btn-arrow,
.board .btnArea .btn-list {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.board .btnArea .btn-arrow:hover,
.board .btnArea .btn-list:hover {
  background: var(--cBlue);
  color: #fff;
}

.board .btnArea .btn-arrow:hover span {
  text-decoration: underline;
}

.board .btnArea .btn-arrow i {
  font-size: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid #707070;
  text-align: center;
  align-content: center;
}

.board .btnArea .btn-prev {
  left: 0;
}

.board .btnArea .btn-next {
  right: 0;
}

.board .btnArea .btn-list {
  margin-left: auto;
  font-size: 20px;
  border: 1px solid #707070;
  padding: 13px 30px;
}

.board .btnArea .btn-list i {
  margin-right: 10px;
}

#bo_v {
  border-bottom: 1px solid #303030;
}

#bo_v_title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
  border-top: 2px solid #303030;
  border-bottom: 1px solid #303030;
  padding: 24px 15px;
}
#bo_v_title .writeDate {
  font-size: 18px;
  font-weight: 400;
}

#bo_v_title .bo_v_tit {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

#bo_v_atc {
  padding: 20px 0;
}
#bo_v_atc * {
  word-break: auto-phrase;
}

@media screen and (max-width: 1024px) {
  #bo_v_title {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
@media screen and (max-width: 500px) {
  #bo_v_title .bo_v_tit {
    font-size: 15px;
    text-align: center;
  }
  #bo_v_title {
    gap: 4px;
  }
  #bo_v_title .writeDate {
    font-size: 13px;
  }
  #bo_v_title .writeDate {
    width: 100%;
    text-align: center;
  }
  .board .btnArea .btn-arrow i {
    width: 40px;
    height: 40px;
  }
  .board .btnArea {
    gap: 12px;
  }
  .board .btnArea .btn-list {
    padding: 8px 30px;
  }
}

/*# sourceMappingURL=style.css.map */
