/* 탭 전체 스타일 */
/*.tabs {*/
/*  padding-bottom: 40px;*/
/*  background-color: transparent;*/
/*  width: 100%;*/
/*  margin: 0 auto;}*/

/*!* 탭 스타일 *!*/
/*.tab_item {*/
/*  width: calc(100%/3);*/
/*  white-space: nowrap;*/
/*  height: 50px;*/
/*  border-top: 0;*/
/*  border-bottom: 3px solid #f8f8f8;*/
/*  background-color: transparent;*/
/*  line-height: 50px;*/
/*  font-size: 16px;*/
/*  text-align: center;*/
/*  color: #bfbfbf;*/
/*  display: block;*/
/*  float: left;*/
/*  text-align: center;*/
/*  font-weight: 700;*/
/*  transition: all 0.2s ease;*/
/*}*/
/*.tab_item:hover {*/
/*  opacity: 0.75;*/
/*}*/

/*!* 라디오 버튼 UI삭제*!*/
/*input[name="tab_item"] {*/
/*  display: none;*/
/*}*/

/*!* 탭 컨텐츠 스타일 *!*/
/*.tab_content {*/
/*  display: none;*/
/*  clear: both;*/
/*  overflow-x: hidden;*/
/*  padding: 0 20px;*/
/*}*/


/*!* 선택 된 탭 콘텐츠를 표시 *!*/
/*#service:checked ~ #service_content,*/
/*#privacy:checked ~ #privacy_content,*/
/*#marketing:checked ~ #marketing_content {*/
/*  display: block;*/
/*}*/

/*!* 선택된 탭 스타일 *!*/
/*.tabs input:checked + .tab_item {*/
/*  background-color: transparent;*/
/*  color: #262626;*/
/*  border-bottom: 3px solid #262626;*/
/*}*/

.title{
  font-weight: 800;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.02em;
  color: #212121;
  margin-top: 32px;
  margin-bottom: 24px;
  width: 100%;
  text-align: center;
}

.paragraph{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 44px;
}

.subtitle{
  font-weight: 800;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: -0.02em;
  color: #212121;
  text-align: left;
}

.content{
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #212121;
}

.content_itemTitle{
  margin-bottom: 8px;
}

.content_itemDetail{
  padding-left: 16px;
}

.content_footers{
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #212121;
  text-align: right;
}

.margin-b8{
  margin-bottom: 8px;
}

/* 신규 */
ul.tabs{
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width:none;
}
ul.tabs::-webkit-scrollbar{
  display: none;
}
ul.tabs li{
  background: none;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 3px solid #f8f8f8;
  font-size: 16px;
  text-align: center;
  color: #bfbfbf;
  font-weight: 700;
  transition: all 0.2s ease;
}
ul.tabs li.current{
  color: #262626;
  border-bottom: 3px solid #262626;
}
.tab-content{
    display: none;
    clear: both;
    overflow-x: hidden;
    padding: 0 20px;
}

.tab-content.current{
  display: inherit;
}
@media screen and (min-width: 451px) {
  ul.tabs li{
    width: calc(100%/3);
  }
}
