.tab-tidx-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 280px;
  color: white;
}

.tab-tidx-area .tab-idx {
  display: block;
  width: 140px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1.5px solid white;
  border-bottom: 1.5px solid white;
  border-left: 1.5px solid white;
  background-color: transparent;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.tab-tidx-area .tab-idx:last-child {
  border-right: 1.5px solid white;
}

.tab-tidx-area .tab-idx.tab-idx-selected {
  background-color: white;
  color: black;
}

.tab-cnt {
  display: none;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
          animation: fadeIn 1s ease 0s 1 normal;
}

.tab-cnt.inview {
  display: block;
}

@media screen and (max-width: 767px) {
  .tab-tidx-area {
    width: 100%;
  }
  .tab-tidx-area .tab-idx {
    width: 383.5px;
    height: 36px;
    line-height: 36px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=tab.css.map */