.tab_name {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 960px;
  margin: 0 auto; 
  /* add */
  position: relative;
}
 /* add */
/* .tab_name[data-active="news"] {
  border-bottom: 4px solid #e94615;
}

.tab_name[data-active="press"] {
  border-bottom: 4px solid #0075b5;
} */

.tab_name li {
  padding: 13px 20px 17px;
  cursor: pointer;
  list-style: none;
  background-color: #cbcbcb;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #5C5C5C;
  margin-bottom: 5px;
}

.tab_name li.tab_active.tab_color_news {
    background: #FFE33F;
    color: #000;
    cursor: auto;
    /* add */
    margin-bottom: 0px;
}
.tab_name li.tab_active.tab_color_news::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: 4px solid #FFE33F;
  left: 0;
  bottom: -4px;
}
.tab_name li.tab_active.tab_color_press {
    background: #FFE33F;
    color: #000;
    cursor: auto;
    /* add */
    margin-bottom: 0px;
}
.tab_name li.tab_active.tab_color_press::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: 4px solid #FFE33F;
  left: 0;
  bottom: -4px;
}


.tab_name li img.tab_active {
  display: none;
}

.tab_name li img.tab_no_active {
  display: block;
}

.tab_name li.tab_active img.tab_active {
  display: block;
}

.tab_name li.tab_active img.tab_no_active {
  display: none;
}

.news_or_press ul {
  display: none;
}

.news_or_press ul.display_news_or_press {
  display: flex;
}

.tab_top_left {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 5px 5px 0 0;
  width: 49.5%;
  margin: 0 4px 0 0;
}

.tab_top_right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 5px 5px 0 0;
  width: 49.5%;
  margin: 0 0 0 4px;
}

@media screen and (max-width: 750px) {
	.tab_name {
		width: 89.333%;
		margin: 0 auto;
	}
	.tab_name li {
        padding: 10px 20px;
        font-size: 12px;
	}
	.tab_name li img {
		height: 10.5px;
	}
}
