/*****************************************************/
/*タブ切り替え全体のスタイル
*****************************************************/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
  margin: 0 auto;
}
.tabs p {

}
.tab_item {
  width: calc(100%/3);
  height: 60px;
  border-bottom: 3px solid #fff;
  background-color: #21a38c;
  line-height: 0120%;
  font-size: 18px;
  text-align: center;
  color: #fff;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
  margin-left: 10px;
}
.tab_item:hover {
  opacity: 0.75;
  cursor: pointer;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 20px 0 0 0;
  border-top: #21a38c 2px solid;
  clear: both;
  overflow: hidden;
}
#facility:checked ~ #facility_content,
#center:checked ~ #center_content,
#design:checked ~ #design_content {
  display: block;
}
.tabs input:checked + .tab_item {
  background-color: #21a38c;
  color: #fff;
  border-radius: 10px 10px 0 0;
  border-bottom: 3px solid #21a38c;
}
.toggle-sp {
  display: none;
}
@media screen and (max-width:736px) {
.tab_item {
  width: 44%;
  font-size: 14px;
}
.toggle-sp {
  display: inherit;
}
}