@charset "UTF-8";
/* CSS Document */
.tabBox .tabArea {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
 justify-content:center;
}
.tabBox .tabArea .one_tab {
  width: 5%;
  padding:0 3px; 
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.tabBox .tabArea .one_tab:hover {
  opacity: 0.7;
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 50px;
  transition-duration: 0.3s;
}
.tabBox .tabArea .one_tab .tab_inner {
  background-color:#61cbd6;
}
.tabBox .tabArea .one_tab.select .tab_inner {
  height:50px;
  opacity: 0.6;
}
.tabBox .tabArea.bottom {
position: absolute;
left: 0;
top: 1370px;
align-items: center;
}
.contents .tab_main {
  display: none;
  padding: 0;
  text-align: center;
  min-height: 280px;
  transition-duration: 0.3s;
}
.tab_main.is_show {
  display: block;
}
