/* タブ */

.tab {
  max-width: 800px;
  margin: 0 auto;
}

/* タブメニュー */
.tab__menu {
  display: flex;
  align-items: flex-end; /* メニューを下揃え */
  justify-content: center;
  min-height: 50px; /* メニュー切替時にタブがズレないように */
  padding: 0;
  margin: 0;
}

.tab__menu-item {
  position: relative;
  display: inline-block;
  color: #6A707C;
  background-color: #EEF0F4;
  border-left: 2px solid #fff;
  list-style: none;
  margin-bottom: 15px;
  padding: 1em;
  width: 100%;
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
  cursor: pointer;
}

/* is-activeがついている時のスタイル */
.tab__menu-item.is-active {
  background-color: #E77949;
  color: #fff;
}

.tab__menu-item.is-active::before {
  content: "";
  position: absolute;
  border: solid 8px transparent;
  border-top: solid 8px #E77949;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* タブパネル */
.tab__panel {
 width: 100%;
}

.tab__panel-box {
  display: none;
  min-width: 300px;
  width: 50%;
  margin: 0 auto;
}

/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
  display: block;
}