
:root {
  --tab-line: #f8f8f8; 
  --tab-active: var(--bs-primary);
}
.tabs {
  position: relative;
  display: flex;
  gap: 2px;
  margin-bottom: 6rem;
}
.tabs::before{
  position: absolute;
  content: '';
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--tab-active);
  z-index: 1;
}
.tab {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex: 1;
  text-align: center;
  padding: 12px 0;
  text-decoration: none;
  color: #7a7a7a;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: var(--tab-line);
  border: 2px solid var(--tab-line);
  transition: all 0.2s ease;
  cursor: pointer;
}
.tab:hover {
  color: #464646;
}
.tab.is-active {
  color: var(--tab-active);
  /* font-weight: 700; */
  background: #fff;
  border: 2px solid var(--tab-active);
  z-index: 2;
}
.tab.is-active::before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .tabs {
    margin-bottom: 2.5rem;
  }
  .tab {
    padding: 8px 0;
    font-size: 1.15rem;
  }
  .stab{
    font-size: 0.95rem !important;
  }
}



.box_gap{ margin-top: 50px; }
@media (max-width: 767px) {
  .box_gap{ margin-top: 20px; }
}
.org_wrap{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.org_wrap .group{
  display: none;
  flex-direction: column;
  gap: 2rem;
}
.org_wrap .group.active{
  display: flex;
}
.org_wrap .group .box{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.org_wrap .group .box_h{
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  margin-top: 2rem;
  width: 100%;
}
.org_wrap .group .box_h .tbox{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 26%;
}
.org_wrap .group .box_h .tbox .pic{
  width: 100%;
  overflow: hidden;
}
.org_wrap .group .box_h .tbox img{
  width: 100%;
  height: auto;
}
.org_wrap .group .box_h .tbox .t1{
  font-size: 2.5rem;
  font-weight:500;
  color: var(--bs-primary);
  line-height: 120%;
}
.org_wrap .group .box_h .tbox .t1 span{
  font-weight: 800;
}
.org_wrap .group .box_h .tbox .t2{
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bs-gray-600);
  line-height: 120%;
}
@media (max-width: 1100px) {
  .org_wrap .group .box_h{
    flex-direction: column;
    gap: 4rem;
    margin-top: 0;
  }
  .org_wrap .group .box_h .tbox{
    width: 100%;
  }
  .org_wrap .group .box_h .tbox .pic{
    height: 150px;
  }
  .org_wrap .group .box_h .tbox .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .org_wrap .group .box_h .tbox .t1{
    font-size: 1.8rem;
    padding-right: 3rem;
  }
  .org_wrap .group .box_h .tbox .t2{
    font-size: 1.15rem;
    padding-right: 3rem;
  }
}
.org_wrap .tt,
.org_wrap .tt_top{
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0;
}
.mem_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.mem_wrap .item{
  position: relative;
  width: calc(25% - 1.25rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  margin: 0;
  border: 1px solid var(--bs-white);
  border-radius: 1rem;
  box-shadow: 
    0 0px 5px rgba(0, 0, 0, 0.05),   /* 아주 가벼운 아래쪽 그림자 */
    0 0px 24px rgba(0, 0, 0, 0.08);  /* 넓게 퍼지는 그림자 */
  transition: all 0.2s ease-out;
}
.mem_wrap .item:hover{
  border: 1px solid rgba(var(--bs-primary-rgb),0.4);
  background-color: rgba(var(--bs-primary-rgb),0.04);
}
.mem_wrap .item .tt_top{
  position: absolute;
  top: -4.5rem;
  left: 0;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .mem_wrap .item.item_tt{
    margin-top: 8rem !important;
  }
  .org_wrap .tt,
  .org_wrap .tt_top{
    font-size: 1.6rem;
    font-weight: 600;
  }
}
.mem_wrap .item .pic{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background:  var(--bs-gray-100);
  border-radius: 50%;
  font-size: 4.0rem;
  overflow: hidden;
}
.mem_wrap .item .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mem_wrap .item .pic span{
  font-size: 3.0rem;
  color: var(--bs-gray-500);
}
.mem_wrap .item:hover .pic{
  background-color: rgba(var(--bs-primary-rgb),0.08);
}
.mem_wrap .item:hover .pic span{
  color: rgba(var(--bs-primary-rgb),0.4);
}
.mem_wrap .item .info{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.15rem;
  width: 100%;
  overflow: hidden;
}
.mem_wrap .item .name{
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
}
.mem_wrap .item .name2{
  flex-direction: column;
  gap: 0rem !important;
}
.mem_wrap .item .name span{
  font-size: 1.1rem;
  color: rgba(var(--bs-primary-rgb),0.8);
}
.mem_wrap .item .work{
  padding: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bs-gray-600);
  width: max-content;
  max-width: 100%;
}
.mem_wrap .item .cs{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.mem_wrap .item .tel,
.mem_wrap .item .email{
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: 'Roboto';
  font-size: 1rem;
  letter-spacing: -1px;
  color: var(--bs-gray-600);
  width: 100%;
}
.mem_wrap .item .tel{
  font-family: 'Jost';
  letter-spacing: 0;
}
.mem_wrap .item .tel span,
.mem_wrap .item .email span{
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(var(--bs-primary-rgb),0.6);
}
@media (max-width: 1200px) {
  .mem_wrap .item{
    width: calc(33.33% - 1.25rem);
  }
}
@media (max-width: 991.98px) {
  .mem_wrap .item{
    width: calc(50% - 1.25rem);
  }
}
@media (max-width: 767.98px) {
  .org_wrap .group{
    gap: 5rem;
  }
  .mem_wrap{
    flex-direction: column;
    gap: 1.5rem;
  }
  .mem_wrap .item{
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem 1rem;
  }
  .mem_wrap .item .pic{
    width: 60px;
    height: 60px;
  }
  .mem_wrap .item .info{
    width: 70%;
  }
  .mem_wrap .item .name{
    /* flex-direction: column;
    gap: 0rem !important; */
    font-size: 1.35rem;
  }
  .mem_wrap .item .work,
  .mem_wrap .item .tel,
  .mem_wrap .item .email{
    font-size: 1.0rem;
  }
}