@charset "UTF-8";
.tab {
  display: table;
  table-layout: fixed;
  margin-left: 20px;
  padding: 2px 15px;
  font-size: 18px;
  text-align: center;
  color: #333;
  transition: all 0.2s ease;
}
.tab li {
  display: table-cell;
  margin: 0;
  padding: 1px 10px 0;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  background: #fff;
  border: solid 4px #fdf1dd;
  box-sizing: border-box;
}
.tab li.current {
  background: #fdf1dd;
  font-weight: bold;
  opacity: 0.75;
}
.content {
  padding: 0.2em 0.5em;
  margin-top: 3px;
  margin-left: 30px;
  color: #565656;
  background: #fdf1dd;
  box-shadow: 0px 0px 0px 10px #fdf1dd;
  border: dashed 1px #f3a68c;
  border-radius: 8px;
  width: 85%;
  height: auto;
  min-height: 500px;
  text-align:left;
  font-size: 18px;
  line-height: 150%;
}
.contents .content {
	display: none;
}
.contents .content:nth-child(1) {
	display: block;
}



@media screen and (max-width:767px) {

.tab {
  margin-left: 0px;
  padding: 2px 5px;
  padding: 2px 10px;
  font-size: 16px;

}

.content {
  margin-left: 0;
  width: 95%;
  height: auto;
  margin-bottom: 20px;
}


}