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

/* 탭 스타일 */
.tab-item {
  width: calc(100%/4);
  border-bottom: 2px solid #537fca;
  background-color: #fff;
  box-sizing: border-box;
  line-height: 50px;
  height: 50px;
  font-size: 15px;
  text-align: center;
  color: #537fca;
  display: block;
  float: left;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0;
}

.tab_item:hover {
  opacity: 0.75;
}

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

/* 탭 컨텐츠 스타일 */
.tab-content {
  display: none;
  padding: 30px 0;
  clear: both;
  overflow: hidden;
}

.tab-content img {
  width: 100%;
}


/* 선택 된 탭 콘텐츠를 표시 */
#first:checked ~ #first-content,
#second:checked ~ #second-content,
#third:checked ~ #third-content,
#four:checked ~ #four-content {
  display: block;
}

/* 선택된 탭 스타일 */
.tabs input:checked + .tab-item {
  background-color: #537fca;
  color: #fff;
}