﻿@charset "UTF-8";
/* ============================================
* common
* ============================================ */
.initial-hidden {
  display: none;
}
.sr_only {
  position: absolute;
  top: 1px;
  left: 1px;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  clip: rect(0 0 0 0);
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
}
/* ============================================
* layout
* ============================================ */
html,
body {
  height: 100%;
}
.hide {
  display: none;
}
.wrapper {
  width: 100%;
  height: 100%;
}
.inner {
  max-width: 1440px;
  padding: 0 90px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1279px) {
  .inner {
    padding: 0 47px;
  }
}
@media screen and (max-width: 1023px) {
  .inner {
    padding: 0 24px;
  }
  .section.team .inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
}
/* ============================================
* header
* ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  padding: 21px 0;
  z-index: 99;
  transition: 0.2s;
}
.header.is-white {
  transform: translateY(-72px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  padding: 0 90px;
  margin: 0 auto;
}
.header .logo {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  background: url("logo-title.svg") no-repeat center / cover;
  cursor: pointer;
}

.header.is-white .logo {
  background: url("") no-repeat center / cover;
}
.header .news {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
.header .logo a {
  display: block;
  width: 116px;
  height: 28px;
}
.menu {
  display: inline-block;
  margin: 2px 0 2px 108px;
}
.menu li {
  display: inline-block;
}
.menu li + li {
  margin-left: 48px;
}
.menu li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.header.is-white .menu li a {
  color: rgba(0, 0, 0, 0.8);
}
.header .left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header .right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lang li {
  position: relative;
  display: inline-block;
  height: 24px;
  padding: 1px 0;
}
.lang li.is-active a {
  color: #fff;
}
.header.is-white .lang li.is-active a {
  color: #000;
}
.lang li + li {
  margin-left: 6px;
  padding-left: 6px;
}
.lang li:last-of-type:after {
  content: '';
  position: absolute;
  top: 8px;
  left: -3px;
  width: 1px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 100;
}
.header.is-white .lang li:last-of-type:after {
  background-color: rgba(0, 0, 0, 0.3);
}
.lang li a {
  display: inline-block;
  margin: 4px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
}
.header.is-white .lang li a {
  color: rgba(0, 0, 0, 0.3);
}
.menu_btn {
  display: none;
}
.menu_btn button {
  width: 24px;
  height: 24px;
  background-image: url("ico-menu.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.header.is-white .menu_btn button {
  background-image: url("");
}
@media screen and (max-width: 1279px) {
  .header_inner {
    padding: 0 47px;
  }
}
@media screen and (max-width: 1023px) {
  .header {
    height: 60px;
    padding: 16px 0;
  }
  .header_inner {
    padding: 0 24px 0 24px;
  }
  .menu {
    display: none;
  }
  .lang {
    display: none;
  }
  .menu_btn {
    display: inline-block;
  }

  .header .news {
    display: none;
  }
}
@media screen and (max-width: 767px) {
}

/* ============================================
* side menu
* ============================================ */
.side_menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  transition: all 0.4s;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.side_menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s;
}
.side_menu_top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0;
}
.side_menu_top .logo a {
  display: inline-block;
  width: 116px;
  height: 28px;
  background-image: url("logo-title.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 0;
}
.side_menu_top .close {
  width: 24px;
  height: 24px;
  background-image: url("ico-close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.side_menu_cont {
  display: inline-block;
  width: 100%;
  height: calc(100% - 62px);
  overflow-y: auto;
}
.side_menu_list {
  padding: 16px 0;
}
.side_menu_link {
  display: inline-block;
  width: 100%;
  padding: 16px 28px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
#side_menu_news_link {
  display: inline-block;
  width: 100%;
  padding: 16px 28px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
.side_menu_link.lang {
  position: relative;
}
.side_menu_link.lang.is-active {
  font-weight: 500;
  color: #fff;
}
.side_menu_link.lang:after {
  content: '';
  position: absolute;
  top: 26px;
  right: 35px;
  width: 10px;
  height: 5px;
  background-image: url("ico-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.side_menu_list .lang.is-active:after {
  transform: rotate(180deg);
}
.side_menu_2depth {
  display: none;
}
.side_menu_2depth.is-active {
  display: block;
}
.side_menu_2depth .link {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 28px 16px 44px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.side_menu_2depth .link.is-active {
  font-weight: 500;
  color: #fff;
}
.side_menu_2depth .link.is-active:after {
  content: '';
  position: absolute;
  top: 16px;
  right: 28px;
  width: 24px;
  height: 24px;
  background-image: url("ico-check.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* ============================================
* hero
* ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 1024px;
}
.hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("img-hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: transform;
}
.hero_cont {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hero_cont .title {
  display: flex;
  gap: 16px;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.01em;
  color: #fff;
}
.wrapper.en .hero_cont .title {
  max-width: 720px;
}
.hero_cont .desc {
  max-width: 600px;
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.6);
}
.hero_cont .desc_mobile {
  display: none;
}
.wrapper.en .hero_cont .desc {
  max-width: 720px;
}
.hero-dim {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-blend-mode: overlay;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
}
@media screen and (max-width: 1439px) {
  .hero_cont {
    padding-left: 28px;
  }
}
@media screen and (max-width: 1279px) {
  .hero_cont {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .hero_bg {
    background-image: url("img-hero-mo.png");
  }
  .hero_cont {
    top: auto;
    bottom: 60px;
    left: 28px;
    transform: none;
    padding-left: 0;
    padding-right: 28px;
  }
  .hero_cont .desc {
    display: none;
  }
  .hero_cont .title {
    flex-direction: column;
    gap: 0px;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.01em;
  }

  .hero_cont .desc_mobile {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
  }
  .wrapper.en .hero_cont .desc {
    letter-spacing: normal;
  }
}
/* ============================================
* section
* ============================================ */
.section {
  background-color: #f5f6f7;
}
.section:last-of-type {
  padding-bottom: 120px;
}
.section.vision {
  background-color: transparent;
}
.section.partner,
.section.team {
  padding-top: 96px;
}
.section.team {
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .section.partner,
  .section.team {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 0;
  }
}
/* ============================================
* section : business
* ============================================ */
.business_wrap {
  display: flex;
  justify-content: center;
  padding: 100px 0;
  height: 720px;
}
.business_item {
  opacity: 0;
  display: inline-block;
  width: calc(60% - 24px);
  height: 100%;
  margin: 0 10px;
  box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  background-color: #fff;
  text-align: center;
  transform: translateY(50px);
}
.business_img {
  padding-top: 30px;
  height: 230px;
}
.business_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.9);
}
.business_desc {
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.9);
}
.wrapper.en .business_desc {
  letter-spacing: normal;
}
.business_link {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #191919;
  box-sizing: border-box;
  border: 1px solid #191919;
  padding: 8px 20px;
  text-transform: uppercase;
}

.business_link > span::after {
  content: 'arrow_outward';
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  margin-left: 8px;
  color: #191919;
  transform: translateY(3px);
}

@media screen and (max-width: 1279px) {
  .business_wrap {
    padding: 72px 0;
  }
  .business_link {
    bottom: 48px;
  }
}
@media screen and (max-width: 1023px) {
  .business_wrap {
    padding: 40px 0;
    margin: 0 -8px;
  }
  .business_item {
    /* width: calc(33.333% - 16px); */
    margin: 0 8px;
    padding: 0 24px 20px 24px;
  }
  .business_title {
    font-size: 20px;
    line-height: 32px;
  }
  .business_img {
    /* height: auto; */
  }
}
@media screen and (max-width: 767px) {
  .business_wrap {
    display: block;
    padding: 32px 0 32px 0;
    margin: 0;
    height: auto;
  }
  .business_item {
    width: 100%;
    margin: 0;
    padding: 0 32px 20px 32px;
  }
  .business_item + .business_item {
    margin-top: 24px;
  }

  .business_img {
    height: auto;
  }

  .business_link {
    bottom: 40px;
  }
  #business_mobile {
    display: none;
  }
}
/* ============================================
* section : news
* ============================================ */
.news_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_header > h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: rgba(0, 0, 0, 0.9);
}
.news_header > a {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 1);
  transition: color 0.3s ease;
  cursor: pointer;
}
.news_header > a:hover {
  color: rgba(0, 0, 0, 0.3);
}
.news_header > a:hover::after {
  color: rgba(0, 0, 0, 0.3);
}
.news_header > a::after {
  content: '\f105'; /* 화살표 아이콘 추가 */
  font-family: 'FontAwesome';
  color: rgba(0, 0, 0, 1);
  margin-left: 8px;
  transition: color 0.3s ease;
}
.news_list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 0px 120px 0px;
}
.news_item {
  display: grid;
  justify-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  height: 400px;
  padding: 20px 16px;
  box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  background-color: #fff;
  text-align: left;
}
.news_img {
  width: 100%;
  max-width: 400px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
}
.news_info {
  width: 100%;
  max-width: 360px;
  margin-top: 16px;
  padding-left: 10px;
}
#news_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  height: 38px;
  color: #191919;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 표시할 줄 수 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
#news_description {
  height: 40px;
  margin-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #595959;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 표시할 줄 수 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.news_footer {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 4px;
  margin-top: 14px;
}
.news_footer span {
  font-weight: 400;
  font-size: 12px;
  color: #595959;
}
#news_separate {
  color: #d9d9d9;
}
#news_text {
  color: #014475;
}

@media screen and (max-width: 1400px) {
  .news_list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media screen and (max-width: 840px) {
  .news_img {
    height: 140px;
    max-width: 230px;
  }
  #news_list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .news_item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 80%;
    height: 320px;
  }

  .news_info {
    width: 100%;
    max-width: 240px;
  }

  #news_list::-webkit-scrollbar {
    display: none;
  }
}

/* ============================================
* section : vision
* ============================================ */
.vision_wrap {
  position: relative;
  width: 100vw;
  height: 750px;
  max-height: 870px;
  overflow: hidden;
  /* background: linear-gradient(180deg, #6a6e77, #f4f4f4 45%, #f4f4f4); */
}
/* .vision_wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #0e0e0e 5%, rgba(14, 14, 14, 0) 60%);
  opacity: 0.7;
  z-index: 2;
} */
.vision_bg {
  /* max-width: 1440px; */
  /* max-height: 870px; */
  /* width: 100%; */
  height: 750px;
  background-image: url("vision_background_9.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}
.vision_bg.is-mobile {
  display: none;
  position: fixed;
  top: 100%;
  letter-spacing: 0;
}
.vision_bg.is-mobile.is-active {
  top: 0;
}
.vision_swiper {
  position: absolute;
  display: block;
  /* left: 33%; */
  top: -60%;
  /* transform: tanslateX(-50%); */
  width: 100%;
  max-width: 924px;
  padding: 0 48px 0 48px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  z-index: 4;
}
.swiper_mobile {
  display: none;
}
.vision_info {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translate(-50%, -10%);
  width: 100%;
  max-width: 2000px;
  padding: 0 48px 0 48px;
  text-align: center;
  z-index: 3;
}
.vision_title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120px;
  letter-spacing: -0.02em;
  color: #fff;
}
.vision_desc {
  display: inline;
  max-width: 968px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1023px) {
  .vision_info {
    max-width: 796px;
  }
  .vision_title {
    font-size: 36px;
    line-height: 120px;
    text-align: center;
    letter-spacing: -0.02em;
  }
  .vision_desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 767px) {
  .vision .inner {
    padding: 0;
  }
  .vision_wrap {
    border-radius: 0;
    height: 600px;
  }
  .vision_wrap:after {
    width: 100%;
    border-radius: 0;
  }
  .vision_bg {
    width: 100%;
    height: 100%;
    background-image: url("vision_background_mobile.png");
    background-position: bottom;
  }
  .vision_bg.is-mobile {
    display: block;
    background-attachment: inherit;
  }
  .vision_info {
    top: 48px;
    padding: 0 20px;
    max-width: 604px;
  }
  .vision_swiper {
    top: 35%;
  }
  .vision_title {
    font-size: 28px;
    line-height: 80px;
    letter-spacing: -0.02em;
  }
  .vision_desc {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.01em;
  }
  .swiper_mobile {
    display: block;
  }
  .swiper {
    display: none;
  }
}

/* ============================================
* section : partner
* ============================================ */
.partner_wrap {
  text-align: center;
}
.partner_title {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 36px;
  line-height: 72px;
  letter-spacing: -0.02em;
  color: #191919;
}
#logo-itcen {
  width: 76%; 
}
#logo-secucen{
  width: 56%; 
}
#logo-greenX{
  width: 43.5%; 
}
.partner_list {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.partner_item {
  opacity: 0;
  display: inline-block;
  width: calc(25% - 24px);
  margin: 12px;
  padding: 8px 8px;
  background-color: #fff;
  box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  font-size: 0;
  transform: translateY(50%);
  transition: 0.3s;
}
.partner_item:hover {
  box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.15);
}
.partner_item.is-active {
  opacity: 1;
  transform: translateY(0);
}
.partner_item img {
  width: 100%;
}
#logo-digital {
  width: 160px;
  height: 80px;
  scale: 0.8;
}
@media screen and (max-width: 1279px) {
  .partner_item {
    width: calc(33.333% - 24px);
  }
}
@media screen and (max-width: 1023px) {
  .partner_title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 44px;
  }
  .partner_list {
    margin: -8px;
  }
  .partner_item {
    width: calc(33.333% - 16px);
    margin: 8px;
    padding: 6.33px 3.18px;
    border-radius: 8px;
  }
  #logo-digital {
    width: 160px;
    height: 66px;
  }
}
@media screen and (max-width: 546px) {
  .partner_item {
    width: calc(50% - 16px);
    padding: 4.33px 2.17px;
  }

  .vision_swiper {
    top: 45%;
  }
  #logo-digital {
    width: 80px;
    height: 45px;
  }
}
@media screen and (max-width: 376px) {
  .vision_swiper {
    top: 43%;
  }
}
/* ============================================
* section : team
* ============================================ */
.team_wrap {
  position: relative;
  text-align: center;
}
.team_title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 56px;
  line-height: 72px;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.9);
}
.team_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
/* .team_list.swiper-container {
  overflow: inherit;
  margin: 0 64px;
} */
.team_list:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 110%;
  background-color: #f5f6f7;
  z-index: 10;
}
.team_list:after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 110%;
  background-color: #f5f6f7;
  z-index: 10;
}
.team_item {
  opacity: 0;
  transform: translateY(50px);
  text-align: center;
}
.team_img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 200px;
  overflow: hidden;
}
.team_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team_info {
  margin-top: 16px;
}
.team_name {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.7);
}
.team_position {
  margin-top: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
/* .team_list .swiper-button-next {
  right: -60px;
  background-image: url(../images/ico-slide-arrow.svg);
  background-size: 15.41px auto;
  transform: rotate(180deg);
  z-index: 20;
} */
/* .team_list .swiper-button-prev {
  left: -60px;
  background-image: url(../images/ico-slide-arrow.svg);
  background-size: 15.41px auto;
  z-index: 20; */
/* } */
.team_name_mo {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 52px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 16px;
  transition: all 0.4s;
  vertical-align: top;
}
.team_name_mo .name {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
}
.team_name_mo .position {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1279px) {
  /* .team_list.swiper-container {
    margin: 0 57px;
  } */
}
@media screen and (max-width: 1023px) {
  .team_wrap {
    padding-bottom: 72px;
  }
  .team_title {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.02em;
  }
  .team_item {
    width: 190px !important;
  }
  /* .team_item.swiper-slide .team_img {
    transition: all 0.4s;
    opacity: 0.3;
   } */
  /* .team_item.swiper-slide-active .team_img {
    opacity: 1;
  } */
  .team_info {
    display: none;
  }
  /* .team_list.swiper-container {
    margin: 0;
  } */
  /* .team_list .swiper-button-next {
    display: none;
  } */
  /* .team_list .swiper-button-prev {
    display: none;
  } */
  .team_name_mo.is-active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .section.team .inner {
    padding: 0;
  }
}
/* ============================================
* footer
* ============================================ */
.footer {
  padding: 18px 0 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f5f6f7;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer_l {
  display: inline-block;
}
.footer_l .logo {
  display: inline-block;
  width: 82px;
  vertical-align: bottom;
  cursor: pointer;
}
.footer_l .copyright {
  display: inline-block;
  margin-left: 48px;
  vertical-align: bottom;
}
.footer_l .copyright span {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}
.footer_l .copyright span + span {
  margin-left: 8px;
  padding-left: 8px;
}
.footer_l .copyright span + span:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 8px;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
}
.footer_r {
  float: right;
  vertical-align: middle;
}
.footer_r_inner {
  display: flex;
  align-items: center;
}
.footer_r .sns {
  font-size: 0;
}
.footer_r .sns a {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #c1c3c6;
  transition: 0.1s;
}
.footer_r .sns a + a {
  margin-left: 16px;
}
.footer_r .sns img {
  width: 100%;
}
.footer_r .site {
  position: relative;
  margin-left: 24px;
}
.site_btn {
  width: 132px;
  padding: 5px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
}
.site_btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 8px;
  height: 4px;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.site_list {
  display: none;
  position: absolute;
  bottom: 36px;
  left: 0;
  width: 132px;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background-color: #fff;
  z-index: 10;
}
.site_list.is-active {
  display: inline-block;
}
.site_link {
  display: inline-block;
  width: 100%;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
}
.site_link:hover {
  background: #eaedef;
}
@media screen and (max-width: 1023px) {
  .footer {
    padding: 24px 0 36px 0;
  }
  .footer .inner {
    display: block;
  }
  .footer_l .copyright {
    display: block;
    margin: 0;
    padding: 8px 0 0 0;
  }
  .footer_l .copyright span {
    display: block;
  }
  .footer_l .copyright span + span {
    margin-left: 0;
    padding-left: 0;
  }
  .footer_l .copyright span + span:after {
    content: none;
  }
  .footer_r {
    float: none;
    margin-top: 16px;
  }
  .footer_r_inner {
    display: block;
  }
  .footer_r .site {
    margin: 16px 0 0 0;
  }
  .footer_r .site {
    max-width: 327px;
  }
  .site_btn {
    width: 100%;
  }
  .site_btn:after {
    right: 14px;
  }
  .site_list {
    width: 100%;
  }
}
