.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 {
  list-style: none;
  width: 200px;
  padding: 8px 5px; /* メニューに高さを付ける */
  text-align: center;
  margin-right: 6px;
  background-color: #cdcdcd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
  transition: all .3s; /* アニメーション */
}

.tab__menu-item:last-of-type {
  margin-right: 0px;
}

/* is-activeがついている時のスタイル */
.tab__menu-item.is-active {
  background-color: rgba(48, 172, 249);
  color: #ffffff;
  padding: 12px 5px;
}

/* タブパネル */
.tab__panel {
 width: 100%;
}

.tab__panel-box {
  min-height: 400px;
  padding: 10px 30px;
  border-radius: 10px;
}

.tab__panel-box001 {
/*  background-color: #009999; */
  background-color: rgb(155, 194, 151);
  display: none;
}

.tab__panel-box002 {
/*  background-color: #9999FF; */
  background-color: rgb(163, 204, 214);
  display: none;
}

.tab__panel-box003 {
/*  background-color: #FF99FF; */
  background-color: rgb(232, 213, 227);
  display: none;
}

/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
  display: block;
}

body{
  font-size: 16px;
  -webkit-appearance: none;
  border-radius: 0;
}
h2{
  font-size: 25px;
  font-weight: bold;
  -webkit-appearance: none;
  border-radius: 0;
}
textarea {
  width:100%;
  height:100px;
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  padding-left: 2em;
  padding-right: 2em;
  height: 3em;
  -webkit-appearance: none;
  border-radius: 0;
}