/* footer button wrapper */
.footer_btn_wrapper{
  width: 100%;
  max-width: 500px;
}

/*  clinic tabs */

.tab_list {	
  display: flex;	
  flex-wrap: wrap;	
  justify-content: center;	
  gap: 5px;	
  padding: 5px;
  background-color: #000;
}	
.tab_item {	
  padding: 10px 0;	
  border-radius: 10px;	
  background: #F6EDD3;	
  color: #CBB482;	
  text-align: center;	
  cursor: pointer;	
  transition: .4s ease-in-out;	
  box-shadow: 0px 1px 1px rgb(31, 31, 31);	
  font-weight: bold;	
  font-size: 16px;	
  line-height: 30px;	
  width: calc(100% / 3 - 10px);	
}	
/* タブをクリックした時 ホバーした時 */	
.tab_item:hover,	
.tab_item.is-active {	
  color: #99743C;	
  background: #000;	
}	
.tab_item.is-active {	
  background: linear-gradient(270deg, #F8D7A2 3.41%, #FFFDDF 26.47%, #F8D7A2 43.76%, #EBD78E 60.09%, #FFF5DD 81.7%, #EBD78E 98.99%),	
linear-gradient(0deg, rgba(203, 180, 130, 0.44), rgba(203, 180, 130, 0.44));	
}	
/* パネル */	
.panel_list {	
  background-color: #fff;	
}	
.panel_item {	
  display: none;	
  width: 100%;	
  background-color: #fff;	
}	
.panel_item.is-active {	
  display: block;	
  animation: panel-show .9s ease-in-out forwards;	
}

.panel_item p{
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 15%;
  width: 80%;
  margin: 0 auto;
}
.panel_item .tab_map iframe{
  margin: 0 auto;
  display: block;
  max-width:80%;
}
.panel_item .tab_title{
  text-align: center;
  color: #BA9B6D;
  font-weight: 400;
  font-style: Bold;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 20%;
  padding: 20px 0 10px 0;
}
.panel_item .tab_img{
  width: 80%;
  height: auto;
  margin: 0 auto;
}