.tab_wrap {
  padding-top: 3rem;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.tab_li{
    
}
/************* タブ *************/
.tab-container {
  display: flex;
  border-bottom: 3px double #2e2d2d
}
.tab {
  position: relative;
  padding: 1em;
  border-radius: 10px 10px 0 0;
  background-color: #ddd;
  transition: all .2s;
  cursor: pointer;
}
.tab:not(:last-of-type) {
  margin-right: 1em;
}
/* タブ現在値 */
.current {
  color: #eaeaea;
  background-color: #3972a7;
}
.current::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #28295e;
}
/************* メニュー *************/
.menu-box {
  width: 100%;
}
.menu {
  padding: 2em 1em;
  background-color: #eee;
  transition: all .2s;
  cursor: pointer;
}
