@charset "UTF-8";
@font-face {
  font-family: "pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard-Regular"), url(/assets/fonts/Pretendard-Regular.woff) format("woff"), url(/assets/fonts/Pretendard-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard-Medium"), url(/assets/fonts/Pretendard-Medium.woff) format("woff"), url(/assets/fonts/Pretendard-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard-Bold"), url(/assets/fonts/Pretendard-Bold.woff) format("woff"), url(/assets/fonts/Pretendard-Bold.woff2) format("woff2");
}
@font-face {
  font-family: "samsungsharpsans";
  font-weight: 600;
  font-display: swap;
  src: local("samsungsharpsans-medium"), url(/assets/fonts/samsungsharpsans-medium.woff) format("woff"), url(/assets/fonts/samsungsharpsans-medium.woff2) format("woff2");
}
@font-face {
  font-family: "samsungsharpsans";
  font-weight: 700;
  font-display: swap;
  src: local("samsungsharpsans-bold"), url(/assets/fonts/samsungsharpsans-bold.woff) format("woff"), url(/assets/fonts/samsungsharpsans-bold.woff2) format("woff2");
}
/* 공통 */
.page-title {
  font-size: 64px;
  font-family: "samsungsharpsans";
  font-weight: 700;
  line-height: 100px;
  text-align: center;
  margin-bottom: 64px;
  text-transform: uppercase;
}

.bgGray {
  background-color: #f6f6f6;
}
.bgGray .tab-wrap {
  background-color: #f6f6f6;
}
.bgGray .tab-wrap::after {
  background-color: #ccc;
}
.bgGray .tab-wrap::before {
  background-color: #f6f6f6;
}
.bgGray .select-wrap {
  background-color: #f6f6f6;
}
.bgGray .select-wrap .select-button {
  background-color: #f6f6f6;
}

.mo-tab-view {
  display: none;
}

/* NEWS */
.news .lists {
  margin-top: 100px;
  border-top: 1px solid #ccc;
}
.news .lists > li {
  border-bottom: 1px solid #ccc;
}
.news .lists > li .btn-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  width: 100%;
  text-align: left;
  padding: 34px 0;
}
.news .lists > li .btn-list::after {
  content: "";
  display: block;
  width: 72px;
  height: 72px;
  background: url(/assets/images/arrow.png) no-repeat 0 0/100% auto;
}
.news .lists > li .btn-list:hover {
  background-color: #fafafa;
}
.news .lists > li .date {
  font-size: 18px;
  font-weight: 700;
  color: #666;
  flex-shrink: 0;
  margin-top: -10px;
}
.news .lists > li .text {
  flex: 1;
  font-size: 28px;
  font-weight: 500;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news .detail-content {
  margin-top: 60px;
}
.news .detail-content .content-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 80px;
  border-bottom: 1px solid #ccc;
}
.news .detail-content .content-head .content-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
}
.news .detail-content .content-head .date {
  font-size: 24px;
  line-height: 36px;
  color: #666;
}
.news .detail-content .content-body {
  padding: 80px 0;
  border-bottom: 1px solid #ccc;
  font-size: 28px;
  line-height: 40px;
}
.news .detail-content .content-body img {
  width: 100%;
}
.news .detail-content .content-body ~ .content-bottom-btn {
  margin-bottom: -40px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 20px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
  font-size: 28px;
  font-weight: 400;
  color: #555;
  width: 54px;
  height: 73px;
}
.pagination a[class^=btn-] {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  width: auto;
}
.pagination a[class^=btn-]::before, .pagination a[class^=btn-]::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_arrow.png) no-repeat 0 0/100% auto;
}
.pagination a.btn-prev {
  margin-right: auto;
}
.pagination a.btn-prev::after {
  display: none;
}
.pagination a.btn-next {
  margin-left: auto;
}
.pagination a.btn-next::before {
  display: none;
}
.pagination a.btn-next::after {
  transform: rotate(180deg);
}
.pagination a.is-active {
  color: #000;
  font-weight: 700;
}
.pagination a.is-active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}

/* Team */
.team-content .lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 140px 64px;
  margin-top: 100px;
}
.team-content .lists::after {
  display: none;
}
.team-content .lists > li {
  opacity: 0;
}
.team-content .lists > li .item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.team-content .lists > li .item:hover .img img {
  transform: scale(1.1);
}
.team-content .lists > li .item .img {
  display: block;
  overflow: hidden;
}
.team-content .lists > li .item .img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.team-content .lists > li .item .person-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 4px;
}
.team-content .lists > li .item .team-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #666;
  margin-top: 24px;
}
.team-content .lists > li .item .group-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #1428a0;
  margin-top: 6px;
}
.team-content .detail-content {
  margin-top: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid #ccc;
}
.team-content .detail-content .person-item {
  display: flex;
  gap: 136px;
}
.team-content .detail-content .person-item .person-photo {
  width: 512px;
  flex-shrink: 0;
}
.team-content .detail-content .person-item .person-photo img {
  width: 100%;
}
.team-content .detail-content .person-item .person-infor .person-name {
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  padding-bottom: 18px;
}
.team-content .detail-content .person-item .person-infor .person-name::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000;
}
.team-content .detail-content .person-item .person-infor .team-name {
  display: block;
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.33;
}
.team-content .detail-content .person-item .person-infor .text-area {
  margin-top: 40px;
  font-size: 24px;
  line-height: 1.66;
}

/* Portfolio */
.pc-filter-view {
  margin-top: 164px;
}
.pc-filter-view .select-wrap {
  position: relative;
  display: inline-block;
  width: 320px;
  font-size: 0;
  z-index: 100;
}
.pc-filter-view .select-wrap + .select-wrap {
  margin-left: 40px;
}
.pc-filter-view .select-wrap .select-button {
  position: relative;
  width: 100%;
  border-bottom: 3px solid #000;
  text-align: left;
}
.pc-filter-view .select-wrap .select-button .select-title {
  display: block;
  height: 76px;
  line-height: 74px;
  font-size: 24px;
  font-weight: 500;
}
.pc-filter-view .select-wrap .select-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  background: url(/assets/images/icon_accordion_arrow.png) no-repeat 0 0/100% auto;
  transition: 0.5s;
}
.pc-filter-view .select-wrap .select-button.select-button-open:after {
  transform: rotate(-180deg);
}
.pc-filter-view .select-wrap .select-list-wrap {
  display: none;
  position: absolute;
  top: 82px;
  left: 0;
  width: 100%;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
}
.pc-filter-view .select-wrap .select-list-wrap .select-list .select-list-item > .select-list-achor {
  display: block;
  height: 50px;
  padding: 0 24px;
  color: #666;
  line-height: 50px;
}
.pc-filter-view .select-wrap .select-list-wrap .select-list .select-list-item > .select-list-achor.select-selected {
  color: #000;
  font-weight: 500;
  background: #E8EAF6;
}
.pc-filter-view .select-wrap .select-list-wrap.select-open {
  display: block;
}

.mo-filter-view {
  display: none;
}

.portfolio {
  margin-top: 164px;
}
.portfolio .portfolio-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 140px 192px;
  margin: 80px 0 0;
}
.portfolio .portfolio-list > li {
  display: flex;
  align-items: center;
  height: 144px;
  animation: fadeInPage 1s;
}
.portfolio .portfolio-list > li img {
  width: 100%;
}
.portfolio .portfolio-list > li a {
  display: flex;
  transition: 0.5s;
  align-items: center;
}
.portfolio .portfolio-list > li a:hover {
  transform: scale(1.15);
}
.portfolio .lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  margin-top: 200px;
}
.portfolio .lists::after {
  display: none;
}
.portfolio .lists > li .item {
  display: block;
  position: relative;
  overflow: hidden;
}
.portfolio .lists > li .item.font-white .text-wrap * {
  color: #fff;
}
.portfolio .lists > li .item:hover .img img {
  transform: scale(1.1);
}
.portfolio .lists > li .item .img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.portfolio .lists > li .item .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  left: 0;
  bottom: 48px;
  padding: 0 36px;
  width: 100%;
}
.portfolio .lists > li .item .text-wrap .title-text {
  font-size: 48px;
  font-family: "samsungsharpsans";
  line-height: 68px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: auto;
}
.portfolio .lists > li .item .text-wrap .text {
  font-size: 24px;
  line-height: 36px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 72px;
}
.portfolio .mo-show {
  display: none;
}
.portfolio .detail-content {
  margin-top: 60px;
}
.portfolio .detail-content .detail-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 60px;
}
.portfolio .content-box {
  padding: 80px 48px;
  background-color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.portfolio .content-box .item-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.portfolio .content-box .item-wrap dt {
  display: flex;
  align-items: center;
  max-width: 464px;
  height: 200px;
}
.portfolio .content-box .item-wrap dt img {
  width: 100%;
  max-height: 200px;
}
.portfolio .content-box .item-wrap dd {
  display: flex;
  gap: 40px;
}
.portfolio .content-box .item-wrap dd .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  max-width: 220px;
}
.portfolio .content-box .item-wrap dd .item strong {
  display: block;
  padding: 23px 0 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.portfolio .content-box .item-wrap dd .item span {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.portfolio .content-box .text {
  font-size: 28px;
  line-height: 40px;
  margin-top: 40px;
}
.portfolio .content-box .btn-wrap {
  display: block;
  margin-top: 80px;
}
.portfolio .content-box .btn-wrap .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #000;
  color: #fff;
  height: 56px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  word-break: break-word;
}
.portfolio .content-box .btn-wrap .btn-link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icons_arrow-up-outline.png) no-repeat 0 0/100% auto;
}
.portfolio .project {
  margin-top: 200px;
}
.portfolio .pc-filter-view .filter-btn {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
}
.portfolio .pc-filter-view .filter-btn [class^=btn-] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 28px;
  min-width: 200px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #000;
}
.portfolio .pc-filter-view .btn-refresh {
  gap: 6px;
}
.portfolio .pc-filter-view .btn-refresh::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_refresh.png) no-repeat 0 0/100% auto;
}
.portfolio .pc-filter-view .btn-apply {
  font-weight: 700;
  background-color: #000;
  color: #fff;
}
.portfolio .pc-filter-view .filter-area {
  background-color: #fff;
  margin-top: 20px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.portfolio .pc-filter-view .filter-area .item-wrap {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.portfolio .pc-filter-view .filter-area .item-wrap:last-of-type {
  border-bottom: 0;
}
.portfolio .pc-filter-view .filter-area .item-wrap .filter-title {
  display: flex;
  font-size: 24px;
  line-height: 36px;
  width: 176px;
  flex-shrink: 0;
  padding: 32px 48px;
  border-right: 1px solid #ccc;
}
.portfolio .pc-filter-view .filter-area .item-wrap .item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 20px;
}
.portfolio .pc-filter-view .filter-area .item-wrap .input-wrap {
  position: relative;
}
.portfolio .pc-filter-view .filter-area .item-wrap .input-wrap input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.portfolio .pc-filter-view .filter-area .item-wrap .input-wrap input:checked + label {
  background-color: #000;
  color: #fff;
}
.portfolio .pc-filter-view .filter-area .item-wrap .input-wrap input:checked + label::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: url(/assets/images/icon_checkbox.png) no-repeat 0 0/100% auto;
}
.portfolio .pc-filter-view .filter-area .item-wrap .input-wrap label {
  display: flex;
  align-items: center;
  border-radius: 100px;
  background-color: #fff;
  font-size: 20px;
  line-height: 28px;
  color: #666;
  border: 1px solid #ccc;
  padding: 0 24px;
  height: 46px;
  white-space: pre;
}
.portfolio .mo-filter-view {
  display: none;
}
.portfolio .project-lists {
  margin-top: 60px;
}
.portfolio .project-lists .lists-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 128px;
}
.portfolio .project-lists .lists-header .company-name {
  padding: 12px 0 12px 48px;
  font-size: 24px;
  line-height: 36px;
}
.portfolio .project-lists .lists-header .item-wrap {
  display: flex;
  gap: 40px;
}
.portfolio .project-lists .lists-header .item-wrap .item {
  min-width: 220px;
  max-width: 220px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.portfolio .filter-btn {
  display: none;
}

.port-text {
  margin-top: 40px;
  padding-top: 60px;
  font-size: 20px;
  border-top: 1px solid #ddd;
  text-align: right;
}
.port-text span {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  line-height: 1;
}
.port-text span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: #000;
}

.lists-body .accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lists-body .accordion-item {
  background-color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.lists-body .accordion-header {
  position: relative;
  display: block;
  width: 100%;
  padding: 32px 128px 32px 48px;
  text-align: left;
}
.lists-body .accordion-header .header-item-wrap .header-title {
  display: flex;
  font-size: 24px;
  line-height: 36px;
  align-items: flex-start;
  gap: 8px;
}
.lists-body .accordion-header .header-item-wrap .header-title .num {
  font-size: 24px;
  font-weight: 700;
}
.lists-body .accordion-header .header-item-wrap .header-title .txt {
  font-size: 24px;
  font-weight: 700;
}
.lists-body .accordion-header .header-item {
  display: flex;
  gap: 40px;
}
.lists-body .accordion-header .header-item .item {
  min-width: 220px;
  max-width: 220px;
  text-align: center;
}
.lists-body .accordion-header .header-item .item span {
  font-size: 24px;
  line-height: 36px;
}
.lists-body .accordion-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.lists-body .accordion-btn span {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px !important;
  clip: rect(0 0 0 0);
}
.lists-body .accordion-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 48px;
  display: inline-block;
  width: 68px;
  height: 68px;
  transform: translateY(-50%) rotate(-180deg);
  transition: 0.5s;
  background: url(/assets/images/icon_accordion_arrow3.png) no-repeat 0 0/100% auto;
}
.lists-body .accordion-btn[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(0);
}
.lists-body .accordion-btn[aria-expanded=true] ~ .header-item {
  display: none;
}
.lists-body .accordion-panel {
  overflow: hidden;
}
.lists-body .accordion-cont {
  border-top: 1px solid #ccc;
}
.lists-body .accordion-cont .content-box {
  box-shadow: none;
  padding-right: 128px;
}
.lists-body.lists-body-company {
  position: relative;
  padding: 100px 0;
}
.lists-body.lists-body-company .accordion {
  position: relative;
}
.lists-body.lists-body-company .accordion-header .header-item-wrap .header-title {
  font-weight: 700;
}
.lists-body.lists-body-company .accordion-cont {
  padding: 80px;
}

/* Company */
.company-content .company-section01 {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-bottom: 200px;
}
.company-content .company-section01 .section01-01 {
  padding: 100px 0 0 0;
  display: flex;
  gap: 100px;
}
.company-content .company-section01 .section01-01 .cont-area {
  display: flex;
  gap: 80px;
  align-items: center;
}
.company-content .company-section01 .section01-01 .cont-area .scroll-up-animate {
  overflow: hidden;
  width: 512px;
  height: 364px;
  flex-shrink: 0;
}
.company-content .company-section01 .section01-01 .cont-area .scroll-up-animate img {
  width: 100%;
  transform: translateY(-55px);
}
.company-content .company-section01 .section01-01 .cont-area .text-area {
  width: 100%;
}
.company-content .company-section01 .section01-01 .cont-area .text-area .main-about-title {
  display: block;
  margin-bottom: 24px;
  font-size: 36px;
  line-height: 1.42;
  font-family: "samsungsharpsans";
}
.company-content .company-section01 .section01-01 .cont-area .text-area .main-about-title .mo_cont {
  display: none;
}
.company-content .company-section01 .section01-01 .cont-area .text-area p span {
  display: block;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.66;
}
.company-content .company-section01 .section01-01 .cont-area .text-area p span:first-child {
  margin-top: 0;
}
.company-content .company-section01 .section01-02 {
  position: relative;
  padding-top: 80px;
  border-top: 1px solid #ddd;
}
.company-content .company-section01 .section01-02 .bg {
  position: absolute;
  left: -100%;
  right: -100%;
  top: 0;
  height: 100%;
  background-color: #f6f6f6;
}
.company-content .company-section02 {
  position: relative;
  padding: 200px 0 100px;
}
.company-content .company-section02:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: #F7FAFF;
  transform: translateX(-50%);
}
.company-content .company-section02 .item-wrap {
  display: grid;
  gap: 100px 80px;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
.company-content .company-section02 .item-wrap .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.company-content .company-section02 .item-wrap .item .tit {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  font-family: "samsungsharpsans";
}
.company-content .company-section02 .item-wrap .item .txt {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}
.company-content .company-section02 .item-wrap .ico {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.company-content .company-section02 .item-wrap .ico [class^=img0] {
  position: absolute;
}
.company-content .company-section02 .item-wrap .ico [class^=img0] span + span {
  z-index: 1;
}
.company-content .company-section02 .item-wrap .ico.ico01 .img01 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.company-content .company-section02 .item-wrap .ico.ico01 .img02 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.company-content .company-section02 .item-wrap .ico.ico01 .img03 {
  left: 38px;
  top: 98px;
}
.company-content .company-section02 .item-wrap .ico.ico01 .img04 {
  left: 206px;
  top: 98px;
}
.company-content .company-section02 .item-wrap .ico.ico01 .img05 {
  left: 50%;
  top: 38px;
  transform: translateX(-50%);
}
.company-content .company-section02 .item-wrap .ico.ico01 .img06 {
  left: 50%;
  top: 206px;
  transform: translateX(-50%);
}
.company-content .company-section02 .item-wrap .ico.ico02 .img01 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.company-content .company-section02 .item-wrap .ico.ico02 .img02 {
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
}
.company-content .company-section02 .item-wrap .ico.ico02 .img03 {
  left: 31px;
  top: 139px;
}
.company-content .company-section02 .item-wrap .ico.ico02 .img04 {
  left: 93px;
  top: 47px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img01 {
  left: 47px;
  top: 71px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img02 {
  left: 188px;
  top: 154px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img03 {
  left: 158px;
  top: 48px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img04 {
  left: 75px;
  top: 106px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img05 {
  left: 108px;
  top: 166px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img06 {
  left: 14px;
  top: 163px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img07 {
  left: 162px;
  top: 128px;
}
.company-content .company-section02 .item-wrap .ico.ico03 .img08 {
  left: 212px;
  top: 156px;
}
.company-content .company-section02 .item-wrap .ico.ico04 .img01 {
  left: 108px;
  top: 30px;
}
.company-content .company-section02 .item-wrap .ico.ico04 .img02 {
  left: 40px;
  top: 125px;
}
.company-content .company-section02 .item-wrap .ico.ico04 .img03 {
  left: 142px;
  top: 154px;
}
.company-content .company-section02 .item-wrap .ico.ico04 .img04 {
  left: 142px;
  top: 154px;
}
.company-content .company-section02 .item-wrap .ico.ico05 .img01 {
  left: 64px;
  top: 46px;
}
.company-content .company-section02 .item-wrap .ico.ico05 .img02 {
  left: 148px;
  top: 46px;
}
.company-content .company-section02 .item-wrap .ico.ico05 .img03 {
  left: 30px;
  top: 142px;
}
.company-content .company-section02 .item-wrap .ico.ico06 .img01 {
  left: 146px;
  top: 50px;
}
.company-content .company-section02 .item-wrap .ico.ico06 .img02 {
  left: 18px;
  top: 57px;
}
.company-content .company-section02 .item-wrap .ico.ico06 .img03 {
  left: 27px;
  top: 97px;
}
.company-content .company-section02 .item-wrap .ico.ico06 .img04 {
  left: 63px;
  top: 126px;
}
.company-content .company-section02 .item-wrap .ico.ico06 .img05 {
  left: 27px;
  top: 156px;
}
.company-content .company-section02 .item-wrap .ico.ico06 .img06 {
  left: 18px;
  top: 185px;
}
.company-content .company-section02 .item-wrap .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-content .company-section02 .item-wrap .text-wrap .title-text {
  font-size: 60px;
  font-weight: 700;
  font-family: "samsungsharpsans";
  line-height: 80px;
}
.company-content .company-section02 .item-wrap .text-wrap .text {
  font-size: 28px;
  line-height: 40px;
}
.company-content .company-section03 {
  position: relative;
  padding: 200px 100px;
  margin: 0 -100px;
}
.company-content .company-section03 .history-area {
  overflow: hidden;
  position: relative;
  margin-right: -100px;
  z-index: 1;
}
.company-content .company-section03 .history-area .swiper .swiper-container {
  overflow: visible;
}
.company-content .company-section03 .history-area .swiper .swiper-container .swiper-slide {
  width: 1088px;
  padding-right: 304px;
}
.company-content .company-section03 .history-area .swiper .swiper-container .swiper-slide:last-child {
  padding-right: 0;
}
.company-content .company-section03 .history-area .swiper .swiper-container .swiper-slide:last-child .inner::after {
  display: none;
}
.company-content .company-section03 .history-area .swiper-btn-inner {
  max-width: 660px;
  margin: 80px auto 0;
}
.company-content .company-section03 .history-area .swiper-btn-inner .swiper-year-point {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 98px;
}
.company-content .company-section03 .history-area .swiper-btn-inner .swiper-year-point > span {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.company-content .company-section03 .history-area .swiper-btn-inner .swiper-btn-wrap {
  padding-right: 0;
  margin-top: 8px;
  gap: 60px;
}
.company-content .company-section03 .history-area .title-text {
  font-size: 60px;
  font-family: "samsungsharpsans";
  text-transform: uppercase;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 100px;
}
.company-content .company-section03 .history-area .inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.company-content .company-section03 .history-area .inner::after {
  content: "";
  display: block;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 2px;
  background-color: rgba(20, 40, 160, 0.6);
}
.company-content .company-section03 .history-area .inner .year-text {
  font-size: 140px;
  font-family: "samsungsharpsans";
  line-height: 160px;
  color: #1428a0;
}
.company-content .company-section03 .history-area .inner .bl-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company-content .company-section03 .history-area .inner .bl-list::after {
  display: none;
}
.company-content .company-section03 .history-area .inner .bl-list > li {
  position: relative;
  padding-left: 24px;
  font-size: 24px;
  line-height: 36px;
}
.company-content .company-section03 .history-area .inner .bl-list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #1428a0;
}
.company-content .company-section04 {
  position: relative;
}
.company-content .company-section04:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: #F7FAFF;
  transform: translateX(-50%);
}
.company-content .company-section04 .section04-01 {
  padding-bottom: 0 !important;
}
.company-content .company-section04 .section04-01 .txt-section04-01 {
  font-size: 24px;
  line-height: 40px;
}
.company-content .company-section04 .section04-01 .item-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.company-content .company-section04 .section04-01 .item-wrap .item {
  display: flex;
  align-items: center;
  gap: 60px;
}
.company-content .company-section04 .section04-01 .item-wrap .item .img {
  width: 512px;
  flex-shrink: 0;
}
.company-content .company-section04 .section04-01 .item-wrap .item .img img {
  width: 100%;
}
.company-content .company-section04 .section04-01 .item-wrap .item .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-content .company-section04 .section04-01 .item-wrap .item .text-wrap .sub-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}
.company-content .company-section04 .title-text {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom: 24px;
}
.company-content .company-section04 .bl-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-content .company-section04 .bl-list::after {
  display: none;
}
.company-content .company-section04 .bl-list > li {
  position: relative;
  padding-left: 24px;
  font-size: 28px;
  line-height: 40px;
}
.company-content .company-section04 .bl-list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #1428a0;
}
.company-content .company-section04 [class^=section04-] {
  position: relative;
  padding: 200px 0;
}
.company-content .company-section04 [class^=section04-] .content-inner {
  position: relative;
  z-index: 1;
}
.company-content .company-section04 .section04-02 .item-wrap {
  display: flex;
  gap: 32px;
}
.company-content .company-section04 .section04-02 .item-wrap .item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  background-color: #fff;
  padding: 60px 32px 60px;
}
.company-content .company-section04 .section04-02 .item-wrap .top {
  display: flex;
  gap: 20px;
}
.company-content .company-section04 .section04-02 .item-wrap .top .icon {
  width: 140px;
  flex-shrink: 0;
}
.company-content .company-section04 .section04-02 .item-wrap .top .icon img {
  width: 100%;
}
.company-content .company-section04 .section04-02 .item-wrap .top .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-content .company-section04 .section04-02 .item-wrap .top .text-wrap .sub-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #1428a0;
}
.company-content .company-section04 .section04-02 .item-wrap .top .text-wrap .sub-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.6px;
}
.company-content .company-section04 .section04-03 .item-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.company-content .company-section04 .section04-03 .item-wrap .item {
  display: flex;
  align-items: center;
  gap: 60px;
}
.company-content .company-section04 .section04-03 .item-wrap .item .img {
  width: 50%;
  flex-shrink: 0;
  max-width: 770px;
}
.company-content .company-section04 .section04-03 .item-wrap .item .img img {
  width: 100%;
}
.company-content .company-section04 .section04-03 .item-wrap .item .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-content .company-section04 .section04-03 .item-wrap .item .sub-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}
.company-content .company-section04 .section04-04 .item-wrap {
  display: flex;
  gap: 50px;
}
.company-content .company-section04 .section04-04 .item-wrap .item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
.company-content .company-section04 .section04-04 .item-wrap .item .img img {
  width: 100%;
}
.company-content .company-section04 .section04-04 .item-wrap .item .sub-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}
.company-content .company-section04 .section04-04 .item-wrap .item .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-content .company-section04 .section04-05 .top-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-content .company-section04 .section04-05 .top-text-wrap .title-text {
  margin-bottom: 0;
}
.company-content .company-section04 .section04-05 .top-text-wrap .text {
  font-size: 28px;
  line-height: 40px;
}
.company-content .company-section04 .section04-05 .infor-graph {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 36px;
  margin-top: 100px;
}
.company-content .company-section04 .section04-05 .infor-graph .circle-wrap {
  position: relative;
  width: 520px;
  padding: 94px 0 14px;
}
.company-content .company-section04 .section04-05 .infor-graph .circle-wrap::before {
  content: "";
  display: block;
  width: 320px;
  height: 330px;
  margin: 0 auto;
  background: url(/assets/images/img_circle_arrow.png) no-repeat 0 0/100% auto;
}
.company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  z-index: 1;
}
.company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item.company {
  background-color: #00afe7;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item.ngo {
  background-color: #004098;
  left: 0;
  bottom: 0;
}
.company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item.employees {
  background-color: #fff;
  border: 2px solid #00afe7;
  color: #00afe7;
  right: 0;
  bottom: 0;
}
.company-content .company-section04 .section04-05 .infor-graph .arrow {
  width: 100px;
}
.company-content .company-section04 .section04-05 .infor-graph .arrow img {
  width: 100%;
}
.company-content .company-section04 .section04-05 .infor-graph .round-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 600px;
  border: 2px dashed #004098;
  border-radius: 200px;
  padding: 60px 100px;
}
.company-content .company-section04 .section04-05 .infor-graph .round-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 24px;
  color: #004098;
  border: 2px solid #004098;
  border-radius: 120px;
  padding: 32px;
  text-align: center;
}
.company-content .company-section04 .section04-05 .item-inner {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}
.company-content .company-section04 .section04-05 .item-inner .item {
  display: flex;
  gap: 10%;
  justify-content: space-between;
}
.company-content .company-section04 .section04-05 .item-inner .item .img {
  width: 365px;
  flex-shrink: 0;
}
.company-content .company-section04 .section04-05 .item-inner .item .img img {
  width: 100%;
}
.company-content .company-section04 .section04-05 .item-inner .item .text-wrap {
  display: flex;
  flex-direction: column;
  width: 939px;
}
.company-content .company-section04 .section04-05 .item-inner .item .text-wrap .text {
  font-size: 28px;
  line-height: 40px;
}
.company-content .company-section04 .section04-06 {
  margin-bottom: -200px;
  padding: 0 0 200px !important;
}
.company-content .company-section04 .section04-06 .item-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.company-content .company-section04 .section04-06 .item-wrap .item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  flex-basis: calc(50% - 32px);
  background-color: #fff;
  padding: 60px 32px 60px;
}
.company-content .company-section04 .section04-06 .item-wrap .top {
  display: flex;
  gap: 20px;
}
.company-content .company-section04 .section04-06 .item-wrap .top .icon {
  width: 140px;
  flex-shrink: 0;
}
.company-content .company-section04 .section04-06 .item-wrap .top .icon img {
  width: 100%;
}
.company-content .company-section04 .section04-06 .item-wrap .top .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-content .company-section04 .section04-06 .item-wrap .top .text-wrap .sub-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #1428a0;
}
.company-content .company-section04 .section04-06 .item-wrap .top .text-wrap .sub-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.6px;
}
.company-content .company-section04 .section04-06 .report-area {
  display: flex;
  gap: 100px;
}
.company-content .company-section04 .section04-06 .report-area .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company-content .company-section04 .section04-06 .report-area .text-wrap .text1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
}
.company-content .company-section04 .section04-06 .report-area .text-wrap .text2 {
  font-size: 24px;
  line-height: 36px;
}
.company-content .company-section04 .section04-06 .report-area .email-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 512px;
  flex-shrink: 0;
  padding: 32px;
  background-color: #fff;
}
.company-content .company-section04 .section04-06 .report-area .email-area dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-content .company-section04 .section04-06 .report-area .email-area dl dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}
.company-content .company-section04 .section04-06 .report-area .email-area dl dt::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/assets/images/icon_email.png) no-repeat 0 0/100% auto;
}
.company-content .company-section04 .section04-06 .report-area .email-area dl dd a {
  display: block;
  font-size: 28px;
  line-height: 44px;
  text-decoration: underline;
}
.company-content .company-acct-list > li {
  margin-top: 52px;
}
.company-content .company-acct-list > li:first-child {
  margin-top: 0;
}
.company-content .company-acct-list > li .tit-sub {
  display: block;
  color: #1428A0;
  font-size: 16px;
  font-weight: 700;
}
.company-content .company-acct-list > li .tit-main {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.company-content .company-acct-list > li .bl-list {
  margin-top: 40px;
}
.company-content .company-acct-list > li .bl-list > li {
  font-size: 20px !important;
  line-height: 28px !important;
}
.company-content .company-acct-list > li .bl-list > li:before {
  top: 10px;
}

.pc-tab-view :has(.tab-wrap.menu-fixed) .company-content {
  padding-top: 50px;
}
.pc-tab-view :has(.tab-wrap.menu-fixed) .team-content {
  padding-top: 50px;
}

.pc-tab-view {
  /* 탭 메뉴 fixed 때와 비 fixed 때 높이값이 다르기 때문에 추가 */
}
.pc-tab-view .tab-wrap:not(.menu-fixed) {
  padding-top: 32px;
  margin-top: -32px;
}

.rolling-text-area {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}
.rolling-text-area .item-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.rolling-text-area .item-inner .item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 250px;
}
.rolling-text-area .item-inner .point-text-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.rolling-text-area .item-inner .point-text {
  display: inline-block;
  text-align: center;
  font-size: 60px;
  font-family: "samsungsharpsans";
  line-height: 80px;
  color: #1428a0;
}
.rolling-text-area .item-inner .sub-text {
  display: inline-block;
  text-align: center;
  font-size: 20px;
  line-height: 32px;
}

/* company section1 */
.scroll-up-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-up-animate.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fadeIn.active {
  opacity: 1;
}

/* company section2 */
/* .company-section02 .item .tit,
.company-section02 .item .txt {
  opacity: 0;
  transform: translateX(-30px);
}
.company-section02 .item.reverse .tit,
.company-section02 .item.reverse .txt {
  transform: translateX(30px);
}
.company-section02 .item:not(.reverse) .tit.animate-in,
.company-section02 .item:not(.reverse) .txt.animate-in {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 0.7s ease-out;
}
.company-section02 .item.reverse .tit.animate-in,
.company-section02 .item.reverse .txt.animate-in {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 0.7s ease-out;
} */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 1800px) {
  /* portfolio */
  .portfolio .portfolio-list {
    gap: 90px 100px;
  }
  .portfolio .portfolio-list > li img {
    width: 100%;
  }
  .portfolio .portfolio-list > li a {
    height: 120px;
  }
  /* Company */
  .company-content .company-section01 .section01-01 .cont-area {
    gap: 80px;
  }
  /* Team */
  .team-content .detail-content .person-item {
    gap: 100px;
  }
  .team-content .detail-content .person-item .person-photo {
    width: 400px;
  }
}
@media only screen and (max-width: 1600px) {
  .portfolio .project-lists .lists-header .item-wrap .item:nth-child(2),
  .portfolio .project-lists .lists-header .item-wrap .item:nth-child(3),
  .portfolio .project-lists .lists-body .accordion-header .header-item .item:nth-child(2),
  .portfolio .project-lists .lists-body .accordion-header .header-item .item:nth-child(3) {
    display: none;
  }
  .page-title {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 80px;
  }
  .company-content .company-section01 {
    padding-bottom: 100px;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area .main-about-title {
    font-size: 28px;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area p span {
    font-size: 18px;
  }
  .company-content .company-section01 .section01-01 .cont-area .scroll-up-animate {
    width: 32%;
    height: 260px;
  }
  .company-content .company-section02 {
    padding: 100px 0 50px;
  }
  .company-content .company-section02 .item-wrap {
    gap: 50px 20px;
  }
  .company-content .company-section02 .item-wrap .item .txt {
    font-size: 18px;
  }
  .company-content .company-section03 {
    padding: 100px;
  }
  .company-content .company-section04 [class^=section04-] {
    padding: 100px 0;
  }
  .company-content .company-section04 .section04-06 {
    margin-bottom: -100px !important;
  }
  .company-content .company-section04 .title-text {
    font-size: 28px;
  }
  .company-content .company-section04 .section04-01 .txt-section04-01 {
    font-size: 18px;
    line-height: 24px;
  }
  .company-content .company-section04 .lists-body.lists-body-company {
    padding: 60px 0;
  }
  .company-content .company-section04 .section04-06 .report-area .text-wrap .text1 {
    font-size: 28px;
  }
  .company-content .company-section04 .section04-06 .report-area .text-wrap .text2 {
    font-size: 18px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area {
    width: 480px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl dd a {
    font-size: 20px;
  }
  .rolling-text-area .item-inner .point-text {
    font-size: 52px;
  }
  .rolling-text-area .item-inner .sub-text {
    font-size: 20px;
  }
  .news {
    margin-top: 0 !important;
  }
  .news .lists {
    margin-top: 70px;
  }
  .news .lists > li .text {
    font-size: 24px;
  }
  .news .detail-content .content-head {
    gap: 10px;
  }
  .news .detail-content .content-head .content-title {
    font-size: 32px;
  }
  .news .detail-content .content-head .date {
    font-size: 18px;
  }
  .team-content .detail-content .person-item {
    gap: 80px;
  }
  .team-content .detail-content .person-item .person-photo {
    width: 360px;
  }
  .team-content .detail-content .person-item .person-infor .text-area {
    font-size: 18px;
    line-height: 1.77;
  }
}
/* Tablet Size */
@media only screen and (max-width: 1280px) {
  /* portfolio */
  .portfolio .portfolio-list {
    gap: 70px 80px;
  }
  .portfolio .portfolio-list > li a {
    height: 100px;
  }
  /* Portfolio */
  .portfolio .content-box .item-wrap dd .item {
    align-items: flex-start;
    min-width: 120px;
  }
  .portfolio .content-box .text {
    font-size: 30px;
    line-height: 50px;
  }
  /* Company */
  .company-content .company-section01 .section01-01 .cont-area {
    gap: 60px;
  }
  .company-content .company-section01 .section01-01 .cont-area .scroll-up-animate {
    width: 42%;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area .main-about-title {
    font-size: 26px;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area p {
    font-size: 18px;
  }
  .company-content .company-section04 .section04-01 .item-wrap {
    gap: 40px;
  }
  .company-content .company-section04 .section04-01 .item-wrap .item {
    gap: 40px;
    align-items: flex-start;
  }
  .company-content .company-section04 .section04-01 .item-wrap .item .img {
    width: 400px;
  }
  .company-content .company-section04 .section04-01 .item-wrap .item .text-wrap {
    gap: 12px;
  }
  .company-content .company-section04 .section04-01 .item-wrap .item .text-wrap .sub-title {
    font-size: 28px;
    line-height: 40px;
  }
  .company-content .company-section04 .title-text {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 48px;
  }
  .company-content .company-section04 .bl-list > li {
    padding-left: 16px;
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section04 .bl-list > li::before {
    top: 11px;
    width: 6px;
    height: 6px;
  }
  .company-content .company-section04 [class^=section04-] {
    padding: 120px 0;
  }
  .company-content .company-section04 .section04-02 .item-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .company-content .company-section04 .section04-02 .item-wrap .item {
    gap: 28px;
    padding: 48px 24px;
  }
  .company-content .company-section04 .section04-02 .item-wrap .top {
    gap: 12px;
  }
  .company-content .company-section04 .section04-02 .item-wrap .top .icon {
    width: 114px;
  }
  .company-content .company-section04 .section04-04 .item-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .company-content .company-section04 .section04-04 .item-wrap .item {
    flex-direction: row;
  }
  .company-content .company-section04 .section04-04 .item-wrap .item .img {
    width: 400px;
    flex-shrink: 0;
  }
  .company-content .company-section04 .section04-04 .item-wrap .item .sub-title {
    font-size: 28px;
    line-height: 40px;
  }
  .company-content .company-section04 .section04-04 .item-wrap .item .text-wrap {
    gap: 12px;
  }
  .company-content .company-section04 .section04-05 .top-text-wrap {
    gap: 12px;
  }
  .company-content .company-section04 .section04-05 .top-text-wrap .text {
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section04 .section04-05 .infor-graph {
    gap: 24px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap {
    padding-top: 64px;
    min-width: 310px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap::before {
    width: 270px;
    height: 280px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item {
    width: 150px;
    height: 150px;
    font-size: 20px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item.ngo, .company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item.employees {
    bottom: 10px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .arrow {
    width: 80px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .round-box {
    gap: 10px;
    padding: 30px 60px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .round-box .item {
    font-size: 20px;
    padding: 16px;
  }
  .company-content .company-section04 .section04-05 .item-inner {
    margin-top: 80px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item {
    flex-direction: column;
    gap: 16px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item .img {
    width: 300px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item .text-wrap {
    width: 100%;
  }
  .company-content .company-section04 .section04-06 .report-area {
    flex-direction: column;
    gap: 24px;
    margin-top: 100px;
  }
  .company-content .company-section04 .section04-06 .report-area .text-wrap .text1 {
    font-size: 24px;
    line-height: 32px;
  }
  .company-content .company-section04 .section04-06 .report-area .text-wrap .text1 br {
    display: none;
  }
  .company-content .company-section04 .section04-06 .report-area .text-wrap .text2 {
    font-size: 18px;
    line-height: 26px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area {
    width: 100%;
    padding: 48px 24px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl dt {
    font-size: 20px;
    line-height: 32px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl dt::before {
    width: 36px;
    height: 36px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl dd a {
    font-size: 18px;
    line-height: 26px;
  }
  .rolling-text-area {
    gap: 60px;
  }
  .rolling-text-area .title-text {
    font-size: 36px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 1200px) {
  /* Team */
  .team-content .lists {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-content .detail-content .person-item {
    gap: 70px;
  }
  .team-content .detail-content .person-item .person-photo {
    width: 350px;
  }
  .team-content .detail-content .person-item .person-infor .person-name, .team-content .detail-content .person-item .person-infor .team-name {
    font-size: 22px;
  }
  .team-content .detail-content .person-item .person-infor .text-area {
    font-size: 20px;
  }
  /* Portfolio */
  .portfolio .lists {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio .project-lists .lists-header .item-wrap .item:nth-child(1),
  .portfolio .project-lists .lists-body .accordion-header .header-item .item:nth-child(1) {
    display: none;
  }
  .portfolio .project-lists .lists-body .accordion-header .header-item-wrap .header-title {
    max-width: 100%;
  }
  /* Company */
  .company-content .company-section01 {
    padding-bottom: 100px;
  }
  .company-content .company-section01 .section01-01 {
    gap: 80px;
    flex-direction: column;
  }
  .company-content .company-section01 .visual-img {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  .company-content .company-section01 .visual-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
  }
  .company-content .company-section01 .item-wrap {
    gap: 60px;
  }
  .company-content .company-section01 .item-wrap .text-wrap {
    gap: 24px;
  }
  .company-content .company-section03 {
    margin: 0;
    padding: 120px 0;
  }
  .company-content .company-section03 .history-area {
    margin: 0;
  }
  .company-content .company-section03 .history-area .swiper .swiper-container {
    overflow: hidden;
  }
  .company-content .company-section03 .history-area .swiper .swiper-container .swiper-slide {
    width: 100%;
    padding-right: 0;
  }
  .company-content .company-section03 .history-area .swiper .swiper-container .swiper-slide .inner::after {
    display: none;
  }
  .company-content .company-section03 .history-area .swiper-btn-inner {
    margin: 60px auto 0;
  }
  .company-content .company-section03 .history-area .title-text {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 60px;
  }
  .company-content .company-section03 .history-area .inner {
    gap: 40px;
  }
  .company-content .company-section03 .history-area .inner .year-text {
    font-size: 120px;
    line-height: 140px;
  }
  .company-content .company-section03 .history-area .inner .bl-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .company-content .company-section03 .history-area .inner .bl-list::after {
    display: none;
  }
  .company-content .company-section03 .history-area .inner .bl-list > li {
    padding-left: 16px;
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section03 .history-area .inner .bl-list > li::before {
    top: 11px;
    width: 6px;
    height: 6px;
  }
  .company-content .company-section04 [class^=section04-] {
    padding: 100px 0;
  }
  .company-content .company-section04 .section04-03 .item-wrap {
    gap: 40px;
    flex-direction: row;
  }
  .company-content .company-section04 .section04-03 .item-wrap .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .company-content .company-section04 .section04-03 .item-wrap .item .img {
    width: 100%;
  }
  .company-content .company-section04 .section04-03 .item-wrap .item .text-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .company-content .company-section04 .section04-03 .item-wrap .item .sub-title {
    font-size: 28px;
    line-height: 40px;
  }
  .company-content .company-section04 .section04-05 .infor-graph {
    gap: 20px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap {
    padding-top: 64px;
    min-width: 290px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap::before {
    width: 220px;
    height: 220px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item {
    width: 130px;
    height: 130px;
    font-size: 18px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .arrow {
    min-width: 70px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .round-box {
    gap: 10px;
    padding: 20px 40px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .round-box .item {
    font-size: 18px;
    padding: 10px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item h4 {
    font-size: 28px;
    line-height: 48px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item .text-wrap .text {
    font-size: 20px;
    line-height: 32px;
  }
  .company-content .company-section04 .section04-06 .item-wrap {
    gap: 20px;
  }
  .company-content .company-section04 .section04-06 .item-wrap .item {
    gap: 28px;
    flex: 1;
    flex-basis: auto;
    padding: 48px 24px;
  }
  .company-content .company-section04 .section04-06 .item-wrap .top {
    gap: 12px;
  }
  .company-content .company-section04 .section04-06 .item-wrap .top .icon {
    width: 114px;
  }
  .company-content .company-section04 .section04-06 .item-wrap .top .text-wrap {
    gap: 6px;
  }
  .company-content .company-section04 .section04-06 .item-wrap .top .text-wrap .sub-text {
    font-size: 14px;
    line-height: 22px;
  }
  .company-content .company-section04 .section04-06 .item-wrap .top .text-wrap .sub-title {
    font-size: 24px;
    line-height: 36px;
  }
  .rolling-text-area {
    gap: 60px;
  }
  .rolling-text-area .title-text {
    font-size: 36px;
    line-height: 48px;
  }
  .rolling-text-area .item-inner {
    flex-wrap: wrap;
    gap: 40px;
  }
  .rolling-text-area .item-inner .item {
    flex-basis: calc(50% - 20px);
    max-width: none;
  }
}
/* Mobile Size */
@media only screen and (max-width: 768px) {
  .page-title {
    font-size: 32px;
    line-height: 60px;
    margin-bottom: 36px;
  }
  .pc-tab-view {
    display: none;
  }
  .mo-tab-view {
    display: block;
    height: 68px;
  }
  .mo-tab-view .menu-fixed {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 98;
    transition: top 0.3s ease-out;
    padding: 0 24px;
  }
  .mo-tab-view .menu-fixed .select-button::after {
    height: 1px;
    background-color: #ccc;
    left: -24px;
    right: -24px;
  }
  .mo-tab-view .menu-fixed .select-open {
    top: 68px !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  /* NEWS */
  .news {
    margin-top: 36px;
  }
  .news .lists {
    margin-top: 0;
  }
  .news .lists > li .btn-list {
    position: relative;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 26px 72px 26px 16px;
  }
  .news .lists > li .btn-list::after {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 16px;
    bottom: 24px;
  }
  .news .lists > li .date {
    font-size: 12px;
    line-height: 12px;
    margin-top: 0;
  }
  .news .lists > li .text {
    font-size: 20px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }
  .news .detail-content {
    margin-top: -32px;
  }
  .news .detail-content .content-head {
    gap: 8px;
    padding-bottom: 32px;
  }
  .news .detail-content .content-head .content-title {
    font-size: 28px;
    line-height: 40px;
  }
  .news .detail-content .content-head .date {
    font-size: 18px;
    line-height: 30px;
  }
  .news .detail-content .content-body {
    padding: 24px 0;
    font-size: 20px;
    line-height: 28px;
  }
  .pagination {
    margin-top: 60px;
    gap: 16px;
  }
  .pagination a {
    width: 33px;
    height: 54px;
    font-size: 18px;
    line-height: 30px;
  }
  .pagination a[class^=btn-] {
    text-indent: -9999px;
  }
  .pagination a[class^=btn-]::before, .pagination a[class^=btn-]::after {
    width: 16px;
    height: 16px;
  }
  .pagination a.is-active::after {
    height: 2px;
  }
  .pagination a.btn-prev {
    padding-right: 10px;
  }
  .pagination a.btn-next {
    padding-left: 10px;
  }
  /* Team */
  .team-content .lists {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 48px 20px;
    margin-top: 60px;
  }
  .team-content .lists > li .item .person-name {
    font-size: 16px;
    line-height: 1.375;
    margin-top: 0;
  }
  .team-content .lists > li .item .team-name {
    font-size: 10px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .team-content .lists > li .item .group-name {
    font-size: 16px;
    line-height: 1.375;
    margin-top: 0;
  }
  .team-content .detail-content {
    margin-top: -32px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .team-content .detail-content .person-item {
    flex-direction: column;
    gap: 24px;
  }
  .team-content .detail-content .person-item .person-photo {
    width: 100%;
  }
  .team-content .detail-content .person-item .person-infor .person-name {
    display: inline-flex;
    font-size: 24px;
    padding-bottom: 12px;
  }
  .team-content .detail-content .person-item .person-infor .team-name {
    margin-top: 12px;
    font-size: 18px;
  }
  .team-content .detail-content .person-item .person-infor .text-area {
    font-size: 18px;
    line-height: 1.55;
  }
  .team-content .detail-content ~ .content-bottom-btn {
    margin-bottom: -20px;
  }
  /* Portfolio */
  .pc-filter-view {
    display: none;
  }
  .mo-filter-view {
    display: block;
  }
  .mo-filter-view .filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
  }
  .mo-filter-view .filter-btn::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(/assets/images/icon_filter.png) no-repeat 0 0/100% auto;
  }
  .portfolio {
    margin-top: 80px;
  }
  .portfolio .portfolio-list {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    padding: 0 18px;
  }
  .portfolio .portfolio-list > li {
    height: 83px;
  }
  .portfolio .pc-show {
    display: none;
  }
  .portfolio .mo-show {
    display: block;
  }
  .portfolio .swiper-lists {
    overflow: hidden;
    margin: 80px -24px 0;
    padding: 0 24px;
  }
  .portfolio .swiper-lists .swiper .swiper-container {
    overflow: visible;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide {
    width: calc(67% + 40px);
    margin-right: 40px;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide:last-child {
    margin-right: 0;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide .item {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide .item.font-white .text-wrap * {
    color: #fff;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide .item:hover .img img {
    transform: scale(1.1);
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide .item .img img {
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide .item .text-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    left: 0;
    bottom: 32px;
    padding: 0 24px;
    width: 100%;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide .item .text-wrap .title-text {
    font-size: 28px;
    font-family: "samsungsharpsans";
    line-height: 40px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
  }
  .portfolio .swiper-lists .swiper .swiper-container .swiper-slide .item .text-wrap .text {
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
  }
  .portfolio .swiper-lists .swiper .swiper-btn-wrap {
    padding-right: 0;
  }
  .portfolio .detail-content {
    margin: -32px 0 -20px;
  }
  .portfolio .detail-content .detail-title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 40px;
  }
  .portfolio .accordion-cont .content-box {
    padding: 60px 24px !important;
  }
  .portfolio .content-box {
    padding: 60px 24px;
  }
  .portfolio .content-box .item-wrap {
    gap: 32px;
  }
  .portfolio .content-box .item-wrap dt {
    max-width: 278px;
    height: 120px;
  }
  .portfolio .content-box .item-wrap dt img {
    max-height: 120px;
  }
  .portfolio .content-box .item-wrap dd {
    gap: 24px 16px;
    flex-wrap: wrap;
    width: 100%;
  }
  .portfolio .content-box .item-wrap dd .item {
    min-width: 98px;
    max-width: 98px;
  }
  .portfolio .content-box .item-wrap dd .item:nth-child(1) {
    width: 100%;
    max-width: 100%;
  }
  .portfolio .content-box .item-wrap dd .item:nth-child(2), .portfolio .content-box .item-wrap dd .item:nth-child(3) {
    max-width: 50%;
    flex: 1;
  }
  .portfolio .content-box .item-wrap dd .item strong {
    padding: 0 0 6px;
    font-size: 14px;
    line-height: 22px;
  }
  .portfolio .content-box .item-wrap dd .item span {
    font-size: 18px;
    line-height: 26px;
    word-break: break-word;
  }
  .portfolio .content-box .text {
    font-size: 20px;
    line-height: 28px;
    margin-top: 32px;
  }
  .portfolio .content-box .btn-wrap {
    margin-top: 60px;
  }
  .portfolio .content-box .btn-wrap .btn-link {
    height: auto;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 24px;
  }
  .portfolio .project {
    margin-top: 80px;
  }
  .portfolio .filter-wrap {
    display: none;
  }
  .portfolio .project-lists {
    margin-top: 20px;
  }
  .portfolio .project-lists .lists-header {
    display: none;
  }
  .port-text {
    margin-top: 0;
    padding-top: 20px;
    text-align: center;
  }
  .port-text span {
    padding-left: 10px;
    font-size: 11px;
  }
  .port-text span:before {
    width: 2px;
    height: 2px;
    margin-top: -1px;
  }
  .lists-body {
    margin-top: 0;
  }
  .lists-body .accordion {
    gap: 12px;
  }
  .lists-body .accordion-header {
    padding: 18px 60px 18px 24px;
  }
  .lists-body .accordion-header .header-item-wrap .header-title {
    font-size: 16px;
    line-height: 30px;
    max-width: 100%;
  }
  .lists-body .accordion-header .header-item {
    display: none;
  }
  .lists-body .accordion-btn::after {
    right: 24px;
    width: 28px;
    height: 28px;
    background-image: url(/assets/images/mo_icon_accordion_arrow3.png);
  }
  /* Company */
  .lists-body.lists-body-company {
    padding: 60px 0;
  }
  .lists-body.lists-body-company .accordion-header .header-item-wrap .header-title .num, .lists-body.lists-body-company .accordion-header .header-item-wrap .header-title .txt {
    font-size: 16px;
    line-height: 30px;
  }
  .lists-body.lists-body-company .accordion-cont {
    padding: 48px 24px;
  }
  .company-content .company-section01 {
    gap: 60px;
  }
  .company-content .company-section01 .section01-01 {
    padding: 60px 0 0;
  }
  .company-content .company-section01 .section01-01 .cont-area {
    flex-direction: column;
  }
  .company-content .company-section01 .section01-01 .cont-area .scroll-up-animate {
    width: 100%;
    height: auto;
  }
  .company-content .company-section01 .section01-01 .cont-area .scroll-up-animate img {
    transform: none;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area .main-about-title {
    font-size: 28px;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area .main-about-title .mo_cont {
    display: block;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area p span {
    font-size: 18px;
    line-height: 1.55;
  }
  .company-content .company-section01 .section01-02 {
    padding-top: 60px;
  }
  .company-content .company-section02 {
    padding: 100px 0;
  }
  .company-content .company-section02 .item-wrap {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .company-content .company-section02 .item-wrap .item {
    display: flex;
    flex-basis: calc(50% - 12px);
    flex-direction: column;
    gap: 14px;
  }
  .company-content .company-section02 .item-wrap .item .tit {
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section02 .item-wrap .item .txt {
    font-size: 14px;
  }
  .company-content .company-section02 .item-wrap .item .txt br {
    display: none;
  }
  .company-content .company-section02 .item-wrap .ico {
    width: 140px;
    height: 140px;
  }
  .company-content .company-section02 .item-wrap .ico img {
    width: 100%;
  }
  .company-content .company-section02 .item-wrap .ico.ico01 .img01 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 77px;
  }
  .company-content .company-section02 .item-wrap .ico.ico01 .img02 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
  }
  .company-content .company-section02 .item-wrap .ico.ico01 .img03 {
    left: 19px;
    top: 49px;
    width: 17px;
  }
  .company-content .company-section02 .item-wrap .ico.ico01 .img04 {
    left: 103px;
    top: 49px;
    width: 17px;
  }
  .company-content .company-section02 .item-wrap .ico.ico01 .img05 {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 42px;
  }
  .company-content .company-section02 .item-wrap .ico.ico01 .img06 {
    left: 50%;
    top: 104px;
    transform: translateX(-50%);
    width: 42px;
  }
  .company-content .company-section02 .item-wrap .ico.ico02 .img01 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
  }
  .company-content .company-section02 .item-wrap .ico.ico02 .img02 {
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    width: 100px;
  }
  .company-content .company-section02 .item-wrap .ico.ico02 .img03 {
    left: 10px;
    top: 70px;
    width: 27px;
  }
  .company-content .company-section02 .item-wrap .ico.ico02 .img04 {
    left: 46px;
    top: 24px;
    width: 82px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img01 {
    left: 24px;
    top: 40px;
    width: 70px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img02 {
    left: 94px;
    top: 77px;
    width: 25px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img03 {
    left: 79px;
    top: 28px;
    width: 25px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img04 {
    left: 37px;
    top: 53px;
    width: 23px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img05 {
    left: 54px;
    top: 85px;
    width: 28px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img06 {
    left: 7px;
    top: 85px;
    width: 28px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img07 {
    left: 81px;
    top: 66px;
    width: 20px;
  }
  .company-content .company-section02 .item-wrap .ico.ico03 .img08 {
    left: 106px;
    top: 77px;
    width: 19px;
  }
  .company-content .company-section02 .item-wrap .ico.ico04 .img01 {
    left: 54px;
    top: 15px;
    width: 60px;
  }
  .company-content .company-section02 .item-wrap .ico.ico04 .img02 {
    left: 20px;
    top: 63px;
    width: 51px;
  }
  .company-content .company-section02 .item-wrap .ico.ico04 .img03 {
    left: 71px;
    top: 77px;
    width: 48px;
  }
  .company-content .company-section02 .item-wrap .ico.ico04 .img04 {
    left: 71px;
    top: 77px;
    width: 48px;
  }
  .company-content .company-section02 .item-wrap .ico.ico05 .img01 {
    left: 32px;
    top: 23px;
    width: 77px;
  }
  .company-content .company-section02 .item-wrap .ico.ico05 .img02 {
    left: 74px;
    top: 23px;
    width: 52px;
  }
  .company-content .company-section02 .item-wrap .ico.ico05 .img03 {
    left: 15px;
    top: 71px;
    width: 46px;
  }
  .company-content .company-section02 .item-wrap .ico.ico06 .img01 {
    left: 73px;
    top: 25px;
    width: 57px;
  }
  .company-content .company-section02 .item-wrap .ico.ico06 .img02 {
    left: 9px;
    top: 28px;
    width: 49px;
  }
  .company-content .company-section02 .item-wrap .ico.ico06 .img03 {
    left: 13px;
    top: 48px;
    width: 54px;
  }
  .company-content .company-section02 .item-wrap .ico.ico06 .img04 {
    left: 31px;
    top: 63px;
    width: 45px;
  }
  .company-content .company-section02 .item-wrap .ico.ico06 .img05 {
    left: 13px;
    top: 78px;
    width: 54px;
  }
  .company-content .company-section02 .item-wrap .ico.ico06 .img06 {
    left: 9px;
    top: 92px;
    width: 49px;
  }
  .company-content .company-section02 .item-wrap .text-wrap {
    gap: 14px;
  }
  .company-content .company-section02 .item-wrap .text-wrap .title-text {
    text-align: center;
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section02 .item-wrap .text-wrap .text {
    display: none;
  }
  .company-content .company-section03 {
    padding: 100px 0;
  }
  .company-content .company-section03 .history-area .swiper .swiper-container {
    overflow: visible;
  }
  .company-content .company-section03 .history-area .swiper .swiper-container .swiper-slide {
    width: calc(77% + 40px);
    padding-right: 40px;
  }
  .company-content .company-section03 .history-area .swiper-btn-inner {
    margin: 40px auto 0;
  }
  .company-content .company-section03 .history-area .swiper-btn-inner .swiper-btn-wrap {
    gap: 16px;
  }
  .company-content .company-section03 .history-area .swiper-btn-inner .swiper-year-point {
    padding: 0 48px;
  }
  .company-content .company-section03 .history-area .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .company-content .company-section03 .history-area .inner .year-text {
    font-size: 84px;
    line-height: 104px;
  }
  .company-content .company-section03 .history-area .inner .bl-list {
    gap: 8px;
  }
  .company-content .company-section03 .history-area .inner .bl-list > li {
    font-size: 18px;
    line-height: 26px;
  }
  .company-content .company-section04 .section04-01 .item-wrap {
    gap: 60px;
  }
  .company-content .company-section04 .section04-01 .item-wrap .item {
    gap: 24px;
    flex-direction: column;
  }
  .company-content .company-section04 .section04-01 .item-wrap .item .img {
    width: 100%;
  }
  .company-content .company-section04 .section04-01 .txt-section04-01 {
    font-size: 18px;
    line-height: 28px;
  }
  .company-content .company-section04 .title-text {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 40px;
  }
  .company-content .company-section04 .section04-02 .item-wrap .top .text-wrap {
    gap: 6px;
  }
  .company-content .company-section04 .section04-02 .item-wrap .top .text-wrap .sub-text {
    font-size: 14px;
    line-height: 22px;
  }
  .company-content .company-section04 .section04-02 .item-wrap .top .text-wrap .sub-title {
    font-size: 24px;
    line-height: 36px;
  }
  .company-content .company-section04 .section04-03 .item-wrap {
    gap: 60px;
    flex-direction: column;
  }
  .company-content .company-section04 .section04-03 .item-wrap .item {
    gap: 24px;
  }
  .company-content .company-section04 .section04-04 .item-wrap {
    gap: 60px;
  }
  .company-content .company-section04 .section04-04 .item-wrap .item {
    flex-direction: column;
  }
  .company-content .company-section04 .section04-04 .item-wrap .item .img {
    width: 100%;
  }
  .company-content .company-section04 .section04-05 .top-text-wrap .text {
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section04 .section04-05 .infor-graph {
    flex-direction: column;
    margin-top: 48px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap {
    width: 304px;
    padding: 60px 0 10px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap::before {
    width: 200px;
    height: 210px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .circle-wrap .item {
    width: 120px;
    height: 120px;
    font-size: 18px;
  }
  .company-content .company-section04 .section04-05 .infor-graph .arrow {
    width: 60px;
    min-width: 60px;
    transform: rotate(90deg);
  }
  .company-content .company-section04 .section04-05 .infor-graph .round-box {
    gap: 10px;
    width: 312px;
    margin: 0 auto;
    border: 1px dashed #004098;
    border-radius: 104px;
    padding: 31px 0;
  }
  .company-content .company-section04 .section04-05 .infor-graph .round-box .item {
    font-size: 18px;
    border: 1px solid #004098;
    border-radius: 104px;
    padding: 14px;
    max-width: 208px;
    margin: 0 auto;
  }
  .company-content .company-section04 .section04-05 .item-inner {
    margin-top: 60px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item {
    flex-direction: column;
    gap: 12px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item .img {
    width: 284px;
  }
  .company-content .company-section04 .section04-05 .item-inner .item .text-wrap .text {
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section04 .section04-06 {
    margin-bottom: -200px;
    padding-bottom: 100px !important;
  }
  .company-content .company-section04 .section04-06 .report-area {
    margin-top: 0;
  }
  :has(.tab-wrap.menu-fixed) .company-content {
    padding-top: 0;
  }
  :has(.select-wrap.menu-fixed) .company-content {
    padding-top: 0;
  }
  .company-content .company-acct-list > li {
    margin-top: 32px;
  }
  .company-content .company-acct-list > li .tit-sub {
    font-size: 12px;
  }
  .company-content .company-acct-list > li .tit-main {
    font-size: 16px;
  }
  .company-content .company-acct-list > li .bl-list {
    gap: 8px;
    margin-top: 16px;
  }
  .company-content .company-acct-list > li .bl-list li {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
  .company-content .company-acct-list > li .bl-list li:before {
    top: 8px;
  }
  .rolling-text-area .item-inner .point-text {
    font-size: 36px;
    line-height: normal;
  }
  .rolling-text-area .item-inner .sub-text {
    font-size: 14px;
    line-height: 22px;
  }
  .rolling-text-area .item-inner .item {
    gap: 2px;
  }
}
@media only screen and (max-width: 375px) {
  .mo-tab-view .menu-fixed {
    top: 48px;
  }
}
@media only screen and (max-width: 360px) {
  .company-content .company-acct-list > li .tit-main {
    font-size: 14px;
    line-height: 24px;
  }
  .company-content .company-acct-list > li .bl-list li {
    padding-left: 14px;
    font-size: 14px !important;
    line-height: 24px !important;
  }
  .company-content .company-acct-list > li .bl-list li:before {
    top: 10px;
    width: 4px;
    height: 4px;
  }
  .company-content .company-section01 {
    padding-bottom: 80px;
  }
  .company-content .company-section01 .section01-01 {
    gap: 50px;
    padding-top: 60px;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area .main-about-title {
    font-size: 24px;
    line-height: 1.33;
  }
  .company-content .company-section01 .section01-01 .cont-area .text-area p span {
    font-size: 16px;
    line-height: 1.5;
  }
  .company-content .company-section01 .section01-02 {
    padding-top: 40px;
  }
  .company-content .company-section02 {
    padding: 80px 0 40px;
  }
  .company-content .company-section02 .item-wrap {
    gap: 40px 20px;
  }
  .company-content .company-section02 .item-wrap .item {
    gap: 8px;
  }
  .company-content .company-section02 .item-wrap .item .tit {
    font-size: 16px;
    line-height: 22px;
  }
  .company-content .company-section02 .item-wrap .item .txt {
    font-size: 12px;
    line-height: 1.5;
  }
  .company-content .company-section03 {
    padding: 80px 0;
  }
  .company-content .company-section04 [class^=section04-] {
    padding: 80px 0;
  }
  .company-content .company-section04 .section04-01 .txt-section04-01 {
    font-size: 16px;
    line-height: 24px;
  }
  .company-content .company-section04 .title-text {
    font-size: 24px;
    line-height: 32px;
  }
  .company-content .company-section04 .section04-06 .report-area .text-wrap .text1 {
    font-size: 20px;
    line-height: 28px;
  }
  .company-content .company-section04 .section04-06 .report-area .text-wrap .text2 {
    font-size: 14px;
    line-height: 22px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area {
    padding: 40px 20px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl {
    gap: 9px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl dt {
    font-size: 16px;
    line-height: 22px;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl dt:before {
    width: 22px;
    height: 22px;
    background-size: 22px auto;
  }
  .company-content .company-section04 .section04-06 .report-area .email-area dl dd a {
    font-size: 14px;
    line-height: 20px;
  }
  .rolling-text-area .item-inner .point-text {
    font-size: 30px;
  }
  .rolling-text-area .item-inner .sub-text {
    font-size: 12px;
  }
  .lists-body .accordion-header .header-item-wrap .header-title {
    align-items: flex-start;
  }
  .lists-body .accordion-header .header-item-wrap .header-title .num {
    line-height: 24px !important;
  }
  .lists-body .accordion-header .header-item-wrap .header-title .txt {
    line-height: 24px !important;
  }
  .team-content .lists {
    margin-top: 60px;
  }
  .team-content .lists > li .item .team-name {
    font-size: 10px;
  }
}
@media only screen and (max-width: 320px) {
  .company-content .company-section01 {
    gap: 48px;
  }
}
:lang(en) .company-content .company-section03 {
  margin-bottom: -200px;
  height: calc(100vh - 324px);
}
:lang(en) .company-content .company-section01 .section01-01 .cont-area .text-area p span {
  letter-spacing: -0.007em;
}
:lang(en) .team-content .lists > li .item .team-name {
  font-size: 16px;
}
:lang(en) .team-content .lists > li .item .person-name {
  font-size: 22px;
}

@media only screen and (max-width: 768px) {
  :lang(en) .company-content .company-section03 {
    margin-bottom: -100px;
    height: calc(100vh - 276px);
  }
  :lang(en) .team-content .lists > li .item .team-name {
    font-size: 10px;
  }
  :lang(en) .team-content .lists > li .item .person-name {
    font-size: 12px;
  }
}