@charset "UTF-8";
/* CSS Document */
/* ==========================================
   追加：サイズ切り替えタブの独自スタイル
   ========================================== */
.size-tab-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px auto;
  max-width: 600px;
}

.size-tab-btn {
  flex: 1;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #eee;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* 選択されているボタンの見た目（ピンク） */
.size-tab-btn.active {
  background-color: #fa5780;
  border-color: #fa5780;
  color: #fff;
}

/* タブコンテンツの初期制御（上書きに負けない記述） */
.size-tab-content {
  display: none !important;
}
.size-tab-content.active-content {
  display: block !important;
}