@charset "UTF-8";
/* CSS Document */


.tabs-container {
	display: block;
	margin: 0 auto 30px;
	text-align: center;
	overflow: hidden;
}
.tabs {
  display: flex;
  list-style: none;
  gap: 8px;           /* ← タブ間に隙間を追加 */
	margin: 0 auto -3px;
	padding: 0;        
	align-items: center;
	justify-content: space-around;

}
.tab-item {
  flex: 1;
  position: relative;
}
.tab-item a {
  display: block;
  padding: 16px 24px;
  background: #e0e0e0;
  color: #555;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  border-radius: 12px 12px 0 0;
  border: 1px solid #d0d0d0;
  border-bottom: none;
}
.tab-item a:hover {
  background: #f5f5f5;
  color: #222;
}
.tab-item.active a {
  background: #fff;
  color: #33A3AB;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.08);
  border-color: #ccc #ccc transparent #ccc;
  z-index: 1;
	cursor: auto;
}


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

}

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

}

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

}

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

}

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

@media screen and (max-width:768px) {
  .tab-item a {
	  font-size: 0.88rem;
	}
}
@media (max-width:640px) {

}

@media (max-width:480px) {

}
