.tab-wrap {
  max-width: 100%;
  font-family:'Pretendard'
}
.tab-menu {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
}
.tab-menu a {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  text-decoration: none;
  color: #333;
  border-right: 1px solid #ccc;
  background: #fff; font-size:15px;
}
.tab-menu a:last-child {
  border-right: none;
}
.tab-menu a.active {
  background: #06204f;
  color: #fff;
}
.tab-content {
  display: none;
  padding: 40px 0;
  font-size: 14px;
  line-height: 1.6;
}
.tab-content.active {
  display: block;
}

@media (max-width: 600px) {
  .tab-menu a {
    flex: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}