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

.tab__menu-item {
    list-style: none;
    width: 150px;
    padding: 8px 5px; /* メニューに高さを付ける */
    text-align: center;
    margin-right: 20px;
    border: #F77888 1px solid;
    border-radius: 1000px;
    background-color: #fcfcfc;
    cursor: pointer;
    transition: all .3s; /* アニメーション */
}

.tab__menu-item:last-of-type {
  margin-right: 0px;
}

/* is-activeがついている時のスタイル */
.tab__menu-item.is-active {
  background-color: #F77888;
  color: #fcfcfc;
  padding: 12px 5px;
}

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

.tab__panel-box {
  padding: 10px 30px;
}

.tab__panel-box001, .tab__panel-box002 {
  display: none;
}

/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
  /* 高さ820pxの中で中央揃え */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}